diff --git a/dotnet/NuGet.Config b/dotnet/NuGet.Config deleted file mode 100644 index 0fb26534c5a68..0000000000000 --- a/dotnet/NuGet.Config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/dotnet/private/merge_assemblies.bzl b/dotnet/private/merge_assemblies.bzl deleted file mode 100644 index c29c00c10342a..0000000000000 --- a/dotnet/private/merge_assemblies.bzl +++ /dev/null @@ -1,97 +0,0 @@ -load( - "@d2l_rules_csharp//csharp/private:common.bzl", - "collect_transitive_info", - "fill_in_missing_frameworks", -) -load( - "@d2l_rules_csharp//csharp/private:providers.bzl", - "CSharpAssemblyInfo", -) - -def _merged_assembly_impl(ctx): - providers = {} - name = ctx.label.name - deps = ctx.attr.deps - target_framework = ctx.attr.target_framework - input_assembly = ctx.attr.src_assembly.files.to_list()[0] - - output_file_name = ctx.attr.out - if (output_file_name == ""): - output_file_name = input_assembly.basename - - output_assembly = ctx.actions.declare_file("merged/{}/{}/{}".format(name, target_framework, output_file_name)) - output_pdb = ctx.actions.declare_file("merged/{}/{}/{}".format(name, target_framework, input_assembly.basename.replace(input_assembly.extension, "pdb"))) - - args = [ - "-v4", - "-xmldocs", - "-internalize", - ] - - if ctx.attr.keyfile != None: - key_path = ctx.expand_location(ctx.attr.keyfile.files.to_list()[0].path) - args.append("-keyfile:{}".format(key_path)) - - args.append("-out={}".format(output_assembly.path)) - args.append(input_assembly.path) - (refs, runfiles, native_dlls) = collect_transitive_info(name, deps, target_framework) - for ref in refs.to_list(): - args.append(ref.path) - - ctx.actions.run( - executable = ctx.executable.merge_tool, - mnemonic = "MergeAssembly", - progress_message = "Merging assemblies into {}".format(output_assembly.path), - arguments = args, - inputs = ctx.attr.src_assembly.files, - outputs = [output_assembly, output_pdb], - ) - - runfiles = ctx.runfiles( - files = [output_pdb], - ) - - for dep in ctx.files.deps: - runfiles = runfiles.merge(dep[DefaultInfo].default_runfiles) - - providers[target_framework] = CSharpAssemblyInfo[target_framework]( - out = output_assembly, - prefout = None, - irefout = None, - internals_visible_to = [], - pdb = output_pdb, - native_dlls = native_dlls, - deps = deps, - transitive_refs = refs, - transitive_runfiles = depset([]), - actual_tfm = target_framework, - runtimeconfig = None, - ) - - fill_in_missing_frameworks(name, providers) - returned_info = providers.values() - returned_info.append( - DefaultInfo( - files = depset([output_assembly]), - runfiles = runfiles, - ), - ) - return returned_info - -merged_assembly = rule( - implementation = _merged_assembly_impl, - attrs = { - "src_assembly": attr.label(), - "deps": attr.label_list(), - "out": attr.string(default = ""), - "keyfile": attr.label(allow_single_file = True), - "target_framework": attr.string(mandatory = True), - "merge_tool": attr.label( - executable = True, - cfg = "exec", - default = Label("//third_party/dotnet/ilmerge:ilmerge.exe"), - allow_single_file = True, - ), - }, - toolchains = ["//third_party/dotnet/ilmerge:toolchain_type"], -) diff --git a/dotnet/private/nuget.bzl b/dotnet/private/nuget.bzl deleted file mode 100644 index 90f9b0713a842..0000000000000 --- a/dotnet/private/nuget.bzl +++ /dev/null @@ -1,150 +0,0 @@ -load("@bazel_skylib//rules:common_settings.bzl", "BuildSettingInfo") -load( - "//dotnet:selenium-dotnet-version.bzl", - "SUPPORTED_NET_STANDARD_VERSIONS", -) -load("//dotnet/private:copy_files.bzl", "copy_files") - -def _nuget_push_impl(ctx): - args = [ - "push", - ] - - apikey = ctx.attr.api_key[BuildSettingInfo].value - package_to_publish = ctx.attr.src.files.to_list()[0].path - - output_file = ctx.actions.declare_file("done.txt") - - args.append(ctx.expand_location(ctx.attr.src.files.to_list()[0].path)) - args.append("-Source") - args.append(ctx.attr.package_repository_url) - args.append("-SkipDuplicate") - args.append("-ApiKey") - args.append(apikey) - args.append("> {}".format(output_file.path)) - - ctx.actions.run( - executable = ctx.executable.nuget_exe, - progress_message = "Publishing {}".format(package_to_publish), - arguments = args, - inputs = ctx.attr.src.files.to_list() + ctx.files.deps, - outputs = [output_file], - ) - - return DefaultInfo(files = depset([ - output_file, - ])) - -nuget_push = rule( - implementation = _nuget_push_impl, - attrs = { - "src": attr.label( - allow_single_file = True, - ), - "deps": attr.label_list(), - "package_repository_url": attr.string( - default = "https://nuget.org", - ), - "api_key": attr.label(default = ":nuget-api-key"), - "nuget_exe": attr.label( - executable = True, - cfg = "exec", - default = Label("//third_party/dotnet/nuget:nuget.exe"), - allow_single_file = True, - ), - }, -) - -def _get_relative_destination_file(src_file): - src_file_dirs = src_file.dirname.split("/") - framework_dir = src_file_dirs[-1] - for src_file_dir in reversed(src_file_dirs): - if src_file_dir in SUPPORTED_NET_STANDARD_VERSIONS: - framework_dir = src_file_dir - break - return "{}/{}".format(framework_dir, src_file.basename) - -def _stage_files_for_packaging(ctx, staging_dir): - src_list = [] - for dep in ctx.attr.deps: - src_file = dep.files.to_list()[0] - relative_dest_file = _get_relative_destination_file(src_file) - src_list.append((src_file, relative_dest_file)) - if (ctx.attr.create_symbol_package): - if (len(dep[DefaultInfo].default_runfiles.files.to_list()) > 0): - symbol_file = dep[DefaultInfo].default_runfiles.files.to_list()[0] - relative_dest_symbol_file = _get_relative_destination_file(symbol_file) - src_list.append((symbol_file, relative_dest_symbol_file)) - - return copy_files(ctx, src_list, staging_dir, ctx.attr.is_windows) - -def _nuget_package_impl(ctx): - args = [ - "pack", - ] - - package_id = ctx.attr.package_id - package_version = ctx.attr.package_version - - package_file = ctx.actions.declare_file("{}.{}.nupkg".format(package_id, package_version)) - output_path = ctx.expand_location(package_file.dirname) - output_files = [package_file] - - if (ctx.attr.create_symbol_package): - symbol_file = ctx.actions.declare_file("{}.{}.snupkg".format(package_id, package_version)) - output_files.append(symbol_file) - - # The dependencies are assembly output compiled into directories - # with the appropriate target framework moniker ("/net45", - # "/net46", etc.). The base path for creating the NuGet - # package should be the "" directory, which we need to - # hard-code with the parent operator, because Bazel doesn't - # provide proper path traversal for custom rules. - base_path = ctx.files.deps[0].dirname + "/.." - - packaging_file_list = _stage_files_for_packaging(ctx, ctx.label.name) - base_path = packaging_file_list[0].dirname + "/.." - - args.append(ctx.expand_location(ctx.attr.src.files.to_list()[0].path)) - args.append("-Properties") - args.append("packageid={}".format(package_id)) - args.append("-Version") - args.append(package_version) - args.append("-BasePath") - args.append(base_path) - if (ctx.attr.create_symbol_package): - args.append("-Symbols") - args.append("-SymbolPackageFormat") - args.append("snupkg") - args.append("-OutputDirectory") - args.append(output_path) - - ctx.actions.run( - executable = ctx.executable.nuget_exe, - progress_message = "Packaging {}".format(package_file.path), - arguments = args, - inputs = ctx.attr.src.files.to_list() + ctx.files.deps, - outputs = output_files, - ) - - return DefaultInfo(files = depset(output_files), runfiles = ctx.runfiles(files = packaging_file_list)) - -nuget_package = rule( - implementation = _nuget_package_impl, - attrs = { - "src": attr.label( - allow_single_file = True, - ), - "deps": attr.label_list(), - "package_id": attr.string(), - "package_version": attr.string(), - "create_symbol_package": attr.bool(default = False), - "is_windows": attr.bool(default = False), - "nuget_exe": attr.label( - executable = True, - cfg = "exec", - default = Label("//third_party/dotnet/nuget:nuget.exe"), - allow_single_file = True, - ), - }, -) diff --git a/dotnet/workspace.bzl b/dotnet/workspace.bzl index 270eeef854208..be34736685fed 100644 --- a/dotnet/workspace.bzl +++ b/dotnet/workspace.bzl @@ -2,80 +2,8 @@ load( "@d2l_rules_csharp//csharp:defs.bzl", "csharp_register_toolchains", "csharp_repositories", - "import_nuget_package", ) def selenium_register_dotnet(): csharp_register_toolchains() csharp_repositories() - - native.register_toolchains("//third_party/dotnet/ilmerge:all") - - import_nuget_package( - name = "json.net", - file = "third_party/dotnet/nuget/packages/newtonsoft.json.13.0.1.nupkg", - sha256 = "2b6b52556e27e1b7913f33eedeb95568110c746bd64afff74357f1683878323a", - ) - - import_nuget_package( - name = "moq", - file = "third_party/dotnet/nuget/packages/moq.4.12.0.nupkg", - sha256 = "339bbb71107e137a753a89c6b74adb5d9072f0916cf8f19f48b30ae29c41f434", - ) - - # Moq depends on Castle.Core - import_nuget_package( - name = "castle.core", - file = "third_party/dotnet/nuget/packages/castle.core.4.4.0.nupkg", - sha256 = "ee12c10079c1f9daebdb2538c37a34e5e317d800f2feb5cddd744f067d5dec66", - ) - - import_nuget_package( - name = "benderproxy", - file = "third_party/dotnet/nuget/packages/benderproxy.1.0.0.nupkg", - sha256 = "fd536dc97eb71268392173e7c4c0699795a31f6843470134ee068ade1be4b57d", - ) - - import_nuget_package( - name = "nunit", - file = "third_party/dotnet/nuget/packages/nunit.3.12.0.nupkg", - #sha256 = "056eec5d3d8b2a93f7ca5b026d34d9d5fe8c835b11e322faf1a2551da25c4e70", - ) - - import_nuget_package( - name = "handlebars", - file = "third_party/dotnet/nuget/packages/handlebars.net.1.11.5.nupkg", - sha256 = "5771ef7dddbf0024e25456f26ffaaf75023847a8c0f5b8be1d832c1ef2a41c96", - ) - - # Handlebars.Net depends on Microsoft.CSharp - import_nuget_package( - name = "csharp", - file = "third_party/dotnet/nuget/packages/microsoft.csharp.4.7.0.nupkg", - sha256 = "127927bf646c145ebc9443ddadfe4cf81a55d641e82d3551029294c2e93fa63d", - ) - - import_nuget_package( - name = "humanizer", - file = "third_party/dotnet/nuget/packages/humanizer.core.2.8.26.nupkg", - sha256 = "555b42765a0adefcfd6cfab486a1da195716bb72066ed26ac098e8ea45681ded", - ) - - import_nuget_package( - name = "dependencyinjection", - file = "third_party/dotnet/nuget/packages/microsoft.extensions.dependencyinjection.3.1.9.nupkg", - sha256 = "6b4ddfc1c8d83139e8f1b8bd6cc0b2413b85362622d4ae547fb1b4edf897d2c5", - ) - - # Microsoft.Extensions.DependencyInjection depends on Microsoft.Extensions.DependencyInjection.Abstractions - import_nuget_package( - name = "dependencyinjectionabstractions", - file = "third_party/dotnet/nuget/packages/microsoft.extensions.dependencyinjection.abstractions.3.1.9.nupkg", - sha256 = "664b74ebd587279e3697e2db79e67199a75da1089479813d6ddca1e0c379f6d0", - ) - - import_nuget_package( - name = "commandlineparser", - file = "third_party/dotnet/nuget/packages/commandlineparser.2.8.0.nupkg", - sha256 = "6b6568155442c2a4fb2ca4442f245bf401c11078ad212f4b9967894da3ef62d4", - ) diff --git a/third_party/dotnet/ZipStorer/LICENSE b/third_party/dotnet/ZipStorer/LICENSE deleted file mode 100644 index c3b36aedb7886..0000000000000 --- a/third_party/dotnet/ZipStorer/LICENSE +++ /dev/null @@ -1,60 +0,0 @@ -Microsoft Public License (Ms-PL) - -This license governs use of the accompanying software. If you use the software, -you accept this license. If you do not accept the license, do not use the -software. - -1. Definitions - -The terms "reproduce," "reproduction," "derivative works," and "distribution" -have the same meaning here as under U.S. copyright law. - -A "contribution" is the original software, or any additions or changes to the -software. - -A "contributor" is any person that distributes its contribution under this -license. - -"Licensed patents" are a contributor's patent claims that read directly on its -contribution. - -2. Grant of Rights - -(A) Copyright Grant- Subject to the terms of this license, including the -license conditions and limitations in section 3, each contributor grants you a -non-exclusive, worldwide, royalty-free copyright license to reproduce its -contribution, prepare derivative works of its contribution, and distribute its -contribution or any derivative works that you create. - -(B) Patent Grant- Subject to the terms of this license, including the license -conditions and limitations in section 3, each contributor grants you a -non-exclusive, worldwide, royalty-free license under its licensed patents to -make, have made, use, sell, offer for sale, import, and/or otherwise dispose of -its contribution in the software or derivative works of the contribution in the -software. - -3. Conditions and Limitations - -(A) No Trademark License- This license does not grant you rights to use any -contributors' name, logo, or trademarks. - -(B) If you bring a patent claim against any contributor over patents that you -claim are infringed by the software, your patent license from such contributor -to the software ends automatically. - -(C) If you distribute any portion of the software, you must retain all -copyright, patent, trademark, and attribution notices that are present in the -software. - -(D) If you distribute any portion of the software in source code form, you may -do so only under this license by including a complete copy of this license with -your distribution. If you distribute any portion of the software in compiled or -object code form, you may only do so under a license that complies with this -license. - -(E) The software is licensed "as-is." You bear the risk of using it. The -contributors give no express warranties, guarantees or conditions. You may have -additional consumer rights under your local laws which this license cannot -change. To the extent permitted under your local laws, the contributors exclude -the implied warranties of merchantability, fitness for a particular purpose and -non-infringement. \ No newline at end of file diff --git a/third_party/dotnet/ZipStorer/ReadMe.txt b/third_party/dotnet/ZipStorer/ReadMe.txt deleted file mode 100644 index 355021abf2b7d..0000000000000 --- a/third_party/dotnet/ZipStorer/ReadMe.txt +++ /dev/null @@ -1,10 +0,0 @@ -This code is from the ZipStorer project, which can be found at the following: -https://zipstorer.codeplex.com. - -The code is released under the Microsoft Public License (Ms-PL), as found in -that project's license notice (https://zipstorer.codeplex.com/license). - -The code is used as downloaded from the site, with the caveat that the top- -level class is changed from "public" to "internal" so as not to expose the -utility to users. For convenience, this file is duplicated in the .NET -code tree. \ No newline at end of file diff --git a/third_party/dotnet/ZipStorer/ZipStorer.cs b/third_party/dotnet/ZipStorer/ZipStorer.cs deleted file mode 100644 index bdbfe169dccda..0000000000000 --- a/third_party/dotnet/ZipStorer/ZipStorer.cs +++ /dev/null @@ -1,745 +0,0 @@ -// ZipStorer, by Jaime Olivares -// Website: zipstorer.codeplex.com -// Version: 2.35 (March 14, 2010) - -using System.Collections.Generic; -using System.Text; - -namespace System.IO.Compression -{ - /// - /// Unique class for compression/decompression file. Represents a Zip file. - /// - internal class ZipStorer : IDisposable - { - /// - /// Compression method enumeration - /// - public enum Compression : ushort { - /// Uncompressed storage - Store = 0, - /// Deflate compression method - Deflate = 8 } - - /// - /// Represents an entry in Zip file directory - /// - public struct ZipFileEntry - { - /// Compression method - public Compression Method; - /// Full path and filename as stored in Zip - public string FilenameInZip; - /// Original file size - public uint FileSize; - /// Compressed file size - public uint CompressedSize; - /// Offset of header information inside Zip storage - public uint HeaderOffset; - /// Offset of file inside Zip storage - public uint FileOffset; - /// Size of header information - public uint HeaderSize; - /// 32-bit checksum of entire file - public uint Crc32; - /// Last modification time of file - public DateTime ModifyTime; - /// User comment for file - public string Comment; - /// True if UTF8 encoding for filename and comments, false if default (CP 437) - public bool EncodeUTF8; - - /// Overriden method - /// Filename in Zip - public override string ToString() - { - return this.FilenameInZip; - } - } - - #region Public fields - /// True if UTF8 encoding for filename and comments, false if default (CP 437) - public bool EncodeUTF8 = false; - /// Force deflate algotithm even if it inflates the stored file. Off by default. - public bool ForceDeflating = false; - #endregion - - #region Private fields - // List of files to store - private List Files = new List(); - // Filename of storage file - private string FileName; - // Stream object of storage file - private Stream ZipFileStream; - // General comment - private string Comment = ""; - // Central dir image - private byte[] CentralDirImage = null; - // Existing files in zip - private ushort ExistingFiles = 0; - // File access for Open method - private FileAccess Access; - // Static CRC32 Table - private static UInt32[] CrcTable = null; - // Default filename encoder - private static Encoding DefaultEncoding = Encoding.GetEncoding(437); - #endregion - - #region Public methods - // Static constructor. Just invoked once in order to create the CRC32 lookup table. - static ZipStorer() - { - // Generate CRC32 table - CrcTable = new UInt32[256]; - for (int i = 0; i < CrcTable.Length; i++) - { - UInt32 c = (UInt32)i; - for (int j = 0; j < 8; j++) - { - if ((c & 1) != 0) - c = 3988292384 ^ (c >> 1); - else - c >>= 1; - } - CrcTable[i] = c; - } - } - /// - /// Method to create a new storage file - /// - /// Full path of Zip file to create - /// General comment for Zip file - /// A valid ZipStorer object - public static ZipStorer Create(string _filename, string _comment) - { - Stream stream = new FileStream(_filename, FileMode.Create, FileAccess.ReadWrite); - - ZipStorer zip = Create(stream, _comment); - zip.Comment = _comment; - zip.FileName = _filename; - - return zip; - } - /// - /// Method to create a new zip storage in a stream - /// - /// - /// - /// A valid ZipStorer object - public static ZipStorer Create(Stream _stream, string _comment) - { - ZipStorer zip = new ZipStorer(); - zip.Comment = _comment; - zip.ZipFileStream = _stream; - zip.Access = FileAccess.Write; - - return zip; - } - /// - /// Method to open an existing storage file - /// - /// Full path of Zip file to open - /// File access mode as used in FileStream constructor - /// A valid ZipStorer object - public static ZipStorer Open(string _filename, FileAccess _access) - { - Stream stream = (Stream)new FileStream(_filename, FileMode.Open, _access == FileAccess.Read ? FileAccess.Read : FileAccess.ReadWrite); - - ZipStorer zip = Open(stream, _access); - zip.FileName = _filename; - - return zip; - } - /// - /// Method to open an existing storage from stream - /// - /// Already opened stream with zip contents - /// File access mode for stream operations - /// A valid ZipStorer object - public static ZipStorer Open(Stream _stream, FileAccess _access) - { - if (!_stream.CanSeek && _access != FileAccess.Read) - throw new InvalidOperationException("Stream cannot seek"); - - ZipStorer zip = new ZipStorer(); - //zip.FileName = _filename; - zip.ZipFileStream = _stream; - zip.Access = _access; - - if (zip.ReadFileInfo()) - return zip; - - throw new System.IO.InvalidDataException(); - } - /// - /// Add full contents of a file into the Zip storage - /// - /// Compression method - /// Full path of file to add to Zip storage - /// Filename and path as desired in Zip directory - /// Comment for stored file - public void AddFile(Compression _method, string _pathname, string _filenameInZip, string _comment) - { - if (Access == FileAccess.Read) - throw new InvalidOperationException("Writing is not alowed"); - - FileStream stream = new FileStream(_pathname, FileMode.Open, FileAccess.Read); - AddStream(_method, _filenameInZip, stream, File.GetLastWriteTime(_pathname), _comment); - stream.Close(); - } - /// - /// Add full contents of a stream into the Zip storage - /// - /// Compression method - /// Filename and path as desired in Zip directory - /// Stream object containing the data to store in Zip - /// Modification time of the data to store - /// Comment for stored file - public void AddStream(Compression _method, string _filenameInZip, Stream _source, DateTime _modTime, string _comment) - { - if (Access == FileAccess.Read) - throw new InvalidOperationException("Writing is not alowed"); - - long offset; - if (this.Files.Count==0) - offset = 0; - else - { - ZipFileEntry last = this.Files[this.Files.Count-1]; - offset = last.HeaderOffset + last.HeaderSize; - } - - // Prepare the fileinfo - ZipFileEntry zfe = new ZipFileEntry(); - zfe.Method = _method; - zfe.EncodeUTF8 = this.EncodeUTF8; - zfe.FilenameInZip = NormalizedFilename(_filenameInZip); - zfe.Comment = (_comment == null ? "" : _comment); - - // Even though we write the header now, it will have to be rewritten, since we don't know compressed size or crc. - zfe.Crc32 = 0; // to be updated later - zfe.HeaderOffset = (uint)this.ZipFileStream.Position; // offset within file of the start of this local record - zfe.ModifyTime = _modTime; - - // Write local header - WriteLocalHeader(ref zfe); - zfe.FileOffset = (uint)this.ZipFileStream.Position; - - // Write file to zip (store) - Store(ref zfe, _source); - _source.Close(); - - this.UpdateCrcAndSizes(ref zfe); - - Files.Add(zfe); - } - /// - /// Updates central directory (if pertinent) and close the Zip storage - /// - /// This is a required step, unless automatic dispose is used - public void Close() - { - if (this.Access != FileAccess.Read) - { - uint centralOffset = (uint)this.ZipFileStream.Position; - uint centralSize = 0; - - if (this.CentralDirImage != null) - this.ZipFileStream.Write(CentralDirImage, 0, CentralDirImage.Length); - - for (int i = 0; i < Files.Count; i++) - { - long pos = this.ZipFileStream.Position; - this.WriteCentralDirRecord(Files[i]); - centralSize += (uint)(this.ZipFileStream.Position - pos); - } - - if (this.CentralDirImage != null) - this.WriteEndRecord(centralSize + (uint)CentralDirImage.Length, centralOffset); - else - this.WriteEndRecord(centralSize, centralOffset); - } - - if (this.ZipFileStream != null) - { - this.ZipFileStream.Flush(); - this.ZipFileStream.Dispose(); - this.ZipFileStream = null; - } - } - /// - /// Read all the file records in the central directory - /// - /// List of all entries in directory - public List ReadCentralDir() - { - if (this.CentralDirImage == null) - throw new InvalidOperationException("Central directory currently does not exist"); - - List result = new List(); - - for (int pointer = 0; pointer < this.CentralDirImage.Length; ) - { - uint signature = BitConverter.ToUInt32(CentralDirImage, pointer); - if (signature != 0x02014b50) - break; - - bool encodeUTF8 = (BitConverter.ToUInt16(CentralDirImage, pointer + 8) & 0x0800) != 0; - ushort method = BitConverter.ToUInt16(CentralDirImage, pointer + 10); - uint modifyTime = BitConverter.ToUInt32(CentralDirImage, pointer + 12); - uint crc32 = BitConverter.ToUInt32(CentralDirImage, pointer + 16); - uint comprSize = BitConverter.ToUInt32(CentralDirImage, pointer + 20); - uint fileSize = BitConverter.ToUInt32(CentralDirImage, pointer + 24); - ushort filenameSize = BitConverter.ToUInt16(CentralDirImage, pointer + 28); - ushort extraSize = BitConverter.ToUInt16(CentralDirImage, pointer + 30); - ushort commentSize = BitConverter.ToUInt16(CentralDirImage, pointer + 32); - uint headerOffset = BitConverter.ToUInt32(CentralDirImage, pointer + 42); - uint headerSize = (uint)( 46 + filenameSize + extraSize + commentSize); - - Encoding encoder = encodeUTF8 ? Encoding.UTF8 : DefaultEncoding; - - ZipFileEntry zfe = new ZipFileEntry(); - zfe.Method = (Compression)method; - zfe.FilenameInZip = encoder.GetString(CentralDirImage, pointer + 46, filenameSize); - zfe.FileOffset = GetFileOffset(headerOffset); - zfe.FileSize = fileSize; - zfe.CompressedSize = comprSize; - zfe.HeaderOffset = headerOffset; - zfe.HeaderSize = headerSize; - zfe.Crc32 = crc32; - zfe.ModifyTime = DosTimeToDateTime(modifyTime); - if (commentSize > 0) - zfe.Comment = encoder.GetString(CentralDirImage, pointer + 46 + filenameSize + extraSize, commentSize); - - result.Add(zfe); - pointer += (46 + filenameSize + extraSize + commentSize); - } - - return result; - } - /// - /// Copy the contents of a stored file into a physical file - /// - /// Entry information of file to extract - /// Name of file to store uncompressed data - /// True if success, false if not. - /// Unique compression methods are Store and Deflate - public bool ExtractFile(ZipFileEntry _zfe, string _filename) - { - // Make sure the parent directory exist - string path = System.IO.Path.GetDirectoryName(_filename); - - if (!Directory.Exists(path)) - Directory.CreateDirectory(path); - // Check it is directory. If so, do nothing - if (Directory.Exists(_filename)) - return true; - - Stream output = new FileStream(_filename, FileMode.Create, FileAccess.Write); - bool result = ExtractFile(_zfe, output); - if (result) - output.Close(); - - File.SetCreationTime(_filename, _zfe.ModifyTime); - File.SetLastWriteTime(_filename, _zfe.ModifyTime); - - return result; - } - /// - /// Copy the contents of a stored file into an opened stream - /// - /// Entry information of file to extract - /// Stream to store the uncompressed data - /// True if success, false if not. - /// Unique compression methods are Store and Deflate - public bool ExtractFile(ZipFileEntry _zfe, Stream _stream) - { - if (!_stream.CanWrite) - throw new InvalidOperationException("Stream cannot be written"); - - // check signature - byte[] signature = new byte[4]; - this.ZipFileStream.Seek(_zfe.HeaderOffset, SeekOrigin.Begin); - this.ZipFileStream.Read(signature, 0, 4); - if (BitConverter.ToUInt32(signature, 0) != 0x04034b50) - return false; - - // Select input stream for inflating or just reading - Stream inStream; - if (_zfe.Method == Compression.Store) - inStream = this.ZipFileStream; - else if (_zfe.Method == Compression.Deflate) - inStream = new DeflateStream(this.ZipFileStream, CompressionMode.Decompress, true); - else - return false; - - // Buffered copy - byte[] buffer = new byte[16384]; - this.ZipFileStream.Seek(_zfe.FileOffset, SeekOrigin.Begin); - uint bytesPending = _zfe.FileSize; - while (bytesPending > 0) - { - int bytesRead = inStream.Read(buffer, 0, (int)Math.Min(bytesPending, buffer.Length)); - _stream.Write(buffer, 0, bytesRead); - bytesPending -= (uint)bytesRead; - } - _stream.Flush(); - - if (_zfe.Method == Compression.Deflate) - inStream.Dispose(); - return true; - } - /// - /// Removes one of many files in storage. It creates a new Zip file. - /// - /// Reference to the current Zip object - /// List of Entries to remove from storage - /// True if success, false if not - /// This method only works for storage of type FileStream - public static bool RemoveEntries(ref ZipStorer _zip, List _zfes) - { - if (!(_zip.ZipFileStream is FileStream)) - throw new InvalidOperationException("RemoveEntries is allowed just over streams of type FileStream"); - - - //Get full list of entries - List fullList = _zip.ReadCentralDir(); - - //In order to delete we need to create a copy of the zip file excluding the selected items - string tempZipName = Path.GetTempFileName(); - string tempEntryName = Path.GetTempFileName(); - - try - { - ZipStorer tempZip = ZipStorer.Create(tempZipName, string.Empty); - - foreach (ZipFileEntry zfe in fullList) - { - if (!_zfes.Contains(zfe)) - { - if (_zip.ExtractFile(zfe, tempEntryName)) - { - tempZip.AddFile(zfe.Method, tempEntryName, zfe.FilenameInZip, zfe.Comment); - } - } - } - _zip.Close(); - tempZip.Close(); - - File.Delete(_zip.FileName); - File.Move(tempZipName, _zip.FileName); - - _zip = ZipStorer.Open(_zip.FileName, _zip.Access); - } - catch - { - return false; - } - finally - { - if (File.Exists(tempZipName)) - File.Delete(tempZipName); - if (File.Exists(tempEntryName)) - File.Delete(tempEntryName); - } - return true; - } - #endregion - - #region Private methods - // Calculate the file offset by reading the corresponding local header - private uint GetFileOffset(uint _headerOffset) - { - byte[] buffer = new byte[2]; - - this.ZipFileStream.Seek(_headerOffset + 26, SeekOrigin.Begin); - this.ZipFileStream.Read(buffer, 0, 2); - ushort filenameSize = BitConverter.ToUInt16(buffer, 0); - this.ZipFileStream.Read(buffer, 0, 2); - ushort extraSize = BitConverter.ToUInt16(buffer, 0); - - return (uint)(30 + filenameSize + extraSize + _headerOffset); - } - /* Local file header: - local file header signature 4 bytes (0x04034b50) - version needed to extract 2 bytes - general purpose bit flag 2 bytes - compression method 2 bytes - last mod file time 2 bytes - last mod file date 2 bytes - crc-32 4 bytes - compressed size 4 bytes - uncompressed size 4 bytes - filename length 2 bytes - extra field length 2 bytes - - filename (variable size) - extra field (variable size) - */ - private void WriteLocalHeader(ref ZipFileEntry _zfe) - { - long pos = this.ZipFileStream.Position; - Encoding encoder = _zfe.EncodeUTF8 ? Encoding.UTF8 : DefaultEncoding; - byte[] encodedFilename = encoder.GetBytes(_zfe.FilenameInZip); - - this.ZipFileStream.Write(new byte[] { 80, 75, 3, 4, 20, 0}, 0, 6); // No extra header - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)(_zfe.EncodeUTF8 ? 0x0800 : 0)), 0, 2); // filename and comment encoding - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)_zfe.Method), 0, 2); // zipping method - this.ZipFileStream.Write(BitConverter.GetBytes(DateTimeToDosTime(_zfe.ModifyTime)), 0, 4); // zipping date and time - this.ZipFileStream.Write(new byte[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, 0, 12); // unused CRC, un/compressed size, updated later - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)encodedFilename.Length), 0, 2); // filename length - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)0), 0, 2); // extra length - - this.ZipFileStream.Write(encodedFilename, 0, encodedFilename.Length); - _zfe.HeaderSize = (uint)(this.ZipFileStream.Position - pos); - } - /* Central directory's File header: - central file header signature 4 bytes (0x02014b50) - version made by 2 bytes - version needed to extract 2 bytes - general purpose bit flag 2 bytes - compression method 2 bytes - last mod file time 2 bytes - last mod file date 2 bytes - crc-32 4 bytes - compressed size 4 bytes - uncompressed size 4 bytes - filename length 2 bytes - extra field length 2 bytes - file comment length 2 bytes - disk number start 2 bytes - internal file attributes 2 bytes - external file attributes 4 bytes - relative offset of local header 4 bytes - - filename (variable size) - extra field (variable size) - file comment (variable size) - */ - private void WriteCentralDirRecord(ZipFileEntry _zfe) - { - Encoding encoder = _zfe.EncodeUTF8 ? Encoding.UTF8 : DefaultEncoding; - byte[] encodedFilename = encoder.GetBytes(_zfe.FilenameInZip); - byte[] encodedComment = encoder.GetBytes(_zfe.Comment); - - this.ZipFileStream.Write(new byte[] { 80, 75, 1, 2, 23, 0xB, 20, 0 }, 0, 8); - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)(_zfe.EncodeUTF8 ? 0x0800 : 0)), 0, 2); // filename and comment encoding - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)_zfe.Method), 0, 2); // zipping method - this.ZipFileStream.Write(BitConverter.GetBytes(DateTimeToDosTime(_zfe.ModifyTime)), 0, 4); // zipping date and time - this.ZipFileStream.Write(BitConverter.GetBytes(_zfe.Crc32), 0, 4); // file CRC - this.ZipFileStream.Write(BitConverter.GetBytes(_zfe.CompressedSize), 0, 4); // compressed file size - this.ZipFileStream.Write(BitConverter.GetBytes(_zfe.FileSize), 0, 4); // uncompressed file size - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)encodedFilename.Length), 0, 2); // Filename in zip - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)0), 0, 2); // extra length - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)encodedComment.Length), 0, 2); - - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)0), 0, 2); // disk=0 - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)0), 0, 2); // file type: binary - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)0), 0, 2); // Internal file attributes - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)0x8100), 0, 2); // External file attributes (normal/readable) - this.ZipFileStream.Write(BitConverter.GetBytes(_zfe.HeaderOffset), 0, 4); // Offset of header - - this.ZipFileStream.Write(encodedFilename, 0, encodedFilename.Length); - this.ZipFileStream.Write(encodedComment, 0, encodedComment.Length); - } - /* End of central dir record: - end of central dir signature 4 bytes (0x06054b50) - number of this disk 2 bytes - number of the disk with the - start of the central directory 2 bytes - total number of entries in - the central dir on this disk 2 bytes - total number of entries in - the central dir 2 bytes - size of the central directory 4 bytes - offset of start of central - directory with respect to - the starting disk number 4 bytes - zipfile comment length 2 bytes - zipfile comment (variable size) - */ - private void WriteEndRecord(uint _size, uint _offset) - { - Encoding encoder = this.EncodeUTF8 ? Encoding.UTF8 : DefaultEncoding; - byte[] encodedComment = encoder.GetBytes(this.Comment); - - this.ZipFileStream.Write(new byte[] { 80, 75, 5, 6, 0, 0, 0, 0 }, 0, 8); - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)Files.Count+ExistingFiles), 0, 2); - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)Files.Count+ExistingFiles), 0, 2); - this.ZipFileStream.Write(BitConverter.GetBytes(_size), 0, 4); - this.ZipFileStream.Write(BitConverter.GetBytes(_offset), 0, 4); - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)encodedComment.Length), 0, 2); - this.ZipFileStream.Write(encodedComment, 0, encodedComment.Length); - } - // Copies all source file into storage file - private void Store(ref ZipFileEntry _zfe, Stream _source) - { - byte[] buffer = new byte[16384]; - int bytesRead; - uint totalRead = 0; - Stream outStream; - - long posStart = this.ZipFileStream.Position; - long sourceStart = _source.Position; - - if (_zfe.Method == Compression.Store) - outStream = this.ZipFileStream; - else - outStream = new DeflateStream(this.ZipFileStream, CompressionMode.Compress, true); - - _zfe.Crc32 = 0 ^ 0xffffffff; - - do - { - bytesRead = _source.Read(buffer, 0, buffer.Length); - totalRead += (uint)bytesRead; - if (bytesRead > 0) - { - outStream.Write(buffer, 0, bytesRead); - - for (uint i = 0; i < bytesRead; i++) - { - _zfe.Crc32 = ZipStorer.CrcTable[(_zfe.Crc32 ^ buffer[i]) & 0xFF] ^ (_zfe.Crc32 >> 8); - } - } - } while (bytesRead == buffer.Length); - outStream.Flush(); - - if (_zfe.Method == Compression.Deflate) - outStream.Dispose(); - - _zfe.Crc32 ^= 0xffffffff; - _zfe.FileSize = totalRead; - _zfe.CompressedSize = (uint)(this.ZipFileStream.Position - posStart); - - // Verify for real compression - if (_zfe.Method == Compression.Deflate && !this.ForceDeflating && _source.CanSeek && _zfe.CompressedSize > _zfe.FileSize) - { - // Start operation again with Store algorithm - _zfe.Method = Compression.Store; - this.ZipFileStream.Position = posStart; - this.ZipFileStream.SetLength(posStart); - _source.Position = sourceStart; - this.Store(ref _zfe, _source); - } - } - /* DOS Date and time: - MS-DOS date. The date is a packed value with the following format. Bits Description - 0-4 Day of the month (1–31) - 5-8 Month (1 = January, 2 = February, and so on) - 9-15 Year offset from 1980 (add 1980 to get actual year) - MS-DOS time. The time is a packed value with the following format. Bits Description - 0-4 Second divided by 2 - 5-10 Minute (0–59) - 11-15 Hour (0–23 on a 24-hour clock) - */ - private uint DateTimeToDosTime(DateTime _dt) - { - return (uint)( - (_dt.Second / 2) | (_dt.Minute << 5) | (_dt.Hour << 11) | - (_dt.Day<<16) | (_dt.Month << 21) | ((_dt.Year - 1980) << 25)); - } - private DateTime DosTimeToDateTime(uint _dt) - { - return new DateTime( - (int)(_dt >> 25) + 1980, - (int)(_dt >> 21) & 15, - (int)(_dt >> 16) & 31, - (int)(_dt >> 11) & 31, - (int)(_dt >> 5) & 63, - (int)(_dt & 31) * 2); - } - - /* CRC32 algorithm - The 'magic number' for the CRC is 0xdebb20e3. - The proper CRC pre and post conditioning - is used, meaning that the CRC register is - pre-conditioned with all ones (a starting value - of 0xffffffff) and the value is post-conditioned by - taking the one's complement of the CRC residual. - If bit 3 of the general purpose flag is set, this - field is set to zero in the local header and the correct - value is put in the data descriptor and in the central - directory. - */ - private void UpdateCrcAndSizes(ref ZipFileEntry _zfe) - { - long lastPos = this.ZipFileStream.Position; // remember position - - this.ZipFileStream.Position = _zfe.HeaderOffset + 8; - this.ZipFileStream.Write(BitConverter.GetBytes((ushort)_zfe.Method), 0, 2); // zipping method - - this.ZipFileStream.Position = _zfe.HeaderOffset + 14; - this.ZipFileStream.Write(BitConverter.GetBytes(_zfe.Crc32), 0, 4); // Update CRC - this.ZipFileStream.Write(BitConverter.GetBytes(_zfe.CompressedSize), 0, 4); // Compressed size - this.ZipFileStream.Write(BitConverter.GetBytes(_zfe.FileSize), 0, 4); // Uncompressed size - - this.ZipFileStream.Position = lastPos; // restore position - } - // Replaces backslashes with slashes to store in zip header - private string NormalizedFilename(string _filename) - { - string filename = _filename.Replace('\\', '/'); - - int pos = filename.IndexOf(':'); - if (pos >= 0) - filename = filename.Remove(0, pos + 1); - - return filename.Trim('/'); - } - // Reads the end-of-central-directory record - private bool ReadFileInfo() - { - if (this.ZipFileStream.Length < 22) - return false; - - try - { - this.ZipFileStream.Seek(-17, SeekOrigin.End); - BinaryReader br = new BinaryReader(this.ZipFileStream); - do - { - this.ZipFileStream.Seek(-5, SeekOrigin.Current); - UInt32 sig = br.ReadUInt32(); - if (sig == 0x06054b50) - { - this.ZipFileStream.Seek(6, SeekOrigin.Current); - - UInt16 entries = br.ReadUInt16(); - Int32 centralSize = br.ReadInt32(); - UInt32 centralDirOffset = br.ReadUInt32(); - UInt16 commentSize = br.ReadUInt16(); - - // check if comment field is the very last data in file - if (this.ZipFileStream.Position + commentSize != this.ZipFileStream.Length) - return false; - - // Copy entire central directory to a memory buffer - this.ExistingFiles = entries; - this.CentralDirImage = new byte[centralSize]; - this.ZipFileStream.Seek(centralDirOffset, SeekOrigin.Begin); - this.ZipFileStream.Read(this.CentralDirImage, 0, centralSize); - - // Leave the pointer at the begining of central dir, to append new files - this.ZipFileStream.Seek(centralDirOffset, SeekOrigin.Begin); - return true; - } - } while (this.ZipFileStream.Position > 0); - } - catch { } - - return false; - } - #endregion - - #region IDisposable Members - /// - /// Closes the Zip file stream - /// - public void Dispose() - { - this.Close(); - } - #endregion - } -} diff --git a/third_party/dotnet/ilmerge/BUILD.bazel b/third_party/dotnet/ilmerge/BUILD.bazel deleted file mode 100644 index dd9f816f11348..0000000000000 --- a/third_party/dotnet/ilmerge/BUILD.bazel +++ /dev/null @@ -1,28 +0,0 @@ -load(":toolchain.bzl", "merge_toolchain") - -licenses(["notice"]) - -exports_files(["ilmerge.exe"]) - -toolchain_type(name = "toolchain_type") - -#configure_toolchain() - -merge_toolchain( - name = "ilmerger", - merge_tool = ":ilmerge.exe", -) - -toolchain( - name = "ilmerge_toolchain", - exec_compatible_with = [ - "@platforms//os:windows", - "@platforms//cpu:x86_64", - ], - target_compatible_with = [ - "@platforms//os:windows", - "@platforms//cpu:x86_64", - ], - toolchain = ":ilmerger", - toolchain_type = ":toolchain_type", -) diff --git a/third_party/dotnet/ilmerge/ILMerge.exe b/third_party/dotnet/ilmerge/ILMerge.exe deleted file mode 100644 index d7398e4864602..0000000000000 Binary files a/third_party/dotnet/ilmerge/ILMerge.exe and /dev/null differ diff --git a/third_party/dotnet/ilmerge/System.Compiler.dll b/third_party/dotnet/ilmerge/System.Compiler.dll deleted file mode 100644 index a0a50cb870be2..0000000000000 Binary files a/third_party/dotnet/ilmerge/System.Compiler.dll and /dev/null differ diff --git a/third_party/dotnet/ilmerge/toolchain.bzl b/third_party/dotnet/ilmerge/toolchain.bzl deleted file mode 100644 index 5b391c6769fd0..0000000000000 --- a/third_party/dotnet/ilmerge/toolchain.bzl +++ /dev/null @@ -1,33 +0,0 @@ -def _merge_toolchain_impl(ctx): - toolchain_info = platform_common.ToolchainInfo( - merge_tool = ctx.files.merge_tool[0].path, - ) - return [toolchain_info] - -merge_toolchain = rule( - implementation = _merge_toolchain_impl, - attrs = { - "merge_tool": attr.label( - executable = True, - allow_single_file = True, - mandatory = True, - cfg = "exec", - ), - }, -) - -def configure_toolchain(): - merge_toolchain( - name = "ilmerger", - merge_tool = "ilmerge.exe", - ) - - native.toolchain( - name = "ilmerge_toolchain", - exec_compatible_with = [ - "@platforms//os:windows", - "@platforms//cpu:x86_64", - ], - toolchain = ":ilmerger", - toolchain_type = ":toolchain_type", - ) diff --git a/third_party/dotnet/ilrepack/BUILD.bazel b/third_party/dotnet/ilrepack/BUILD.bazel deleted file mode 100644 index da51758bfc59d..0000000000000 --- a/third_party/dotnet/ilrepack/BUILD.bazel +++ /dev/null @@ -1,3 +0,0 @@ -licenses(["notice"]) - -exports_files(["ilrepack.exe"]) diff --git a/third_party/dotnet/ilrepack/ILRepack.exe b/third_party/dotnet/ilrepack/ILRepack.exe deleted file mode 100644 index a83fd134e3044..0000000000000 Binary files a/third_party/dotnet/ilrepack/ILRepack.exe and /dev/null differ diff --git a/third_party/dotnet/nuget/BUILD.bazel b/third_party/dotnet/nuget/BUILD.bazel deleted file mode 100644 index 31fd8792f8800..0000000000000 --- a/third_party/dotnet/nuget/BUILD.bazel +++ /dev/null @@ -1,3 +0,0 @@ -licenses(["notice"]) - -exports_files(["nuget.exe"]) diff --git a/third_party/dotnet/nuget/NuGet.exe b/third_party/dotnet/nuget/NuGet.exe deleted file mode 100644 index 5943f680ceae7..0000000000000 Binary files a/third_party/dotnet/nuget/NuGet.exe and /dev/null differ diff --git a/third_party/dotnet/nuget/packages/benderproxy.1.0.0.nupkg b/third_party/dotnet/nuget/packages/benderproxy.1.0.0.nupkg deleted file mode 100644 index 5f2e0f7d360c9..0000000000000 Binary files a/third_party/dotnet/nuget/packages/benderproxy.1.0.0.nupkg and /dev/null differ diff --git a/third_party/dotnet/nuget/packages/castle.core.4.4.0.nupkg b/third_party/dotnet/nuget/packages/castle.core.4.4.0.nupkg deleted file mode 100644 index 96a912a002b7a..0000000000000 Binary files a/third_party/dotnet/nuget/packages/castle.core.4.4.0.nupkg and /dev/null differ diff --git a/third_party/dotnet/nuget/packages/commandlineparser.2.8.0.nupkg b/third_party/dotnet/nuget/packages/commandlineparser.2.8.0.nupkg deleted file mode 100644 index 22cfce8603d7b..0000000000000 Binary files a/third_party/dotnet/nuget/packages/commandlineparser.2.8.0.nupkg and /dev/null differ diff --git a/third_party/dotnet/nuget/packages/handlebars.net.1.11.5.nupkg b/third_party/dotnet/nuget/packages/handlebars.net.1.11.5.nupkg deleted file mode 100644 index 380b31c2f5e87..0000000000000 Binary files a/third_party/dotnet/nuget/packages/handlebars.net.1.11.5.nupkg and /dev/null differ diff --git a/third_party/dotnet/nuget/packages/humanizer.core.2.8.26.nupkg b/third_party/dotnet/nuget/packages/humanizer.core.2.8.26.nupkg deleted file mode 100644 index 4eb69fc20b230..0000000000000 Binary files a/third_party/dotnet/nuget/packages/humanizer.core.2.8.26.nupkg and /dev/null differ diff --git a/third_party/dotnet/nuget/packages/microsoft.csharp.4.7.0.nupkg b/third_party/dotnet/nuget/packages/microsoft.csharp.4.7.0.nupkg deleted file mode 100644 index 9e20f6817d04d..0000000000000 Binary files a/third_party/dotnet/nuget/packages/microsoft.csharp.4.7.0.nupkg and /dev/null differ diff --git a/third_party/dotnet/nuget/packages/microsoft.extensions.dependencyinjection.3.1.9.nupkg b/third_party/dotnet/nuget/packages/microsoft.extensions.dependencyinjection.3.1.9.nupkg deleted file mode 100644 index 6810415fc96ec..0000000000000 Binary files a/third_party/dotnet/nuget/packages/microsoft.extensions.dependencyinjection.3.1.9.nupkg and /dev/null differ diff --git a/third_party/dotnet/nuget/packages/microsoft.extensions.dependencyinjection.abstractions.3.1.9.nupkg b/third_party/dotnet/nuget/packages/microsoft.extensions.dependencyinjection.abstractions.3.1.9.nupkg deleted file mode 100644 index 983db667e5e09..0000000000000 Binary files a/third_party/dotnet/nuget/packages/microsoft.extensions.dependencyinjection.abstractions.3.1.9.nupkg and /dev/null differ diff --git a/third_party/dotnet/nuget/packages/microsoft.net.test.sdk.16.6.1.nupkg b/third_party/dotnet/nuget/packages/microsoft.net.test.sdk.16.6.1.nupkg deleted file mode 100644 index 7be24d6a0536f..0000000000000 Binary files a/third_party/dotnet/nuget/packages/microsoft.net.test.sdk.16.6.1.nupkg and /dev/null differ diff --git a/third_party/dotnet/nuget/packages/moq.4.12.0.nupkg b/third_party/dotnet/nuget/packages/moq.4.12.0.nupkg deleted file mode 100644 index c692a03ac25bb..0000000000000 Binary files a/third_party/dotnet/nuget/packages/moq.4.12.0.nupkg and /dev/null differ diff --git a/third_party/dotnet/nuget/packages/newtonsoft.json.13.0.1.nupkg b/third_party/dotnet/nuget/packages/newtonsoft.json.13.0.1.nupkg deleted file mode 100644 index 9eb2dddf75514..0000000000000 Binary files a/third_party/dotnet/nuget/packages/newtonsoft.json.13.0.1.nupkg and /dev/null differ diff --git a/third_party/dotnet/nuget/packages/nunit.3.13.2.nupkg b/third_party/dotnet/nuget/packages/nunit.3.13.2.nupkg deleted file mode 100644 index cf753705d73c2..0000000000000 Binary files a/third_party/dotnet/nuget/packages/nunit.3.13.2.nupkg and /dev/null differ diff --git a/third_party/dotnet/nuget/packages/nunit3testadapter.3.16.1.nupkg b/third_party/dotnet/nuget/packages/nunit3testadapter.3.16.1.nupkg deleted file mode 100644 index 5d6d81fbcfc89..0000000000000 Binary files a/third_party/dotnet/nuget/packages/nunit3testadapter.3.16.1.nupkg and /dev/null differ diff --git a/third_party/dotnet/nuget/packages/system.threading.tasks.extensions.4.5.1.nupkg b/third_party/dotnet/nuget/packages/system.threading.tasks.extensions.4.5.1.nupkg deleted file mode 100644 index 59d9d884d8440..0000000000000 Binary files a/third_party/dotnet/nuget/packages/system.threading.tasks.extensions.4.5.1.nupkg and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/CHANGES.txt b/third_party/dotnet/nunit-console-3.12.0/CHANGES.txt deleted file mode 100644 index bcdb4bd8a4591..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/CHANGES.txt +++ /dev/null @@ -1,1548 +0,0 @@ -## NUnit Console & Engine 3.12 - January 17, 2021 -## .NET Core NUnit Console 3.12 Beta 2 - January 17, 2021 - -This release contains various improvements to running tests on .NET Core and Mono, and changes to -extension loading logic to allow the Engine to better support extensions which target multiple platforms. There are additionally -a number of fixes to issues that were identified with 3.12 Beta 1. Please also be aware that this will be the last version of -the NUnit Engine to support .NET Standard 1.6. - -The .NET Core Console remains in Beta due to some unresolved dependency loading and framework targeting issues - contributions to -fix these issues would be very welcome! - -Code contributions in this release were included from Charlie Poole, Chris Maddock, Christian Bay, -Eberhard Beilharz, Ed Ball, Joseph Musser, Manohar Singh Mattias Cavigelli and Mikkel Nylander Bundgaard. Thank you to all -those who contributed both in code, and otherwise. - -Please note the below list includes only issues resolved between 3.12.0 Beta 1 and the final release. For those upgrading from 3.11.1 -or earlier, please also see the Beta release notes. - - * 511 [Build] Improve detection of installed .NET Core Runtimes - * 718 Eliminate use of Mono.Cecil - * 810 Build NUnit.ConsoleRunner.NetCore as a .NET Core Tool. - * 811 Use readonly modifier where possible - * 818 Remove redundant dependency on Microsoft.DotNet.InternalAbstractions for platforms other than .NET Standard 1.6 - * 825 Revert change to increment nunit.engine.api assembly version - * 829 Revert change made to IExtensionService in nunit.engine.api - * 830 [CI] Test on .NET 5.0 - * 837 Fully remove Microsoft.Dotnet.InternalAbstractions dependency - * 844 .NET Core console runner fails to load extensions when netfx and netstandard versions conflict - * 847 [Build] Specify .NET 2.0 version of extensions for msi - * 853 [Build] Allow local build to succeed even if all runtimes are not installed - * 863 [Build] Use released version of NUnit Framework 3.13.0 - -## NUnit Console & Engine 3.12 Beta 1 - August 1, 2020 - -This is the first beta release of the NUnit Console able to run .NET Core Tests. -In addition to this, this release also contains a number of bug fixes, improvements -when running on Mono and significant refactoring work towards the goal of creating an -engine able to run tests on a wider range of .NET platforms. - -We're particularly interested in this beta release being tested by users of the .NET Core -console and users running tests on Mono. Please feedback any issues to the nunit-console repository. - -The .NET Core Console is a separate executable to the original version, and can be found in either -the .zip file download, or the new NUnit.ConsoleRunner.NetCore NuGet package. Our longer-term aim -is to create a single console which is able to run both .NET Core and .NET Framework tests. - -Code contributions in this release were included from Charlie Poole, Chris Maddock, Christian Bay, -Eberhard Beilharz, Joseph Musser, Manohar Singh and Mikkel Nylander Bundgaard. Thank you to all -those who contributed both in code, and other ways! - - * 391 Provide useful error message when agent crashes with a stack overflow exception - * 475 Create .NET Core Console Runner - * 662 Mono: Stacktrace missing files and line numbers - * 710 .NET Core engine only works when located in same directory as test assembly - * 733 iconUrl is deprecated in NuGet packages - * 740 Create separate agents for .NET 2.0-3.5 and .NET 4.x - * 747 [CI] Change macOS image version - * 748 Make Project config information available to runners - * 750 .NET Core Console Packaging - * 751 Minor updates to Contributing.MD - * 757 Unable to test net 3.5 assembly if there's incompatible extension installed - * 758 Carry CurrentDirectory over to agent Processes - * 761 Revert accidental debug message change - * 762 Simplify agent communication in preparation for new wire protocol - * 765 Split RuntimeFramework package setting into two: Requested and Target - * 768 Test run exits with an exit code of 0 if a multiple of 256 tests fail - * 775 Extension loading broken on Linux when installed from NuGet package - * 777 Remove unused code to locate engine from registry keys - * 778 Add .NET Core 3.1 build of engine to access APIs for loading .NET Core assemblies correctly - * 779 [CI] Revert to running .NET Standard Engine Tests via NUnitLite - * 783 Refactor XMLTransformResultWriterTests to avoid initialising entire engine - * 784 Fix DirectTestRunner to not give all drivers the same ID. - * 790 Fix agent debug logging - * 800 TypeLoadException thrown when changes are made to the API assembly, with multiple versions of the engine available - * 801 Begin incrementing EngineApiVersion with every release, as per Engine version - -NUnit Console & Engine 3.11.1 - February 15, 2020 -This hotfix fixes a problem with NUnit Project file settings being ignored. - -Issues Resolved - - * 730 NUnit project file settings are ignored - * 732 Upgrade Cake Build to fix Linux CI - -NUnit Console 3.11 - January 26, 2020 - -This release fixes a range of minor bugs, and includes a significant amount -of internal restructuring work. In future, this will enable improved .NET Standard -support in the engine, and a .NET Core build of the console. - -Issues Resolved - - * 22 Engine modifies TestPackage - * 53 Add project element to top-level sub-project before merging - * 181 XSLT Transform not honoring --encoding value - * 336 Should legacyCorruptedStateExceptionsPolicy enabled=true in nunit3-console.exe.config? - * 386 nUnit project loader does not work when --inprocess is set - * 453 build-mono-docker.ps1 fails to run out the box - * 514 Add higher-level unit tests for structure of TestRunners - * 586 Create Separate Addin File for the Engine NuGet Package - * 588 licenseUrl in NuGet packages are deprecated - * 591 Release 3.10 merge - * 592 Add status badge from Azure pipelines - * 594 Fixed typos in release notes - * 595 Clean extension dir before running FetchExtensions task - * 603 Engine returns assembly-level test-suite event twice - * 605 Trailing \ in --work argument causes agent to crash - * 607 Unload + Load changes TestPackage IDs - * 611 Set DisableImplicitNuGetFallbackFolder and bump Ubuntu on Travis - * 612 Fix logging when including exception - * 617 Consider expanding projects before building ITestRunner structure - * 625 [Feature] Extend data for ITestEventListener - * 628 [Question] Possible to set both labels=After and labels=Before - * 634 Remove unnecessary stream creation in XML Transform writer - * 635 Remove all #regions from codebase - * 636 Labels option: Rename On as OnOutputOnly, and deprecate On and All - * 637 Refactor RunnerSelectionTests - * 639 Engine initializes DriverService too early - * 667 Console Runner loads wrong .NET framework version when executing tests from multiple assemblies at once - * 669 nunit.console-runner-with-extensions.nuspec: Remove outdated release notes - * 671 Manually updated .NET Core SDK on Linux build - * 681 Display path and version of extension assemblies - * 683 Safely encapsulating the atomic agent database operations - * 684 Split engine into upper and lower parts - * 691 Sign NuGet Packages and msi - * 693 Update Engine tests to run on LTS .NET Core version - * 696 Minimal compilation/test of .NET Core Console - * 698 Update NUnit v2 driver extension in combined packages - * 703 Update Console options for .NET Core Console build - * 704 Agent in nupkg should not be referenced and causes warnings in consuming projects - * 706 build.cake maintenance - * 707 Set agent to reference core and not full engine - * 713 Engine will not recognize .NET Framework versions beyond 4.5 - - -NUnit Console 3.10 - March 24, 2019 - -This release merges the .NET Standard version of the engine back into the nunit.engine -NuGet package and adds a .NET Standard 2.0 version of the engine that re-enables most -services and extensions. This deprecates the `nunit.engine.netstandard` NuGet package. -Any test runners using the old .NET Standard version of the engine should switch to -this release. - -The `--params` command line option which took multiple test parameters separated by -a semi-colon is now deprecated in favor of the new `--testparam` command line option. -One of the most common uses for test parameters was to pass connection strings into -tests but this required workarounds to handle the semi-colons. Now you must pass in -each test parameter separately using a `--testparam` or `-tp` option for each. - -Issues Resolved - - * 8 TempResourceFile.Dispose causes run to hang - * 23 In nunit3-console you cannot pass parameters containing ';' because they always get splitted - * 178 Add date and time to console output - * 282 "Execution terminated after first error" does not fail the console runner - * 388 Merge .NET Standard Engine back into the main solution - * 389 Update Mono.Cecil to latest - * 433 All messages from EventListenerTextWriter goes to console output independent on stream name - * 454 Misc improvements to ExtensionServiceTests - * 455 Remove CF, Silverlight and PORTABLE functionality - * 464 NUnit Console Reports Successful Exit Code When there is an Exception on Dispose - * 473 ArgumentException: DTD is prohibited in this XML document - * 476 .NET Standard engine to load extensions - * 479 Merge .NET Standard Engine code back into the main solution - * 483 Error in SetUpFixture does not result in non-zero exit code - * 485 Invalid integer arguments do not display properly in error message - * 493 Correct order of params to Guard.ArgumentValid() - * 498 Reset console colors after Ctrl-C - * 501 Create result directory if it does not exist - * 502 Remove unused method from build.cake - * 506 Dogfood NUnit.Analyzers via the nunit-console tests - * 508 Re-Enable OSX CI tests - * 515 Appveyor CI failing on master - * 518 Correct Refactoring Error - * 519 Break up multiple console error messages with colour - * 523 Reloading multiple files causes exception - * 524 .NET Standard 2.0 engine crashes when .NET Framework extensions are in Global NuGet Cache - * 525 Separate NuGet Restore for Appveyor build - * 531 Building a forked master branch results in publishing artifacts - * 533 Duplicate ids when loading a project - * 544 Deprecate nunit.netstandard.engine NuGet package - * 546 Cannot run a project file using --process:Separate - * 547 --labels=Before ignores --nocolor - * 556 Appveyor CI failing due to nuget restore - * 557 Disable CliFallbackFolder as a nuget source - * 562 Fix typo in comment - * 563 ProjectService is incorrectly initialized in agents - * 565 Eliminate -dbg suffix from version - * 566 SettingsService is not needed in agents - * 567 Unnecessary call to IProjectService - * 571 Space characters in the work directory path are not properly handled - * 583 NUnit Console NuGet Package Doesn't Load Extensions - * 587 Disable new MSBuild GenerateSupportedRuntime functionality, which breaks framework targetting - -NUnit Console 3.9 - September 5, 2018 - -This release should stop the dreaded SocketException problem on shutdown. The -console also no longer returns -5 when AppDomains fail to unload at the end of a -test run. These fixes should make CI runs much more stable and predictable. - -For developers working on the NUnit Console and Engine project, Visual Studio -2017 update 5 or newer is now required to compile on the command line. This does -not effect developers using NUnit or the NUnit Console, both of which support building -and running your tests in any IDE and on any .NET Framework back to .NET 2.0. - -Issues Resolved - - * 103 The switch statement does not cover all values of the 'RuntimeType' enum: NetCF. - * 218 Move Distribution back into the nunit-console project. - * 253 Master Chocolatey issue - * 255 SocketException thrown during console run - * 312 CI failure: SocketException - * 360 CommandLineOption --err does not write error input to ErrorFile - * 367 nunit3-console loads nunit.framework with partial name - * 370 Nunit.Console 3.8 - Socket Exception - * 371 Remove -5 exit code on app domain unload failures - * 394 Multi-targeted Engine Extensions - * 399 Fix minor doccoment issues - * 411 Make output received when providing user friendly messages unloading the domain more user friendly - * 412 Extensions not dectected for version 3.9.0-dev-03997 - * 436 NUnitEngineException : Unable to acquire remote process agent - * 446 Output CI version info to console - * 448 Update vs-project-loader extension to 3.8.0 - * 450 Update NUnit.Extension.VSProjectLoader to 3.8.0 - * 456 NuGet Package : Add `repository` metadata. - * 461 Use MSBuild /restore - -NUnit Console 3.8 - January 27, 2018 - -This release includes several fixes when unloading AppDomains and better error reporting. The -aggregate NuGet packages also include updated versions of several extensions. - -Issues Resolved - - * 6 TypeLoadException in nunit3-console 3.0.1 - * 93 Update Readme with information about the NuGet packages - * 111 Provide better info when AppDomain won't unload - * 116 NUnit 3.5.0 defaults to single agent process when using an nunit project file - * 191 Exception encountered unloading AppDomain - * 228 System.Reflection.TargetInvocationException with nunit3-console --debug on Mono - * 246 No way to specify app.config with console runner - * 256 Rewrite ConsoleRunnerTests.ThrowsNUnitEngineExceptionWhenTestResultsAreNotWriteable() - * 259 NUnit3 agent hangs after encountering an "CannotUnloadAppDomainException" - * 262 Transform file existence check should check current directory instead of WorkDirectory - * 267 Fix possible NRE - * 273 Insufficient error handling message in ProcessRunner -> RunTests method - * 275 Integrate chocolatey packages with build script - * 284 NUnit3: An exception occured in the driver while loading tests... bei NUnit.Engine.Runners.ProcessRunner.RunTests(ITestEventListener listener, TestFilter filter) - * 285 ColorConsoleWriter.WriteLabel causes NullReferenceException - * 289 Warnings not displayed - * 298 Invalid --framework option throws exception - * 300 Agents do not respect the Console WORK parameter when writing log file - * 304 Catch agent debugger launch exceptions, and improve agent crash handling - * 309 No driver found if framework assembly reference has uppercase characters - * 314 Update NUnit.Extension.VSProjectLoader to 3.7.0 - * 318 Update NUnit.Extension.TeamCityEventListener to 1.0.3 - * 320 Return error code -5 when AppDomain fails to unload - * 323 Assertion should not be ordered in AgentDatabaseTests - * 343 Superfluous unload error shown in console - * 349 Get all TestEngine tests running under NUnitAdapter apart from those . - * 350 Invalid assemblies no longer give an error message - * 355 NuGet package links to outdated license - -NUnit Console 3.7 - July 13, 2017 - -Engine - - * Creates a .NET Standard version of the engine for use in the Visual Studio Adapter - * Fixes several issues that caused the runner to exit with a SocketException - -Issues Resolved - - * 10 Create a .NET Standard version of the Engine - * 11 insufficient info on driver reflection exception - * 12 Upgrade Cake build to latest version - * 24 Update --labels switch with option to show real-time pass/fail results in console runner - * 31 Nunit 3.4.1 NUnit.Engine.Runners - * 72 TestContext.Progress.Write writes new line - * 82 Remove unused repository paths from repositories.config - * 99 Remove unused --verbose and --full command line options - * 126 Resolve differences between NUnit Console and NUnitLite implementations of @filename - * 162 Add namespace keyword to Test Selection Language - * 171 Socket Exception when stopping Remote Agent - * 172 Limit Language level to C#6 - * 193 Settings are stored with invariant culture but retrieved with CurrentCulture - * 194 Better logging or error handling in SettingsStore.SaveSettings - * 196 Allow comments in @FILE files - * 200 Remove obsolete warnings from build script - * 206 Remove reference to removed noxml option - * 207 Create Chocolatey package(s) for the console - * 208 Explore flags test update - * 213 Master build failing after merging .NET Standard Engine - * 216 Compiling mock-assembly in Visual Studio 2017 fails - * 217 NUnit .NET Standard NuGet package missing some values - * 219 Runtime.Remoting.RemotingException in NUnit.Engine.Runners.ProcessRunner.Dispose - * 221 Added missing nuget package info - * 222 Improve missing agent error message - * 225 SocketException thrown by nunit3-console.exe --explore option - * 248 Agent TestEngine contains duplicate services - * 254 Correct misprint ".con" -> ".com" - * 252 Console crashes when specifying both format and transform for result - -NUnit Console 3.6.1 - March 6, 2017 - -Engine - - * This hotfix release addresses a race condition in the Engine that caused - tests to intermittently fail. - -Issues Resolved - - * 168 Intermittent errors while running tests after updating to 3.6 - -NUnit Console 3.6 - January 14, 2017 - -Console Runner - - * Added command line option --skipnontestassemblies to skip assemblies that do - not contain tests without raising an error and to skip assemblies that contain - the NUnit.Framework.NonTestAssemblyAttribute. - * Messages from the new Multiple Assert blocks will be displayed individually - * Warnings from the new Warn.If, Warn.Unless and Assert.Warn are now displayed - -Engine - - * NUnit agents now monitor the running engine process and will terminate themselves - if the parent runner process is killed or dies - -Issues Resolved - - * 16 NUnit Engine Tests fail if not run from test directory - * 18 Invalid file type is shown in XML as type="Assembly" - * 23 In nunit3-console you cannot pass parameters containing ';' because they always get split - * 37 NUnit 3 console should produce xml events for ITestEventListener which contain - unique id in the scope of all test agents for NUnit 2 tests - * 58 System.Configuration.ConfigurationErrorsException thrown in multiple domain mode. - * 62 NUnit3 Fails on DLL with no Tests, Unlike NUnit2 - * 100 Class NUnit.Engine.Services.ResultWriters.Tests.SchemaValidator is never used - * 101 Method NUnit.Options.OptionSet.Unprocessed always returns "false" - * 104 Type of variable enumerated in 'foreach' is not guaranteed to be castable - * 110 Writability check could give a friendlier message. - * 113 Add task descriptions to Build.cake - * 127 Modify console runner to display multiple assert information - * 128 Terminate agent if main process has terminated - * 133 NUnit downloadable packages zip file naming is confusing and non-intuitive - * 136 Handle early termination of multiple assert block - * 138 Report Warnings in console runner - * 145 MasterTestRunner.RunAsync no longer provides start-run and test-run events - * 151 Unexpected behaviour from --framework flag - * 153 Remove some settings used by the engine - * 156 Use high-quality icon for nuspecs - * 157 Fix Detection of invalid framework when --inprocess - * 159 Update extension versions in the NuSpec Files - -NUnit Console 3.5 - October 11, 2016 - -This is the first version of NUnit where the framework will be released separately from the -console runner, engine and other extensions. From this point forward, the NUnit console and engine will be -released on its own schedule that is not bound to that of any other NUnit project and version numbers -may diverge over time. - -This is also the first release where the NUnit Framework will not be included in the installer. Only -the console runner, engine and extensions will be available as an MSI installer. - -Console Runner - - * When running multiple assemblies in their own projects with `--agents` set to a number that is - lower than the number of assemblies, the number of concurrent processes is limited to that number. - Previously, all processes were created at the start of the run. - -Engine - - * All of our extensions have been moved to separate repositories and are now built and - distributed separately. This includes the NUnit V2 Driver, NUnit V2 Result Writer, - NUnit Project Loader and VS Project Loader. The Teamcity extension was moved to its - own repository previously. - -* Newer versions of Mono are now detected and used under Windows when requested. - -* It is now possible to write a custom framework driver extension for NUnit 3, which will - be used instead of the built-in driver. - -Issues Resolved Prior to Split (These are in the nunit repository) - - * 1389 specifying solution and --agents is not working with nunit3-console - * 1595 Separate installer project - * 1596 Eliminate code sharing across projects to be split - * 1598 Split framework and console/engine into separate projects - * 1600 Split Engine Extensions into separarate projects - * 1610 Refactor dependencies in build.cake - * 1621 Remove console and command-line option files from common - * 1641 Create OSX CI Build on Travis - * 1677 Console help should indicate extension needed to use --teamcity - * 1687 Create nunit.engine.api NuGet package - * 1702 Create separate repo for teamcity event listener extension - * 1716 Move installer to new repository - * 1717 Change suffix for master builds - * 1719 Restore teamcity extension to NUnit.Console and NUnit.Runners packages - * 1723 Remove Cake target TestAll - * 1727 V2 Framework Driver does not include class or method name in XML - * 1732 NullReferenceException when using either --inprocess or --domain=Multiple options - * 1739 Create separate copies of MockAssembly for framework, engine and extensions - * 1741 --domain=None does not work - * 1776 Logger in DefaultTestAssemblyBuilder is retrieved before InternalTrace is initialized - * 1800 Remove Console/Engine projects from nunit.linux.sln - -Issues Resolved After Split (These are in the nunit-console repository) - - * 2 Split Engine Extensions into separate projects - * 30 Error message "File type is not supported" when uses .nunit configuration file - * 34 Mono detection on Windows broken - * 36 Console runner spawns too many agents - * 43 Agent's process stays in memory when it was failed to unload appdomain - * 47 Move V2 framework driver extension to its own repo - * 48 Move V2 XML result writer to its own repo - * 49 Move NUnit project loader to its own repo - * 50 Move VS project loader to its own repo - * 63 --encoding option for Console stdout - * 67 Update text of NUnit.ConsoleRunner NuGet package - * 70 Allow custom framework drivers to run before NUnit3DriverFactory - * 88 The --labels:All option displays at the wrong time - -NUnit 3.4.1 - June 30, 2016 - -Console Runner - - * A new option, --list-extensions, will display all the engine extensions that - have been installed by the engine. - -Issues Resolved - - * 1623 NUnit 3.4 is not integrated with TeamCity - * 1626 NUnit.ConsoleRunner is not picking up NUnit.Extension.NUnitV2ResultWriter - * 1628 Agent's process stays in memory when it was failed to unload AppDomain - * 1635 Console option to list loaded extensions - -NUnit 3.4 - June 25, 2016 - -Framework - - * Improvements in comparing equality using IEquatable - * Test case names will only be truncated if the runner requests it or it is overridden on the command line - with the --test-name-format option - * The .NET 2.0 version of the framework now includes LINQ. If your tests target .NET 2.0, you can now use - LINQ queries in your tests - -Engine - - * The TeamCity event listener has been separated out into an engine extension - * Fixed numerous issues around thread safety of parallel test runs - * Additional fixes to reduce memory usage - * Fixes for Mono 4.4 - -Console Runner - - * There is a new --params command line option that allows you to pass parameters to your tests - which can be retrieved using TestContext.Parameters - * Another new command line option --loaduserprofile causes the User Profile to be loaded into the - NUnit Agent process. - -Issues Resolved - - * 329 (CLI) Runner does not report AppDomain unloading timeout - * 720 Need a way to get test-specific command-line arguments at runtime - * 1010 Need to control engine use of extensions - * 1139 Nunit3 console doesn't show test output continously - * 1225 The --teamcity option should really be an extension - * 1241 Make TestDirectory accessible when TestCaseSource attributes are evaluated - * 1366 Classname for inherited test is not correct - * 1371 Support `dotnet test` in .NET CLI and .NET Core - * 1379 Console returns 0 for invalid fixtures - * 1422 Include TestListWithEmptyLine.tst in ZIP Package - * 1423 SingleThreaded attribute should raise an error if a thread is required - * 1425 Lazy initialization of OutWriter in TestResult is not thread safe - * 1427 Engine extensions load old packages - * 1430 TestObjects are retained for lifetime of test run, causing high memory usage - * 1432 NUnit hangs when reporting to TeamCity - * 1434 TestResult class needs to be thread-safe - * 1435 Parallel queue creation needs to be thread-safe - * 1436 CurrentFramework and Current Platform need to be more thread-safe - * 1439 EqualConstraint does Not use Equals Override on the Expected Object - * 1441 Add Linq for use internally in .NET 2.0 code - * 1446 TestOrderAttributeTests is not public - * 1450 Silverlight detection doesn't work when building on 32-bit OS - * 1457 Set the 2.0 build to ignore missing xml dcoumentation - * 1463 Should TestResult.AssertCount have a public setter? - * 1464 TNode.EscapeInvalidXmlCharacters recreates Regex continually - * 1470 Make EventQueue and associated classes lock-less and thread safe - * 1476 Examine need for "synchronous" events in event queue - * 1481 TestCase with generic return type causes NullReferenceException - * 1483 Remoting exceptions during test execution - * 1484 Comparing Equality using IEquatable Should Use Most Specific Method - * 1493 NUnit 2 test results report ParameterizedMethod but should be ParameterizedTest - * 1507 NullReferenceException when null arguments are used in TestFixtureAttribute - * 1513 Add new teamcity extension to packages - * 1518 NUnit does not send the "testStarted" TeamCity service message when exception was thrown from SetUp/OneTimeSetUp - * 1520 Detect Portable, Silverlight and Compact and give error message - * 1528 Use of Sleep(0) in NUnit - * 1543 Blank name attribute in nunit2-formatted XML result file test-run element - * 1547 Create separate assembly for System.Linq compatibility classes - * 1548 Invalid Exception when engine is in a 32-bit process - * 1549 Changing default behavior for generating test case names - * 1551 Path in default .addins file for ConsoleRunner package may not exist - * 1555 EndsWith calls in Constraint constructor can cause major perf issues - * 1560 Engine writes setting file unnecessarily - * 1573 Move Nunit.Portable.Agent to new Repo - * 1579 NUnit v3 dangerously overrides COMPLUS_Version environment variable - * 1582 Mono 4.4.0 Causes Test Failures - * 1593 Nunit Console Runner 3.2.1 and Mono 4.4 throws RemotingException - * 1597 Move Portable agent to its own repository - * 1605 TeamCity package has no pre-release suffix - * 1607 nunit.nuget.addins discovery pattern is wrong then restored through project.json - * 1617 Load user profile on test runners - -NUnit 3.2.1 - April 19, 2016 - -Framework - - * The output and error files are now thread safe when running tests in parallel - * Added a .NET 3.5 build of the framework preventing conflicts with the compatiblity classes in the 2.0 framework - * Added a SingleThreadedAttribute to be added to a TestFixture to indicate all child tests should run on the same thread - -Engine - - * Unless required, run all tests within a fixture on the same thread - * Added an EventListener extension point - * Reduced memory usage - -Console Runner - - * No longer probes for newer versions of the engine, instead uses the engine that is included with the console - -Issues Resolved - - * 332 Add CF to the Appveyor CI build - * 640 Keep CF Build (and other future builds) in Sync - * 773 Upgrade Travis CI from Legacy Infrastructure - * 1141 Explicit Tests get run when using --where with some filters - * 1161 NUnit3-Console should disallow the combination of --inprocess and --x86, giving an error message - * 1208 Apartment on assembly level broken - * 1231 Build may silently fail some tests - * 1247 Potential memory issue - * 1266 SetCultureAttribute does not work if set on assembly level - * 1302 Create EventListener ExtensionPoint for the Engine - * 1317 Getting CF framework unit tests running on CI build - * 1318 NUnit console runner fails with error code -100 - * 1327 TestCaseSource in NUnit 3 converts an argument declared as String[] to String - * 1329 Unable to build without Compact Framework - * 1333 Single Thread per Worker - * 1338 BUILDING.txt is outdated - * 1349 Collision on System.Func from nunit.framework with System.Core in .Net 3.5 (CS0433) - * 1352 Tests losing data setup on thread - * 1359 Compilation error in NUnitPortableDriverTests.cs - * 1383 Skip Silverlight build if SDK not installed - * 1386 Bug when using Assert.Equals() with types that explicitly implement IEquatable - * 1390 --testlist with file with blank first line causes IndexOutOfRangeException - * 1399 Fixed NullReference issue introduced by the fix for #681 - * 1405 ITestRunner.StopRun throws exception of type 'System.MissingMethodException' - * 1406 TextCapture is not threadsafe but is used to intercept calls that are expected to be threadsafe - * 1410 Make OutFile and ErrFile streamwriters synchronized - * 1413 Switch console to use a local engine - -NUnit 3.2 - March 5, 2016 - -Framework - - * Added an Order attribute that defines the order in which tests are run - * Added Assert.ThrowsAsync for testing if async methods throw an exception - * You can now compare unlike collections using Is.EquivalentTo().Using(...) - * Added the ability to add custom message formatters to MsgUtils - * TestCaseSourceAttribute now optionally takes an array of parameters that can be passed to the source method - * Added Is.Zero and Is.Not.Zero to the fluent syntax as a shorter option for Is.EqualTo(0) and Is.Not.EqualTo(0) - -Engine - - * Engine extensions can be installed via NuGet packages - -Issues Resolved - - * 170 Test Order Attribute - * 300 Create an NUnit Visual Studio Template - * 464 Async delegate assertions - * 532 Batch runner for Silverlight tests - * 533 Separate NUnitLite runner and autorunner - * 681 NUnit agent cannot resolve test dependency assemblies when mixed mode initialization runs in the default AppDomain - * 793 Replace CoreEngine by use of Extensions - * 907 Console report tests are too fragile - * 922 Wrap Console in NUnitLite - * 930 Switch from MSBuild based build system to Cake - * 981 Define NUnit Versioning for post-3.0 Development - * 1004 Poor formatting of results for Assert.AreEqual(DateTimeOffset, DateTimeOffset) - * 1018 ArgumentException when 2.x version of NUnit Framework is in the bin directory - * 1022 Support Comparing Unlike Collections using Is.EquivalentTo().Using(...) - * 1044 Re-order Test Summary Errors/Failures - * 1066 ApartmentAttribute and TestCaseAttribute(s) do not work together - * 1103 Can't use TestCaseData from base class - * 1109 NullReferenceException when using inherited property for ValueSource - * 1113 Console runner and xml output consistency - * 1117 Fix misbehaviour of Throws.Exception with non-void returning functions - * 1120 NUnitProject should parse .nunit project files containing Xml Declarations - * 1121 Usage of field set to null as value source leads to somewhat cryptic error - * 1122 Region may be disposed before test delegate is executed - * 1133 Provide a way to install extensions as nuget packages - * 1136 Don't allow V2 framework to update in V2 driver tests - * 1171 A bug when using Assert.That() with Is.Not.Empty - * 1185 Engine finds .NET 4.0 Client Profile twice - * 1187 ITestAssemblyRunner.StopRun as implemented by NUnitTestAssemblyRunner - * 1195 name attribute in test-suite and test-results element of output xml is different to nunit 2.6.4 using nunit2-format - * 1196 Custom value formatter for v3 via MsgUtils - * 1210 Available runtimes issues - * 1230 Add ability for testcasedatasource to have parameters passed to methods - * 1233 Add TestAssemblyRunner tests to both portable and silverlight builds - * 1234 Have default NUnitLite Runner Program.cs return exit code - * 1236 Make Appveyor NuGet feed more useable - * 1246 Introduce Is.Zero syntax to test for zero - * 1252 Exception thrown when any assembly is not found - * 1261 TypeHelper.GetDisplayName generates the wrong name for generic types with nested classes - * 1278 Fix optional parameters in TestCaseAttribute - * 1282 TestCase using Params Behaves Oddly - * 1283 Engine should expose available frameworks. - * 1286 value of the time attribute in nunit2 outputs depends on the machine culture - * 1297 NUnit.Engine nuget package improvements - * 1301 Assert.AreNotSame evaluates ToString unnecessarily - -NUnit 3.0.1 - December 1, 2015 - -Console Runner - - * The Nunit.Runners NuGet package was updated to become a meta-package that pulls in the NUnit.Console package - * Reinstated the --pause command line option that will display a message box allowing you to attach a debugger if the --debug option does not work - -Issues Resolved - - * 994 Add max number of Agents to the NUnit project file - * 1014 Ensure NUnit API assembly updates with MSI installs - * 1024 Added --pause flag to console runner - * 1030 Update Nunit.Runners package to 3.0 - * 1033 "No arguments were provided" with Theory and Values combination - * 1035 Check null arguments - * 1037 Async tests not working on Windows 10 Universal - * 1041 NUnit2XmlResult Writer is reporting Sucess when test fails - * 1042 NUnit2 reports on 3.0 is different than 2.6.4 - * 1046 FloatingPointNumerics.AreAlmostEqualUlps throws OverflowException - * 1049 Cannot select Generic tests from command line - * 1050 Do not expose System.Runtime.CompilerServices.ExtensionAttribute to public - * 1054 Create nuget feeds for CI builds on Appveyor - * 1055 nunit3 console runner --where option does not return error on invalid selection string - * 1060 Remove "Version 3" from NUnit Nuget Package - * 1061 Nunit30Settings.xml becomes corrupted - * 1062 Console.WriteLine statements in "OneTimeSetUp" and "OneTimeTearDown" annotated methods are not directed to the console when using nunit3-console.exe runner - * 1063 Error in Random Test - -NUnit 3.0.0 Final Release - November 15, 2015 - -Issues Resolved - - * 635 Mono 4.0 Support - -NUnit 3.0.0 Release Candidate 3 - November 13, 2015 - -Engine - - * The engine now only sets the config file for project.nunit to project.config if project.config exists. Otherwise, each assembly uses its own config, provided it is run in a separate AppDomain by itself. - - NOTE: It is not possible for multiple assemblies in the same AppDomain to use different configs. This is not an NUnit limitation, it's just how configs work! - -Issues Resolved - - * 856 Extensions support for third party runners in NUnit 3.0 - * 1003 Delete TeamCityEventHandler as it is not used - * 1015 Specifying .nunit project and --framework on command line causes crash - * 1017 Remove Assert.Multiple from framework - -NUnit 3.0.0 Release Candidate 2 - November 8, 2015 - -Engine - - * The IDriverFactory extensibility interface has been modified. - -Issues Resolved - - * 970 Define PARALLEL in CF build of nunitlite - * 978 It should be possible to determine version of NUnit using nunit console tool - * 983 Inconsistent return codes depending on ProcessModel - * 986 Update docs for parallel execution - * 988 Don't run portable tests from NUnit Console - * 990 V2 driver is passing invalid filter elements to NUnit - * 991 Mono.Options should not be exposed to public directly - * 993 Give error message when a regex filter is used with NUnit V2 - * 997 Add missing XML Documentation - * 1008 NUnitLite namespace not updated in the NuGet Packages - -NUnit 3.0.0 Release Candidate - November 1, 2015 - -Framework - - * The portable build now supports ASP.NET 5 and the new Core CLR. - - NOTE: The `nunit3-console` runner cannot run tests that reference the portable build. - You may run such tests using NUnitLite or a platform-specific runner. - - * `TestCaseAttribute` and `TestCaseData` now allow modifying the test name without replacing it entirely. - * The Silverlight packages are now separate downloads. - -NUnitLite - - * The NUnitLite runner now produces the same output display and XML results as the console runner. - -Engine - - * The format of the XML result file has been finalized and documented. - -Console Runner - - * The console runner program is now called `nunit3-console`. - * Console runner output has been modified so that the summary comes at the end, to reduce the need for scrolling. - -Issues Resolved - - * 59 Length of generated test names should be limited - * 68 Customization of test case name generation - * 404 Split tests between nunitlite.runner and nunit.framework - * 575 Add support for ASP.NET 5 and the new Core CLR - * 783 Package separately for Silverlight - * 833 Intermittent failure of WorkItemQueueTests.StopQueue_WithWorkers - * 859 NUnit-Console output - move Test Run Summary to end - * 867 Remove Warnings from Ignored tests - * 868 Review skipped tests - * 887 Move environment and settings elements to the assembly suite in the result file - * 899 Colors for ColorConsole on grey background are too light - * 904 InternalPreserveStackTrace is not supported on all Portable platforms - * 914 Unclear error message from console runner when assembly has no tests - * 916 Console runner dies when test agent dies - * 918 Console runner --where parameter is case sensitive - * 920 Remove addins\nunit.engine.api.dll from NuGet package - * 929 Rename nunit-console.exe - * 931 Remove beta warnings from NuGet packages - * 936 Explicit skipped tests not displayed - * 939 Installer complains about .NET even if already installed - * 940 Confirm or modify list of packages for release - * 947 Breaking API change in ValueSourceAttribute - * 949 Update copyright in NUnit Console - * 954 NUnitLite XML output is not consistent with the engine's - * 955 NUnitLite does not display the where clause - * 959 Restore filter options for NUnitLite portable build - * 960 Intermittent failure of CategoryFilterTests - * 967 Run Settings Report is not being displayed. - -NUnit 3.0.0 Beta 5 - October 16, 2015 - -Framework - - * Parameterized test cases now support nullable arguments. - * The NUnit framework may now be built for the .NET Core framework. Note that this is only available through building the source code. A binary will be available in the next release. - -Engine - - * The engine now runs multiple test assemblies in parallel by default - * The output XML now includes more information about the test run, including the text of the command used, any engine settings and the filter used to select tests. - * Extensions may now specify data in an identifying attribute, for use by the engine in deciding whether to load that extension. - - -Console Runner - - * The console now displays all settings used by the engine to run tests as well as the filter used to select tests. - * The console runner accepts a new option --maxagents. If multiple assemblies are run in separate processes, this value may be used to limit the number that are executed simultaneously in parallel. - * The console runner no longer accepts the --include and --exclude options. Instead, the new --where option provides a more general way to express which tests will be executed, such as --where "cat==Fast && Priority==High". See the docs for details of the syntax. - * The new --debug option causes NUnit to break in the debugger immediately before tests are run. This simplifies debugging, especially when the test is run in a separate process. - -Issues Resolved - - * 41 Check for zeroes in Assert messages - * 254 Finalize XML format for test results - * 275 NUnitEqualityComparer fails to compare IEquatable where second object is derived from T - * 304 Run test Assemblies in parallel - * 374 New syntax for selecting tests to be run - * 515 OSPlatform.IsMacOSX doesn't work - * 573 nunit-console hangs on Mac OS X after all tests have run - * 669 TeamCity service message should have assembly name as a part of test name. - * 689 The TeamCity service message "testFinished" should have an integer value in the "duration" attribute - * 713 Include command information in XML - * 719 We have no way to configure tests for several assemblies using NUnit project file and the common installation from msi file - * 735 Workers number in xml report file cannot be found - * 784 Build Portable Framework on Linux - * 790 Allow Extensions to provide data through an attribute - * 794 Make it easier to debug tests as well as NUnit itself - * 801 NUnit calls Dispose multiple times - * 814 Support nullable types with TestCase - * 818 Possible error in Merge Pull Request #797 - * 821 Wrapped method results in loss of result information - * 822 Test for Debugger in NUnitTestAssemblyRunner probably should not be in CF build - * 824 Remove unused System.Reflection using statements - * 826 Randomizer uniqueness tests fail randomly! - * 828 Merge pull request #827 (issue 826) - * 830 Add ability to report test results synchronously to test runners - * 837 Enumerators not disposed when comparing IEnumerables - * 840 Add missing copyright notices - * 844 Pull Request #835 (Issue #814) does not build in CF - * 847 Add new --process:inprocess and --inprocess options - * 850 Test runner fails if test name contains invalid xml characters - * 851 'Exclude' console option is not working in NUnit Lite - * 853 Cannot run NUnit Console from another directory - * 860 Use CDATA section for message, stack-trace and output elements of XML - * 863 Eliminate core engine - * 865 Intermittent failures of StopWatchTests - * 869 Tests that use directory separator char to determine platform misreport Linux on MaxOSX - * 870 NUnit Console Runtime Environment misreports on MacOSX - * 874 Add .NET Core Framework - * 878 Cannot exclude MacOSX or XBox platforms when running on CF - * 892 Fixed test runner returning early when executing more than one test run. - * 894 Give nunit.engine and nunit.engine.api assemblies strong names - * 896 NUnit 3.0 console runner not placing test result xml in --work directory - -NUnit 3.0.0 Beta 4 - August 25, 2015 - -Framework - - * A new RetryAttribute allows retrying of failing tests. - * New SupersetConstraint and Is.SupersetOf syntax complement SubsetConstraint. - * Tests skipped due to ExplicitAttribute are now reported as skipped. - -Engine - - * We now use Cecil to examine assemblies prior to loading them. - * Extensions are no longer based on Mono.Addins but use our own extension framework. - -Issues Resolved - - * 125 3rd-party dependencies should be downloaded on demand - * 283 What should we do when a user extension does something bad? - * 585 RetryAttribute - * 642 Restructure MSBuild script - * 649 Change how we zip packages - * 654 ReflectionOnlyLoad and ReflectionOnlyLoadFrom - * 664 Invalid "id" attribute in the report for case "test started" - * 685 In the some cases when tests cannot be started NUnit returns exit code "0" - * 728 Missing Assert.That overload - * 741 Explicit Tests get run when using --exclude - * 746 Framework should send events for all tests - * 747 NUnit should apply attributes even if test is non-runnable - * 749 Review Use of Mono.Addins for Engine Extensibility - * 750 Include Explicit Tests in Test Results - * 753 Feature request: Is.SupersetOf() assertion constraint - * 755 TimeOut attribute doesn't work with TestCaseSource Attribute - * 757 Implement some way to wait for execution to complete in ITestEngineRunner - * 760 Packaging targets do not run on Linux - * 766 Added overloads for True()/False() accepting booleans - * 778 Build and build.cmd scripts invoke nuget.exe improperly - * 780 Teamcity fix - * 782 No sources for 2.6.4 - -NUnit 3.0.0 Beta 3 - July 15, 2015 - -Framework - - * The RangeAttribute has been extended to support more data types including - uint, long and ulong - * Added platform support for Windows 10 and fixed issues with Windows 8 and - 8.1 support - * Added async support to the portable version of NUnit Framework - * The named members of the TestCaseSource and ValueSource attributes must now be - static. - * RandomAttribute has been extended to add support for new data types including - uint, long, ulong, short, ushort, float, byte and sbyte - * TestContext.Random has also been extended to add support for new data types including - uint, long, ulong, short, ushort, float, byte, sbyte and decimal - * Removed the dependency on Microsoft.Bcl.Async from the NUnit Framework assembly - targeting .NET 4.0. If you want to write async tests in .NET 4.0, you will need - to reference the NuGet package yourself. - * Added a new TestFixtureSource attribute which is the equivalent to TestCaseSource - but provides for instantiation of fixtures. - * Significant improvements have been made in how NUnit deduces the type arguments of - generic methods based on the arguments provided. - -Engine - - * If the target framework is not specified, test assemblies that are compiled - to target .NET 4.5 will no longer run in .NET 4.0 compatibility mode - - Console - - * If the console is run without arguments, it will now display help - -Issues Resolved - - * 47 Extensions to RangeAttribute - * 237 System.Uri .ctor works not properly under Nunit - * 244 NUnit should properly distinguish between .NET 4.0 and 4.5 - * 310 Target framework not specified on the AppDomain when running against .Net 4.5 - * 321 Rationalize how we count tests - * 472 Overflow exception and DivideByZero exception from the RangeAttribute - * 524 int and char do not compare correctly? - * 539 Truncation of string arguments - * 544 AsyncTestMethodTests for 4.5 Framework fails frequently on Travis CI - * 656 Unused parameter in Console.WriteLine found - * 670 Failing Tests in TeamCity Build - * 673 Ensure proper disposal of engine objects - * 674 Engine does not release test assemblies - * 679 Windows 10 Support - * 682 Add Async Support to Portable Framework - * 683 Make FrameworkController available in portable build - * 687 TestAgency does not launch agent process correctly if runtime type is not specified (i.e. v4.0) - * 692 PlatformAttribute_OperatingSystemBitNess fails when running in 32-bit process - * 693 Generic Test Method cannot determine type arguments for fixture when passed as IEnumerable - * 698 Require TestCaseSource and ValueSource named members to be static - * 703 TeamCity non-equal flowid for 'testStarted' and 'testFinished' messages - * 712 Extensions to RandomAttribute - * 715 Provide a data source attribute at TestFixture Level - * 718 RangeConstraint gives error with from and two args of differing types - * 723 Does nunit.nuspec require dependency on Microsoft.Bcl.Async? - * 724 Adds support for Nullable to Assert.IsTrue and Assert.IsFalse - * 734 Console without parameters doesn't show help - -NUnit 3.0.0 Beta 2 - May 12, 2015 - -Framework - - * The Compact Framework version of the framework is now packaged separately - and will be distributed as a ZIP file and as a NuGet package. - * The NUnit 2.x RepeatAttribute was added back into the framework. - * Added Throws.ArgumentNullException - * Added GetString methods to NUnit.Framework.Internal.RandomGenerator to - create repeatable random strings for testing - * When checking the equality of DateTimeOffset, you can now use the - WithSameOffset modifier - * Some classes intended for internal usage that were public for testing - have now been made internal. Additional classes will be made internal - for the final 3.0 release. - -Engine - - * Added a core engine which is a non-extensible, minimal engine for use by - devices and similar situations where reduced functionality is compensated - for by reduced size and simplicity of usage. See - https://github.com/nunit/dev/wiki/Core-Engine for more information. - -Issues Resolved - - * 22 Add OSArchitecture Attribute to Environment node in result xml - * 24 Assert on Dictionary Content - * 48 Explicit seems to conflict with Ignore - * 168 Create NUnit 3.0 documentation - * 196 Compare DateTimeOffsets including the offset in the comparison - * 217 New icon for the 3.0 release - * 316 NUnitLite TextUI Runner - * 320 No Tests found: Using parametrized Fixture and TestCaseSource - * 360 Better exception message when using non-BCL class in property - * 454 Rare registry configurations may cause NUnit to fail - * 478 RepeatAttribute - * 481 Testing multiple assemblies in nunitlite - * 538 Potential bug using TestContext in constructors - * 546 Enable Parallel in NUnitLite/CF (or more) builds - * 551 TextRunner not passing the NumWorkers option to the ITestAssemblyRunner - * 556 Executed tests should always return a non-zero duration - * 559 Fix text of NuGet packages - * 560 Fix PackageVersion property on wix install projects - * 562 Program.cs in NUnitLite NuGet package is incorrect - * 564 NUnitLite Nuget package is Beta 1a, Framework is Beta 1 - * 565 NUnitLite Nuget package adds Program.cs to a VB Project - * 568 Isolate packaging from building - * 570 ThrowsConstraint failure message should include stack trace of actual exception - * 576 Throws.ArgumentNullException would be nice - * 577 Documentation on some members of Throws falsely claims that they return `TargetInvocationException` constraints - * 579 No documentation for recommended usage of TestCaseSourceAttribute - * 580 TeamCity Service Message Uses Incorrect Test Name with NUnit2Driver - * 582 Test Ids Are Not Unique - * 583 TeamCity service messages to support parallel test execution - * 584 Non-runnable assembly has incorrect ResultState - * 609 Add support for integration with TeamCity - * 611 Remove unused --teamcity option from CF build of NUnitLite - * 612 MaxTime doesn't work when used for TestCase - * 621 Core Engine - * 622 nunit-console fails when use --output - * 628 Modify IService interface and simplify ServiceContext - * 631 Separate packaging for the compact framework - * 646 ConfigurationManager.AppSettings Params Return Null under Beta 1 - * 648 Passing 2 or more test assemblies targeting > .NET 2.0 to nunit-console fails - -NUnit 3.0.0 Beta 1 - March 25, 2015 - -General - - * There is now a master windows installer for the framework, engine and console runner. - -Framework - - * We no longer create a separate framework build for .NET 3.5. The 2.0 and - 3.5 builds were essentially the same, so the former should now be used - under both runtimes. - * A new Constraint, DictionaryContainsKeyConstraint, may be used to test - that a specified key is present in a dictionary. - * LevelOfParallelizationAttribute has been renamed to LevelOfParallelismAttribute. - * The Silverlight runner now displays output in color and includes any - text output created by the tests. - * The class and method names of each test are included in the output xml - where applicable. - * String arguments used in test case names are now truncated to 40 rather - than 20 characters. - -Engine - - * The engine API has now been finalized. It permits specifying a minimum - version of the engine that a runner is able to use. The best installed - version of the engine will be loaded. Third-party runners may override - the selection process by including a copy of the engine in their - installation directory and specifying that it must be used. - * The V2 framework driver now uses the event listener and test listener - passed to it by the runner. This corrects several outstanding issues - caused by events not being received and allows selecting V2 tests to - be run from the command-line, in the same way that V3 tests are selected. - -Console - - * The console now defaults to not using shadowcopy. There is a new option - --shadowcopy to turn it on if needed. - -Issues Resolved - - * 224 Silverlight Support - * 318 TestActionAttribute: Retrieving the TestFixture - * 428 Add ExpectedExceptionAttribute to C# samples - * 440 Automatic selection of Test Engine to use - * 450 Create master install that includes the framework, engine and console installs - * 477 Assert does not work with ArraySegment - * 482 nunit-console has multiple errors related to -framework option - * 483 Adds constraint for asserting that a dictionary contains a particular key - * 484 Missing file in NUnit.Console nuget package - * 485 Can't run v2 tests with nunit-console 3.0 - * 487 NUnitLite can't load assemblies by their file name - * 488 Async setup and teardown still don't work - * 497 Framework installer shold register the portable framework - * 504 Option --workers:0 is ignored - * 508 Travis builds with failure in engine tests show as successful - * 509 Under linux, not all mono profiles are listed as available - * 512 Drop the .NET 3.5 build - * 517 V2 FrameworkDriver does not make use of passed in TestEventListener - * 523 Provide an option to disable shadowcopy in NUnit v3 - * 528 V2 FrameworkDriver does not make use of passed in TestFilter - * 530 Color display for Silverlight runner - * 531 Display text output from tests in Silverlight runner - * 534 Add classname and methodname to test result xml - * 541 Console help doesn't indicate defaults - -NUnit 3.0.0 Alpha 5 - January 30, 2015 - -General - - * A Windows installer is now included in the release packages. - -Framework - - * TestCaseAttribute now allows arguments with default values to be omitted. Additionaly, it accepts a Platform property to specify the platforms on which the test case should be run. - * TestFixture and TestCase attributes now enforce the requirement that a reason needs to be provided when ignoring a test. - * SetUp, TearDown, OneTimeSetUp and OneTimeTearDown methods may now be async. - * String arguments over 20 characters in length are truncated when used as part of a test name. - -Engine - - * The engine is now extensible using Mono.Addins. In this release, extension points are provided for FrameworkDrivers, ProjectLoaders and OutputWriters. The following addins are bundled as a part of NUnit: - * A FrameworkDriver that allows running NUnit V2 tests under NUnit 3.0. - * ProjectLoaders for NUnit and Visual Studio projects. - * An OutputWriter that creates XML output in NUnit V2 format. - * DomainUsage now defaults to Multiple if not specified by the runner - -Console - - * New options supported: - * --testlist provides a list of tests to run in a file - * --stoponerror indicates that the run should terminate when any test fails. - -Issues Resolved - - * 20 TestCaseAttribute needs Platform property. - * 60 NUnit should support async setup, teardown, fixture setup and fixture teardown. - * 257 TestCaseAttribute should not require parameters with default values to be specified. - * 266 Pluggable framework drivers. - * 368 Create addin model. - * 369 Project loader addins - * 370 OutputWriter addins - * 403 Move ConsoleOptions.cs and Options.cs to Common and share... - * 419 Create Windows Installer for NUnit. - * 427 [TestFixture(Ignore=true)] should not be allowed. - * 437 Errors in tests under Linux due to hard-coded paths. - * 441 NUnit-Console should support --testlist option - * 442 Add --stoponerror option back to nunit-console. - * 456 Fix memory leak in RuntimeFramework. - * 459 Remove the Mixed Platforms build configuration. - * 468 Change default domain usage to multiple. - * 469 Truncate string arguments in test names in order to limit the length. - -NUnit 3.0.0 Alpha 4 - December 30, 2014 - -Framework - - * ApartmentAttribute has been added, replacing STAAttribute and MTAAttribute. - * Unnecessary overloads of Assert.That and Assume.That have been removed. - * Multiple SetUpFixtures may be specified in a single namespace. - * Improvements to the Pairwise strategy test case generation algorithm. - * The new NUnitLite runner --testlist option, allows a list of tests to be kept in a file. - -Engine - - * A driver is now included, which allows running NUnit 2.x tests under NUnit 3.0. - * The engine can now load and run tests specified in a number of project formats: - * NUnit (.nunit) - * Visual Studio C# projects (.csproj) - * Visual Studio F# projects (.vjsproj) - * Visual Studio Visual Basic projects (.vbproj) - * Visual Studio solutions (.sln) - * Legacy C++ and Visual JScript projects (.csproj and .vjsproj) are also supported - * Support for the current C++ format (.csxproj) is not yet available - * Creation of output files like TestResult.xml in various formats is now a - service of the engine, available to any runner. - -Console - - * The command-line may now include any number of assemblies and/or supported projects. - -Issues Resolved - - * 37 Multiple SetUpFixtures should be permitted on same namespace - * 210 TestContext.WriteLine in an AppDomain causes an error - * 227 Add support for VS projects and solutions - * 231 Update C# samples to use NUnit 3.0 - * 233 Update F# samples to use NUnit 3.0 - * 234 Update C++ samples to use NUnit 3.0 - * 265 Reorganize console reports for nunit-console and nunitlite - * 299 No full path to assembly in XML file under Compact Framework - * 301 Command-line length - * 363 Make Xml result output an engine service - * 377 CombiningStrategyAttributes don't work correctly on generic methods - * 388 Improvements to NUnitLite runner output - * 390 Specify exactly what happens when a test times out - * 396 ApartmentAttribute - * 397 CF nunitlite runner assembly has the wrong name - * 407 Assert.Pass() with ]]> in message crashes console runner - * 414 Simplify Assert overloads - * 416 NUnit 2.x Framework Driver - * 417 Complete work on NUnit projects - * 420 Create Settings file in proper location - -NUnit 3.0.0 Alpha 3 - November 29, 2014 - -Breaking Changes - - * NUnitLite tests must reference both the nunit.framework and nunitlite assemblies. - -Framework - - * The NUnit and NUnitLite frameworks have now been merged. There is no longer any distinction - between them in terms of features, although some features are not available on all platforms. - * The release includes two new framework builds: compact framework 3.5 and portable. The portable - library is compatible with .NET 4.5, Silverlight 5.0, Windows 8, Windows Phone 8.1, - Windows Phone Silverlight 8, Mono for Android and MonoTouch. - * A number of previously unsupported features are available for the Compact Framework: - - Generic methods as tests - - RegexConstraint - - TimeoutAttribute - - FileAssert, DirectoryAssert and file-related constraints - -Engine - - * The logic of runtime selection has now changed so that each assembly runs by default - in a separate process using the runtime for which it was built. - * On 64-bit systems, each test process is automatically created as 32-bit or 64-bit, - depending on the platform specified for the test assembly. - -Console - - * The console runner now runs tests in a separate process per assembly by default. They may - still be run in process or in a single separate process by use of command-line options. - * The console runner now starts in the highest version of the .NET runtime available, making - it simpler to debug tests by specifying that they should run in-process on the command-line. - * The -x86 command-line option is provided to force execution in a 32-bit process on a 64-bit system. - * A writeability check is performed for each output result file before trying to run the tests. - * The -teamcity option is now supported. - -Issues Resolved - - * 12 Compact framework should support generic methods - * 145 NUnit-console fails if test result message contains invalid xml characters - * 155 Create utility classes for platform-specific code - * 223 Common code for NUnitLite console runner and NUnit-Console - * 225 Compact Framework Support - * 238 Improvements to running 32 bit tests on a 64 bit system - * 261 Add portable nunitlite build - * 284 NUnitLite Unification - * 293 CF does not have a CurrentDirectory - * 306 Assure NUnit can write resultfile - * 308 Early disposal of runners - * 309 NUnit-Console should support incremental output under TeamCity - * 325 Add RegexConstraint to compact framework build - * 326 Add TimeoutAttribute to compact framework build - * 327 Allow generic test methods in the compact framework - * 328 Use .NET Stopwatch class for compact framework builds - * 331 Alpha 2 CF does not build - * 333 Add parallel execution to desktop builds of NUnitLite - * 334 Include File-related constraints and syntax in NUnitLite builds - * 335 Re-introduce 'Classic' NUnit syntax in NUnitLite - * 336 Document use of separate obj directories per build in our projects - * 337 Update Standard Defines page for .NET 3.0 - * 341 Move the NUnitLite runners to separate assemblies - * 367 Refactor XML Escaping Tests - * 372 CF Build TestAssemblyRunnerTests - * 373 Minor CF Test Fixes - * 378 Correct documentation for PairwiseAttribute - * 386 Console Output Improvements - -NUnit 3.0.0 Alpha 2 - November 2, 2014 - -Breaking Changes - - * The console runner no longer displays test results in the debugger. - * The NUnitLite compact framework 2.0 build has been removed. - * All addin support has been removed from the framework. Documentation of NUnit 3.0 extensibility features will be published in time for the beta release. In the interim, please ask for support on the nunit-discuss list. - -General - - * A separate solution has been created for Linux - * We now have continuous integration builds under both Travis and Appveyor - * The compact framework 3.5 build is now working and will be supported in future releases. - -New Features - - * The console runner now automatically detects 32- versus 64-bit test assemblies. - * The NUnitLite report output has been standardized to match that of nunit-console. - * The NUnitLite command-line has been standardized to match that of nunit-console where they share the same options. - * Both nunit-console and NUnitLite now display output in color. - * ActionAttributes now allow specification of multiple targets on the attribute as designed. This didn't work in the first alpha. - * OneTimeSetUp and OneTimeTearDown failures are now shown on the test report. Individual test failures after OneTimeSetUp failure are no longer shown. - * The console runner refuses to run tests build with older versions of NUnit. A plugin will be available to run older tests in the future. - -Issues Resolved - - * 222 Color console for NUnitLite - * 229 Timing failures in tests - * 241 Remove reference to Microslft BCL packages - * 243 Create solution for Linux - * 245 Multiple targets on action attributes not implemented - * 246 C++ tests do not compile in VS2013 - * 247 Eliminate trace display when running tests in debug - * 255 Add new result states for more precision in where failures occur - * 256 ContainsConstraint break when used with AndConstraint - * 264 Stacktrace displays too many entries - * 269 Add manifest to nunit-console and nunit-agent - * 270 OneTimeSetUp failure results in too much output - * 271 Invalid tests should be treated as errors - * 274 Command line options should be case insensitive - * 276 NUnit-console should not reference nunit.framework - * 278 New result states (ChildFailure and SetupFailure) break NUnit2XmlOutputWriter - * 282 Get tests for NUnit2XmlOutputWriter working - * 288 Set up Appveyor CI build - * 290 Stack trace still displays too many items - * 315 NUnit 3.0 alpha: Cannot run in console on my assembly - * 319 CI builds are not treating test failures as failures of the build - * 322 Remove Stopwatch tests where they test the real .NET Stopwatch - -NUnit 3.0.0 Alpha 1 - September 22, 2014 - -Breaking Changes - - * Legacy suites are no longer supported - * Assert.NullOrEmpty is no longer supported (Use Is.Null.Or.Empty) - -General - - * MsBuild is now used for the build rather than NAnt - * The framework test harness has been removed now that nunit-console is at a point where it can run the tests. - -New Features - - * Action Attributes have been added with the same features as in NUnit 2.6.3. - * TestContext now has a method that allows writing to the XML output. - * TestContext.CurrentContext.Result now provides the error message and stack trace during teardown. - * Does prefix operator supplies several added constraints. - -Issues Resolved - - * 6 Log4net not working with NUnit - * 13 Standardize commandline options for nunitlite runner - * 17 No allowance is currently made for nullable arguents in TestCase parameter conversions - * 33 TestCaseSource cannot refer to a parameterized test fixture - * 54 Store message and stack trace in TestContext for use in TearDown - * 111 Implement Changes to File, Directory and Path Assertions - * 112 Implement Action Attributes - * 156 Accessing multiple AppDomains within unit tests result in SerializationException - * 163 Add --trace option to NUnitLite - * 167 Create interim documentation for the alpha release - * 169 Design and implement distribution of NUnit packages - * 171 Assert.That should work with any lambda returning bool - * 175 Test Harness should return an error if any tests fail - * 180 Errors in Linux CI build - * 181 Replace NAnt with MsBuild / XBuild - * 183 Standardize commandline options for test harness - * 188 No output from NUnitLite when selected test is not found - * 189 Add string operators to Does prefix - * 193 TestWorkerTests.BusyExecutedIdleEventsCalledInSequence fails occasionally - * 197 Deprecate or remove Assert.NullOrEmpty - * 202 Eliminate legacy suites - * 203 Combine framework, engine and console runner in a single solution and repository - * 209 Make Ignore attribute's reason mandatory - * 215 Running 32-bit tests on a 64-bit OS - * 219 Teardown failures are not reported - -Console Issues Resolved (Old nunit-console project, now combined with nunit) - - * 2 Failure in TestFixtureSetUp is not reported correctly - * 5 CI Server for nunit-console - * 6 System.NullReferenceException on start nunit-console-x86 - * 21 NUnitFrameworkDriverTests fail if not run from same directory - * 24 'Debug' value for /trace option is deprecated in 2.6.3 - * 38 Confusing Excluded categories output - -NUnit 2.9.7 - August 8, 2014 - -Breaking Changes - - * NUnit no longer supports void async test methods. You should use a Task return Type instead. - * The ExpectedExceptionAttribute is no longer supported. Use Assert.Throws() or Assert.That(..., Throws) instead for a more precise specification of where the exception is expected to be thrown. - -New Features - - * Parallel test execution is supported down to the Fixture level. Use ParallelizableAttribute to indicate types that may be run in parallel. - * Async tests are supported for .NET 4.0 if the user has installed support for them. - * A new FileExistsConstraint has been added along with FileAssert.Exists and FileAssert.DoesNotExist - * ExpectedResult is now supported on simple (non-TestCase) tests. - * The Ignore attribute now takes a named parameter Until, which allows specifying a date after which the test is no longer ignored. - * The following new values are now recognized by PlatformAttribute: Win7, Win8, Win8.1, Win2012Server, Win2012ServerR2, NT6.1, NT6.2, 32-bit, 64-bit - * TimeoutAttribute is now supported under Silverlight - * ValuesAttribute may be used without any values on an enum or boolean argument. All possible values are used. - * You may now specify a tolerance using Within when testing equality of DateTimeOffset values. - * The XML output now includes a start and end time for each test. - -Issues Resolved - - * 8 [SetUpFixture] is not working as expected - * 14 CI Server for NUnit Framework - * 21 Is.InRange Constraint Ambiguity - * 27 Values attribute support for enum types - * 29 Specifying a tolerance with "Within" doesn't work for DateTimeOffset data types - * 31 Report start and end time of test execution - * 36 Make RequiresThread, RequiresSTA, RequiresMTA inheritable - * 45 Need of Enddate together with Ignore - * 55 Incorrect XML comments for CollectionAssert.IsSubsetOf - * 62 Matches(Constraint) does not work as expected - * 63 Async support should handle Task return type without state machine - * 64 AsyncStateMachineAttribute should only be checked by name - * 65 Update NUnit Wiki to show the new location of samples - * 66 Parallel Test Execution within test assemblies - * 67 Allow Expected Result on simple tests - * 70 EquivalentTo isn't compatible with IgnoreCase for dictioneries - * 75 Async tests should be supported for projects that target .NET 4.0 - * 82 nunit-framework tests are timing out on Linux - * 83 Path-related tests fail on Linux - * 85 Culture-dependent NUnit tests fail on non-English machine - * 88 TestCaseSourceAttribute documentation - * 90 EquivalentTo isn't compatible with IgnoreCase for char - * 100 Changes to Tolerance definitions - * 110 Add new platforms to PlatformAttribute - * 113 Remove ExpectedException - * 118 Workarounds for missing InternalPreserveStackTrace in mono - * 121 Test harness does not honor the --worker option when set to zero - * 129 Standardize Timeout in the Silverlight build - * 130 Add FileAssert.Exists and FileAssert.DoesNotExist - * 132 Drop support for void async methods - * 153 Surprising behavior of DelayedConstraint pollingInterval - * 161 Update API to support stopping an ongoing test run - -NOTE: Bug Fixes below this point refer to the number of the bug in Launchpad. - -NUnit 2.9.6 - October 4, 2013 - -Main Features - - * Separate projects for nunit-console and nunit.engine - * New builds for .NET 4.5 and Silverlight - * TestContext is now supported - * External API is now stable; internal interfaces are separate from API - * Tests may be run in parallel on separate threads - * Solutions and projects now use VS2012 (except for Compact framework) - -Bug Fixes - - * 463470 We should encapsulate references to pre-2.0 collections - * 498690 Assert.That() doesn't like properties with scoped setters - * 501784 Theory tests do not work correctly when using null parameters - * 531873 Feature: Extraction of unit tests from NUnit test assembly and calling appropriate one - * 611325 Allow Teardown to detect if last test failed - * 611938 Generic Test Instances disappear - * 655882 Make CategoryAttribute inherited - * 664081 Add Server2008 R2 and Windows 7 to PlatformAttribute - * 671432 Upgrade NAnt to Latest Release - * 676560 Assert.AreEqual does not support IEquatable - * 691129 Add Category parameter to TestFixture - * 697069 Feature request: dynamic location for TestResult.xml - * 708173 NUnit's logic for comparing arrays - use Comparer if it is provided - * 709062 "System.ArgumentException : Cannot compare" when the element is a list - * 712156 Tests cannot use AppDomain.SetPrincipalPolicy - * 719184 Platformdependency in src/ClientUtilities/util/Services/DomainManager.cs:40 - * 719187 Using Path.GetTempPath() causes conflicts in shared temporary folders - * 735851 Add detection of 3.0, 3.5 and 4.0 frameworks to PlatformAttribute - * 736062 Deadlock when EventListener performs a Trace call + EventPump synchronisation - * 756843 Failing assertion does not show non-linear tolerance mode - * 766749 net-2.0\nunit-console-x86.exe.config should have a element and also enable loadFromRemoteSources - * 770471 Assert.IsEmpty does not support IEnumerable - * 785460 Add Category parameter to TestCaseSourceAttribute - * 787106 EqualConstraint provides inadequate failure information for IEnumerables - * 792466 TestContext MethodName - * 794115 HashSet incorrectly reported - * 800089 Assert.Throws() hides details of inner AssertionException - * 848713 Feature request: Add switch for console to break on any test case error - * 878376 Add 'Exactly(n)' to the NUnit constraint syntax - * 882137 When no tests are run, higher level suites display as Inconclusive - * 882517 NUnit 2.5.10 doesn't recognize TestFixture if there are only TestCaseSource inside - * 885173 Tests are still executed after cancellation by user - * 885277 Exception when project calls for a runtime using only 2 digits - * 885604 Feature request: Explicit named parameter to TestCaseAttribute - * 890129 DelayedConstraint doesn't appear to poll properties of objects - * 892844 Not using Mono 4.0 profile under Windows - * 893919 DelayedConstraint fails polling properties on references which are initially null - * 896973 Console output lines are run together under Linux - * 897289 Is.Empty constraint has unclear failure message - * 898192 Feature Request: Is.Negative, Is.Positive - * 898256 IEnumerable for Datapoints doesn't work - * 899178 Wrong failure message for parameterized tests that expect exceptions - * 904841 After exiting for timeout the teardown method is not executed - * 908829 TestCase attribute does not play well with variadic test functions - * 910218 NUnit should add a trailing separator to the ApplicationBase - * 920472 CollectionAssert.IsNotEmpty must dispose Enumerator - * 922455 Add Support for Windows 8 and Windows 2012 Server to PlatformAttribute - * 928246 Use assembly.Location instead of assembly.CodeBase - * 958766 For development work under TeamCity, we need to support nunit2 formatted output under direct-runner - * 1000181 Parameterized TestFixture with System.Type as constructor arguments fails - * 1000213 Inconclusive message Not in report output - * 1023084 Add Enum support to RandomAttribute - * 1028188 Add Support for Silverlight - * 1029785 Test loaded from remote folder failed to run with exception System.IODirectory - * 1037144 Add MonoTouch support to PlatformAttribute - * 1041365 Add MaxOsX and Xbox support to platform attribute - * 1057981 C#5 async tests are not supported - * 1060631 Add .NET 4.5 build - * 1064014 Simple async tests should not return Task - * 1071164 Support async methods in usage scenarios of Throws constraints - * 1071343 Runner.Load fails on CF if the test assembly contains a generic method - * 1071861 Error in Path Constraints - * 1072379 Report test execution time at a higher resolution - * 1074568 Assert/Assume should support an async method for the ActualValueDelegate - * 1082330 Better Exception if SetCulture attribute is applied multiple times - * 1111834 Expose Random Object as part of the test context - * 1111838 Include Random Seed in Test Report - * 1172979 Add Category Support to nunitlite Runner - * 1203361 Randomizer uniqueness tests sometimes fail - * 1221712 When non-existing test method is specified in -test, result is still "Tests run: 1, Passed: 1" - * 1223294 System.NullReferenceException thrown when ExpectedExceptionAttribute is used in a static class - * 1225542 Standardize commandline options for test harness - -Bug Fixes in 2.9.6 But Not Listed Here in the Release - - * 541699 Silverlight Support - * 1222148 /framework switch does not recognize net-4.5 - * 1228979 Theories with all test cases inconclusive are not reported as failures - - -NUnit 2.9.5 - July 30, 2010 - -Bug Fixes - - * 483836 Allow non-public test fixtures consistently - * 487878 Tests in generic class without proper TestFixture attribute should be invalid - * 498656 TestCase should show array values in GUI - * 513989 Is.Empty should work for directories - * 519912 Thread.CurrentPrincipal Set In TestFixtureSetUp Not Maintained Between Tests - * 532488 constraints from ConstraintExpression/ConstraintBuilder are not reusable - * 590717 categorie contains dash or trail spaces is not selectable - * 590970 static TestFixtureSetUp/TestFixtureTearDown methods in base classes are not run - * 595683 NUnit console runner fails to load assemblies - * 600627 Assertion message formatted poorly by PropertyConstraint - * 601108 Duplicate test using abstract test fixtures - * 601645 Parametered test should try to convert data type from source to parameter - * 605432 ToString not working properly for some properties - * 606548 Deprecate Directory Assert in 2.5 and remove it in 3.0 - * 608875 NUnit Equality Comparer incorrectly defines equality for Dictionary objects - -NUnit 2.9.4 - May 4, 2010 - -Bug Fixes - - * 419411 Fixture With No Tests Shows as Non-Runnable - * 459219 Changes to thread princpal cause failures under .NET 4.0 - * 459224 Culture test failure under .NET 4.0 - * 462019 Line endings needs to be better controlled in source - * 462418 Assume.That() fails if I specify a message - * 483845 TestCase expected return value cannot be null - * 488002 Should not report tests in abstract class as invalid - * 490679 Category in TestCaseData clashes with Category on ParameterizedMethodSuite - * 501352 VS2010 projects have not been updated for new directory structure - * 504018 Automatic Values For Theory Test Parameters Not Provided For bool And enum - * 505899 'Description' parameter in both TestAttribute and TestCaseAttribute is not allowed - * 523335 TestFixtureTearDown in static class not executed - * 556971 Datapoint(s)Attribute should work on IEnumerable as well as on Arrays - * 561436 SetCulture broken with 2.5.4 - * 563532 DatapointsAttribute should be allowed on properties and methods - -NUnit 2.9.3 - October 26, 2009 - -Main Features - - * Created new API for controlling framework - * New builds for .Net 3.5 and 4.0, compact framework 3.5 - * Support for old style tests has been removed - * New adhoc runner for testing the framework - -Bug Fixes - - * 432805 Some Framework Tests don't run on Linux - * 440109 Full Framework does not support "Contains" - -NUnit 2.9.2 - September 19, 2009 - -Main Features - - * NUnitLite code is now merged with NUnit - * Added NUnitLite runner to the framework code - * Added Compact framework builds - -Bug Fixes - - * 430100 Assert.Catch should return T - * 432566 NUnitLite shows empty string as argument - * 432573 Mono test should be at runtime - -NUnit 2.9.1 - August 27, 2009 - -General - - * Created a separate project for the framework and framework tests - * Changed license to MIT / X11 - * Created Windows installer for the framework - -Bug Fixes - - * 400502 NUnitEqualityComparer.StreamsE­qual fails for same stream - * 400508 TestCaseSource attirbute is not working when Type is given - * 400510 TestCaseData variable length ctor drops values - * 417557 Add SetUICultureAttribute from NUnit 2.5.2 - * 417559 Add Ignore to TestFixture, TestCase and TestCaseData - * 417560 Merge Assert.Throws and Assert.Catch changes from NUnit 2.5.2 - * 417564 TimeoutAttribute on Assembly diff --git a/third_party/dotnet/nunit-console-3.12.0/LICENSE.txt b/third_party/dotnet/nunit-console-3.12.0/LICENSE.txt deleted file mode 100644 index 29f0e2ea4c3ce..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/LICENSE.txt +++ /dev/null @@ -1,20 +0,0 @@ -Copyright (c) 2021 Charlie Poole, Rob Prouse - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - diff --git a/third_party/dotnet/nunit-console-3.12.0/License.rtf b/third_party/dotnet/nunit-console-3.12.0/License.rtf deleted file mode 100644 index 704b08394a1e1..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/License.rtf and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/NOTICES.txt b/third_party/dotnet/nunit-console-3.12.0/NOTICES.txt deleted file mode 100644 index 02f3f84d68d15..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/NOTICES.txt +++ /dev/null @@ -1,5 +0,0 @@ -NUnit 3.0 is based on earlier versions of NUnit, with Portions - -Copyright (c) 2002-2014 Charlie Poole or -Copyright (c) 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or -Copyright (c) 2000-2002 Philip A. Craig diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent-x86.exe b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent-x86.exe deleted file mode 100644 index 746111be96e7c..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent-x86.exe and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent-x86.exe.config b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent-x86.exe.config deleted file mode 100644 index f72511441a1ea..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent-x86.exe.config +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent-x86.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent-x86.pdb deleted file mode 100644 index a5b76c16a136e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent-x86.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent.exe b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent.exe deleted file mode 100644 index 4fe2d6e01d02b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent.exe and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent.exe.config b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent.exe.config deleted file mode 100644 index f72511441a1ea..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent.exe.config +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent.pdb deleted file mode 100644 index a5b76c16a136e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit-agent.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.api.dll b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.api.dll deleted file mode 100644 index e7cb7ab2bd3d2..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.api.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.api.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.api.pdb deleted file mode 100644 index 3042729104e3e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.api.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.api.xml b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.api.xml deleted file mode 100644 index fa8e3cdeba819..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.api.xml +++ /dev/null @@ -1,1173 +0,0 @@ - - - - nunit.engine.api - - - - - NUnitEngineException is thrown when the engine has been - called with improper values or when a particular facility - is not available. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Serialization constructor - - - - - The exception that is thrown if a valid test engine is not found - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The minimum version. - - - - NUnitEngineUnloadException is thrown when a test run has completed successfully - but one or more errors were encountered when attempting to unload - and shut down the test run cleanly. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Construct with a message and a collection of exceptions. - - - - - Serialization constructor. - - - - - Gets the collection of exceptions . - - - - - The ExtensionAttribute is used to identify a class that is intended - to serve as an extension. - - - - - Initializes a new instance of the class. - - - - - A unique string identifying the ExtensionPoint for which this Extension is - intended. This is an optional field provided NUnit is able to deduce the - ExtensionPoint from the Type of the extension class. - - - - - An optional description of what the extension does. - - - - - Flag indicating whether the extension is enabled. - - true if enabled; otherwise, false. - - - - The minimum Engine version for which this extension is designed - - - - - ExtensionPointAttribute is used at the assembly level to identify and - document any ExtensionPoints supported by the assembly. - - - - - Construct an ExtensionPointAttribute - - A unique string identifying the extension point. - The required Type of any extension that is installed at this extension point. - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - The required Type (usually an interface) of any extension that is - installed at this ExtensionPoint. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - The ExtensionPropertyAttribute is used to specify named properties for an extension. - - - - - Construct an ExtensionPropertyAttribute - - The name of the property - The property value - - - - The name of the property. - - - - - The property value - - - - - Interface implemented by a Type that knows how to create a driver for a test assembly. - - - - - Gets a flag indicating whether a given AssemblyName - represents a test framework supported by this factory. - - An AssemblyName referring to the possible test framework. - - - - Gets a driver for a given test assembly and a framework - which the assembly is already known to reference. - - The domain in which the assembly will be loaded - An AssemblyName referring to the test framework. - - - - - The IExtensionNode interface is implemented by a class that represents a - single extension being installed on a particular extension point. - - - - - Gets the full name of the Type of the extension object. - - - - - Gets a value indicating whether this is enabled. - - true if enabled; otherwise, false. - - - - Gets the unique string identifying the ExtensionPoint for which - this Extension is intended. This identifier may be supplied by the attribute - marking the extension or deduced by NUnit from the Type of the extension class. - - - - - Gets an optional description of what the extension does. - - - - - The TargetFramework of the extension assembly. - - - - - Gets a collection of the names of all this extension's properties - - - - - Gets a collection of the values of a particular named property - If none are present, returns an empty enumerator. - - The property name - A collection of values - - - - The path to the assembly implementing this extension. - - - - - The version of the assembly implementing this extension. - - - - - An ExtensionPoint represents a single point in the TestEngine - that may be extended by user addins and extensions. - - - - - Gets the unique path identifying this extension point. - - - - - Gets the description of this extension point. May be null. - - - - - Gets the FullName of the Type required for any extension to be installed at this extension point. - - - - - Gets an enumeration of IExtensionNodes for extensions installed on this extension point. - - - - - The IFrameworkDriver interface is implemented by a class that - is able to use an external framework to explore or run tests - under the engine. - - - - - Gets and sets the unique identifier for this driver, - used to ensure that test ids are unique across drivers. - - - - - Loads the tests in an assembly. - - An Xml string representing the loaded test - - - - Count the test cases that would be executed. - - An XML string representing the TestFilter to use in counting the tests - The number of test cases counted - - - - Executes the tests in an assembly. - - An ITestEventHandler that receives progress notices - A XML string representing the filter that controls which tests are executed - An Xml string representing the result - - - - Returns information about the tests in an assembly. - - An XML string representing the filter that controls which tests are included - An Xml string representing the tests - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Interface for the various project types that the engine can load. - - - - - Gets the path to the file storing this project, if any. - If the project has not been saved, this is null. - - - - - Gets the active configuration, as defined - by the particular project. - - - - - Gets a list of the configs for this project - - - - - Gets a test package for the primary or active - configuration within the project. The package - includes all the assemblies and any settings - specified in the project format. - - A TestPackage - - - - Gets a TestPackage for a specific configuration - within the project. The package includes all the - assemblies and any settings specified in the - project format. - - The name of the config to use - A TestPackage for the named configuration. - - - - The IProjectLoader interface is implemented by any class - that knows how to load projects in a specific format. - - - - - Returns true if the file indicated is one that this - loader knows how to load. - - The path of the project file - True if the loader knows how to load this file, otherwise false - - - - Loads a project of a known format. - - The path of the project file - An IProject interface to the loaded project or null if the project cannot be loaded - - - - Common interface for objects that process and write out test results - - - - - Checks if the output path is writable. If the output is not - writable, this method should throw an exception. - - - - - - Writes result to the specified output path. - - XmlNode for the result - Path to which it should be written - - - - Writes result to a TextWriter. - - XmlNode for the result - TextWriter to which it should be written - - - - TypeExtensionPointAttribute is used to bind an extension point - to a class or interface. - - - - - Construct a TypeExtensionPointAttribute, specifying the path. - - A unique string identifying the extension point. - - - - Construct an TypeExtensionPointAttribute, without specifying the path. - The extension point will use a path constructed based on the interface - or class to which the attribute is applied. - - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - Interface that returns a list of available runtime frameworks. - - - - - Gets a list of available runtime frameworks. - - - - - The IExtensionService interface allows a runner to manage extensions. - - - - - Gets an enumeration of all ExtensionPoints in the engine. - - - - - Gets an enumeration of all installed Extensions. - - - - - Get an ExtensionPoint based on its unique identifying path. - - - - - Get an enumeration of ExtensionNodes based on their identifying path. - - - - - Enable or disable an extension - - - - - - - Interface for logging within the engine - - - - - Logs the specified message at the error level. - - The message. - - - - Logs the specified message at the error level. - - The message. - The arguments. - - - - Logs the specified message at the warning level. - - The message. - - - - Logs the specified message at the warning level. - - The message. - The arguments. - - - - Logs the specified message at the info level. - - The message. - - - - Logs the specified message at the info level. - - The message. - The arguments. - - - - Logs the specified message at the debug level. - - The message. - - - - Logs the specified message at the debug level. - - The message. - The arguments. - - - - Interface to abstract getting loggers - - - - - Gets the logger. - - The name of the logger to get. - - - - - InternalTraceLevel is an enumeration controlling the - level of detailed presented in the internal log. - - - - - Use the default settings as specified by the user. - - - - - Do not display any trace messages - - - - - Display Error messages only - - - - - Display Warning level and higher messages - - - - - Display informational and higher messages - - - - - Display debug messages and higher - i.e. all messages - - - - - Display debug messages and higher - i.e. all messages - - - - - The IRecentFiles interface is used to isolate the app - from various implementations of recent files. - - - - - The max number of files saved - - - - - Get a list of all the file entries - - The most recent file list - - - - Set the most recent file name, reordering - the saved names as needed and removing the oldest - if the max number of files would be exceeded. - The current CLR version is used to create the entry. - - - - - Remove a file from the list - - The name of the file to remove - - - - IResultWriterService provides result writers for a specified - well-known format. - - - - - Gets an array of the available formats - - - - - Gets a ResultWriter for a given format and set of arguments. - - The name of the format to be used - A set of arguments to be used in constructing the writer or null if non arguments are needed - An IResultWriter - - - - Interface implemented by objects representing a runtime framework. - - - - - Gets the inique Id for this runtime, such as "net-4.5" - - - - - Gets the display name of the framework, such as ".NET 4.5" - - - - - Gets the framework version: usually contains two components, Major - and Minor, which match the corresponding CLR components, but not always. - - - - - Gets the Version of the CLR for this framework - - - - - Gets a string representing the particular profile installed, - or null if there is no profile. Currently. the only defined - values are Full and Client. - - - - - Implemented by a type that provides information about the - current and other available runtimes. - - - - - Returns true if the runtime framework represented by - the string passed as an argument is available. - - A string representing a framework, like 'net-4.0' - True if the framework is available, false if unavailable or nonexistent - - - - Selects a target runtime framework for a TestPackage based on - the settings in the package and the assemblies themselves. - The package RuntimeFramework setting may be updated as a - result and the selected runtime is returned. - - Note that if a package has subpackages, the subpackages may run on a different - framework to the top-level package. In future, this method should - probably not return a simple string, and instead require runners - to inspect the test package structure, to find all desired frameworks. - - A TestPackage - The selected RuntimeFramework - - - - Enumeration representing the status of a service - - - - Service was never started or has been stopped - - - Started successfully - - - Service failed to start and is unavailable - - - - The IService interface is implemented by all Services. Although it - is extensible, it does not reside in the Extensibility namespace - because it is so widely used by the engine. - - - - - The ServiceContext - - - - - Gets the ServiceStatus of this service - - - - - Initialize the Service - - - - - Do any cleanup needed before terminating the service - - - - - IServiceLocator allows clients to locate any NUnit services - for which the interface is referenced. In normal use, this - linits it to those services using interfaces defined in the - nunit.engine.api assembly. - - - - - Return a specified type of service - - - - - Return a specified type of service - - - - - Event handler for settings changes - - The sender. - The instance containing the event data. - - - - Event argument for settings changes - - - - - Initializes a new instance of the class. - - Name of the setting that has changed. - - - - Gets the name of the setting that has changed - - - - - The ISettings interface is used to access all user - settings and options. - - - - - Occurs when the settings are changed. - - - - - Load a setting from the storage. - - Name of the setting to load - Value of the setting or null - - - - Load a setting from the storage or return a default value - - Name of the setting to load - Value to return if the setting is missing - Value of the setting or the default value - - - - Remove a setting from the storage - - Name of the setting to remove - - - - Remove an entire group of settings from the storage - - Name of the group to remove - - - - Save a setting in the storage - - Name of the setting to save - Value to be saved - - - - ITestEngine represents an instance of the test engine. - Clients wanting to discover, explore or run tests start - require an instance of the engine, which is generally - acquired from the TestEngineActivator class. - - - - - Gets the IServiceLocator interface, which gives access to - certain services provided by the engine. - - - - - Gets and sets the directory path used by the engine for saving files. - Some services may ignore changes to this path made after initialization. - The default value is the current directory. - - - - - Gets and sets the InternalTraceLevel used by the engine. Changing this - setting after initialization will have no effect. The default value - is the value saved in the NUnit settings. - - - - - Initialize the engine. This includes initializing mono addins, - setting the trace level and creating the standard set of services - used in the Engine. - - This interface is not normally called by user code. Programs linking - only to the nunit.engine.api assembly are given a - pre-initialized instance of TestEngine. Programs - that link directly to nunit.engine usually do so - in order to perform custom initialization. - - - - - Returns a test runner instance for use by clients in discovering, - exploring and executing tests. - - The TestPackage for which the runner is intended. - An ITestRunner. - - - - The ITestListener interface is used to receive notices of significant - events while a test is running. Its single method accepts an Xml string, - which may represent any event generated by the test framework, the driver - or any of the runners internal to the engine. Use of Xml means that - any driver and framework may add additional events and the engine will - simply pass them on through this interface. - - - - - Handle a progress report or other event. - - An XML progress report. - - - - Interface to a TestFilterBuilder, which is used to create TestFilters - - - - - Add a test to be selected - - The full name of the test, as created by NUnit - - - - Specify what is to be included by the filter using a where clause. - - A where clause that will be parsed by NUnit to create the filter. - - - - Get a TestFilter constructed according to the criteria specified by the other calls. - - A TestFilter. - - - - The TestFilterService provides builders that can create TestFilters - - - - - Get an uninitialized TestFilterBuilder - - - - - The ITestRun class represents an ongoing test run. - - - - - Get the result of the test. - - An XmlNode representing the test run result - - - - Blocks the current thread until the current test run completes - or the timeout is reached - - A that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. - True if the run completed - - - - Interface implemented by all test runners. - - - - - Get a flag indicating whether a test is running - - - - - Load a TestPackage for possible execution - - An XmlNode representing the loaded package. - - This method is normally optional, since Explore and Run call - it automatically when necessary. The method is kept in order - to make it easier to convert older programs that use it. - - - - - Unload any loaded TestPackage. If none is loaded, - the call is ignored. - - - - - Reload the current TestPackage - - An XmlNode representing the loaded package. - - - - Count the test cases that would be run under - the specified filter. - - A TestFilter - The count of test cases - - - - Run the tests in the loaded TestPackage and return a test result. The tests - are run synchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - An XmlNode giving the result of the test execution - - - - Start a run of the tests in the loaded TestPackage. The tests are run - asynchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Explore a loaded TestPackage and return information about the tests found. - - The TestFilter to be used in selecting tests to explore. - An XmlNode representing the tests found. - - - - TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface. - - - - - Create an instance of the test engine. - - This parameter is no longer used but has not been removed to ensure API compatibility. - Thrown when a test engine of the required minimum version is not found - An - - - - Create an instance of the test engine with a minimum version. - - The minimum version of the engine to return inclusive. - This parameter is no longer used but has not been removed to ensure API compatibility. - Thrown when a test engine of the required minimum version is not found - An - - - - Abstract base for all test filters. A filter is represented - by an XmlNode with <filter> as its topmost element. - In the console runner, filters serve only to carry this - XML representation, as all filtering is done by the engine. - - - - - Initializes a new instance of the class. - - The XML text that specifies the filter. - - - - The empty filter - one that always passes. - - - - - Gets the XML representation of this filter as a string. - - - - - TestPackage holds information about a set of test files to - be loaded by a TestRunner. Each TestPackage represents - tests for one or more test files. TestPackages may be named - or anonymous, depending on the constructor used. - - Upon construction, a package is given an ID (string), which - remains unchanged for the lifetime of the TestPackage instance. - The package ID is passed to the test framework for use in generating - test IDs. - - A runner that reloads test assemblies and wants the ids to remain stable - should avoid creating a new package but should instead use the original - package, changing settings as needed. This gives the best chance for the - tests in the reloaded assembly to match those originally loaded. - - - - - Construct a named TestPackage, specifying a file path for - the assembly or project to be used. - - The file path. - - - - Construct an anonymous TestPackage that wraps test files. - - - - - - Every test package gets a unique ID used to prefix test IDs within that package. - - - The generated ID is only unique for packages created within the same application domain. - For that reason, NUnit pre-creates all test packages that will be needed. - - - - - Gets the name of the package - - - - - Gets the path to the file containing tests. It may be - an assembly or a recognized project type. - - - - - Gets the list of SubPackages contained in this package - - - - - Gets the settings dictionary for this package. - - - - - Add a subproject to the package. - - The subpackage to be added - - - - Add a setting to a package and all of its subpackages. - - The name of the setting - The value of the setting - - Once a package is created, subpackages may have been created - as well. If you add a setting directly to the Settings dictionary - of the package, the subpackages are not updated. This method is - used when the settings are intended to be reflected to all the - subpackages under the package. - - - - - Return the value of a setting or a default. - - The name of the setting - The default value - - - - - TestSelectionParserException is thrown when an error - is found while parsing the selection expression. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - - - Serialization constructor - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.core.dll b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.core.dll deleted file mode 100644 index 6d2064569761b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.core.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.core.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.core.pdb deleted file mode 100644 index b0b1c7cedad6c..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/nunit.engine.core.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/testcentric.engine.metadata.dll b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/testcentric.engine.metadata.dll deleted file mode 100644 index 3dc2fbcd75e92..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net20/testcentric.engine.metadata.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent-x86.exe b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent-x86.exe deleted file mode 100644 index 2c0691f396e62..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent-x86.exe and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent-x86.exe.config b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent-x86.exe.config deleted file mode 100644 index f72511441a1ea..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent-x86.exe.config +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent-x86.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent-x86.pdb deleted file mode 100644 index 8b036ac6f8066..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent-x86.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent.exe b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent.exe deleted file mode 100644 index eefe241ddf304..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent.exe and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent.exe.config b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent.exe.config deleted file mode 100644 index f72511441a1ea..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent.exe.config +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent.pdb deleted file mode 100644 index 1d3e3de5ef851..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit-agent.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.api.dll b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.api.dll deleted file mode 100644 index e7cb7ab2bd3d2..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.api.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.api.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.api.pdb deleted file mode 100644 index 3042729104e3e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.api.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.api.xml b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.api.xml deleted file mode 100644 index fa8e3cdeba819..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.api.xml +++ /dev/null @@ -1,1173 +0,0 @@ - - - - nunit.engine.api - - - - - NUnitEngineException is thrown when the engine has been - called with improper values or when a particular facility - is not available. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Serialization constructor - - - - - The exception that is thrown if a valid test engine is not found - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The minimum version. - - - - NUnitEngineUnloadException is thrown when a test run has completed successfully - but one or more errors were encountered when attempting to unload - and shut down the test run cleanly. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Construct with a message and a collection of exceptions. - - - - - Serialization constructor. - - - - - Gets the collection of exceptions . - - - - - The ExtensionAttribute is used to identify a class that is intended - to serve as an extension. - - - - - Initializes a new instance of the class. - - - - - A unique string identifying the ExtensionPoint for which this Extension is - intended. This is an optional field provided NUnit is able to deduce the - ExtensionPoint from the Type of the extension class. - - - - - An optional description of what the extension does. - - - - - Flag indicating whether the extension is enabled. - - true if enabled; otherwise, false. - - - - The minimum Engine version for which this extension is designed - - - - - ExtensionPointAttribute is used at the assembly level to identify and - document any ExtensionPoints supported by the assembly. - - - - - Construct an ExtensionPointAttribute - - A unique string identifying the extension point. - The required Type of any extension that is installed at this extension point. - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - The required Type (usually an interface) of any extension that is - installed at this ExtensionPoint. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - The ExtensionPropertyAttribute is used to specify named properties for an extension. - - - - - Construct an ExtensionPropertyAttribute - - The name of the property - The property value - - - - The name of the property. - - - - - The property value - - - - - Interface implemented by a Type that knows how to create a driver for a test assembly. - - - - - Gets a flag indicating whether a given AssemblyName - represents a test framework supported by this factory. - - An AssemblyName referring to the possible test framework. - - - - Gets a driver for a given test assembly and a framework - which the assembly is already known to reference. - - The domain in which the assembly will be loaded - An AssemblyName referring to the test framework. - - - - - The IExtensionNode interface is implemented by a class that represents a - single extension being installed on a particular extension point. - - - - - Gets the full name of the Type of the extension object. - - - - - Gets a value indicating whether this is enabled. - - true if enabled; otherwise, false. - - - - Gets the unique string identifying the ExtensionPoint for which - this Extension is intended. This identifier may be supplied by the attribute - marking the extension or deduced by NUnit from the Type of the extension class. - - - - - Gets an optional description of what the extension does. - - - - - The TargetFramework of the extension assembly. - - - - - Gets a collection of the names of all this extension's properties - - - - - Gets a collection of the values of a particular named property - If none are present, returns an empty enumerator. - - The property name - A collection of values - - - - The path to the assembly implementing this extension. - - - - - The version of the assembly implementing this extension. - - - - - An ExtensionPoint represents a single point in the TestEngine - that may be extended by user addins and extensions. - - - - - Gets the unique path identifying this extension point. - - - - - Gets the description of this extension point. May be null. - - - - - Gets the FullName of the Type required for any extension to be installed at this extension point. - - - - - Gets an enumeration of IExtensionNodes for extensions installed on this extension point. - - - - - The IFrameworkDriver interface is implemented by a class that - is able to use an external framework to explore or run tests - under the engine. - - - - - Gets and sets the unique identifier for this driver, - used to ensure that test ids are unique across drivers. - - - - - Loads the tests in an assembly. - - An Xml string representing the loaded test - - - - Count the test cases that would be executed. - - An XML string representing the TestFilter to use in counting the tests - The number of test cases counted - - - - Executes the tests in an assembly. - - An ITestEventHandler that receives progress notices - A XML string representing the filter that controls which tests are executed - An Xml string representing the result - - - - Returns information about the tests in an assembly. - - An XML string representing the filter that controls which tests are included - An Xml string representing the tests - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Interface for the various project types that the engine can load. - - - - - Gets the path to the file storing this project, if any. - If the project has not been saved, this is null. - - - - - Gets the active configuration, as defined - by the particular project. - - - - - Gets a list of the configs for this project - - - - - Gets a test package for the primary or active - configuration within the project. The package - includes all the assemblies and any settings - specified in the project format. - - A TestPackage - - - - Gets a TestPackage for a specific configuration - within the project. The package includes all the - assemblies and any settings specified in the - project format. - - The name of the config to use - A TestPackage for the named configuration. - - - - The IProjectLoader interface is implemented by any class - that knows how to load projects in a specific format. - - - - - Returns true if the file indicated is one that this - loader knows how to load. - - The path of the project file - True if the loader knows how to load this file, otherwise false - - - - Loads a project of a known format. - - The path of the project file - An IProject interface to the loaded project or null if the project cannot be loaded - - - - Common interface for objects that process and write out test results - - - - - Checks if the output path is writable. If the output is not - writable, this method should throw an exception. - - - - - - Writes result to the specified output path. - - XmlNode for the result - Path to which it should be written - - - - Writes result to a TextWriter. - - XmlNode for the result - TextWriter to which it should be written - - - - TypeExtensionPointAttribute is used to bind an extension point - to a class or interface. - - - - - Construct a TypeExtensionPointAttribute, specifying the path. - - A unique string identifying the extension point. - - - - Construct an TypeExtensionPointAttribute, without specifying the path. - The extension point will use a path constructed based on the interface - or class to which the attribute is applied. - - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - Interface that returns a list of available runtime frameworks. - - - - - Gets a list of available runtime frameworks. - - - - - The IExtensionService interface allows a runner to manage extensions. - - - - - Gets an enumeration of all ExtensionPoints in the engine. - - - - - Gets an enumeration of all installed Extensions. - - - - - Get an ExtensionPoint based on its unique identifying path. - - - - - Get an enumeration of ExtensionNodes based on their identifying path. - - - - - Enable or disable an extension - - - - - - - Interface for logging within the engine - - - - - Logs the specified message at the error level. - - The message. - - - - Logs the specified message at the error level. - - The message. - The arguments. - - - - Logs the specified message at the warning level. - - The message. - - - - Logs the specified message at the warning level. - - The message. - The arguments. - - - - Logs the specified message at the info level. - - The message. - - - - Logs the specified message at the info level. - - The message. - The arguments. - - - - Logs the specified message at the debug level. - - The message. - - - - Logs the specified message at the debug level. - - The message. - The arguments. - - - - Interface to abstract getting loggers - - - - - Gets the logger. - - The name of the logger to get. - - - - - InternalTraceLevel is an enumeration controlling the - level of detailed presented in the internal log. - - - - - Use the default settings as specified by the user. - - - - - Do not display any trace messages - - - - - Display Error messages only - - - - - Display Warning level and higher messages - - - - - Display informational and higher messages - - - - - Display debug messages and higher - i.e. all messages - - - - - Display debug messages and higher - i.e. all messages - - - - - The IRecentFiles interface is used to isolate the app - from various implementations of recent files. - - - - - The max number of files saved - - - - - Get a list of all the file entries - - The most recent file list - - - - Set the most recent file name, reordering - the saved names as needed and removing the oldest - if the max number of files would be exceeded. - The current CLR version is used to create the entry. - - - - - Remove a file from the list - - The name of the file to remove - - - - IResultWriterService provides result writers for a specified - well-known format. - - - - - Gets an array of the available formats - - - - - Gets a ResultWriter for a given format and set of arguments. - - The name of the format to be used - A set of arguments to be used in constructing the writer or null if non arguments are needed - An IResultWriter - - - - Interface implemented by objects representing a runtime framework. - - - - - Gets the inique Id for this runtime, such as "net-4.5" - - - - - Gets the display name of the framework, such as ".NET 4.5" - - - - - Gets the framework version: usually contains two components, Major - and Minor, which match the corresponding CLR components, but not always. - - - - - Gets the Version of the CLR for this framework - - - - - Gets a string representing the particular profile installed, - or null if there is no profile. Currently. the only defined - values are Full and Client. - - - - - Implemented by a type that provides information about the - current and other available runtimes. - - - - - Returns true if the runtime framework represented by - the string passed as an argument is available. - - A string representing a framework, like 'net-4.0' - True if the framework is available, false if unavailable or nonexistent - - - - Selects a target runtime framework for a TestPackage based on - the settings in the package and the assemblies themselves. - The package RuntimeFramework setting may be updated as a - result and the selected runtime is returned. - - Note that if a package has subpackages, the subpackages may run on a different - framework to the top-level package. In future, this method should - probably not return a simple string, and instead require runners - to inspect the test package structure, to find all desired frameworks. - - A TestPackage - The selected RuntimeFramework - - - - Enumeration representing the status of a service - - - - Service was never started or has been stopped - - - Started successfully - - - Service failed to start and is unavailable - - - - The IService interface is implemented by all Services. Although it - is extensible, it does not reside in the Extensibility namespace - because it is so widely used by the engine. - - - - - The ServiceContext - - - - - Gets the ServiceStatus of this service - - - - - Initialize the Service - - - - - Do any cleanup needed before terminating the service - - - - - IServiceLocator allows clients to locate any NUnit services - for which the interface is referenced. In normal use, this - linits it to those services using interfaces defined in the - nunit.engine.api assembly. - - - - - Return a specified type of service - - - - - Return a specified type of service - - - - - Event handler for settings changes - - The sender. - The instance containing the event data. - - - - Event argument for settings changes - - - - - Initializes a new instance of the class. - - Name of the setting that has changed. - - - - Gets the name of the setting that has changed - - - - - The ISettings interface is used to access all user - settings and options. - - - - - Occurs when the settings are changed. - - - - - Load a setting from the storage. - - Name of the setting to load - Value of the setting or null - - - - Load a setting from the storage or return a default value - - Name of the setting to load - Value to return if the setting is missing - Value of the setting or the default value - - - - Remove a setting from the storage - - Name of the setting to remove - - - - Remove an entire group of settings from the storage - - Name of the group to remove - - - - Save a setting in the storage - - Name of the setting to save - Value to be saved - - - - ITestEngine represents an instance of the test engine. - Clients wanting to discover, explore or run tests start - require an instance of the engine, which is generally - acquired from the TestEngineActivator class. - - - - - Gets the IServiceLocator interface, which gives access to - certain services provided by the engine. - - - - - Gets and sets the directory path used by the engine for saving files. - Some services may ignore changes to this path made after initialization. - The default value is the current directory. - - - - - Gets and sets the InternalTraceLevel used by the engine. Changing this - setting after initialization will have no effect. The default value - is the value saved in the NUnit settings. - - - - - Initialize the engine. This includes initializing mono addins, - setting the trace level and creating the standard set of services - used in the Engine. - - This interface is not normally called by user code. Programs linking - only to the nunit.engine.api assembly are given a - pre-initialized instance of TestEngine. Programs - that link directly to nunit.engine usually do so - in order to perform custom initialization. - - - - - Returns a test runner instance for use by clients in discovering, - exploring and executing tests. - - The TestPackage for which the runner is intended. - An ITestRunner. - - - - The ITestListener interface is used to receive notices of significant - events while a test is running. Its single method accepts an Xml string, - which may represent any event generated by the test framework, the driver - or any of the runners internal to the engine. Use of Xml means that - any driver and framework may add additional events and the engine will - simply pass them on through this interface. - - - - - Handle a progress report or other event. - - An XML progress report. - - - - Interface to a TestFilterBuilder, which is used to create TestFilters - - - - - Add a test to be selected - - The full name of the test, as created by NUnit - - - - Specify what is to be included by the filter using a where clause. - - A where clause that will be parsed by NUnit to create the filter. - - - - Get a TestFilter constructed according to the criteria specified by the other calls. - - A TestFilter. - - - - The TestFilterService provides builders that can create TestFilters - - - - - Get an uninitialized TestFilterBuilder - - - - - The ITestRun class represents an ongoing test run. - - - - - Get the result of the test. - - An XmlNode representing the test run result - - - - Blocks the current thread until the current test run completes - or the timeout is reached - - A that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. - True if the run completed - - - - Interface implemented by all test runners. - - - - - Get a flag indicating whether a test is running - - - - - Load a TestPackage for possible execution - - An XmlNode representing the loaded package. - - This method is normally optional, since Explore and Run call - it automatically when necessary. The method is kept in order - to make it easier to convert older programs that use it. - - - - - Unload any loaded TestPackage. If none is loaded, - the call is ignored. - - - - - Reload the current TestPackage - - An XmlNode representing the loaded package. - - - - Count the test cases that would be run under - the specified filter. - - A TestFilter - The count of test cases - - - - Run the tests in the loaded TestPackage and return a test result. The tests - are run synchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - An XmlNode giving the result of the test execution - - - - Start a run of the tests in the loaded TestPackage. The tests are run - asynchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Explore a loaded TestPackage and return information about the tests found. - - The TestFilter to be used in selecting tests to explore. - An XmlNode representing the tests found. - - - - TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface. - - - - - Create an instance of the test engine. - - This parameter is no longer used but has not been removed to ensure API compatibility. - Thrown when a test engine of the required minimum version is not found - An - - - - Create an instance of the test engine with a minimum version. - - The minimum version of the engine to return inclusive. - This parameter is no longer used but has not been removed to ensure API compatibility. - Thrown when a test engine of the required minimum version is not found - An - - - - Abstract base for all test filters. A filter is represented - by an XmlNode with <filter> as its topmost element. - In the console runner, filters serve only to carry this - XML representation, as all filtering is done by the engine. - - - - - Initializes a new instance of the class. - - The XML text that specifies the filter. - - - - The empty filter - one that always passes. - - - - - Gets the XML representation of this filter as a string. - - - - - TestPackage holds information about a set of test files to - be loaded by a TestRunner. Each TestPackage represents - tests for one or more test files. TestPackages may be named - or anonymous, depending on the constructor used. - - Upon construction, a package is given an ID (string), which - remains unchanged for the lifetime of the TestPackage instance. - The package ID is passed to the test framework for use in generating - test IDs. - - A runner that reloads test assemblies and wants the ids to remain stable - should avoid creating a new package but should instead use the original - package, changing settings as needed. This gives the best chance for the - tests in the reloaded assembly to match those originally loaded. - - - - - Construct a named TestPackage, specifying a file path for - the assembly or project to be used. - - The file path. - - - - Construct an anonymous TestPackage that wraps test files. - - - - - - Every test package gets a unique ID used to prefix test IDs within that package. - - - The generated ID is only unique for packages created within the same application domain. - For that reason, NUnit pre-creates all test packages that will be needed. - - - - - Gets the name of the package - - - - - Gets the path to the file containing tests. It may be - an assembly or a recognized project type. - - - - - Gets the list of SubPackages contained in this package - - - - - Gets the settings dictionary for this package. - - - - - Add a subproject to the package. - - The subpackage to be added - - - - Add a setting to a package and all of its subpackages. - - The name of the setting - The value of the setting - - Once a package is created, subpackages may have been created - as well. If you add a setting directly to the Settings dictionary - of the package, the subpackages are not updated. This method is - used when the settings are intended to be reflected to all the - subpackages under the package. - - - - - Return the value of a setting or a default. - - The name of the setting - The default value - - - - - TestSelectionParserException is thrown when an error - is found while parsing the selection expression. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - - - Serialization constructor - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.core.dll b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.core.dll deleted file mode 100644 index 6d2064569761b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.core.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.core.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.core.pdb deleted file mode 100644 index b0b1c7cedad6c..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/nunit.engine.core.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/testcentric.engine.metadata.dll b/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/testcentric.engine.metadata.dll deleted file mode 100644 index 5b84fe05ee20b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/agents/net40/testcentric.engine.metadata.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit-project-loader.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit-project-loader.dll deleted file mode 100644 index 6b1802462df5a..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit-project-loader.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit-v2-result-writer.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit-v2-result-writer.dll deleted file mode 100644 index 2cb2b27c39648..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit-v2-result-writer.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit.core.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit.core.dll deleted file mode 100644 index 0c375b8118681..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit.core.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit.core.interfaces.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit.core.interfaces.dll deleted file mode 100644 index be287830e1a61..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit.core.interfaces.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit.engine.api.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit.engine.api.dll deleted file mode 100644 index 4b90f1711e9fc..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit.engine.api.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit.v2.driver.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit.v2.driver.dll deleted file mode 100644 index 78f172613969b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/nunit.v2.driver.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/teamcity-event-listener.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/teamcity-event-listener.dll deleted file mode 100644 index 046e102b39eff..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/teamcity-event-listener.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/vs-project-loader.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/vs-project-loader.dll deleted file mode 100644 index 6a3a01b0860ed..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/addins/vs-project-loader.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.bundle.addins b/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.bundle.addins deleted file mode 100644 index be4c6fa291d08..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.bundle.addins +++ /dev/null @@ -1,5 +0,0 @@ -addins/nunit.v2.driver.dll -addins/nunit-v2-result-writer.dll -addins/nunit-project-loader.dll -addins/vs-project-loader.dll -addins/teamcity-event-listener.dll diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.api.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.api.dll deleted file mode 100644 index e7cb7ab2bd3d2..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.api.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.api.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.api.pdb deleted file mode 100644 index 3042729104e3e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.api.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.api.xml b/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.api.xml deleted file mode 100644 index fa8e3cdeba819..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.api.xml +++ /dev/null @@ -1,1173 +0,0 @@ - - - - nunit.engine.api - - - - - NUnitEngineException is thrown when the engine has been - called with improper values or when a particular facility - is not available. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Serialization constructor - - - - - The exception that is thrown if a valid test engine is not found - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The minimum version. - - - - NUnitEngineUnloadException is thrown when a test run has completed successfully - but one or more errors were encountered when attempting to unload - and shut down the test run cleanly. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Construct with a message and a collection of exceptions. - - - - - Serialization constructor. - - - - - Gets the collection of exceptions . - - - - - The ExtensionAttribute is used to identify a class that is intended - to serve as an extension. - - - - - Initializes a new instance of the class. - - - - - A unique string identifying the ExtensionPoint for which this Extension is - intended. This is an optional field provided NUnit is able to deduce the - ExtensionPoint from the Type of the extension class. - - - - - An optional description of what the extension does. - - - - - Flag indicating whether the extension is enabled. - - true if enabled; otherwise, false. - - - - The minimum Engine version for which this extension is designed - - - - - ExtensionPointAttribute is used at the assembly level to identify and - document any ExtensionPoints supported by the assembly. - - - - - Construct an ExtensionPointAttribute - - A unique string identifying the extension point. - The required Type of any extension that is installed at this extension point. - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - The required Type (usually an interface) of any extension that is - installed at this ExtensionPoint. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - The ExtensionPropertyAttribute is used to specify named properties for an extension. - - - - - Construct an ExtensionPropertyAttribute - - The name of the property - The property value - - - - The name of the property. - - - - - The property value - - - - - Interface implemented by a Type that knows how to create a driver for a test assembly. - - - - - Gets a flag indicating whether a given AssemblyName - represents a test framework supported by this factory. - - An AssemblyName referring to the possible test framework. - - - - Gets a driver for a given test assembly and a framework - which the assembly is already known to reference. - - The domain in which the assembly will be loaded - An AssemblyName referring to the test framework. - - - - - The IExtensionNode interface is implemented by a class that represents a - single extension being installed on a particular extension point. - - - - - Gets the full name of the Type of the extension object. - - - - - Gets a value indicating whether this is enabled. - - true if enabled; otherwise, false. - - - - Gets the unique string identifying the ExtensionPoint for which - this Extension is intended. This identifier may be supplied by the attribute - marking the extension or deduced by NUnit from the Type of the extension class. - - - - - Gets an optional description of what the extension does. - - - - - The TargetFramework of the extension assembly. - - - - - Gets a collection of the names of all this extension's properties - - - - - Gets a collection of the values of a particular named property - If none are present, returns an empty enumerator. - - The property name - A collection of values - - - - The path to the assembly implementing this extension. - - - - - The version of the assembly implementing this extension. - - - - - An ExtensionPoint represents a single point in the TestEngine - that may be extended by user addins and extensions. - - - - - Gets the unique path identifying this extension point. - - - - - Gets the description of this extension point. May be null. - - - - - Gets the FullName of the Type required for any extension to be installed at this extension point. - - - - - Gets an enumeration of IExtensionNodes for extensions installed on this extension point. - - - - - The IFrameworkDriver interface is implemented by a class that - is able to use an external framework to explore or run tests - under the engine. - - - - - Gets and sets the unique identifier for this driver, - used to ensure that test ids are unique across drivers. - - - - - Loads the tests in an assembly. - - An Xml string representing the loaded test - - - - Count the test cases that would be executed. - - An XML string representing the TestFilter to use in counting the tests - The number of test cases counted - - - - Executes the tests in an assembly. - - An ITestEventHandler that receives progress notices - A XML string representing the filter that controls which tests are executed - An Xml string representing the result - - - - Returns information about the tests in an assembly. - - An XML string representing the filter that controls which tests are included - An Xml string representing the tests - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Interface for the various project types that the engine can load. - - - - - Gets the path to the file storing this project, if any. - If the project has not been saved, this is null. - - - - - Gets the active configuration, as defined - by the particular project. - - - - - Gets a list of the configs for this project - - - - - Gets a test package for the primary or active - configuration within the project. The package - includes all the assemblies and any settings - specified in the project format. - - A TestPackage - - - - Gets a TestPackage for a specific configuration - within the project. The package includes all the - assemblies and any settings specified in the - project format. - - The name of the config to use - A TestPackage for the named configuration. - - - - The IProjectLoader interface is implemented by any class - that knows how to load projects in a specific format. - - - - - Returns true if the file indicated is one that this - loader knows how to load. - - The path of the project file - True if the loader knows how to load this file, otherwise false - - - - Loads a project of a known format. - - The path of the project file - An IProject interface to the loaded project or null if the project cannot be loaded - - - - Common interface for objects that process and write out test results - - - - - Checks if the output path is writable. If the output is not - writable, this method should throw an exception. - - - - - - Writes result to the specified output path. - - XmlNode for the result - Path to which it should be written - - - - Writes result to a TextWriter. - - XmlNode for the result - TextWriter to which it should be written - - - - TypeExtensionPointAttribute is used to bind an extension point - to a class or interface. - - - - - Construct a TypeExtensionPointAttribute, specifying the path. - - A unique string identifying the extension point. - - - - Construct an TypeExtensionPointAttribute, without specifying the path. - The extension point will use a path constructed based on the interface - or class to which the attribute is applied. - - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - Interface that returns a list of available runtime frameworks. - - - - - Gets a list of available runtime frameworks. - - - - - The IExtensionService interface allows a runner to manage extensions. - - - - - Gets an enumeration of all ExtensionPoints in the engine. - - - - - Gets an enumeration of all installed Extensions. - - - - - Get an ExtensionPoint based on its unique identifying path. - - - - - Get an enumeration of ExtensionNodes based on their identifying path. - - - - - Enable or disable an extension - - - - - - - Interface for logging within the engine - - - - - Logs the specified message at the error level. - - The message. - - - - Logs the specified message at the error level. - - The message. - The arguments. - - - - Logs the specified message at the warning level. - - The message. - - - - Logs the specified message at the warning level. - - The message. - The arguments. - - - - Logs the specified message at the info level. - - The message. - - - - Logs the specified message at the info level. - - The message. - The arguments. - - - - Logs the specified message at the debug level. - - The message. - - - - Logs the specified message at the debug level. - - The message. - The arguments. - - - - Interface to abstract getting loggers - - - - - Gets the logger. - - The name of the logger to get. - - - - - InternalTraceLevel is an enumeration controlling the - level of detailed presented in the internal log. - - - - - Use the default settings as specified by the user. - - - - - Do not display any trace messages - - - - - Display Error messages only - - - - - Display Warning level and higher messages - - - - - Display informational and higher messages - - - - - Display debug messages and higher - i.e. all messages - - - - - Display debug messages and higher - i.e. all messages - - - - - The IRecentFiles interface is used to isolate the app - from various implementations of recent files. - - - - - The max number of files saved - - - - - Get a list of all the file entries - - The most recent file list - - - - Set the most recent file name, reordering - the saved names as needed and removing the oldest - if the max number of files would be exceeded. - The current CLR version is used to create the entry. - - - - - Remove a file from the list - - The name of the file to remove - - - - IResultWriterService provides result writers for a specified - well-known format. - - - - - Gets an array of the available formats - - - - - Gets a ResultWriter for a given format and set of arguments. - - The name of the format to be used - A set of arguments to be used in constructing the writer or null if non arguments are needed - An IResultWriter - - - - Interface implemented by objects representing a runtime framework. - - - - - Gets the inique Id for this runtime, such as "net-4.5" - - - - - Gets the display name of the framework, such as ".NET 4.5" - - - - - Gets the framework version: usually contains two components, Major - and Minor, which match the corresponding CLR components, but not always. - - - - - Gets the Version of the CLR for this framework - - - - - Gets a string representing the particular profile installed, - or null if there is no profile. Currently. the only defined - values are Full and Client. - - - - - Implemented by a type that provides information about the - current and other available runtimes. - - - - - Returns true if the runtime framework represented by - the string passed as an argument is available. - - A string representing a framework, like 'net-4.0' - True if the framework is available, false if unavailable or nonexistent - - - - Selects a target runtime framework for a TestPackage based on - the settings in the package and the assemblies themselves. - The package RuntimeFramework setting may be updated as a - result and the selected runtime is returned. - - Note that if a package has subpackages, the subpackages may run on a different - framework to the top-level package. In future, this method should - probably not return a simple string, and instead require runners - to inspect the test package structure, to find all desired frameworks. - - A TestPackage - The selected RuntimeFramework - - - - Enumeration representing the status of a service - - - - Service was never started or has been stopped - - - Started successfully - - - Service failed to start and is unavailable - - - - The IService interface is implemented by all Services. Although it - is extensible, it does not reside in the Extensibility namespace - because it is so widely used by the engine. - - - - - The ServiceContext - - - - - Gets the ServiceStatus of this service - - - - - Initialize the Service - - - - - Do any cleanup needed before terminating the service - - - - - IServiceLocator allows clients to locate any NUnit services - for which the interface is referenced. In normal use, this - linits it to those services using interfaces defined in the - nunit.engine.api assembly. - - - - - Return a specified type of service - - - - - Return a specified type of service - - - - - Event handler for settings changes - - The sender. - The instance containing the event data. - - - - Event argument for settings changes - - - - - Initializes a new instance of the class. - - Name of the setting that has changed. - - - - Gets the name of the setting that has changed - - - - - The ISettings interface is used to access all user - settings and options. - - - - - Occurs when the settings are changed. - - - - - Load a setting from the storage. - - Name of the setting to load - Value of the setting or null - - - - Load a setting from the storage or return a default value - - Name of the setting to load - Value to return if the setting is missing - Value of the setting or the default value - - - - Remove a setting from the storage - - Name of the setting to remove - - - - Remove an entire group of settings from the storage - - Name of the group to remove - - - - Save a setting in the storage - - Name of the setting to save - Value to be saved - - - - ITestEngine represents an instance of the test engine. - Clients wanting to discover, explore or run tests start - require an instance of the engine, which is generally - acquired from the TestEngineActivator class. - - - - - Gets the IServiceLocator interface, which gives access to - certain services provided by the engine. - - - - - Gets and sets the directory path used by the engine for saving files. - Some services may ignore changes to this path made after initialization. - The default value is the current directory. - - - - - Gets and sets the InternalTraceLevel used by the engine. Changing this - setting after initialization will have no effect. The default value - is the value saved in the NUnit settings. - - - - - Initialize the engine. This includes initializing mono addins, - setting the trace level and creating the standard set of services - used in the Engine. - - This interface is not normally called by user code. Programs linking - only to the nunit.engine.api assembly are given a - pre-initialized instance of TestEngine. Programs - that link directly to nunit.engine usually do so - in order to perform custom initialization. - - - - - Returns a test runner instance for use by clients in discovering, - exploring and executing tests. - - The TestPackage for which the runner is intended. - An ITestRunner. - - - - The ITestListener interface is used to receive notices of significant - events while a test is running. Its single method accepts an Xml string, - which may represent any event generated by the test framework, the driver - or any of the runners internal to the engine. Use of Xml means that - any driver and framework may add additional events and the engine will - simply pass them on through this interface. - - - - - Handle a progress report or other event. - - An XML progress report. - - - - Interface to a TestFilterBuilder, which is used to create TestFilters - - - - - Add a test to be selected - - The full name of the test, as created by NUnit - - - - Specify what is to be included by the filter using a where clause. - - A where clause that will be parsed by NUnit to create the filter. - - - - Get a TestFilter constructed according to the criteria specified by the other calls. - - A TestFilter. - - - - The TestFilterService provides builders that can create TestFilters - - - - - Get an uninitialized TestFilterBuilder - - - - - The ITestRun class represents an ongoing test run. - - - - - Get the result of the test. - - An XmlNode representing the test run result - - - - Blocks the current thread until the current test run completes - or the timeout is reached - - A that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. - True if the run completed - - - - Interface implemented by all test runners. - - - - - Get a flag indicating whether a test is running - - - - - Load a TestPackage for possible execution - - An XmlNode representing the loaded package. - - This method is normally optional, since Explore and Run call - it automatically when necessary. The method is kept in order - to make it easier to convert older programs that use it. - - - - - Unload any loaded TestPackage. If none is loaded, - the call is ignored. - - - - - Reload the current TestPackage - - An XmlNode representing the loaded package. - - - - Count the test cases that would be run under - the specified filter. - - A TestFilter - The count of test cases - - - - Run the tests in the loaded TestPackage and return a test result. The tests - are run synchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - An XmlNode giving the result of the test execution - - - - Start a run of the tests in the loaded TestPackage. The tests are run - asynchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Explore a loaded TestPackage and return information about the tests found. - - The TestFilter to be used in selecting tests to explore. - An XmlNode representing the tests found. - - - - TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface. - - - - - Create an instance of the test engine. - - This parameter is no longer used but has not been removed to ensure API compatibility. - Thrown when a test engine of the required minimum version is not found - An - - - - Create an instance of the test engine with a minimum version. - - The minimum version of the engine to return inclusive. - This parameter is no longer used but has not been removed to ensure API compatibility. - Thrown when a test engine of the required minimum version is not found - An - - - - Abstract base for all test filters. A filter is represented - by an XmlNode with <filter> as its topmost element. - In the console runner, filters serve only to carry this - XML representation, as all filtering is done by the engine. - - - - - Initializes a new instance of the class. - - The XML text that specifies the filter. - - - - The empty filter - one that always passes. - - - - - Gets the XML representation of this filter as a string. - - - - - TestPackage holds information about a set of test files to - be loaded by a TestRunner. Each TestPackage represents - tests for one or more test files. TestPackages may be named - or anonymous, depending on the constructor used. - - Upon construction, a package is given an ID (string), which - remains unchanged for the lifetime of the TestPackage instance. - The package ID is passed to the test framework for use in generating - test IDs. - - A runner that reloads test assemblies and wants the ids to remain stable - should avoid creating a new package but should instead use the original - package, changing settings as needed. This gives the best chance for the - tests in the reloaded assembly to match those originally loaded. - - - - - Construct a named TestPackage, specifying a file path for - the assembly or project to be used. - - The file path. - - - - Construct an anonymous TestPackage that wraps test files. - - - - - - Every test package gets a unique ID used to prefix test IDs within that package. - - - The generated ID is only unique for packages created within the same application domain. - For that reason, NUnit pre-creates all test packages that will be needed. - - - - - Gets the name of the package - - - - - Gets the path to the file containing tests. It may be - an assembly or a recognized project type. - - - - - Gets the list of SubPackages contained in this package - - - - - Gets the settings dictionary for this package. - - - - - Add a subproject to the package. - - The subpackage to be added - - - - Add a setting to a package and all of its subpackages. - - The name of the setting - The value of the setting - - Once a package is created, subpackages may have been created - as well. If you add a setting directly to the Settings dictionary - of the package, the subpackages are not updated. This method is - used when the settings are intended to be reflected to all the - subpackages under the package. - - - - - Return the value of a setting or a default. - - The name of the setting - The default value - - - - - TestSelectionParserException is thrown when an error - is found while parsing the selection expression. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - - - Serialization constructor - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.core.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.core.dll deleted file mode 100644 index 6d2064569761b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.core.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.core.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.core.pdb deleted file mode 100644 index b0b1c7cedad6c..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.core.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.dll deleted file mode 100644 index cf1e6de21c809..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.pdb deleted file mode 100644 index e440d6b44e9b7..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit.engine.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit3-console.exe b/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit3-console.exe deleted file mode 100644 index 43437cb6205c9..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit3-console.exe and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit3-console.exe.config b/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit3-console.exe.config deleted file mode 100644 index bf784cbb9dcee..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit3-console.exe.config +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit3-console.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit3-console.pdb deleted file mode 100644 index a493c01c14fa9..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/nunit3-console.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net20/testcentric.engine.metadata.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net20/testcentric.engine.metadata.dll deleted file mode 100644 index 3dc2fbcd75e92..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net20/testcentric.engine.metadata.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/ConsoleTests.nunit b/third_party/dotnet/nunit-console-3.12.0/bin/net35/ConsoleTests.nunit deleted file mode 100644 index be1fa8efe9749..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/net35/ConsoleTests.nunit +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/EngineTests.nunit b/third_party/dotnet/nunit-console-3.12.0/bin/net35/EngineTests.nunit deleted file mode 100644 index dfb901ff99438..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/net35/EngineTests.nunit +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/NSubstitute.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/NSubstitute.dll deleted file mode 100644 index d166373197d05..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/NSubstitute.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/NUnit2TestResult.xsd b/third_party/dotnet/nunit-console-3.12.0/bin/net35/NUnit2TestResult.xsd deleted file mode 100644 index a71bbf92c6c3e..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/net35/NUnit2TestResult.xsd +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/TestListWithEmptyLine.tst b/third_party/dotnet/nunit-console-3.12.0/bin/net35/TestListWithEmptyLine.tst deleted file mode 100644 index 3ce1ebe79c601..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/net35/TestListWithEmptyLine.tst +++ /dev/null @@ -1,3 +0,0 @@ - -# No funny business... -AmazingTest \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/TextSummary.xslt b/third_party/dotnet/nunit-console-3.12.0/bin/net35/TextSummary.xslt deleted file mode 100644 index 0b9048c59edcb..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/net35/TextSummary.xslt +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - NUnit Version - - - - - - - - Runtime Environment - - OS Version: - - - CLR Version: - - - - Tests Run: - - - , Passed: - - , Failed: - - , Inconclusive: - - , Skipped: - - - , Elapsed Time: - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/TransformWithDTD.xslt b/third_party/dotnet/nunit-console-3.12.0/bin/net35/TransformWithDTD.xslt deleted file mode 100644 index 0ac8f3dd922fd..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/net35/TransformWithDTD.xslt +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit-project-loader.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit-project-loader.dll deleted file mode 100644 index 6b1802462df5a..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit-project-loader.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit-v2-result-writer.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit-v2-result-writer.dll deleted file mode 100644 index 2cb2b27c39648..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit-v2-result-writer.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit.core.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit.core.dll deleted file mode 100644 index 0c375b8118681..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit.core.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit.core.interfaces.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit.core.interfaces.dll deleted file mode 100644 index be287830e1a61..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit.core.interfaces.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit.engine.api.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit.engine.api.dll deleted file mode 100644 index 4b90f1711e9fc..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit.engine.api.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit.v2.driver.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit.v2.driver.dll deleted file mode 100644 index 78f172613969b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/nunit.v2.driver.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/teamcity-event-listener.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/teamcity-event-listener.dll deleted file mode 100644 index 046e102b39eff..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/teamcity-event-listener.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/vs-project-loader.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/vs-project-loader.dll deleted file mode 100644 index 6a3a01b0860ed..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/addins/vs-project-loader.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/alt.config b/third_party/dotnet/nunit-console-3.12.0/bin/net35/alt.config deleted file mode 100644 index 682d5c0950e3d..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/net35/alt.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/mock-assembly.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/mock-assembly.dll deleted file mode 100644 index 83ccdb5ba1f4f..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/mock-assembly.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/mock-assembly.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/net35/mock-assembly.pdb deleted file mode 100644 index 06973e75da17a..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/mock-assembly.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/notest-assembly.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/notest-assembly.dll deleted file mode 100644 index 491f54d47b4ef..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/notest-assembly.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/notest-assembly.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/net35/notest-assembly.pdb deleted file mode 100644 index 366dafd019aa3..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/notest-assembly.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.bundle.addins b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.bundle.addins deleted file mode 100644 index be4c6fa291d08..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.bundle.addins +++ /dev/null @@ -1,5 +0,0 @@ -addins/nunit.v2.driver.dll -addins/nunit-v2-result-writer.dll -addins/nunit-project-loader.dll -addins/vs-project-loader.dll -addins/teamcity-event-listener.dll diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.api.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.api.dll deleted file mode 100644 index e7cb7ab2bd3d2..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.api.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.api.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.api.pdb deleted file mode 100644 index 3042729104e3e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.api.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.api.xml b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.api.xml deleted file mode 100644 index fa8e3cdeba819..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.api.xml +++ /dev/null @@ -1,1173 +0,0 @@ - - - - nunit.engine.api - - - - - NUnitEngineException is thrown when the engine has been - called with improper values or when a particular facility - is not available. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Serialization constructor - - - - - The exception that is thrown if a valid test engine is not found - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The minimum version. - - - - NUnitEngineUnloadException is thrown when a test run has completed successfully - but one or more errors were encountered when attempting to unload - and shut down the test run cleanly. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Construct with a message and a collection of exceptions. - - - - - Serialization constructor. - - - - - Gets the collection of exceptions . - - - - - The ExtensionAttribute is used to identify a class that is intended - to serve as an extension. - - - - - Initializes a new instance of the class. - - - - - A unique string identifying the ExtensionPoint for which this Extension is - intended. This is an optional field provided NUnit is able to deduce the - ExtensionPoint from the Type of the extension class. - - - - - An optional description of what the extension does. - - - - - Flag indicating whether the extension is enabled. - - true if enabled; otherwise, false. - - - - The minimum Engine version for which this extension is designed - - - - - ExtensionPointAttribute is used at the assembly level to identify and - document any ExtensionPoints supported by the assembly. - - - - - Construct an ExtensionPointAttribute - - A unique string identifying the extension point. - The required Type of any extension that is installed at this extension point. - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - The required Type (usually an interface) of any extension that is - installed at this ExtensionPoint. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - The ExtensionPropertyAttribute is used to specify named properties for an extension. - - - - - Construct an ExtensionPropertyAttribute - - The name of the property - The property value - - - - The name of the property. - - - - - The property value - - - - - Interface implemented by a Type that knows how to create a driver for a test assembly. - - - - - Gets a flag indicating whether a given AssemblyName - represents a test framework supported by this factory. - - An AssemblyName referring to the possible test framework. - - - - Gets a driver for a given test assembly and a framework - which the assembly is already known to reference. - - The domain in which the assembly will be loaded - An AssemblyName referring to the test framework. - - - - - The IExtensionNode interface is implemented by a class that represents a - single extension being installed on a particular extension point. - - - - - Gets the full name of the Type of the extension object. - - - - - Gets a value indicating whether this is enabled. - - true if enabled; otherwise, false. - - - - Gets the unique string identifying the ExtensionPoint for which - this Extension is intended. This identifier may be supplied by the attribute - marking the extension or deduced by NUnit from the Type of the extension class. - - - - - Gets an optional description of what the extension does. - - - - - The TargetFramework of the extension assembly. - - - - - Gets a collection of the names of all this extension's properties - - - - - Gets a collection of the values of a particular named property - If none are present, returns an empty enumerator. - - The property name - A collection of values - - - - The path to the assembly implementing this extension. - - - - - The version of the assembly implementing this extension. - - - - - An ExtensionPoint represents a single point in the TestEngine - that may be extended by user addins and extensions. - - - - - Gets the unique path identifying this extension point. - - - - - Gets the description of this extension point. May be null. - - - - - Gets the FullName of the Type required for any extension to be installed at this extension point. - - - - - Gets an enumeration of IExtensionNodes for extensions installed on this extension point. - - - - - The IFrameworkDriver interface is implemented by a class that - is able to use an external framework to explore or run tests - under the engine. - - - - - Gets and sets the unique identifier for this driver, - used to ensure that test ids are unique across drivers. - - - - - Loads the tests in an assembly. - - An Xml string representing the loaded test - - - - Count the test cases that would be executed. - - An XML string representing the TestFilter to use in counting the tests - The number of test cases counted - - - - Executes the tests in an assembly. - - An ITestEventHandler that receives progress notices - A XML string representing the filter that controls which tests are executed - An Xml string representing the result - - - - Returns information about the tests in an assembly. - - An XML string representing the filter that controls which tests are included - An Xml string representing the tests - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Interface for the various project types that the engine can load. - - - - - Gets the path to the file storing this project, if any. - If the project has not been saved, this is null. - - - - - Gets the active configuration, as defined - by the particular project. - - - - - Gets a list of the configs for this project - - - - - Gets a test package for the primary or active - configuration within the project. The package - includes all the assemblies and any settings - specified in the project format. - - A TestPackage - - - - Gets a TestPackage for a specific configuration - within the project. The package includes all the - assemblies and any settings specified in the - project format. - - The name of the config to use - A TestPackage for the named configuration. - - - - The IProjectLoader interface is implemented by any class - that knows how to load projects in a specific format. - - - - - Returns true if the file indicated is one that this - loader knows how to load. - - The path of the project file - True if the loader knows how to load this file, otherwise false - - - - Loads a project of a known format. - - The path of the project file - An IProject interface to the loaded project or null if the project cannot be loaded - - - - Common interface for objects that process and write out test results - - - - - Checks if the output path is writable. If the output is not - writable, this method should throw an exception. - - - - - - Writes result to the specified output path. - - XmlNode for the result - Path to which it should be written - - - - Writes result to a TextWriter. - - XmlNode for the result - TextWriter to which it should be written - - - - TypeExtensionPointAttribute is used to bind an extension point - to a class or interface. - - - - - Construct a TypeExtensionPointAttribute, specifying the path. - - A unique string identifying the extension point. - - - - Construct an TypeExtensionPointAttribute, without specifying the path. - The extension point will use a path constructed based on the interface - or class to which the attribute is applied. - - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - Interface that returns a list of available runtime frameworks. - - - - - Gets a list of available runtime frameworks. - - - - - The IExtensionService interface allows a runner to manage extensions. - - - - - Gets an enumeration of all ExtensionPoints in the engine. - - - - - Gets an enumeration of all installed Extensions. - - - - - Get an ExtensionPoint based on its unique identifying path. - - - - - Get an enumeration of ExtensionNodes based on their identifying path. - - - - - Enable or disable an extension - - - - - - - Interface for logging within the engine - - - - - Logs the specified message at the error level. - - The message. - - - - Logs the specified message at the error level. - - The message. - The arguments. - - - - Logs the specified message at the warning level. - - The message. - - - - Logs the specified message at the warning level. - - The message. - The arguments. - - - - Logs the specified message at the info level. - - The message. - - - - Logs the specified message at the info level. - - The message. - The arguments. - - - - Logs the specified message at the debug level. - - The message. - - - - Logs the specified message at the debug level. - - The message. - The arguments. - - - - Interface to abstract getting loggers - - - - - Gets the logger. - - The name of the logger to get. - - - - - InternalTraceLevel is an enumeration controlling the - level of detailed presented in the internal log. - - - - - Use the default settings as specified by the user. - - - - - Do not display any trace messages - - - - - Display Error messages only - - - - - Display Warning level and higher messages - - - - - Display informational and higher messages - - - - - Display debug messages and higher - i.e. all messages - - - - - Display debug messages and higher - i.e. all messages - - - - - The IRecentFiles interface is used to isolate the app - from various implementations of recent files. - - - - - The max number of files saved - - - - - Get a list of all the file entries - - The most recent file list - - - - Set the most recent file name, reordering - the saved names as needed and removing the oldest - if the max number of files would be exceeded. - The current CLR version is used to create the entry. - - - - - Remove a file from the list - - The name of the file to remove - - - - IResultWriterService provides result writers for a specified - well-known format. - - - - - Gets an array of the available formats - - - - - Gets a ResultWriter for a given format and set of arguments. - - The name of the format to be used - A set of arguments to be used in constructing the writer or null if non arguments are needed - An IResultWriter - - - - Interface implemented by objects representing a runtime framework. - - - - - Gets the inique Id for this runtime, such as "net-4.5" - - - - - Gets the display name of the framework, such as ".NET 4.5" - - - - - Gets the framework version: usually contains two components, Major - and Minor, which match the corresponding CLR components, but not always. - - - - - Gets the Version of the CLR for this framework - - - - - Gets a string representing the particular profile installed, - or null if there is no profile. Currently. the only defined - values are Full and Client. - - - - - Implemented by a type that provides information about the - current and other available runtimes. - - - - - Returns true if the runtime framework represented by - the string passed as an argument is available. - - A string representing a framework, like 'net-4.0' - True if the framework is available, false if unavailable or nonexistent - - - - Selects a target runtime framework for a TestPackage based on - the settings in the package and the assemblies themselves. - The package RuntimeFramework setting may be updated as a - result and the selected runtime is returned. - - Note that if a package has subpackages, the subpackages may run on a different - framework to the top-level package. In future, this method should - probably not return a simple string, and instead require runners - to inspect the test package structure, to find all desired frameworks. - - A TestPackage - The selected RuntimeFramework - - - - Enumeration representing the status of a service - - - - Service was never started or has been stopped - - - Started successfully - - - Service failed to start and is unavailable - - - - The IService interface is implemented by all Services. Although it - is extensible, it does not reside in the Extensibility namespace - because it is so widely used by the engine. - - - - - The ServiceContext - - - - - Gets the ServiceStatus of this service - - - - - Initialize the Service - - - - - Do any cleanup needed before terminating the service - - - - - IServiceLocator allows clients to locate any NUnit services - for which the interface is referenced. In normal use, this - linits it to those services using interfaces defined in the - nunit.engine.api assembly. - - - - - Return a specified type of service - - - - - Return a specified type of service - - - - - Event handler for settings changes - - The sender. - The instance containing the event data. - - - - Event argument for settings changes - - - - - Initializes a new instance of the class. - - Name of the setting that has changed. - - - - Gets the name of the setting that has changed - - - - - The ISettings interface is used to access all user - settings and options. - - - - - Occurs when the settings are changed. - - - - - Load a setting from the storage. - - Name of the setting to load - Value of the setting or null - - - - Load a setting from the storage or return a default value - - Name of the setting to load - Value to return if the setting is missing - Value of the setting or the default value - - - - Remove a setting from the storage - - Name of the setting to remove - - - - Remove an entire group of settings from the storage - - Name of the group to remove - - - - Save a setting in the storage - - Name of the setting to save - Value to be saved - - - - ITestEngine represents an instance of the test engine. - Clients wanting to discover, explore or run tests start - require an instance of the engine, which is generally - acquired from the TestEngineActivator class. - - - - - Gets the IServiceLocator interface, which gives access to - certain services provided by the engine. - - - - - Gets and sets the directory path used by the engine for saving files. - Some services may ignore changes to this path made after initialization. - The default value is the current directory. - - - - - Gets and sets the InternalTraceLevel used by the engine. Changing this - setting after initialization will have no effect. The default value - is the value saved in the NUnit settings. - - - - - Initialize the engine. This includes initializing mono addins, - setting the trace level and creating the standard set of services - used in the Engine. - - This interface is not normally called by user code. Programs linking - only to the nunit.engine.api assembly are given a - pre-initialized instance of TestEngine. Programs - that link directly to nunit.engine usually do so - in order to perform custom initialization. - - - - - Returns a test runner instance for use by clients in discovering, - exploring and executing tests. - - The TestPackage for which the runner is intended. - An ITestRunner. - - - - The ITestListener interface is used to receive notices of significant - events while a test is running. Its single method accepts an Xml string, - which may represent any event generated by the test framework, the driver - or any of the runners internal to the engine. Use of Xml means that - any driver and framework may add additional events and the engine will - simply pass them on through this interface. - - - - - Handle a progress report or other event. - - An XML progress report. - - - - Interface to a TestFilterBuilder, which is used to create TestFilters - - - - - Add a test to be selected - - The full name of the test, as created by NUnit - - - - Specify what is to be included by the filter using a where clause. - - A where clause that will be parsed by NUnit to create the filter. - - - - Get a TestFilter constructed according to the criteria specified by the other calls. - - A TestFilter. - - - - The TestFilterService provides builders that can create TestFilters - - - - - Get an uninitialized TestFilterBuilder - - - - - The ITestRun class represents an ongoing test run. - - - - - Get the result of the test. - - An XmlNode representing the test run result - - - - Blocks the current thread until the current test run completes - or the timeout is reached - - A that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. - True if the run completed - - - - Interface implemented by all test runners. - - - - - Get a flag indicating whether a test is running - - - - - Load a TestPackage for possible execution - - An XmlNode representing the loaded package. - - This method is normally optional, since Explore and Run call - it automatically when necessary. The method is kept in order - to make it easier to convert older programs that use it. - - - - - Unload any loaded TestPackage. If none is loaded, - the call is ignored. - - - - - Reload the current TestPackage - - An XmlNode representing the loaded package. - - - - Count the test cases that would be run under - the specified filter. - - A TestFilter - The count of test cases - - - - Run the tests in the loaded TestPackage and return a test result. The tests - are run synchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - An XmlNode giving the result of the test execution - - - - Start a run of the tests in the loaded TestPackage. The tests are run - asynchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Explore a loaded TestPackage and return information about the tests found. - - The TestFilter to be used in selecting tests to explore. - An XmlNode representing the tests found. - - - - TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface. - - - - - Create an instance of the test engine. - - This parameter is no longer used but has not been removed to ensure API compatibility. - Thrown when a test engine of the required minimum version is not found - An - - - - Create an instance of the test engine with a minimum version. - - The minimum version of the engine to return inclusive. - This parameter is no longer used but has not been removed to ensure API compatibility. - Thrown when a test engine of the required minimum version is not found - An - - - - Abstract base for all test filters. A filter is represented - by an XmlNode with <filter> as its topmost element. - In the console runner, filters serve only to carry this - XML representation, as all filtering is done by the engine. - - - - - Initializes a new instance of the class. - - The XML text that specifies the filter. - - - - The empty filter - one that always passes. - - - - - Gets the XML representation of this filter as a string. - - - - - TestPackage holds information about a set of test files to - be loaded by a TestRunner. Each TestPackage represents - tests for one or more test files. TestPackages may be named - or anonymous, depending on the constructor used. - - Upon construction, a package is given an ID (string), which - remains unchanged for the lifetime of the TestPackage instance. - The package ID is passed to the test framework for use in generating - test IDs. - - A runner that reloads test assemblies and wants the ids to remain stable - should avoid creating a new package but should instead use the original - package, changing settings as needed. This gives the best chance for the - tests in the reloaded assembly to match those originally loaded. - - - - - Construct a named TestPackage, specifying a file path for - the assembly or project to be used. - - The file path. - - - - Construct an anonymous TestPackage that wraps test files. - - - - - - Every test package gets a unique ID used to prefix test IDs within that package. - - - The generated ID is only unique for packages created within the same application domain. - For that reason, NUnit pre-creates all test packages that will be needed. - - - - - Gets the name of the package - - - - - Gets the path to the file containing tests. It may be - an assembly or a recognized project type. - - - - - Gets the list of SubPackages contained in this package - - - - - Gets the settings dictionary for this package. - - - - - Add a subproject to the package. - - The subpackage to be added - - - - Add a setting to a package and all of its subpackages. - - The name of the setting - The value of the setting - - Once a package is created, subpackages may have been created - as well. If you add a setting directly to the Settings dictionary - of the package, the subpackages are not updated. This method is - used when the settings are intended to be reflected to all the - subpackages under the package. - - - - - Return the value of a setting or a default. - - The name of the setting - The default value - - - - - TestSelectionParserException is thrown when an error - is found while parsing the selection expression. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - - - Serialization constructor - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.core.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.core.dll deleted file mode 100644 index 6d2064569761b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.core.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.core.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.core.pdb deleted file mode 100644 index b0b1c7cedad6c..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.core.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.dll deleted file mode 100644 index cf1e6de21c809..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.pdb deleted file mode 100644 index e440d6b44e9b7..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.tests.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.tests.dll deleted file mode 100644 index c5705547380d8..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.tests.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.tests.dll.config b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.tests.dll.config deleted file mode 100644 index 1f86e4c2b9779..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.tests.dll.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.tests.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.tests.pdb deleted file mode 100644 index d94ab588624c0..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.engine.tests.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.framework.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.framework.dll deleted file mode 100644 index b1d3105af703a..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit.framework.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.exe b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.exe deleted file mode 100644 index 43437cb6205c9..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.exe and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.exe.config b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.exe.config deleted file mode 100644 index bf784cbb9dcee..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.exe.config +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.pdb deleted file mode 100644 index a493c01c14fa9..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.tests.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.tests.dll deleted file mode 100644 index 1cddfd5faa333..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.tests.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.tests.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.tests.pdb deleted file mode 100644 index 8c10e91afdf48..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/nunit3-console.tests.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/net35/testcentric.engine.metadata.dll b/third_party/dotnet/nunit-console-3.12.0/bin/net35/testcentric.engine.metadata.dll deleted file mode 100644 index 3dc2fbcd75e92..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/net35/testcentric.engine.metadata.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/Castle.Core.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/Castle.Core.dll deleted file mode 100644 index 8917be09566df..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/Castle.Core.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/EngineTests.nunit b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/EngineTests.nunit deleted file mode 100644 index dfb901ff99438..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/EngineTests.nunit +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/Microsoft.DotNet.InternalAbstractions.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/Microsoft.DotNet.InternalAbstractions.dll deleted file mode 100644 index 9effe0c27d669..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/Microsoft.DotNet.InternalAbstractions.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/NSubstitute.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/NSubstitute.dll deleted file mode 100644 index 1d5f8fa9e8697..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/NSubstitute.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Collections.NonGeneric.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Collections.NonGeneric.dll deleted file mode 100644 index 92fc8f20edcee..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Collections.Specialized.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Collections.Specialized.dll deleted file mode 100644 index a1323642b9409..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Collections.Specialized.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.ComponentModel.Primitives.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.ComponentModel.Primitives.dll deleted file mode 100644 index 44bdd096e673b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.ComponentModel.TypeConverter.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.ComponentModel.TypeConverter.dll deleted file mode 100644 index 82463bec44989..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Reflection.TypeExtensions.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Reflection.TypeExtensions.dll deleted file mode 100644 index 975497cf34cac..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Xml.XPath.XmlDocument.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Xml.XPath.XmlDocument.dll deleted file mode 100644 index 70eb0707eb3dc..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Xml.XPath.XmlDocument.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Xml.XPath.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Xml.XPath.dll deleted file mode 100644 index 963874b0631ca..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Xml.XPath.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Xml.XmlDocument.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Xml.XmlDocument.dll deleted file mode 100644 index c1d415d19c12e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Xml.XmlSerializer.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Xml.XmlSerializer.dll deleted file mode 100644 index bb364add75b1e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/TextSummary.xslt b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/TextSummary.xslt deleted file mode 100644 index 0b9048c59edcb..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/TextSummary.xslt +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - NUnit Version - - - - - - - - Runtime Environment - - OS Version: - - - CLR Version: - - - - Tests Run: - - - , Passed: - - , Failed: - - , Inconclusive: - - , Skipped: - - - , Elapsed Time: - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/TransformWithDTD.xslt b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/TransformWithDTD.xslt deleted file mode 100644 index 0ac8f3dd922fd..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/TransformWithDTD.xslt +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/alt.config b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/alt.config deleted file mode 100644 index 682d5c0950e3d..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/alt.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/mock-assembly.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/mock-assembly.deps.json deleted file mode 100644 index 92f00279418ff..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/mock-assembly.deps.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v1.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v1.1": { - "mock-assembly/1.0.0": { - "dependencies": { - "NUnit": "3.12.0" - }, - "runtime": { - "mock-assembly.dll": {} - } - }, - "NUnit/3.12.0": { - "dependencies": { - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Reflection.TypeExtensions": "4.4.0" - }, - "runtime": { - "lib/netstandard1.4/nunit.framework.dll": { - "assemblyVersion": "3.12.0.0", - "fileVersion": "3.12.0.0" - } - } - }, - "System.Collections.NonGeneric/4.3.0": { - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.4.0" - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.TypeExtensions/4.4.0": { - "runtime": { - "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - } - } - }, - "libraries": { - "mock-assembly/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "NUnit/3.12.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3oJTrcUcT9wmweBUwgUf0f1XIYy6RZq2ziV+RM95HMKAJGsHPN2i3MKK1dAPvDPMRLz799Llj4eyu/STB9Q7OA==", - "path": "nunit/3.12.0", - "hashPath": "nunit.3.12.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dkmh/ySlwnXJp/1qYP9uyKkCK1CXR/REFzl7abHcArxBcV91mY2CgrrzSRA5Z/X4MevJWwXsklGRdR3A7K9zbg==", - "path": "system.reflection.typeextensions/4.4.0", - "hashPath": "system.reflection.typeextensions.4.4.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/mock-assembly.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/mock-assembly.dll deleted file mode 100644 index 19b7a943b4c5b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/mock-assembly.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/mock-assembly.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/mock-assembly.pdb deleted file mode 100644 index 15e552399a4bc..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/mock-assembly.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/notest-assembly.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/notest-assembly.deps.json deleted file mode 100644 index ddd3c0ff7fdf6..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/notest-assembly.deps.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v1.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v1.1": { - "notest-assembly/1.0.0": { - "dependencies": { - "NUnit": "3.12.0" - }, - "runtime": { - "notest-assembly.dll": {} - } - }, - "NUnit/3.12.0": { - "dependencies": { - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Reflection.TypeExtensions": "4.4.0" - }, - "runtime": { - "lib/netstandard1.4/nunit.framework.dll": { - "assemblyVersion": "3.12.0.0", - "fileVersion": "3.12.0.0" - } - } - }, - "System.Collections.NonGeneric/4.3.0": { - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.4.0" - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.TypeExtensions/4.4.0": { - "runtime": { - "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - } - } - }, - "libraries": { - "notest-assembly/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "NUnit/3.12.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3oJTrcUcT9wmweBUwgUf0f1XIYy6RZq2ziV+RM95HMKAJGsHPN2i3MKK1dAPvDPMRLz799Llj4eyu/STB9Q7OA==", - "path": "nunit/3.12.0", - "hashPath": "nunit.3.12.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dkmh/ySlwnXJp/1qYP9uyKkCK1CXR/REFzl7abHcArxBcV91mY2CgrrzSRA5Z/X4MevJWwXsklGRdR3A7K9zbg==", - "path": "system.reflection.typeextensions/4.4.0", - "hashPath": "system.reflection.typeextensions.4.4.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/notest-assembly.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/notest-assembly.dll deleted file mode 100644 index edad3bc6d532b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/notest-assembly.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/notest-assembly.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/notest-assembly.pdb deleted file mode 100644 index b4fc234432636..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/notest-assembly.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.api.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.api.dll deleted file mode 100644 index 55bb63e857346..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.api.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.api.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.api.pdb deleted file mode 100644 index 903527ba3a052..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.api.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.api.xml b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.api.xml deleted file mode 100644 index baf1cf87a6ded..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.api.xml +++ /dev/null @@ -1,1137 +0,0 @@ - - - - nunit.engine.api - - - - - NUnitEngineException is thrown when the engine has been - called with improper values or when a particular facility - is not available. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - The exception that is thrown if a valid test engine is not found - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The minimum version. - - - - NUnitEngineUnloadException is thrown when a test run has completed successfully - but one or more errors were encountered when attempting to unload - and shut down the test run cleanly. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Construct with a message and a collection of exceptions. - - - - - Gets the collection of exceptions . - - - - - The ExtensionAttribute is used to identify a class that is intended - to serve as an extension. - - - - - Initializes a new instance of the class. - - - - - A unique string identifying the ExtensionPoint for which this Extension is - intended. This is an optional field provided NUnit is able to deduce the - ExtensionPoint from the Type of the extension class. - - - - - An optional description of what the extension does. - - - - - Flag indicating whether the extension is enabled. - - true if enabled; otherwise, false. - - - - The minimum Engine version for which this extension is designed - - - - - ExtensionPointAttribute is used at the assembly level to identify and - document any ExtensionPoints supported by the assembly. - - - - - Construct an ExtensionPointAttribute - - A unique string identifying the extension point. - The required Type of any extension that is installed at this extension point. - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - The required Type (usually an interface) of any extension that is - installed at this ExtensionPoint. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - The ExtensionPropertyAttribute is used to specify named properties for an extension. - - - - - Construct an ExtensionPropertyAttribute - - The name of the property - The property value - - - - The name of the property. - - - - - The property value - - - - - Interface implemented by a Type that knows how to create a driver for a test assembly. - - - - - Gets a flag indicating whether a given AssemblyName - represents a test framework supported by this factory. - - An AssemblyName referring to the possible test framework. - - - - Gets a driver for a given test assembly and a framework - which the assembly is already known to reference. - - An AssemblyName referring to the test framework. - - - - - The IExtensionNode interface is implemented by a class that represents a - single extension being installed on a particular extension point. - - - - - Gets the full name of the Type of the extension object. - - - - - Gets a value indicating whether this is enabled. - - true if enabled; otherwise, false. - - - - Gets the unique string identifying the ExtensionPoint for which - this Extension is intended. This identifier may be supplied by the attribute - marking the extension or deduced by NUnit from the Type of the extension class. - - - - - Gets an optional description of what the extension does. - - - - - The TargetFramework of the extension assembly. - - - - - Gets a collection of the names of all this extension's properties - - - - - Gets a collection of the values of a particular named property - If none are present, returns an empty enumerator. - - The property name - A collection of values - - - - The path to the assembly implementing this extension. - - - - - The version of the assembly implementing this extension. - - - - - An ExtensionPoint represents a single point in the TestEngine - that may be extended by user addins and extensions. - - - - - Gets the unique path identifying this extension point. - - - - - Gets the description of this extension point. May be null. - - - - - Gets the FullName of the Type required for any extension to be installed at this extension point. - - - - - Gets an enumeration of IExtensionNodes for extensions installed on this extension point. - - - - - The IFrameworkDriver interface is implemented by a class that - is able to use an external framework to explore or run tests - under the engine. - - - - - Gets and sets the unique identifier for this driver, - used to ensure that test ids are unique across drivers. - - - - - Loads the tests in an assembly. - - An Xml string representing the loaded test - - - - Count the test cases that would be executed. - - An XML string representing the TestFilter to use in counting the tests - The number of test cases counted - - - - Executes the tests in an assembly. - - An ITestEventHandler that receives progress notices - A XML string representing the filter that controls which tests are executed - An Xml string representing the result - - - - Returns information about the tests in an assembly. - - An XML string representing the filter that controls which tests are included - An Xml string representing the tests - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Interface for the various project types that the engine can load. - - - - - Gets the path to the file storing this project, if any. - If the project has not been saved, this is null. - - - - - Gets the active configuration, as defined - by the particular project. - - - - - Gets a list of the configs for this project - - - - - Gets a test package for the primary or active - configuration within the project. The package - includes all the assemblies and any settings - specified in the project format. - - A TestPackage - - - - Gets a TestPackage for a specific configuration - within the project. The package includes all the - assemblies and any settings specified in the - project format. - - The name of the config to use - A TestPackage for the named configuration. - - - - The IProjectLoader interface is implemented by any class - that knows how to load projects in a specific format. - - - - - Returns true if the file indicated is one that this - loader knows how to load. - - The path of the project file - True if the loader knows how to load this file, otherwise false - - - - Loads a project of a known format. - - The path of the project file - An IProject interface to the loaded project or null if the project cannot be loaded - - - - Common interface for objects that process and write out test results - - - - - Checks if the output path is writable. If the output is not - writable, this method should throw an exception. - - - - - - Writes result to the specified output path. - - XmlNode for the result - Path to which it should be written - - - - Writes result to a TextWriter. - - XmlNode for the result - TextWriter to which it should be written - - - - TypeExtensionPointAttribute is used to bind an extension point - to a class or interface. - - - - - Construct a TypeExtensionPointAttribute, specifying the path. - - A unique string identifying the extension point. - - - - Construct an TypeExtensionPointAttribute, without specifying the path. - The extension point will use a path constructed based on the interface - or class to which the attribute is applied. - - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - Interface that returns a list of available runtime frameworks. - - - - - Gets a list of available runtime frameworks. - - - - - The IExtensionService interface allows a runner to manage extensions. - - - - - Gets an enumeration of all ExtensionPoints in the engine. - - - - - Gets an enumeration of all installed Extensions. - - - - - Get an ExtensionPoint based on its unique identifying path. - - - - - Get an enumeration of ExtensionNodes based on their identifying path. - - - - - Enable or disable an extension - - - - - - - Interface for logging within the engine - - - - - Logs the specified message at the error level. - - The message. - - - - Logs the specified message at the error level. - - The message. - The arguments. - - - - Logs the specified message at the warning level. - - The message. - - - - Logs the specified message at the warning level. - - The message. - The arguments. - - - - Logs the specified message at the info level. - - The message. - - - - Logs the specified message at the info level. - - The message. - The arguments. - - - - Logs the specified message at the debug level. - - The message. - - - - Logs the specified message at the debug level. - - The message. - The arguments. - - - - Interface to abstract getting loggers - - - - - Gets the logger. - - The name of the logger to get. - - - - - InternalTraceLevel is an enumeration controlling the - level of detailed presented in the internal log. - - - - - Use the default settings as specified by the user. - - - - - Do not display any trace messages - - - - - Display Error messages only - - - - - Display Warning level and higher messages - - - - - Display informational and higher messages - - - - - Display debug messages and higher - i.e. all messages - - - - - Display debug messages and higher - i.e. all messages - - - - - The IRecentFiles interface is used to isolate the app - from various implementations of recent files. - - - - - The max number of files saved - - - - - Get a list of all the file entries - - The most recent file list - - - - Set the most recent file name, reordering - the saved names as needed and removing the oldest - if the max number of files would be exceeded. - The current CLR version is used to create the entry. - - - - - Remove a file from the list - - The name of the file to remove - - - - IResultWriterService provides result writers for a specified - well-known format. - - - - - Gets an array of the available formats - - - - - Gets a ResultWriter for a given format and set of arguments. - - The name of the format to be used - A set of arguments to be used in constructing the writer or null if non arguments are needed - An IResultWriter - - - - Interface implemented by objects representing a runtime framework. - - - - - Gets the inique Id for this runtime, such as "net-4.5" - - - - - Gets the display name of the framework, such as ".NET 4.5" - - - - - Gets the framework version: usually contains two components, Major - and Minor, which match the corresponding CLR components, but not always. - - - - - Gets the Version of the CLR for this framework - - - - - Gets a string representing the particular profile installed, - or null if there is no profile. Currently. the only defined - values are Full and Client. - - - - - Implemented by a type that provides information about the - current and other available runtimes. - - - - - Returns true if the runtime framework represented by - the string passed as an argument is available. - - A string representing a framework, like 'net-4.0' - True if the framework is available, false if unavailable or nonexistent - - - - Selects a target runtime framework for a TestPackage based on - the settings in the package and the assemblies themselves. - The package RuntimeFramework setting may be updated as a - result and the selected runtime is returned. - - Note that if a package has subpackages, the subpackages may run on a different - framework to the top-level package. In future, this method should - probably not return a simple string, and instead require runners - to inspect the test package structure, to find all desired frameworks. - - A TestPackage - The selected RuntimeFramework - - - - Enumeration representing the status of a service - - - - Service was never started or has been stopped - - - Started successfully - - - Service failed to start and is unavailable - - - - The IService interface is implemented by all Services. Although it - is extensible, it does not reside in the Extensibility namespace - because it is so widely used by the engine. - - - - - The ServiceContext - - - - - Gets the ServiceStatus of this service - - - - - Initialize the Service - - - - - Do any cleanup needed before terminating the service - - - - - IServiceLocator allows clients to locate any NUnit services - for which the interface is referenced. In normal use, this - linits it to those services using interfaces defined in the - nunit.engine.api assembly. - - - - - Return a specified type of service - - - - - Return a specified type of service - - - - - Event handler for settings changes - - The sender. - The instance containing the event data. - - - - Event argument for settings changes - - - - - Initializes a new instance of the class. - - Name of the setting that has changed. - - - - Gets the name of the setting that has changed - - - - - The ISettings interface is used to access all user - settings and options. - - - - - Occurs when the settings are changed. - - - - - Load a setting from the storage. - - Name of the setting to load - Value of the setting or null - - - - Load a setting from the storage or return a default value - - Name of the setting to load - Value to return if the setting is missing - Value of the setting or the default value - - - - Remove a setting from the storage - - Name of the setting to remove - - - - Remove an entire group of settings from the storage - - Name of the group to remove - - - - Save a setting in the storage - - Name of the setting to save - Value to be saved - - - - ITestEngine represents an instance of the test engine. - Clients wanting to discover, explore or run tests start - require an instance of the engine, which is generally - acquired from the TestEngineActivator class. - - - - - Gets the IServiceLocator interface, which gives access to - certain services provided by the engine. - - - - - Gets and sets the directory path used by the engine for saving files. - Some services may ignore changes to this path made after initialization. - The default value is the current directory. - - - - - Gets and sets the InternalTraceLevel used by the engine. Changing this - setting after initialization will have no effect. The default value - is the value saved in the NUnit settings. - - - - - Initialize the engine. This includes initializing mono addins, - setting the trace level and creating the standard set of services - used in the Engine. - - This interface is not normally called by user code. Programs linking - only to the nunit.engine.api assembly are given a - pre-initialized instance of TestEngine. Programs - that link directly to nunit.engine usually do so - in order to perform custom initialization. - - - - - Returns a test runner instance for use by clients in discovering, - exploring and executing tests. - - The TestPackage for which the runner is intended. - An ITestRunner. - - - - The ITestListener interface is used to receive notices of significant - events while a test is running. Its single method accepts an Xml string, - which may represent any event generated by the test framework, the driver - or any of the runners internal to the engine. Use of Xml means that - any driver and framework may add additional events and the engine will - simply pass them on through this interface. - - - - - Handle a progress report or other event. - - An XML progress report. - - - - Interface to a TestFilterBuilder, which is used to create TestFilters - - - - - Add a test to be selected - - The full name of the test, as created by NUnit - - - - Specify what is to be included by the filter using a where clause. - - A where clause that will be parsed by NUnit to create the filter. - - - - Get a TestFilter constructed according to the criteria specified by the other calls. - - A TestFilter. - - - - The TestFilterService provides builders that can create TestFilters - - - - - Get an uninitialized TestFilterBuilder - - - - - The ITestRun class represents an ongoing test run. - - - - - Get the result of the test. - - An XmlNode representing the test run result - - - - Blocks the current thread until the current test run completes - or the timeout is reached - - A that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. - True if the run completed - - - - Interface implemented by all test runners. - - - - - Get a flag indicating whether a test is running - - - - - Load a TestPackage for possible execution - - An XmlNode representing the loaded package. - - This method is normally optional, since Explore and Run call - it automatically when necessary. The method is kept in order - to make it easier to convert older programs that use it. - - - - - Unload any loaded TestPackage. If none is loaded, - the call is ignored. - - - - - Reload the current TestPackage - - An XmlNode representing the loaded package. - - - - Count the test cases that would be run under - the specified filter. - - A TestFilter - The count of test cases - - - - Run the tests in the loaded TestPackage and return a test result. The tests - are run synchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - An XmlNode giving the result of the test execution - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Explore a loaded TestPackage and return information about the tests found. - - The TestFilter to be used in selecting tests to explore. - An XmlNode representing the tests found. - - - - TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface. - - - - - Create an instance of the test engine. - - An - - - - Abstract base for all test filters. A filter is represented - by an XmlNode with <filter> as its topmost element. - In the console runner, filters serve only to carry this - XML representation, as all filtering is done by the engine. - - - - - Initializes a new instance of the class. - - The XML text that specifies the filter. - - - - The empty filter - one that always passes. - - - - - Gets the XML representation of this filter as a string. - - - - - TestPackage holds information about a set of test files to - be loaded by a TestRunner. Each TestPackage represents - tests for one or more test files. TestPackages may be named - or anonymous, depending on the constructor used. - - Upon construction, a package is given an ID (string), which - remains unchanged for the lifetime of the TestPackage instance. - The package ID is passed to the test framework for use in generating - test IDs. - - A runner that reloads test assemblies and wants the ids to remain stable - should avoid creating a new package but should instead use the original - package, changing settings as needed. This gives the best chance for the - tests in the reloaded assembly to match those originally loaded. - - - - - Construct a named TestPackage, specifying a file path for - the assembly or project to be used. - - The file path. - - - - Construct an anonymous TestPackage that wraps test files. - - - - - - Every test package gets a unique ID used to prefix test IDs within that package. - - - The generated ID is only unique for packages created within the same application domain. - For that reason, NUnit pre-creates all test packages that will be needed. - - - - - Gets the name of the package - - - - - Gets the path to the file containing tests. It may be - an assembly or a recognized project type. - - - - - Gets the list of SubPackages contained in this package - - - - - Gets the settings dictionary for this package. - - - - - Add a subproject to the package. - - The subpackage to be added - - - - Add a setting to a package and all of its subpackages. - - The name of the setting - The value of the setting - - Once a package is created, subpackages may have been created - as well. If you add a setting directly to the Settings dictionary - of the package, the subpackages are not updated. This method is - used when the settings are intended to be reflected to all the - subpackages under the package. - - - - - Return the value of a setting or a default. - - The name of the setting - The default value - - - - - TestSelectionParserException is thrown when an error - is found while parsing the selection expression. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.core.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.core.dll deleted file mode 100644 index 792cca31c0c15..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.core.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.core.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.core.pdb deleted file mode 100644 index 33a50b4a83337..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.core.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.dll deleted file mode 100644 index 9694f65fbd68e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.pdb deleted file mode 100644 index 18a3eb58eadc8..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.deps.json deleted file mode 100644 index ba5c74e8efe4c..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.deps.json +++ /dev/null @@ -1,382 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v1.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v1.1": { - "nunit.engine.tests/1.0.0": { - "dependencies": { - "NSubstitute": "2.0.3", - "NUnit": "3.12.0", - "NUnitLite": "3.12.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "mock-assembly": "3.12.0", - "nunit.engine": "3.12.0", - "nunit.engine.api": "3.12.0", - "nunit.engine.core": "3.12.0" - }, - "runtime": { - "nunit.engine.tests.dll": {} - } - }, - "Castle.Core/4.0.0": { - "dependencies": { - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.TraceSource": "4.0.0", - "System.Reflection.TypeExtensions": "4.4.0", - "System.Xml.XmlDocument": "4.3.0", - "System.Xml.XmlSerializer": "4.0.11" - }, - "runtime": { - "lib/netstandard1.3/Castle.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.0.0" - } - } - }, - "Microsoft.DotNet.InternalAbstractions/1.0.0": { - "dependencies": { - "System.Reflection.TypeExtensions": "4.4.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "NSubstitute/2.0.3": { - "dependencies": { - "Castle.Core": "4.0.0", - "System.Reflection.TypeExtensions": "4.4.0" - }, - "runtime": { - "lib/netstandard1.3/NSubstitute.dll": { - "assemblyVersion": "2.0.3.0", - "fileVersion": "2.0.3.0" - } - } - }, - "NUnit/3.12.0": { - "dependencies": { - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Reflection.TypeExtensions": "4.4.0" - }, - "runtime": { - "lib/netstandard1.4/nunit.framework.dll": { - "assemblyVersion": "3.12.0.0", - "fileVersion": "3.12.0.0" - } - } - }, - "NUnitLite/3.12.0": { - "dependencies": { - "NUnit": "3.12.0", - "System.Reflection.TypeExtensions": "4.4.0" - }, - "runtime": { - "lib/netstandard1.4/nunitlite.dll": { - "assemblyVersion": "3.12.0.0", - "fileVersion": "3.12.0.0" - } - } - }, - "System.Collections.NonGeneric/4.3.0": { - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.4.0" - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Diagnostics.TraceSource/4.0.0": { - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "1.0.24212.1" - }, - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "1.0.24212.1" - } - } - }, - "System.Reflection.TypeExtensions/4.4.0": { - "runtime": { - "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XmlDocument/4.3.0": { - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "dependencies": { - "System.Reflection.TypeExtensions": "4.4.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlSerializer.dll": { - "assemblyVersion": "4.0.11.0", - "fileVersion": "1.0.24212.1" - } - } - }, - "System.Xml.XPath/4.3.0": { - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "dependencies": { - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "TestCentric.Metadata/1.4.1": { - "runtime": { - "lib/netstandard1.6/testcentric.engine.metadata.dll": { - "assemblyVersion": "1.4.1.0", - "fileVersion": "1.4.1.0" - } - } - }, - "mock-assembly/3.12.0": { - "dependencies": { - "NUnit": "3.12.0" - }, - "runtime": { - "mock-assembly.dll": {} - } - }, - "nunit.engine/3.12.0": { - "dependencies": { - "Microsoft.DotNet.InternalAbstractions": "1.0.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0", - "nunit.engine.core": "3.12.0" - }, - "runtime": { - "nunit.engine.dll": {} - } - }, - "nunit.engine.api/3.12.0": { - "dependencies": { - "System.Xml.XPath.XmlDocument": "4.3.0" - }, - "runtime": { - "nunit.engine.api.dll": {} - } - }, - "nunit.engine.core/3.12.0": { - "dependencies": { - "Microsoft.DotNet.InternalAbstractions": "1.0.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0" - }, - "runtime": { - "nunit.engine.core.dll": {} - } - } - } - }, - "libraries": { - "nunit.engine.tests/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Castle.Core/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iLINpMFc07bcb0d075AB0mcXV/MT8J8oyBarDSeyrLM03UoCVOuvYu87LI4511XHfy7XEhHtMDum5gt2s56xDg==", - "path": "castle.core/4.0.0", - "hashPath": "castle.core.4.0.0.nupkg.sha512" - }, - "Microsoft.DotNet.InternalAbstractions/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==", - "path": "microsoft.dotnet.internalabstractions/1.0.0", - "hashPath": "microsoft.dotnet.internalabstractions.1.0.0.nupkg.sha512" - }, - "NSubstitute/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZQRZ5b3/lhz4qKUdwzFSoPiFJnYSIjVzsmmfgvFG/7GjJ3+HO59NvaKBg+RcMNBrMNAR07X/mal3as4P0w+Dmw==", - "path": "nsubstitute/2.0.3", - "hashPath": "nsubstitute.2.0.3.nupkg.sha512" - }, - "NUnit/3.12.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3oJTrcUcT9wmweBUwgUf0f1XIYy6RZq2ziV+RM95HMKAJGsHPN2i3MKK1dAPvDPMRLz799Llj4eyu/STB9Q7OA==", - "path": "nunit/3.12.0", - "hashPath": "nunit.3.12.0.nupkg.sha512" - }, - "NUnitLite/3.12.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EgY2STVjRNy/1zxuVz1okVx/A7KhoXH9O7MQ7i0zd6qN7MtnlnegP7iHYBNddCeDu4ME0Pn1c0X/vmM9xgoTAg==", - "path": "nunitlite/3.12.0", - "hashPath": "nunitlite.3.12.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.TraceSource/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==", - "path": "system.diagnostics.tracesource/4.0.0", - "hashPath": "system.diagnostics.tracesource.4.0.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dkmh/ySlwnXJp/1qYP9uyKkCK1CXR/REFzl7abHcArxBcV91mY2CgrrzSRA5Z/X4MevJWwXsklGRdR3A7K9zbg==", - "path": "system.reflection.typeextensions/4.4.0", - "hashPath": "system.reflection.typeextensions.4.4.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", - "path": "system.xml.xmlserializer/4.0.11", - "hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", - "path": "system.xml.xpath.xmldocument/4.3.0", - "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" - }, - "TestCentric.Metadata/1.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P9m8Vmg76Xq87WIhlE4IgyZhLkmSNMtfsb8IRwhb/C/el/3fLTmKol5POpNx62MJbV7GVj3GiL4e34V9cYnbUw==", - "path": "testcentric.metadata/1.4.1", - "hashPath": "testcentric.metadata.1.4.1.nupkg.sha512" - }, - "mock-assembly/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine.api/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine.core/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.dll deleted file mode 100644 index a84fd8ee969e0..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.dll.config b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.dll.config deleted file mode 100644 index 1f86e4c2b9779..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.dll.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.pdb deleted file mode 100644 index f1fe57f76ffa7..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.runtimeconfig.dev.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.runtimeconfig.dev.json deleted file mode 100644 index 9a04279561b17..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Chris\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Chris\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.runtimeconfig.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.runtimeconfig.json deleted file mode 100644 index 1d0bcb029d276..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.engine.tests.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "netcoreapp1.1", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "1.1.2" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.framework.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.framework.dll deleted file mode 100644 index 1b98e7e1539fc..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunit.framework.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunitlite.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunitlite.dll deleted file mode 100644 index fb8c28fc7a710..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/nunitlite.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll deleted file mode 100644 index ab39b18aaea35..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll deleted file mode 100644 index 101733ad19259..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/testcentric.engine.metadata.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/testcentric.engine.metadata.dll deleted file mode 100644 index 9b659d946a3ba..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp1.1/testcentric.engine.metadata.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/Castle.Core.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/Castle.Core.dll deleted file mode 100644 index 8917be09566df..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/Castle.Core.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/EngineTests.nunit b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/EngineTests.nunit deleted file mode 100644 index dfb901ff99438..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/EngineTests.nunit +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/NSubstitute.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/NSubstitute.dll deleted file mode 100644 index 1d5f8fa9e8697..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/NSubstitute.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/System.Xml.XPath.XmlDocument.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/System.Xml.XPath.XmlDocument.dll deleted file mode 100644 index 70eb0707eb3dc..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/System.Xml.XPath.XmlDocument.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/TextSummary.xslt b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/TextSummary.xslt deleted file mode 100644 index 0b9048c59edcb..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/TextSummary.xslt +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - NUnit Version - - - - - - - - Runtime Environment - - OS Version: - - - CLR Version: - - - - Tests Run: - - - , Passed: - - , Failed: - - , Inconclusive: - - , Skipped: - - - , Elapsed Time: - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/TransformWithDTD.xslt b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/TransformWithDTD.xslt deleted file mode 100644 index 0ac8f3dd922fd..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/TransformWithDTD.xslt +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/alt.config b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/alt.config deleted file mode 100644 index 682d5c0950e3d..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/alt.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/mock-assembly.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/mock-assembly.deps.json deleted file mode 100644 index 9bf4cfdbf0322..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/mock-assembly.deps.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v2.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v2.1": { - "mock-assembly/1.0.0": { - "dependencies": { - "NUnit": "3.13.0" - }, - "runtime": { - "mock-assembly.dll": {} - } - }, - "NUnit/3.13.0": { - "runtime": { - "lib/netstandard2.0/nunit.framework.dll": { - "assemblyVersion": "3.13.0.0", - "fileVersion": "3.13.0.0" - } - } - } - } - }, - "libraries": { - "mock-assembly/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "NUnit/3.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G+BOONgJKtNtprjGQ54l0m+Vq2VFCMh/H6ljuHfqrRlX6YkNy0GjMd5Nn0NpJidGpRd4gAOJsBqNuxr7Kgc/5g==", - "path": "nunit/3.13.0", - "hashPath": "nunit.3.13.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/mock-assembly.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/mock-assembly.dll deleted file mode 100644 index a76175139ade5..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/mock-assembly.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/mock-assembly.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/mock-assembly.pdb deleted file mode 100644 index 0804bb6a6ec26..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/mock-assembly.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/notest-assembly.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/notest-assembly.deps.json deleted file mode 100644 index d8a2f5ce5a268..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/notest-assembly.deps.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v2.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v2.1": { - "notest-assembly/1.0.0": { - "dependencies": { - "NUnit": "3.13.0" - }, - "runtime": { - "notest-assembly.dll": {} - } - }, - "NUnit/3.13.0": { - "runtime": { - "lib/netstandard2.0/nunit.framework.dll": { - "assemblyVersion": "3.13.0.0", - "fileVersion": "3.13.0.0" - } - } - } - } - }, - "libraries": { - "notest-assembly/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "NUnit/3.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G+BOONgJKtNtprjGQ54l0m+Vq2VFCMh/H6ljuHfqrRlX6YkNy0GjMd5Nn0NpJidGpRd4gAOJsBqNuxr7Kgc/5g==", - "path": "nunit/3.13.0", - "hashPath": "nunit.3.13.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/notest-assembly.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/notest-assembly.dll deleted file mode 100644 index 33d80e9041ea9..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/notest-assembly.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/notest-assembly.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/notest-assembly.pdb deleted file mode 100644 index ecde948c841f9..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/notest-assembly.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.api.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.api.dll deleted file mode 100644 index 39c93ef6fa4a4..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.api.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.api.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.api.pdb deleted file mode 100644 index 8e281f6e0ecdd..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.api.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.api.xml b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.api.xml deleted file mode 100644 index 52687344e914b..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.api.xml +++ /dev/null @@ -1,1161 +0,0 @@ - - - - nunit.engine.api - - - - - NUnitEngineException is thrown when the engine has been - called with improper values or when a particular facility - is not available. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Serialization constructor - - - - - The exception that is thrown if a valid test engine is not found - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The minimum version. - - - - NUnitEngineUnloadException is thrown when a test run has completed successfully - but one or more errors were encountered when attempting to unload - and shut down the test run cleanly. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Construct with a message and a collection of exceptions. - - - - - Serialization constructor. - - - - - Gets the collection of exceptions . - - - - - The ExtensionAttribute is used to identify a class that is intended - to serve as an extension. - - - - - Initializes a new instance of the class. - - - - - A unique string identifying the ExtensionPoint for which this Extension is - intended. This is an optional field provided NUnit is able to deduce the - ExtensionPoint from the Type of the extension class. - - - - - An optional description of what the extension does. - - - - - Flag indicating whether the extension is enabled. - - true if enabled; otherwise, false. - - - - The minimum Engine version for which this extension is designed - - - - - ExtensionPointAttribute is used at the assembly level to identify and - document any ExtensionPoints supported by the assembly. - - - - - Construct an ExtensionPointAttribute - - A unique string identifying the extension point. - The required Type of any extension that is installed at this extension point. - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - The required Type (usually an interface) of any extension that is - installed at this ExtensionPoint. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - The ExtensionPropertyAttribute is used to specify named properties for an extension. - - - - - Construct an ExtensionPropertyAttribute - - The name of the property - The property value - - - - The name of the property. - - - - - The property value - - - - - Interface implemented by a Type that knows how to create a driver for a test assembly. - - - - - Gets a flag indicating whether a given AssemblyName - represents a test framework supported by this factory. - - An AssemblyName referring to the possible test framework. - - - - Gets a driver for a given test assembly and a framework - which the assembly is already known to reference. - - An AssemblyName referring to the test framework. - - - - - The IExtensionNode interface is implemented by a class that represents a - single extension being installed on a particular extension point. - - - - - Gets the full name of the Type of the extension object. - - - - - Gets a value indicating whether this is enabled. - - true if enabled; otherwise, false. - - - - Gets the unique string identifying the ExtensionPoint for which - this Extension is intended. This identifier may be supplied by the attribute - marking the extension or deduced by NUnit from the Type of the extension class. - - - - - Gets an optional description of what the extension does. - - - - - The TargetFramework of the extension assembly. - - - - - Gets a collection of the names of all this extension's properties - - - - - Gets a collection of the values of a particular named property - If none are present, returns an empty enumerator. - - The property name - A collection of values - - - - The path to the assembly implementing this extension. - - - - - The version of the assembly implementing this extension. - - - - - An ExtensionPoint represents a single point in the TestEngine - that may be extended by user addins and extensions. - - - - - Gets the unique path identifying this extension point. - - - - - Gets the description of this extension point. May be null. - - - - - Gets the FullName of the Type required for any extension to be installed at this extension point. - - - - - Gets an enumeration of IExtensionNodes for extensions installed on this extension point. - - - - - The IFrameworkDriver interface is implemented by a class that - is able to use an external framework to explore or run tests - under the engine. - - - - - Gets and sets the unique identifier for this driver, - used to ensure that test ids are unique across drivers. - - - - - Loads the tests in an assembly. - - An Xml string representing the loaded test - - - - Count the test cases that would be executed. - - An XML string representing the TestFilter to use in counting the tests - The number of test cases counted - - - - Executes the tests in an assembly. - - An ITestEventHandler that receives progress notices - A XML string representing the filter that controls which tests are executed - An Xml string representing the result - - - - Returns information about the tests in an assembly. - - An XML string representing the filter that controls which tests are included - An Xml string representing the tests - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Interface for the various project types that the engine can load. - - - - - Gets the path to the file storing this project, if any. - If the project has not been saved, this is null. - - - - - Gets the active configuration, as defined - by the particular project. - - - - - Gets a list of the configs for this project - - - - - Gets a test package for the primary or active - configuration within the project. The package - includes all the assemblies and any settings - specified in the project format. - - A TestPackage - - - - Gets a TestPackage for a specific configuration - within the project. The package includes all the - assemblies and any settings specified in the - project format. - - The name of the config to use - A TestPackage for the named configuration. - - - - The IProjectLoader interface is implemented by any class - that knows how to load projects in a specific format. - - - - - Returns true if the file indicated is one that this - loader knows how to load. - - The path of the project file - True if the loader knows how to load this file, otherwise false - - - - Loads a project of a known format. - - The path of the project file - An IProject interface to the loaded project or null if the project cannot be loaded - - - - Common interface for objects that process and write out test results - - - - - Checks if the output path is writable. If the output is not - writable, this method should throw an exception. - - - - - - Writes result to the specified output path. - - XmlNode for the result - Path to which it should be written - - - - Writes result to a TextWriter. - - XmlNode for the result - TextWriter to which it should be written - - - - TypeExtensionPointAttribute is used to bind an extension point - to a class or interface. - - - - - Construct a TypeExtensionPointAttribute, specifying the path. - - A unique string identifying the extension point. - - - - Construct an TypeExtensionPointAttribute, without specifying the path. - The extension point will use a path constructed based on the interface - or class to which the attribute is applied. - - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - Interface that returns a list of available runtime frameworks. - - - - - Gets a list of available runtime frameworks. - - - - - The IExtensionService interface allows a runner to manage extensions. - - - - - Gets an enumeration of all ExtensionPoints in the engine. - - - - - Gets an enumeration of all installed Extensions. - - - - - Get an ExtensionPoint based on its unique identifying path. - - - - - Get an enumeration of ExtensionNodes based on their identifying path. - - - - - Enable or disable an extension - - - - - - - Interface for logging within the engine - - - - - Logs the specified message at the error level. - - The message. - - - - Logs the specified message at the error level. - - The message. - The arguments. - - - - Logs the specified message at the warning level. - - The message. - - - - Logs the specified message at the warning level. - - The message. - The arguments. - - - - Logs the specified message at the info level. - - The message. - - - - Logs the specified message at the info level. - - The message. - The arguments. - - - - Logs the specified message at the debug level. - - The message. - - - - Logs the specified message at the debug level. - - The message. - The arguments. - - - - Interface to abstract getting loggers - - - - - Gets the logger. - - The name of the logger to get. - - - - - InternalTraceLevel is an enumeration controlling the - level of detailed presented in the internal log. - - - - - Use the default settings as specified by the user. - - - - - Do not display any trace messages - - - - - Display Error messages only - - - - - Display Warning level and higher messages - - - - - Display informational and higher messages - - - - - Display debug messages and higher - i.e. all messages - - - - - Display debug messages and higher - i.e. all messages - - - - - The IRecentFiles interface is used to isolate the app - from various implementations of recent files. - - - - - The max number of files saved - - - - - Get a list of all the file entries - - The most recent file list - - - - Set the most recent file name, reordering - the saved names as needed and removing the oldest - if the max number of files would be exceeded. - The current CLR version is used to create the entry. - - - - - Remove a file from the list - - The name of the file to remove - - - - IResultWriterService provides result writers for a specified - well-known format. - - - - - Gets an array of the available formats - - - - - Gets a ResultWriter for a given format and set of arguments. - - The name of the format to be used - A set of arguments to be used in constructing the writer or null if non arguments are needed - An IResultWriter - - - - Interface implemented by objects representing a runtime framework. - - - - - Gets the inique Id for this runtime, such as "net-4.5" - - - - - Gets the display name of the framework, such as ".NET 4.5" - - - - - Gets the framework version: usually contains two components, Major - and Minor, which match the corresponding CLR components, but not always. - - - - - Gets the Version of the CLR for this framework - - - - - Gets a string representing the particular profile installed, - or null if there is no profile. Currently. the only defined - values are Full and Client. - - - - - Implemented by a type that provides information about the - current and other available runtimes. - - - - - Returns true if the runtime framework represented by - the string passed as an argument is available. - - A string representing a framework, like 'net-4.0' - True if the framework is available, false if unavailable or nonexistent - - - - Selects a target runtime framework for a TestPackage based on - the settings in the package and the assemblies themselves. - The package RuntimeFramework setting may be updated as a - result and the selected runtime is returned. - - Note that if a package has subpackages, the subpackages may run on a different - framework to the top-level package. In future, this method should - probably not return a simple string, and instead require runners - to inspect the test package structure, to find all desired frameworks. - - A TestPackage - The selected RuntimeFramework - - - - Enumeration representing the status of a service - - - - Service was never started or has been stopped - - - Started successfully - - - Service failed to start and is unavailable - - - - The IService interface is implemented by all Services. Although it - is extensible, it does not reside in the Extensibility namespace - because it is so widely used by the engine. - - - - - The ServiceContext - - - - - Gets the ServiceStatus of this service - - - - - Initialize the Service - - - - - Do any cleanup needed before terminating the service - - - - - IServiceLocator allows clients to locate any NUnit services - for which the interface is referenced. In normal use, this - linits it to those services using interfaces defined in the - nunit.engine.api assembly. - - - - - Return a specified type of service - - - - - Return a specified type of service - - - - - Event handler for settings changes - - The sender. - The instance containing the event data. - - - - Event argument for settings changes - - - - - Initializes a new instance of the class. - - Name of the setting that has changed. - - - - Gets the name of the setting that has changed - - - - - The ISettings interface is used to access all user - settings and options. - - - - - Occurs when the settings are changed. - - - - - Load a setting from the storage. - - Name of the setting to load - Value of the setting or null - - - - Load a setting from the storage or return a default value - - Name of the setting to load - Value to return if the setting is missing - Value of the setting or the default value - - - - Remove a setting from the storage - - Name of the setting to remove - - - - Remove an entire group of settings from the storage - - Name of the group to remove - - - - Save a setting in the storage - - Name of the setting to save - Value to be saved - - - - ITestEngine represents an instance of the test engine. - Clients wanting to discover, explore or run tests start - require an instance of the engine, which is generally - acquired from the TestEngineActivator class. - - - - - Gets the IServiceLocator interface, which gives access to - certain services provided by the engine. - - - - - Gets and sets the directory path used by the engine for saving files. - Some services may ignore changes to this path made after initialization. - The default value is the current directory. - - - - - Gets and sets the InternalTraceLevel used by the engine. Changing this - setting after initialization will have no effect. The default value - is the value saved in the NUnit settings. - - - - - Initialize the engine. This includes initializing mono addins, - setting the trace level and creating the standard set of services - used in the Engine. - - This interface is not normally called by user code. Programs linking - only to the nunit.engine.api assembly are given a - pre-initialized instance of TestEngine. Programs - that link directly to nunit.engine usually do so - in order to perform custom initialization. - - - - - Returns a test runner instance for use by clients in discovering, - exploring and executing tests. - - The TestPackage for which the runner is intended. - An ITestRunner. - - - - The ITestListener interface is used to receive notices of significant - events while a test is running. Its single method accepts an Xml string, - which may represent any event generated by the test framework, the driver - or any of the runners internal to the engine. Use of Xml means that - any driver and framework may add additional events and the engine will - simply pass them on through this interface. - - - - - Handle a progress report or other event. - - An XML progress report. - - - - Interface to a TestFilterBuilder, which is used to create TestFilters - - - - - Add a test to be selected - - The full name of the test, as created by NUnit - - - - Specify what is to be included by the filter using a where clause. - - A where clause that will be parsed by NUnit to create the filter. - - - - Get a TestFilter constructed according to the criteria specified by the other calls. - - A TestFilter. - - - - The TestFilterService provides builders that can create TestFilters - - - - - Get an uninitialized TestFilterBuilder - - - - - The ITestRun class represents an ongoing test run. - - - - - Get the result of the test. - - An XmlNode representing the test run result - - - - Blocks the current thread until the current test run completes - or the timeout is reached - - A that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. - True if the run completed - - - - Interface implemented by all test runners. - - - - - Get a flag indicating whether a test is running - - - - - Load a TestPackage for possible execution - - An XmlNode representing the loaded package. - - This method is normally optional, since Explore and Run call - it automatically when necessary. The method is kept in order - to make it easier to convert older programs that use it. - - - - - Unload any loaded TestPackage. If none is loaded, - the call is ignored. - - - - - Reload the current TestPackage - - An XmlNode representing the loaded package. - - - - Count the test cases that would be run under - the specified filter. - - A TestFilter - The count of test cases - - - - Run the tests in the loaded TestPackage and return a test result. The tests - are run synchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - An XmlNode giving the result of the test execution - - - - Start a run of the tests in the loaded TestPackage. The tests are run - asynchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Explore a loaded TestPackage and return information about the tests found. - - The TestFilter to be used in selecting tests to explore. - An XmlNode representing the tests found. - - - - TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface. - - - - - Create an instance of the test engine. - - An - - - - Abstract base for all test filters. A filter is represented - by an XmlNode with <filter> as its topmost element. - In the console runner, filters serve only to carry this - XML representation, as all filtering is done by the engine. - - - - - Initializes a new instance of the class. - - The XML text that specifies the filter. - - - - The empty filter - one that always passes. - - - - - Gets the XML representation of this filter as a string. - - - - - TestPackage holds information about a set of test files to - be loaded by a TestRunner. Each TestPackage represents - tests for one or more test files. TestPackages may be named - or anonymous, depending on the constructor used. - - Upon construction, a package is given an ID (string), which - remains unchanged for the lifetime of the TestPackage instance. - The package ID is passed to the test framework for use in generating - test IDs. - - A runner that reloads test assemblies and wants the ids to remain stable - should avoid creating a new package but should instead use the original - package, changing settings as needed. This gives the best chance for the - tests in the reloaded assembly to match those originally loaded. - - - - - Construct a named TestPackage, specifying a file path for - the assembly or project to be used. - - The file path. - - - - Construct an anonymous TestPackage that wraps test files. - - - - - - Every test package gets a unique ID used to prefix test IDs within that package. - - - The generated ID is only unique for packages created within the same application domain. - For that reason, NUnit pre-creates all test packages that will be needed. - - - - - Gets the name of the package - - - - - Gets the path to the file containing tests. It may be - an assembly or a recognized project type. - - - - - Gets the list of SubPackages contained in this package - - - - - Gets the settings dictionary for this package. - - - - - Add a subproject to the package. - - The subpackage to be added - - - - Add a setting to a package and all of its subpackages. - - The name of the setting - The value of the setting - - Once a package is created, subpackages may have been created - as well. If you add a setting directly to the Settings dictionary - of the package, the subpackages are not updated. This method is - used when the settings are intended to be reflected to all the - subpackages under the package. - - - - - Return the value of a setting or a default. - - The name of the setting - The default value - - - - - TestSelectionParserException is thrown when an error - is found while parsing the selection expression. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - - - Serialization constructor - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.core.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.core.dll deleted file mode 100644 index f7df5797c12c6..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.core.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.core.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.core.pdb deleted file mode 100644 index 9c8425eb83a02..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.core.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.dll deleted file mode 100644 index 58292a184f707..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.pdb deleted file mode 100644 index 1adc1a80852ff..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.deps.json deleted file mode 100644 index 4000649120ca2..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.deps.json +++ /dev/null @@ -1,1026 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v2.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v2.1": { - "nunit.engine.tests/1.0.0": { - "dependencies": { - "NSubstitute": "2.0.3", - "NUnit": "3.13.0", - "NUnitLite": "3.13.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "mock-assembly": "3.12.0", - "nunit.engine": "3.12.0", - "nunit.engine.api": "3.12.0", - "nunit.engine.core": "3.12.0" - }, - "runtime": { - "nunit.engine.tests.dll": {} - } - }, - "Castle.Core/4.0.0": { - "dependencies": { - "System.AppContext": "4.1.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Console": "4.0.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.TraceSource": "4.0.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.XmlDocument": "4.3.0", - "System.Xml.XmlSerializer": "4.0.11" - }, - "runtime": { - "lib/netstandard1.3/Castle.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.0.0" - } - } - }, - "Microsoft.CSharp/4.0.1": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "NSubstitute/2.0.3": { - "dependencies": { - "Castle.Core": "4.0.0", - "Microsoft.CSharp": "4.0.1", - "System.Linq.Queryable": "4.0.1", - "System.Reflection.TypeExtensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/NSubstitute.dll": { - "assemblyVersion": "2.0.3.0", - "fileVersion": "2.0.3.0" - } - } - }, - "NUnit/3.13.0": { - "runtime": { - "lib/netstandard2.0/nunit.framework.dll": { - "assemblyVersion": "3.13.0.0", - "fileVersion": "3.13.0.0" - } - } - }, - "NUnitLite/3.13.0": { - "dependencies": { - "NUnit": "3.13.0" - }, - "runtime": { - "lib/netstandard2.0/nunitlite.dll": { - "assemblyVersion": "3.13.0.0", - "fileVersion": "3.13.0.0" - } - } - }, - "runtime.native.System/4.3.0": {}, - "System.AppContext/4.1.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Collections.NonGeneric/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.ComponentModel/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Console/4.0.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Process/4.3.0": { - "dependencies": { - "Microsoft.Win32.Primitives": "4.3.0", - "Microsoft.Win32.Registry": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Threading.ThreadPool": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Diagnostics.Tools/4.0.1": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.TraceSource/4.0.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Dynamic.Runtime/4.0.11": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.1.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Linq.Queryable/4.0.1": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ObjectModel/4.0.12": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.0.1": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Thread/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading.ThreadPool/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - } - }, - "System.Xml.XPath/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "TestCentric.Metadata/1.4.1": { - "runtime": { - "lib/netstandard2.0/testcentric.engine.metadata.dll": { - "assemblyVersion": "1.4.1.0", - "fileVersion": "1.4.1.0" - } - } - }, - "mock-assembly/3.12.0": { - "dependencies": { - "NUnit": "3.13.0" - }, - "runtime": { - "mock-assembly.dll": {} - } - }, - "nunit.engine/3.12.0": { - "dependencies": { - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0", - "nunit.engine.core": "3.12.0" - }, - "runtime": { - "nunit.engine.dll": {} - } - }, - "nunit.engine.api/3.12.0": { - "dependencies": { - "System.Xml.XPath.XmlDocument": "4.3.0" - }, - "runtime": { - "nunit.engine.api.dll": {} - } - }, - "nunit.engine.core/3.12.0": { - "dependencies": { - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0" - }, - "runtime": { - "nunit.engine.core.dll": {} - } - } - } - }, - "libraries": { - "nunit.engine.tests/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Castle.Core/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iLINpMFc07bcb0d075AB0mcXV/MT8J8oyBarDSeyrLM03UoCVOuvYu87LI4511XHfy7XEhHtMDum5gt2s56xDg==", - "path": "castle.core/4.0.0", - "hashPath": "castle.core.4.0.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", - "path": "microsoft.csharp/4.0.1", - "hashPath": "microsoft.csharp.4.0.1.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", - "path": "microsoft.win32.registry/4.3.0", - "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" - }, - "NSubstitute/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZQRZ5b3/lhz4qKUdwzFSoPiFJnYSIjVzsmmfgvFG/7GjJ3+HO59NvaKBg+RcMNBrMNAR07X/mal3as4P0w+Dmw==", - "path": "nsubstitute/2.0.3", - "hashPath": "nsubstitute.2.0.3.nupkg.sha512" - }, - "NUnit/3.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G+BOONgJKtNtprjGQ54l0m+Vq2VFCMh/H6ljuHfqrRlX6YkNy0GjMd5Nn0NpJidGpRd4gAOJsBqNuxr7Kgc/5g==", - "path": "nunit/3.13.0", - "hashPath": "nunit.3.13.0.nupkg.sha512" - }, - "NUnitLite/3.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dowN4T4jBwzu4RLn6b8WQsJpUWFiZVi6YrIy03EbNG0T+/SNvNdjX7Q48ipXe8m57/5PkXylVs9d4jzIzeTg1g==", - "path": "nunitlite/3.13.0", - "hashPath": "nunitlite.3.13.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "System.AppContext/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", - "path": "system.appcontext/4.1.0", - "hashPath": "system.appcontext.4.1.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "path": "system.componentmodel/4.3.0", - "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Console/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", - "path": "system.console/4.0.0", - "hashPath": "system.console.4.0.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Process/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==", - "path": "system.diagnostics.process/4.3.0", - "hashPath": "system.diagnostics.process.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", - "path": "system.diagnostics.tools/4.0.1", - "hashPath": "system.diagnostics.tools.4.0.1.nupkg.sha512" - }, - "System.Diagnostics.TraceSource/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==", - "path": "system.diagnostics.tracesource/4.0.0", - "hashPath": "system.diagnostics.tracesource.4.0.0.nupkg.sha512" - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", - "path": "system.dynamic.runtime/4.0.11", - "hashPath": "system.dynamic.runtime.4.0.11.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", - "path": "system.linq.expressions/4.1.0", - "hashPath": "system.linq.expressions.4.1.0.nupkg.sha512" - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", - "path": "system.linq.queryable/4.0.1", - "hashPath": "system.linq.queryable.4.0.1.nupkg.sha512" - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", - "path": "system.objectmodel/4.0.12", - "hashPath": "system.objectmodel.4.0.12.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", - "path": "system.reflection.emit/4.0.1", - "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", - "path": "system.reflection.emit.ilgeneration/4.0.1", - "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", - "path": "system.reflection.emit.lightweight/4.0.1", - "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "path": "system.threading.tasks.extensions/4.3.0", - "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "path": "system.threading.thread/4.3.0", - "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" - }, - "System.Threading.ThreadPool/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", - "path": "system.threading.threadpool/4.3.0", - "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", - "path": "system.xml.xmlserializer/4.0.11", - "hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", - "path": "system.xml.xpath.xmldocument/4.3.0", - "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" - }, - "TestCentric.Metadata/1.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P9m8Vmg76Xq87WIhlE4IgyZhLkmSNMtfsb8IRwhb/C/el/3fLTmKol5POpNx62MJbV7GVj3GiL4e34V9cYnbUw==", - "path": "testcentric.metadata/1.4.1", - "hashPath": "testcentric.metadata.1.4.1.nupkg.sha512" - }, - "mock-assembly/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine.api/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine.core/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.dll deleted file mode 100644 index cee54f384588a..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.dll.config b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.dll.config deleted file mode 100644 index 1f86e4c2b9779..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.dll.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.pdb deleted file mode 100644 index a290b3ecd68e4..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.runtimeconfig.dev.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.runtimeconfig.dev.json deleted file mode 100644 index 9a04279561b17..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Chris\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Chris\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.runtimeconfig.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.runtimeconfig.json deleted file mode 100644 index 79949366e798f..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.engine.tests.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "netcoreapp2.1", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "2.1.0" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.framework.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.framework.dll deleted file mode 100644 index ac6a882833ead..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunit.framework.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunitlite.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunitlite.dll deleted file mode 100644 index b76eb41bee89f..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/nunitlite.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/testcentric.engine.metadata.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/testcentric.engine.metadata.dll deleted file mode 100644 index 718cff1879661..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp2.1/testcentric.engine.metadata.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Castle.Core.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Castle.Core.dll deleted file mode 100644 index 8917be09566df..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Castle.Core.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/CodeCoverage.config b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/CodeCoverage.config deleted file mode 100644 index 37857ddd86440..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/CodeCoverage.config +++ /dev/null @@ -1,151 +0,0 @@ - - - - 30000 - - - true - - - true - - - true - - - true - - - - - - - - - - - - - - - - - .*microsoft.* - - - - - - - - ^B77A5C561934E089$ - ^B03F5F7F11D50A3A$ - ^31BF3856AD364E35$ - ^89845DCD8080CC91$ - ^71E9BCE111E9429C$ - ^8F50407C4E9E73B6$ - ^E361AF139669C375$ - - - - - - - - .*\\atlmfc\\.* - - .*\\vctools\\.* - - .*\\public\\sdk\\.* - .*\\externalapis\\.* - .*\\microsoft sdks\\.* - - .*\\vc\\include\\.* - .*\\msclr\\.* - .*\\ucrt\\.* - - - - - - - ^System.Diagnostics.DebuggerHiddenAttribute$ - ^System.Diagnostics.DebuggerNonUserCodeAttribute$ - ^System.Runtime.CompilerServices.CompilerGeneratedAttribute$ - ^System.CodeDom.Compiler.GeneratedCodeAttribute$ - ^System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute$ - - - - - - - - ^std::.* - - ^ATL::.* - - .*::__GetTestMethodInfo.* - - .*__CxxPureMSILEntry.* - - ^Microsoft::VisualStudio::CppCodeCoverageFramework::.* - - ^Microsoft::VisualStudio::CppUnitTestFramework::.* - - .*::YOU_CAN_ONLY_DESIGNATE_ONE_.* - - ^__.* - - .*::__.* - - - - \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/CodeCoverage.exe b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/CodeCoverage.exe deleted file mode 100644 index c1d3d1f68bec9..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/CodeCoverage.exe and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/amd64/covrun64.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/amd64/covrun64.dll deleted file mode 100644 index 73ac0af4b31ca..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/amd64/covrun64.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/amd64/msdia140.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/amd64/msdia140.dll deleted file mode 100644 index fb742d6588241..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/amd64/msdia140.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/codecoveragemessages.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/codecoveragemessages.dll deleted file mode 100644 index bcb8833612197..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/codecoveragemessages.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/covrun32.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/covrun32.dll deleted file mode 100644 index 49b5f5355b4ac..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/covrun32.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/msdia140.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/msdia140.dll deleted file mode 100644 index c1453c2fc1993..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/CodeCoverage/msdia140.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ConsoleTests.nunit b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ConsoleTests.nunit deleted file mode 100644 index be1fa8efe9749..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ConsoleTests.nunit +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/EngineTests.nunit b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/EngineTests.nunit deleted file mode 100644 index dfb901ff99438..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/EngineTests.nunit +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.CodeCoverage.props b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.CodeCoverage.props deleted file mode 100644 index f8d5d185d6945..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.CodeCoverage.props +++ /dev/null @@ -1,17 +0,0 @@ - - - - - $(MSBuildThisFileDirectory) - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.CodeCoverage.targets b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.CodeCoverage.targets deleted file mode 100644 index 9a0a9787dd7d4..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.CodeCoverage.targets +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.DotNet.InternalAbstractions.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.DotNet.InternalAbstractions.dll deleted file mode 100644 index 9effe0c27d669..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.DotNet.InternalAbstractions.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll deleted file mode 100644 index 6b58c8faa2e68..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll deleted file mode 100644 index 7c809cdbbb22e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll deleted file mode 100644 index 084c2b972bca0..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll deleted file mode 100644 index 532eb83db64d6..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll deleted file mode 100644 index 54bf64c17b332..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll deleted file mode 100644 index 9d6df6f94002e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll deleted file mode 100644 index 9f2439963084d..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll deleted file mode 100644 index 300b82fb98513..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.VisualStudio.TraceDataCollector.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.VisualStudio.TraceDataCollector.dll deleted file mode 100644 index ecb1e8eb9bf2f..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Microsoft.VisualStudio.TraceDataCollector.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NSubstitute.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NSubstitute.dll deleted file mode 100644 index 1d5f8fa9e8697..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NSubstitute.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NUnit2TestResult.xsd b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NUnit2TestResult.xsd deleted file mode 100644 index a71bbf92c6c3e..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NUnit2TestResult.xsd +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NUnit3.TestAdapter.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NUnit3.TestAdapter.dll deleted file mode 100644 index 947eeac124cb4..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NUnit3.TestAdapter.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NUnit3.TestAdapter.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NUnit3.TestAdapter.pdb deleted file mode 100644 index a934223740a07..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NUnit3.TestAdapter.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Newtonsoft.Json.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Newtonsoft.Json.dll deleted file mode 100644 index 5f2336e6c247b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/Newtonsoft.Json.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NuGet.Frameworks.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NuGet.Frameworks.dll deleted file mode 100644 index 0a61a1ce4b56b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/NuGet.Frameworks.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll deleted file mode 100644 index 70eb0707eb3dc..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/TestListWithEmptyLine.tst b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/TestListWithEmptyLine.tst deleted file mode 100644 index 3ce1ebe79c601..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/TestListWithEmptyLine.tst +++ /dev/null @@ -1,3 +0,0 @@ - -# No funny business... -AmazingTest \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/TextSummary.xslt b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/TextSummary.xslt deleted file mode 100644 index 0b9048c59edcb..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/TextSummary.xslt +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - NUnit Version - - - - - - - - Runtime Environment - - OS Version: - - - CLR Version: - - - - Tests Run: - - - , Passed: - - , Failed: - - , Inconclusive: - - , Skipped: - - - , Elapsed Time: - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/TransformWithDTD.xslt b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/TransformWithDTD.xslt deleted file mode 100644 index 0ac8f3dd922fd..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/TransformWithDTD.xslt +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/alt.config b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/alt.config deleted file mode 100644 index 682d5c0950e3d..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/alt.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 681a65f5c5134..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 82a5bd86ce884..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index d7f93b349dc42..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 3c3d4cf7f64c0..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 2b0ffb240ff89..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll deleted file mode 100644 index 29882d9313379..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 39444465a4dc5..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 7cb3b960628aa..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 7e62bc6f63ab7..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index bc3613707d7dd..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 2196da7450726..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll deleted file mode 100644 index 19c9a4a55f978..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 09cb4b4de2f06..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index c5f0ff5799555..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 5b8901d2082c4..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 729a9246c38f2..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 5b3aea6afcbc9..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll deleted file mode 100644 index e3cf8aba3bedd..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 1c6bec2c35ccd..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index dfc9651e19aaa..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 6e137829e475f..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 6c31571342c6d..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index cfedc57460263..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll deleted file mode 100644 index 5b85f8d6c81c0..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index b33f609cd65be..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index ee086f114f0c7..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 9e2a0ef4e8cd3..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 5d8bf2e40ffaa..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 28447d01c3ea5..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll deleted file mode 100644 index 42dcc4092e627..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index a8b35dc70870b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 8ff1688af3912..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 31b1c7e9aee18..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 6b6419b2f1e8d..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 778a9846ef9f7..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll deleted file mode 100644 index 8dbec39eb205d..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 7d9010600a85d..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 71f1be57d4aa9..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 016f0654f2474..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index e856ca6df529d..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 0edf55a1a999c..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll deleted file mode 100644 index fca50982ed0c4..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/mock-assembly.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/mock-assembly.deps.json deleted file mode 100644 index 1156fbaa3d1ca..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/mock-assembly.deps.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v3.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v3.1": { - "mock-assembly/1.0.0": { - "dependencies": { - "NUnit": "3.13.0" - }, - "runtime": { - "mock-assembly.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "NETStandard.Library/2.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - } - }, - "NUnit/3.13.0": { - "dependencies": { - "NETStandard.Library": "2.0.0" - }, - "runtime": { - "lib/netstandard2.0/nunit.framework.dll": { - "assemblyVersion": "3.13.0.0", - "fileVersion": "3.13.0.0" - } - } - } - } - }, - "libraries": { - "mock-assembly/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "NETStandard.Library/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==", - "path": "netstandard.library/2.0.0", - "hashPath": "netstandard.library.2.0.0.nupkg.sha512" - }, - "NUnit/3.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G+BOONgJKtNtprjGQ54l0m+Vq2VFCMh/H6ljuHfqrRlX6YkNy0GjMd5Nn0NpJidGpRd4gAOJsBqNuxr7Kgc/5g==", - "path": "nunit/3.13.0", - "hashPath": "nunit.3.13.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/mock-assembly.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/mock-assembly.dll deleted file mode 100644 index be6dfaf162bc5..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/mock-assembly.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/mock-assembly.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/mock-assembly.pdb deleted file mode 100644 index d8c87085bf56a..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/mock-assembly.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/notest-assembly.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/notest-assembly.deps.json deleted file mode 100644 index 1b706b4d2b037..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/notest-assembly.deps.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v3.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v3.1": { - "notest-assembly/1.0.0": { - "dependencies": { - "NUnit": "3.13.0" - }, - "runtime": { - "notest-assembly.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "NETStandard.Library/2.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - } - }, - "NUnit/3.13.0": { - "dependencies": { - "NETStandard.Library": "2.0.0" - }, - "runtime": { - "lib/netstandard2.0/nunit.framework.dll": { - "assemblyVersion": "3.13.0.0", - "fileVersion": "3.13.0.0" - } - } - } - } - }, - "libraries": { - "notest-assembly/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "NETStandard.Library/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==", - "path": "netstandard.library/2.0.0", - "hashPath": "netstandard.library.2.0.0.nupkg.sha512" - }, - "NUnit/3.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G+BOONgJKtNtprjGQ54l0m+Vq2VFCMh/H6ljuHfqrRlX6YkNy0GjMd5Nn0NpJidGpRd4gAOJsBqNuxr7Kgc/5g==", - "path": "nunit/3.13.0", - "hashPath": "nunit.3.13.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/notest-assembly.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/notest-assembly.dll deleted file mode 100644 index 615092ef20726..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/notest-assembly.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/notest-assembly.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/notest-assembly.pdb deleted file mode 100644 index 91aaf00fbdc1c..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/notest-assembly.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.api.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.api.dll deleted file mode 100644 index 39c93ef6fa4a4..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.api.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.api.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.api.pdb deleted file mode 100644 index 8e281f6e0ecdd..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.api.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.api.xml b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.api.xml deleted file mode 100644 index 52687344e914b..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.api.xml +++ /dev/null @@ -1,1161 +0,0 @@ - - - - nunit.engine.api - - - - - NUnitEngineException is thrown when the engine has been - called with improper values or when a particular facility - is not available. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Serialization constructor - - - - - The exception that is thrown if a valid test engine is not found - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The minimum version. - - - - NUnitEngineUnloadException is thrown when a test run has completed successfully - but one or more errors were encountered when attempting to unload - and shut down the test run cleanly. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Construct with a message and a collection of exceptions. - - - - - Serialization constructor. - - - - - Gets the collection of exceptions . - - - - - The ExtensionAttribute is used to identify a class that is intended - to serve as an extension. - - - - - Initializes a new instance of the class. - - - - - A unique string identifying the ExtensionPoint for which this Extension is - intended. This is an optional field provided NUnit is able to deduce the - ExtensionPoint from the Type of the extension class. - - - - - An optional description of what the extension does. - - - - - Flag indicating whether the extension is enabled. - - true if enabled; otherwise, false. - - - - The minimum Engine version for which this extension is designed - - - - - ExtensionPointAttribute is used at the assembly level to identify and - document any ExtensionPoints supported by the assembly. - - - - - Construct an ExtensionPointAttribute - - A unique string identifying the extension point. - The required Type of any extension that is installed at this extension point. - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - The required Type (usually an interface) of any extension that is - installed at this ExtensionPoint. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - The ExtensionPropertyAttribute is used to specify named properties for an extension. - - - - - Construct an ExtensionPropertyAttribute - - The name of the property - The property value - - - - The name of the property. - - - - - The property value - - - - - Interface implemented by a Type that knows how to create a driver for a test assembly. - - - - - Gets a flag indicating whether a given AssemblyName - represents a test framework supported by this factory. - - An AssemblyName referring to the possible test framework. - - - - Gets a driver for a given test assembly and a framework - which the assembly is already known to reference. - - An AssemblyName referring to the test framework. - - - - - The IExtensionNode interface is implemented by a class that represents a - single extension being installed on a particular extension point. - - - - - Gets the full name of the Type of the extension object. - - - - - Gets a value indicating whether this is enabled. - - true if enabled; otherwise, false. - - - - Gets the unique string identifying the ExtensionPoint for which - this Extension is intended. This identifier may be supplied by the attribute - marking the extension or deduced by NUnit from the Type of the extension class. - - - - - Gets an optional description of what the extension does. - - - - - The TargetFramework of the extension assembly. - - - - - Gets a collection of the names of all this extension's properties - - - - - Gets a collection of the values of a particular named property - If none are present, returns an empty enumerator. - - The property name - A collection of values - - - - The path to the assembly implementing this extension. - - - - - The version of the assembly implementing this extension. - - - - - An ExtensionPoint represents a single point in the TestEngine - that may be extended by user addins and extensions. - - - - - Gets the unique path identifying this extension point. - - - - - Gets the description of this extension point. May be null. - - - - - Gets the FullName of the Type required for any extension to be installed at this extension point. - - - - - Gets an enumeration of IExtensionNodes for extensions installed on this extension point. - - - - - The IFrameworkDriver interface is implemented by a class that - is able to use an external framework to explore or run tests - under the engine. - - - - - Gets and sets the unique identifier for this driver, - used to ensure that test ids are unique across drivers. - - - - - Loads the tests in an assembly. - - An Xml string representing the loaded test - - - - Count the test cases that would be executed. - - An XML string representing the TestFilter to use in counting the tests - The number of test cases counted - - - - Executes the tests in an assembly. - - An ITestEventHandler that receives progress notices - A XML string representing the filter that controls which tests are executed - An Xml string representing the result - - - - Returns information about the tests in an assembly. - - An XML string representing the filter that controls which tests are included - An Xml string representing the tests - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Interface for the various project types that the engine can load. - - - - - Gets the path to the file storing this project, if any. - If the project has not been saved, this is null. - - - - - Gets the active configuration, as defined - by the particular project. - - - - - Gets a list of the configs for this project - - - - - Gets a test package for the primary or active - configuration within the project. The package - includes all the assemblies and any settings - specified in the project format. - - A TestPackage - - - - Gets a TestPackage for a specific configuration - within the project. The package includes all the - assemblies and any settings specified in the - project format. - - The name of the config to use - A TestPackage for the named configuration. - - - - The IProjectLoader interface is implemented by any class - that knows how to load projects in a specific format. - - - - - Returns true if the file indicated is one that this - loader knows how to load. - - The path of the project file - True if the loader knows how to load this file, otherwise false - - - - Loads a project of a known format. - - The path of the project file - An IProject interface to the loaded project or null if the project cannot be loaded - - - - Common interface for objects that process and write out test results - - - - - Checks if the output path is writable. If the output is not - writable, this method should throw an exception. - - - - - - Writes result to the specified output path. - - XmlNode for the result - Path to which it should be written - - - - Writes result to a TextWriter. - - XmlNode for the result - TextWriter to which it should be written - - - - TypeExtensionPointAttribute is used to bind an extension point - to a class or interface. - - - - - Construct a TypeExtensionPointAttribute, specifying the path. - - A unique string identifying the extension point. - - - - Construct an TypeExtensionPointAttribute, without specifying the path. - The extension point will use a path constructed based on the interface - or class to which the attribute is applied. - - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - Interface that returns a list of available runtime frameworks. - - - - - Gets a list of available runtime frameworks. - - - - - The IExtensionService interface allows a runner to manage extensions. - - - - - Gets an enumeration of all ExtensionPoints in the engine. - - - - - Gets an enumeration of all installed Extensions. - - - - - Get an ExtensionPoint based on its unique identifying path. - - - - - Get an enumeration of ExtensionNodes based on their identifying path. - - - - - Enable or disable an extension - - - - - - - Interface for logging within the engine - - - - - Logs the specified message at the error level. - - The message. - - - - Logs the specified message at the error level. - - The message. - The arguments. - - - - Logs the specified message at the warning level. - - The message. - - - - Logs the specified message at the warning level. - - The message. - The arguments. - - - - Logs the specified message at the info level. - - The message. - - - - Logs the specified message at the info level. - - The message. - The arguments. - - - - Logs the specified message at the debug level. - - The message. - - - - Logs the specified message at the debug level. - - The message. - The arguments. - - - - Interface to abstract getting loggers - - - - - Gets the logger. - - The name of the logger to get. - - - - - InternalTraceLevel is an enumeration controlling the - level of detailed presented in the internal log. - - - - - Use the default settings as specified by the user. - - - - - Do not display any trace messages - - - - - Display Error messages only - - - - - Display Warning level and higher messages - - - - - Display informational and higher messages - - - - - Display debug messages and higher - i.e. all messages - - - - - Display debug messages and higher - i.e. all messages - - - - - The IRecentFiles interface is used to isolate the app - from various implementations of recent files. - - - - - The max number of files saved - - - - - Get a list of all the file entries - - The most recent file list - - - - Set the most recent file name, reordering - the saved names as needed and removing the oldest - if the max number of files would be exceeded. - The current CLR version is used to create the entry. - - - - - Remove a file from the list - - The name of the file to remove - - - - IResultWriterService provides result writers for a specified - well-known format. - - - - - Gets an array of the available formats - - - - - Gets a ResultWriter for a given format and set of arguments. - - The name of the format to be used - A set of arguments to be used in constructing the writer or null if non arguments are needed - An IResultWriter - - - - Interface implemented by objects representing a runtime framework. - - - - - Gets the inique Id for this runtime, such as "net-4.5" - - - - - Gets the display name of the framework, such as ".NET 4.5" - - - - - Gets the framework version: usually contains two components, Major - and Minor, which match the corresponding CLR components, but not always. - - - - - Gets the Version of the CLR for this framework - - - - - Gets a string representing the particular profile installed, - or null if there is no profile. Currently. the only defined - values are Full and Client. - - - - - Implemented by a type that provides information about the - current and other available runtimes. - - - - - Returns true if the runtime framework represented by - the string passed as an argument is available. - - A string representing a framework, like 'net-4.0' - True if the framework is available, false if unavailable or nonexistent - - - - Selects a target runtime framework for a TestPackage based on - the settings in the package and the assemblies themselves. - The package RuntimeFramework setting may be updated as a - result and the selected runtime is returned. - - Note that if a package has subpackages, the subpackages may run on a different - framework to the top-level package. In future, this method should - probably not return a simple string, and instead require runners - to inspect the test package structure, to find all desired frameworks. - - A TestPackage - The selected RuntimeFramework - - - - Enumeration representing the status of a service - - - - Service was never started or has been stopped - - - Started successfully - - - Service failed to start and is unavailable - - - - The IService interface is implemented by all Services. Although it - is extensible, it does not reside in the Extensibility namespace - because it is so widely used by the engine. - - - - - The ServiceContext - - - - - Gets the ServiceStatus of this service - - - - - Initialize the Service - - - - - Do any cleanup needed before terminating the service - - - - - IServiceLocator allows clients to locate any NUnit services - for which the interface is referenced. In normal use, this - linits it to those services using interfaces defined in the - nunit.engine.api assembly. - - - - - Return a specified type of service - - - - - Return a specified type of service - - - - - Event handler for settings changes - - The sender. - The instance containing the event data. - - - - Event argument for settings changes - - - - - Initializes a new instance of the class. - - Name of the setting that has changed. - - - - Gets the name of the setting that has changed - - - - - The ISettings interface is used to access all user - settings and options. - - - - - Occurs when the settings are changed. - - - - - Load a setting from the storage. - - Name of the setting to load - Value of the setting or null - - - - Load a setting from the storage or return a default value - - Name of the setting to load - Value to return if the setting is missing - Value of the setting or the default value - - - - Remove a setting from the storage - - Name of the setting to remove - - - - Remove an entire group of settings from the storage - - Name of the group to remove - - - - Save a setting in the storage - - Name of the setting to save - Value to be saved - - - - ITestEngine represents an instance of the test engine. - Clients wanting to discover, explore or run tests start - require an instance of the engine, which is generally - acquired from the TestEngineActivator class. - - - - - Gets the IServiceLocator interface, which gives access to - certain services provided by the engine. - - - - - Gets and sets the directory path used by the engine for saving files. - Some services may ignore changes to this path made after initialization. - The default value is the current directory. - - - - - Gets and sets the InternalTraceLevel used by the engine. Changing this - setting after initialization will have no effect. The default value - is the value saved in the NUnit settings. - - - - - Initialize the engine. This includes initializing mono addins, - setting the trace level and creating the standard set of services - used in the Engine. - - This interface is not normally called by user code. Programs linking - only to the nunit.engine.api assembly are given a - pre-initialized instance of TestEngine. Programs - that link directly to nunit.engine usually do so - in order to perform custom initialization. - - - - - Returns a test runner instance for use by clients in discovering, - exploring and executing tests. - - The TestPackage for which the runner is intended. - An ITestRunner. - - - - The ITestListener interface is used to receive notices of significant - events while a test is running. Its single method accepts an Xml string, - which may represent any event generated by the test framework, the driver - or any of the runners internal to the engine. Use of Xml means that - any driver and framework may add additional events and the engine will - simply pass them on through this interface. - - - - - Handle a progress report or other event. - - An XML progress report. - - - - Interface to a TestFilterBuilder, which is used to create TestFilters - - - - - Add a test to be selected - - The full name of the test, as created by NUnit - - - - Specify what is to be included by the filter using a where clause. - - A where clause that will be parsed by NUnit to create the filter. - - - - Get a TestFilter constructed according to the criteria specified by the other calls. - - A TestFilter. - - - - The TestFilterService provides builders that can create TestFilters - - - - - Get an uninitialized TestFilterBuilder - - - - - The ITestRun class represents an ongoing test run. - - - - - Get the result of the test. - - An XmlNode representing the test run result - - - - Blocks the current thread until the current test run completes - or the timeout is reached - - A that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. - True if the run completed - - - - Interface implemented by all test runners. - - - - - Get a flag indicating whether a test is running - - - - - Load a TestPackage for possible execution - - An XmlNode representing the loaded package. - - This method is normally optional, since Explore and Run call - it automatically when necessary. The method is kept in order - to make it easier to convert older programs that use it. - - - - - Unload any loaded TestPackage. If none is loaded, - the call is ignored. - - - - - Reload the current TestPackage - - An XmlNode representing the loaded package. - - - - Count the test cases that would be run under - the specified filter. - - A TestFilter - The count of test cases - - - - Run the tests in the loaded TestPackage and return a test result. The tests - are run synchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - An XmlNode giving the result of the test execution - - - - Start a run of the tests in the loaded TestPackage. The tests are run - asynchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Explore a loaded TestPackage and return information about the tests found. - - The TestFilter to be used in selecting tests to explore. - An XmlNode representing the tests found. - - - - TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface. - - - - - Create an instance of the test engine. - - An - - - - Abstract base for all test filters. A filter is represented - by an XmlNode with <filter> as its topmost element. - In the console runner, filters serve only to carry this - XML representation, as all filtering is done by the engine. - - - - - Initializes a new instance of the class. - - The XML text that specifies the filter. - - - - The empty filter - one that always passes. - - - - - Gets the XML representation of this filter as a string. - - - - - TestPackage holds information about a set of test files to - be loaded by a TestRunner. Each TestPackage represents - tests for one or more test files. TestPackages may be named - or anonymous, depending on the constructor used. - - Upon construction, a package is given an ID (string), which - remains unchanged for the lifetime of the TestPackage instance. - The package ID is passed to the test framework for use in generating - test IDs. - - A runner that reloads test assemblies and wants the ids to remain stable - should avoid creating a new package but should instead use the original - package, changing settings as needed. This gives the best chance for the - tests in the reloaded assembly to match those originally loaded. - - - - - Construct a named TestPackage, specifying a file path for - the assembly or project to be used. - - The file path. - - - - Construct an anonymous TestPackage that wraps test files. - - - - - - Every test package gets a unique ID used to prefix test IDs within that package. - - - The generated ID is only unique for packages created within the same application domain. - For that reason, NUnit pre-creates all test packages that will be needed. - - - - - Gets the name of the package - - - - - Gets the path to the file containing tests. It may be - an assembly or a recognized project type. - - - - - Gets the list of SubPackages contained in this package - - - - - Gets the settings dictionary for this package. - - - - - Add a subproject to the package. - - The subpackage to be added - - - - Add a setting to a package and all of its subpackages. - - The name of the setting - The value of the setting - - Once a package is created, subpackages may have been created - as well. If you add a setting directly to the Settings dictionary - of the package, the subpackages are not updated. This method is - used when the settings are intended to be reflected to all the - subpackages under the package. - - - - - Return the value of a setting or a default. - - The name of the setting - The default value - - - - - TestSelectionParserException is thrown when an error - is found while parsing the selection expression. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - - - Serialization constructor - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.core.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.core.deps.json deleted file mode 100644 index 1824bdf8717fb..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.core.deps.json +++ /dev/null @@ -1,695 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v3.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v3.1": { - "nunit.engine.core/1.0.0": { - "dependencies": { - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0" - }, - "runtime": { - "nunit.engine.core.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.NonGeneric/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.ComponentModel/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Process/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "Microsoft.Win32.Registry": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Threading.ThreadPool": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Thread/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading.ThreadPool/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XPath/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "TestCentric.Metadata/1.4.1": { - "runtime": { - "lib/netstandard2.0/testcentric.engine.metadata.dll": { - "assemblyVersion": "1.4.1.0", - "fileVersion": "1.4.1.0" - } - } - }, - "nunit.engine.api/3.12.0": { - "dependencies": { - "System.Xml.XPath.XmlDocument": "4.3.0" - }, - "runtime": { - "nunit.engine.api.dll": {} - } - } - } - }, - "libraries": { - "nunit.engine.core/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", - "path": "microsoft.win32.registry/4.3.0", - "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "path": "system.componentmodel/4.3.0", - "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Process/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==", - "path": "system.diagnostics.process/4.3.0", - "hashPath": "system.diagnostics.process.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "path": "system.threading.tasks.extensions/4.3.0", - "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "path": "system.threading.thread/4.3.0", - "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" - }, - "System.Threading.ThreadPool/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", - "path": "system.threading.threadpool/4.3.0", - "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", - "path": "system.xml.xpath.xmldocument/4.3.0", - "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" - }, - "TestCentric.Metadata/1.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P9m8Vmg76Xq87WIhlE4IgyZhLkmSNMtfsb8IRwhb/C/el/3fLTmKol5POpNx62MJbV7GVj3GiL4e34V9cYnbUw==", - "path": "testcentric.metadata/1.4.1", - "hashPath": "testcentric.metadata.1.4.1.nupkg.sha512" - }, - "nunit.engine.api/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.core.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.core.dll deleted file mode 100644 index 051ca67f1cd8c..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.core.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.core.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.core.pdb deleted file mode 100644 index dee3c26fc5b3e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.core.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.deps.json deleted file mode 100644 index a4879fdb4ef40..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.deps.json +++ /dev/null @@ -1,714 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v3.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v3.1": { - "nunit.engine/1.0.0": { - "dependencies": { - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0", - "nunit.engine.core": "3.12.0" - }, - "runtime": { - "nunit.engine.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.NonGeneric/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.ComponentModel/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Process/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "Microsoft.Win32.Registry": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Threading.ThreadPool": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Thread/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading.ThreadPool/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XPath/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "TestCentric.Metadata/1.4.1": { - "runtime": { - "lib/netstandard2.0/testcentric.engine.metadata.dll": { - "assemblyVersion": "1.4.1.0", - "fileVersion": "1.4.1.0" - } - } - }, - "nunit.engine.api/3.12.0": { - "dependencies": { - "System.Xml.XPath.XmlDocument": "4.3.0" - }, - "runtime": { - "nunit.engine.api.dll": {} - } - }, - "nunit.engine.core/3.12.0": { - "dependencies": { - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0" - }, - "runtime": { - "nunit.engine.core.dll": {} - } - } - } - }, - "libraries": { - "nunit.engine/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", - "path": "microsoft.win32.registry/4.3.0", - "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "path": "system.componentmodel/4.3.0", - "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Process/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==", - "path": "system.diagnostics.process/4.3.0", - "hashPath": "system.diagnostics.process.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "path": "system.threading.tasks.extensions/4.3.0", - "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "path": "system.threading.thread/4.3.0", - "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" - }, - "System.Threading.ThreadPool/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", - "path": "system.threading.threadpool/4.3.0", - "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", - "path": "system.xml.xpath.xmldocument/4.3.0", - "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" - }, - "TestCentric.Metadata/1.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P9m8Vmg76Xq87WIhlE4IgyZhLkmSNMtfsb8IRwhb/C/el/3fLTmKol5POpNx62MJbV7GVj3GiL4e34V9cYnbUw==", - "path": "testcentric.metadata/1.4.1", - "hashPath": "testcentric.metadata.1.4.1.nupkg.sha512" - }, - "nunit.engine.api/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine.core/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.dll deleted file mode 100644 index b4b2ee281a110..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.pdb deleted file mode 100644 index 0f4f48798a52b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.deps.json deleted file mode 100644 index 13d182449e830..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.deps.json +++ /dev/null @@ -1,1109 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v3.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v3.1": { - "nunit.engine.tests/1.0.0": { - "dependencies": { - "NSubstitute": "2.0.3", - "NUnit": "3.13.0", - "NUnitLite": "3.13.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "mock-assembly": "3.12.0", - "nunit.engine": "3.12.0", - "nunit.engine.api": "3.12.0", - "nunit.engine.core": "3.12.0" - }, - "runtime": { - "nunit.engine.tests.dll": {} - } - }, - "Castle.Core/4.0.0": { - "dependencies": { - "System.AppContext": "4.1.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Console": "4.0.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.TraceSource": "4.0.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.XmlDocument": "4.3.0", - "System.Xml.XmlSerializer": "4.0.11" - }, - "runtime": { - "lib/netstandard1.3/Castle.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.0.0" - } - } - }, - "Microsoft.CSharp/4.0.1": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "NETStandard.Library/2.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - } - }, - "NSubstitute/2.0.3": { - "dependencies": { - "Castle.Core": "4.0.0", - "Microsoft.CSharp": "4.0.1", - "NETStandard.Library": "2.0.0", - "System.Linq.Queryable": "4.0.1", - "System.Reflection.TypeExtensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/NSubstitute.dll": { - "assemblyVersion": "2.0.3.0", - "fileVersion": "2.0.3.0" - } - } - }, - "NUnit/3.13.0": { - "dependencies": { - "NETStandard.Library": "2.0.0" - }, - "runtime": { - "lib/netstandard2.0/nunit.framework.dll": { - "assemblyVersion": "3.13.0.0", - "fileVersion": "3.13.0.0" - } - } - }, - "NUnitLite/3.13.0": { - "dependencies": { - "NETStandard.Library": "2.0.0", - "NUnit": "3.13.0" - }, - "runtime": { - "lib/netstandard2.0/nunitlite.dll": { - "assemblyVersion": "3.13.0.0", - "fileVersion": "3.13.0.0" - } - } - }, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.AppContext/4.1.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.NonGeneric/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.ComponentModel/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Console/4.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Process/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "Microsoft.Win32.Registry": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Threading.ThreadPool": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Diagnostics.Tools/4.0.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.TraceSource/4.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Dynamic.Runtime/4.0.11": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.1.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Linq.Queryable/4.0.1": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ObjectModel/4.0.12": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.0.1": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Thread/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading.ThreadPool/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - } - }, - "System.Xml.XPath/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "TestCentric.Metadata/1.4.1": { - "runtime": { - "lib/netstandard2.0/testcentric.engine.metadata.dll": { - "assemblyVersion": "1.4.1.0", - "fileVersion": "1.4.1.0" - } - } - }, - "mock-assembly/3.12.0": { - "dependencies": { - "NUnit": "3.13.0" - }, - "runtime": { - "mock-assembly.dll": {} - } - }, - "nunit.engine/3.12.0": { - "dependencies": { - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0", - "nunit.engine.core": "3.12.0" - }, - "runtime": { - "nunit.engine.dll": {} - } - }, - "nunit.engine.api/3.12.0": { - "dependencies": { - "System.Xml.XPath.XmlDocument": "4.3.0" - }, - "runtime": { - "nunit.engine.api.dll": {} - } - }, - "nunit.engine.core/3.12.0": { - "dependencies": { - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0" - }, - "runtime": { - "nunit.engine.core.dll": {} - } - } - } - }, - "libraries": { - "nunit.engine.tests/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Castle.Core/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iLINpMFc07bcb0d075AB0mcXV/MT8J8oyBarDSeyrLM03UoCVOuvYu87LI4511XHfy7XEhHtMDum5gt2s56xDg==", - "path": "castle.core/4.0.0", - "hashPath": "castle.core.4.0.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", - "path": "microsoft.csharp/4.0.1", - "hashPath": "microsoft.csharp.4.0.1.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", - "path": "microsoft.win32.registry/4.3.0", - "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" - }, - "NETStandard.Library/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==", - "path": "netstandard.library/2.0.0", - "hashPath": "netstandard.library.2.0.0.nupkg.sha512" - }, - "NSubstitute/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZQRZ5b3/lhz4qKUdwzFSoPiFJnYSIjVzsmmfgvFG/7GjJ3+HO59NvaKBg+RcMNBrMNAR07X/mal3as4P0w+Dmw==", - "path": "nsubstitute/2.0.3", - "hashPath": "nsubstitute.2.0.3.nupkg.sha512" - }, - "NUnit/3.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G+BOONgJKtNtprjGQ54l0m+Vq2VFCMh/H6ljuHfqrRlX6YkNy0GjMd5Nn0NpJidGpRd4gAOJsBqNuxr7Kgc/5g==", - "path": "nunit/3.13.0", - "hashPath": "nunit.3.13.0.nupkg.sha512" - }, - "NUnitLite/3.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dowN4T4jBwzu4RLn6b8WQsJpUWFiZVi6YrIy03EbNG0T+/SNvNdjX7Q48ipXe8m57/5PkXylVs9d4jzIzeTg1g==", - "path": "nunitlite/3.13.0", - "hashPath": "nunitlite.3.13.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "System.AppContext/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", - "path": "system.appcontext/4.1.0", - "hashPath": "system.appcontext.4.1.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "path": "system.componentmodel/4.3.0", - "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Console/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", - "path": "system.console/4.0.0", - "hashPath": "system.console.4.0.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Process/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==", - "path": "system.diagnostics.process/4.3.0", - "hashPath": "system.diagnostics.process.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", - "path": "system.diagnostics.tools/4.0.1", - "hashPath": "system.diagnostics.tools.4.0.1.nupkg.sha512" - }, - "System.Diagnostics.TraceSource/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==", - "path": "system.diagnostics.tracesource/4.0.0", - "hashPath": "system.diagnostics.tracesource.4.0.0.nupkg.sha512" - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", - "path": "system.dynamic.runtime/4.0.11", - "hashPath": "system.dynamic.runtime.4.0.11.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", - "path": "system.linq.expressions/4.1.0", - "hashPath": "system.linq.expressions.4.1.0.nupkg.sha512" - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", - "path": "system.linq.queryable/4.0.1", - "hashPath": "system.linq.queryable.4.0.1.nupkg.sha512" - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", - "path": "system.objectmodel/4.0.12", - "hashPath": "system.objectmodel.4.0.12.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", - "path": "system.reflection.emit/4.0.1", - "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", - "path": "system.reflection.emit.ilgeneration/4.0.1", - "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", - "path": "system.reflection.emit.lightweight/4.0.1", - "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "path": "system.threading.tasks.extensions/4.3.0", - "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "path": "system.threading.thread/4.3.0", - "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" - }, - "System.Threading.ThreadPool/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", - "path": "system.threading.threadpool/4.3.0", - "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", - "path": "system.xml.xmlserializer/4.0.11", - "hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", - "path": "system.xml.xpath.xmldocument/4.3.0", - "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" - }, - "TestCentric.Metadata/1.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P9m8Vmg76Xq87WIhlE4IgyZhLkmSNMtfsb8IRwhb/C/el/3fLTmKol5POpNx62MJbV7GVj3GiL4e34V9cYnbUw==", - "path": "testcentric.metadata/1.4.1", - "hashPath": "testcentric.metadata.1.4.1.nupkg.sha512" - }, - "mock-assembly/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine.api/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine.core/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.dll deleted file mode 100644 index aadd295a50da9..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.dll.config b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.dll.config deleted file mode 100644 index 1f86e4c2b9779..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.dll.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.exe b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.exe deleted file mode 100644 index 9fd64c057b210..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.exe and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.pdb deleted file mode 100644 index 2f8b2b6a9f933..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.runtimeconfig.dev.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.runtimeconfig.dev.json deleted file mode 100644 index 9a04279561b17..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Chris\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Chris\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.runtimeconfig.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.runtimeconfig.json deleted file mode 100644 index bc456d7868bb5..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.engine.tests.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "netcoreapp3.1", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "3.1.0" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.framework.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.framework.dll deleted file mode 100644 index ac6a882833ead..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit.framework.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.deps.json deleted file mode 100644 index 469a7b78b4300..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.deps.json +++ /dev/null @@ -1,424 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v3.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v3.1": { - "nunit3-console/1.0.0": { - "dependencies": { - "nunit.engine.api": "3.12.0" - }, - "runtime": { - "nunit3-console.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XPath/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "nunit.engine.api/3.12.0": { - "dependencies": { - "System.Xml.XPath.XmlDocument": "4.3.0" - }, - "runtime": { - "nunit.engine.api.dll": {} - } - } - } - }, - "libraries": { - "nunit3-console/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "path": "system.threading.tasks.extensions/4.3.0", - "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", - "path": "system.xml.xpath.xmldocument/4.3.0", - "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" - }, - "nunit.engine.api/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.dll deleted file mode 100644 index 0da79303b6ff7..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.dll.config b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.dll.config deleted file mode 100644 index fb93fb52c6aa8..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.dll.config +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.exe b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.exe deleted file mode 100644 index ed1039438e13b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.exe and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.pdb deleted file mode 100644 index adfece629f445..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.runtimeconfig.dev.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.runtimeconfig.dev.json deleted file mode 100644 index 9a04279561b17..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Chris\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Chris\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.runtimeconfig.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.runtimeconfig.json deleted file mode 100644 index bc456d7868bb5..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "netcoreapp3.1", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "3.1.0" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.deps.json deleted file mode 100644 index 125b3bc85d2aa..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.deps.json +++ /dev/null @@ -1,1560 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v3.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v3.1": { - "nunit3-console.tests/1.0.0": { - "dependencies": { - "Microsoft.NET.Test.Sdk": "16.3.0", - "NSubstitute": "2.0.3", - "NUnit": "3.13.0", - "NUnit3TestAdapter": "3.15.1", - "System.ComponentModel.TypeConverter": "4.3.0", - "mock-assembly": "3.12.0", - "nunit.engine": "3.12.0", - "nunit.engine.api": "3.12.0", - "nunit3-console": "3.12.0" - }, - "runtime": { - "nunit3-console.tests.dll": {} - } - }, - "Castle.Core/4.0.0": { - "dependencies": { - "System.AppContext": "4.1.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Console": "4.0.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.0.1", - "System.Diagnostics.TraceSource": "4.0.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.XmlDocument": "4.3.0", - "System.Xml.XmlSerializer": "4.0.11" - }, - "runtime": { - "lib/netstandard1.3/Castle.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.0.0" - } - } - }, - "Microsoft.CodeCoverage/16.3.0": { - "runtime": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "16.0.28223.3002" - } - } - }, - "Microsoft.CSharp/4.0.1": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "Microsoft.DotNet.InternalAbstractions/1.0.0": { - "dependencies": { - "System.AppContext": "4.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.NET.Test.Sdk/16.3.0": { - "dependencies": { - "Microsoft.CodeCoverage": "16.3.0", - "Microsoft.TestPlatform.TestHost": "16.3.0" - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.TestPlatform.ObjectModel/16.3.0": { - "dependencies": { - "NuGet.Frameworks": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - } - }, - "resources": { - "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/16.3.0": { - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "16.3.0", - "Newtonsoft.Json": "9.0.1" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/testhost.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - } - }, - "resources": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "NETStandard.Library/2.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - } - }, - "Newtonsoft.Json/9.0.1": { - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.0.11" - }, - "runtime": { - "lib/netstandard1.0/Newtonsoft.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.1.19813" - } - } - }, - "NSubstitute/2.0.3": { - "dependencies": { - "Castle.Core": "4.0.0", - "Microsoft.CSharp": "4.0.1", - "NETStandard.Library": "2.0.0", - "System.Linq.Queryable": "4.0.1", - "System.Reflection.TypeExtensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/NSubstitute.dll": { - "assemblyVersion": "2.0.3.0", - "fileVersion": "2.0.3.0" - } - } - }, - "NuGet.Frameworks/5.0.0": { - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "assemblyVersion": "5.0.0.6", - "fileVersion": "5.0.0.5923" - } - } - }, - "NUnit/3.13.0": { - "dependencies": { - "NETStandard.Library": "2.0.0" - }, - "runtime": { - "lib/netstandard2.0/nunit.framework.dll": { - "assemblyVersion": "3.13.0.0", - "fileVersion": "3.13.0.0" - } - } - }, - "NUnit3TestAdapter/3.15.1": { - "dependencies": { - "Microsoft.DotNet.InternalAbstractions": "1.0.0", - "System.ComponentModel.EventBasedAsync": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - } - }, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.AppContext/4.1.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.NonGeneric/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.ComponentModel/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.EventBasedAsync/4.3.0": { - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Console/4.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Process/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "Microsoft.Win32.Registry": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Threading.ThreadPool": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Diagnostics.Tools/4.0.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.TraceSource/4.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Dynamic.Runtime/4.0.11": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.1.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Emit.Lightweight": "4.0.1", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Linq.Queryable/4.0.1": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ObjectModel/4.0.12": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.0.1": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Thread/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading.ThreadPool/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - } - }, - "System.Xml.XDocument/4.0.11": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.0.1", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XmlSerializer/4.0.11": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.0.1", - "System.Reflection.Emit.ILGeneration": "4.0.1", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - } - }, - "System.Xml.XPath/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "TestCentric.Metadata/1.4.1": { - "runtime": { - "lib/netstandard2.0/testcentric.engine.metadata.dll": { - "assemblyVersion": "1.4.1.0", - "fileVersion": "1.4.1.0" - } - } - }, - "mock-assembly/3.12.0": { - "dependencies": { - "NUnit": "3.13.0" - }, - "runtime": { - "mock-assembly.dll": {} - } - }, - "nunit.engine/3.12.0": { - "dependencies": { - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0", - "nunit.engine.core": "3.12.0" - }, - "runtime": { - "nunit.engine.dll": {} - } - }, - "nunit.engine.api/3.12.0": { - "dependencies": { - "System.Xml.XPath.XmlDocument": "4.3.0" - }, - "runtime": { - "nunit.engine.api.dll": {} - } - }, - "nunit.engine.core/3.12.0": { - "dependencies": { - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0" - }, - "runtime": { - "nunit.engine.core.dll": {} - } - }, - "nunit3-console/3.12.0": { - "dependencies": { - "nunit.engine.api": "3.12.0" - }, - "runtime": { - "nunit3-console.dll": {} - } - } - } - }, - "libraries": { - "nunit3-console.tests/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Castle.Core/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iLINpMFc07bcb0d075AB0mcXV/MT8J8oyBarDSeyrLM03UoCVOuvYu87LI4511XHfy7XEhHtMDum5gt2s56xDg==", - "path": "castle.core/4.0.0", - "hashPath": "castle.core.4.0.0.nupkg.sha512" - }, - "Microsoft.CodeCoverage/16.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CVEzOQp+2Y/VdUEbvtziOd41QJ3tGGvqI14to5blM0Glr4P9uasORK4SaSF4bvlRQaiMeqS2iGoCfVIggdymmw==", - "path": "microsoft.codecoverage/16.3.0", - "hashPath": "microsoft.codecoverage.16.3.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", - "path": "microsoft.csharp/4.0.1", - "hashPath": "microsoft.csharp.4.0.1.nupkg.sha512" - }, - "Microsoft.DotNet.InternalAbstractions/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==", - "path": "microsoft.dotnet.internalabstractions/1.0.0", - "hashPath": "microsoft.dotnet.internalabstractions.1.0.0.nupkg.sha512" - }, - "Microsoft.NET.Test.Sdk/16.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Drk/adJoZYuMx3MuhcpEqfXDrAOwv56tjq9SlqeO20+oTlNfGEebw2dmMRTl17EwlUYctdmZv5VzTZVncU1aVw==", - "path": "microsoft.net.test.sdk/16.3.0", - "hashPath": "microsoft.net.test.sdk.16.3.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.TestPlatform.ObjectModel/16.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-F4ZZ1c6J6VqeFhfPPBZNk+jr7VU5qYgxoClWK+VOJMRwGYc5edYY5q9CGtNgT93VcVGQ/ie6Gn8J9HDoST1fAg==", - "path": "microsoft.testplatform.objectmodel/16.3.0", - "hashPath": "microsoft.testplatform.objectmodel.16.3.0.nupkg.sha512" - }, - "Microsoft.TestPlatform.TestHost/16.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N44oK5yrJw70tJh/f5XrDT9ibywsz/t9hm9f59DojtfJphYG55oXf/2ht9h0iNMyzpuh7lFAWPdRcZ9v0Oj82w==", - "path": "microsoft.testplatform.testhost/16.3.0", - "hashPath": "microsoft.testplatform.testhost.16.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", - "path": "microsoft.win32.registry/4.3.0", - "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" - }, - "NETStandard.Library/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==", - "path": "netstandard.library/2.0.0", - "hashPath": "netstandard.library.2.0.0.nupkg.sha512" - }, - "Newtonsoft.Json/9.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", - "path": "newtonsoft.json/9.0.1", - "hashPath": "newtonsoft.json.9.0.1.nupkg.sha512" - }, - "NSubstitute/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZQRZ5b3/lhz4qKUdwzFSoPiFJnYSIjVzsmmfgvFG/7GjJ3+HO59NvaKBg+RcMNBrMNAR07X/mal3as4P0w+Dmw==", - "path": "nsubstitute/2.0.3", - "hashPath": "nsubstitute.2.0.3.nupkg.sha512" - }, - "NuGet.Frameworks/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", - "path": "nuget.frameworks/5.0.0", - "hashPath": "nuget.frameworks.5.0.0.nupkg.sha512" - }, - "NUnit/3.13.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G+BOONgJKtNtprjGQ54l0m+Vq2VFCMh/H6ljuHfqrRlX6YkNy0GjMd5Nn0NpJidGpRd4gAOJsBqNuxr7Kgc/5g==", - "path": "nunit/3.13.0", - "hashPath": "nunit.3.13.0.nupkg.sha512" - }, - "NUnit3TestAdapter/3.15.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gqy0llGjhJYq9ebFvtbmBcF/MY8z5kcTIxYs+eXwp2d4Ntha8pSPxUzryvBm7H46VbWI6FS5/XNbxwiQpe88vQ==", - "path": "nunit3testadapter/3.15.1", - "hashPath": "nunit3testadapter.3.15.1.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "System.AppContext/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", - "path": "system.appcontext/4.1.0", - "hashPath": "system.appcontext.4.1.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "path": "system.componentmodel/4.3.0", - "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.EventBasedAsync/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==", - "path": "system.componentmodel.eventbasedasync/4.3.0", - "hashPath": "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Console/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", - "path": "system.console/4.0.0", - "hashPath": "system.console.4.0.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Process/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==", - "path": "system.diagnostics.process/4.3.0", - "hashPath": "system.diagnostics.process.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", - "path": "system.diagnostics.tools/4.0.1", - "hashPath": "system.diagnostics.tools.4.0.1.nupkg.sha512" - }, - "System.Diagnostics.TraceSource/4.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==", - "path": "system.diagnostics.tracesource/4.0.0", - "hashPath": "system.diagnostics.tracesource.4.0.0.nupkg.sha512" - }, - "System.Dynamic.Runtime/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", - "path": "system.dynamic.runtime/4.0.11", - "hashPath": "system.dynamic.runtime.4.0.11.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", - "path": "system.linq.expressions/4.1.0", - "hashPath": "system.linq.expressions.4.1.0.nupkg.sha512" - }, - "System.Linq.Queryable/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", - "path": "system.linq.queryable/4.0.1", - "hashPath": "system.linq.queryable.4.0.1.nupkg.sha512" - }, - "System.ObjectModel/4.0.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", - "path": "system.objectmodel/4.0.12", - "hashPath": "system.objectmodel.4.0.12.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", - "path": "system.reflection.emit/4.0.1", - "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", - "path": "system.reflection.emit.ilgeneration/4.0.1", - "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", - "path": "system.reflection.emit.lightweight/4.0.1", - "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", - "path": "system.runtime.serialization.primitives/4.1.1", - "hashPath": "system.runtime.serialization.primitives.4.1.1.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "path": "system.threading.tasks.extensions/4.3.0", - "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "path": "system.threading.thread/4.3.0", - "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" - }, - "System.Threading.ThreadPool/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", - "path": "system.threading.threadpool/4.3.0", - "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", - "path": "system.xml.xdocument/4.0.11", - "hashPath": "system.xml.xdocument.4.0.11.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlSerializer/4.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==", - "path": "system.xml.xmlserializer/4.0.11", - "hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", - "path": "system.xml.xpath.xmldocument/4.3.0", - "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" - }, - "TestCentric.Metadata/1.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P9m8Vmg76Xq87WIhlE4IgyZhLkmSNMtfsb8IRwhb/C/el/3fLTmKol5POpNx62MJbV7GVj3GiL4e34V9cYnbUw==", - "path": "testcentric.metadata/1.4.1", - "hashPath": "testcentric.metadata.1.4.1.nupkg.sha512" - }, - "mock-assembly/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine.api/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine.core/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit3-console/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.dll deleted file mode 100644 index d87cb97af4535..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.pdb deleted file mode 100644 index 311080f3f62bd..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.runtimeconfig.dev.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.runtimeconfig.dev.json deleted file mode 100644 index 9a04279561b17..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\Chris\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Chris\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.runtimeconfig.json b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.runtimeconfig.json deleted file mode 100644 index bc456d7868bb5..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunit3-console.tests.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "netcoreapp3.1", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "3.1.0" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunitlite.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunitlite.dll deleted file mode 100644 index b76eb41bee89f..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/nunitlite.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 71563fabbb7c2..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 8b59f05efbd07..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 2680457787af0..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index d3e993fa14d72..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 4216506e10e48..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll deleted file mode 100644 index 68097dcc2996d..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 636cc780a4787..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 76d0b45d63659..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 8e98faa78c0c7..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 979ca8cfe7973..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index ff9c8d2b967a6..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll deleted file mode 100644 index a388d7958d770..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index b0c11cf507007..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 6ff12c5de59e2..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 0a22dde27ff35..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 8c6f2986b3b69..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index d8a20b489447f..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll deleted file mode 100644 index d3746a442dd05..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/testcentric.engine.metadata.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/testcentric.engine.metadata.dll deleted file mode 100644 index 718cff1879661..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/testcentric.engine.metadata.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/testhost.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/testhost.dll deleted file mode 100644 index 65b798d1698ab..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/testhost.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/testhost.exe b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/testhost.exe deleted file mode 100644 index 761c848a5d559..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/testhost.exe and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index ff75625378c85..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 14dfbbce1f49b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 0c7ffbebbdf55..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 17259baded75e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index e90b86e92eaec..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll deleted file mode 100644 index d7fd6584e8040..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 844aff16f9691..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 45d43a2301bbc..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 08355bd35e234..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 58cfc45570c3d..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 9b534a1516f44..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll deleted file mode 100644 index 8b20502e6d02d..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index cb7a0fbfab3f3..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 18fb0d33cda08..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index c29d67ddfd6ff..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 5072a6a2e4d96..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index a288406129ce0..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll deleted file mode 100644 index b0cf6b843fcef..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/Microsoft.DotNet.InternalAbstractions.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/Microsoft.DotNet.InternalAbstractions.dll deleted file mode 100644 index 9effe0c27d669..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/Microsoft.DotNet.InternalAbstractions.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.AppContext.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.AppContext.dll deleted file mode 100644 index 1895462d5ee0e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.AppContext.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Buffers.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Buffers.dll deleted file mode 100644 index c5c44b766d4e0..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Buffers.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Collections.Concurrent.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Collections.Concurrent.dll deleted file mode 100644 index 1a1c92525caa6..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Collections.Concurrent.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Collections.NonGeneric.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Collections.NonGeneric.dll deleted file mode 100644 index 92fc8f20edcee..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Collections.Specialized.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Collections.Specialized.dll deleted file mode 100644 index a1323642b9409..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Collections.Specialized.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.ComponentModel.Primitives.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.ComponentModel.Primitives.dll deleted file mode 100644 index 44bdd096e673b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.ComponentModel.TypeConverter.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.ComponentModel.TypeConverter.dll deleted file mode 100644 index 82463bec44989..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.ComponentModel.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.ComponentModel.dll deleted file mode 100644 index 602e66700ea98..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.ComponentModel.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Diagnostics.DiagnosticSource.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index eafb192b625ab..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.IO.Compression.ZipFile.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.IO.Compression.ZipFile.dll deleted file mode 100644 index 2f16e0101ca18..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.IO.FileSystem.Primitives.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.IO.FileSystem.Primitives.dll deleted file mode 100644 index 050c54d38f5d3..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Linq.Expressions.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Linq.Expressions.dll deleted file mode 100644 index 5c56b18ecb979..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Linq.Expressions.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Linq.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Linq.dll deleted file mode 100644 index d3ca6a40b19e9..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Linq.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.ObjectModel.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.ObjectModel.dll deleted file mode 100644 index e44fe6796da79..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.ObjectModel.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Reflection.Emit.ILGeneration.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Reflection.Emit.ILGeneration.dll deleted file mode 100644 index 6417602d914e6..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Reflection.Emit.Lightweight.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Reflection.Emit.Lightweight.dll deleted file mode 100644 index d7b76e7374f06..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Reflection.Emit.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Reflection.Emit.dll deleted file mode 100644 index 3424401f857c9..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Reflection.Emit.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Reflection.TypeExtensions.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Reflection.TypeExtensions.dll deleted file mode 100644 index 975497cf34cac..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Runtime.InteropServices.RuntimeInformation.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100644 index 5ad70717aad81..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Runtime.Loader.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Runtime.Loader.dll deleted file mode 100644 index baf8b30d8bb81..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Runtime.Loader.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Runtime.Numerics.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Runtime.Numerics.dll deleted file mode 100644 index 0307900eae320..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Runtime.Numerics.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Security.Cryptography.OpenSsl.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Security.Cryptography.OpenSsl.dll deleted file mode 100644 index 7391cf0f4fc11..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Security.Cryptography.Primitives.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Security.Cryptography.Primitives.dll deleted file mode 100644 index e0e747f5da66d..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Text.RegularExpressions.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Text.RegularExpressions.dll deleted file mode 100644 index 9b28654f396c2..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Threading.Tasks.Extensions.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Threading.Tasks.Extensions.dll deleted file mode 100644 index a1234ce81a34b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Threading.Thread.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Threading.Thread.dll deleted file mode 100644 index a981cb1cae265..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Threading.Thread.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Threading.ThreadPool.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Threading.ThreadPool.dll deleted file mode 100644 index d43ecbf67d200..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Threading.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Threading.dll deleted file mode 100644 index 7868cf0437d68..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Threading.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.ReaderWriter.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.ReaderWriter.dll deleted file mode 100644 index 022e63a21a860..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.XDocument.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.XDocument.dll deleted file mode 100644 index 3e41a4544903f..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.XDocument.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.XPath.XmlDocument.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.XPath.XmlDocument.dll deleted file mode 100644 index 70eb0707eb3dc..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.XPath.XmlDocument.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.XPath.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.XPath.dll deleted file mode 100644 index 963874b0631ca..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.XPath.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.XmlDocument.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.XmlDocument.dll deleted file mode 100644 index c1d415d19c12e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.api.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.api.deps.json deleted file mode 100644 index 74d166953f73c..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.api.deps.json +++ /dev/null @@ -1,1443 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETStandard,Version=v1.6/", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETStandard,Version=v1.6": {}, - ".NETStandard,Version=v1.6/": { - "nunit.engine.api/1.0.0": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Runtime.Loader": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0" - }, - "runtime": { - "nunit.engine.api.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Buffers/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": { - "assemblyVersion": "4.0.13.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": { - "assemblyVersion": "4.0.13.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "runtime": { - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Runtime.Loader/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Numerics.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "1.0.24212.1" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": { - "assemblyVersion": "4.0.12.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XDocument.dll": { - "assemblyVersion": "4.0.12.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XPath/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - } - } - }, - "libraries": { - "nunit.engine.api/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", - "path": "system.buffers/4.3.0", - "hashPath": "system.buffers.4.3.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", - "path": "system.diagnostics.diagnosticsource/4.3.0", - "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", - "path": "system.runtime.loader/4.3.0", - "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "path": "system.security.cryptography.cng/4.3.0", - "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "path": "system.threading.tasks.extensions/4.3.0", - "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", - "path": "system.xml.xpath.xmldocument/4.3.0", - "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.api.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.api.dll deleted file mode 100644 index 55bb63e857346..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.api.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.api.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.api.pdb deleted file mode 100644 index 903527ba3a052..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.api.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.api.xml b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.api.xml deleted file mode 100644 index baf1cf87a6ded..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.api.xml +++ /dev/null @@ -1,1137 +0,0 @@ - - - - nunit.engine.api - - - - - NUnitEngineException is thrown when the engine has been - called with improper values or when a particular facility - is not available. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - The exception that is thrown if a valid test engine is not found - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The minimum version. - - - - NUnitEngineUnloadException is thrown when a test run has completed successfully - but one or more errors were encountered when attempting to unload - and shut down the test run cleanly. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Construct with a message and a collection of exceptions. - - - - - Gets the collection of exceptions . - - - - - The ExtensionAttribute is used to identify a class that is intended - to serve as an extension. - - - - - Initializes a new instance of the class. - - - - - A unique string identifying the ExtensionPoint for which this Extension is - intended. This is an optional field provided NUnit is able to deduce the - ExtensionPoint from the Type of the extension class. - - - - - An optional description of what the extension does. - - - - - Flag indicating whether the extension is enabled. - - true if enabled; otherwise, false. - - - - The minimum Engine version for which this extension is designed - - - - - ExtensionPointAttribute is used at the assembly level to identify and - document any ExtensionPoints supported by the assembly. - - - - - Construct an ExtensionPointAttribute - - A unique string identifying the extension point. - The required Type of any extension that is installed at this extension point. - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - The required Type (usually an interface) of any extension that is - installed at this ExtensionPoint. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - The ExtensionPropertyAttribute is used to specify named properties for an extension. - - - - - Construct an ExtensionPropertyAttribute - - The name of the property - The property value - - - - The name of the property. - - - - - The property value - - - - - Interface implemented by a Type that knows how to create a driver for a test assembly. - - - - - Gets a flag indicating whether a given AssemblyName - represents a test framework supported by this factory. - - An AssemblyName referring to the possible test framework. - - - - Gets a driver for a given test assembly and a framework - which the assembly is already known to reference. - - An AssemblyName referring to the test framework. - - - - - The IExtensionNode interface is implemented by a class that represents a - single extension being installed on a particular extension point. - - - - - Gets the full name of the Type of the extension object. - - - - - Gets a value indicating whether this is enabled. - - true if enabled; otherwise, false. - - - - Gets the unique string identifying the ExtensionPoint for which - this Extension is intended. This identifier may be supplied by the attribute - marking the extension or deduced by NUnit from the Type of the extension class. - - - - - Gets an optional description of what the extension does. - - - - - The TargetFramework of the extension assembly. - - - - - Gets a collection of the names of all this extension's properties - - - - - Gets a collection of the values of a particular named property - If none are present, returns an empty enumerator. - - The property name - A collection of values - - - - The path to the assembly implementing this extension. - - - - - The version of the assembly implementing this extension. - - - - - An ExtensionPoint represents a single point in the TestEngine - that may be extended by user addins and extensions. - - - - - Gets the unique path identifying this extension point. - - - - - Gets the description of this extension point. May be null. - - - - - Gets the FullName of the Type required for any extension to be installed at this extension point. - - - - - Gets an enumeration of IExtensionNodes for extensions installed on this extension point. - - - - - The IFrameworkDriver interface is implemented by a class that - is able to use an external framework to explore or run tests - under the engine. - - - - - Gets and sets the unique identifier for this driver, - used to ensure that test ids are unique across drivers. - - - - - Loads the tests in an assembly. - - An Xml string representing the loaded test - - - - Count the test cases that would be executed. - - An XML string representing the TestFilter to use in counting the tests - The number of test cases counted - - - - Executes the tests in an assembly. - - An ITestEventHandler that receives progress notices - A XML string representing the filter that controls which tests are executed - An Xml string representing the result - - - - Returns information about the tests in an assembly. - - An XML string representing the filter that controls which tests are included - An Xml string representing the tests - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Interface for the various project types that the engine can load. - - - - - Gets the path to the file storing this project, if any. - If the project has not been saved, this is null. - - - - - Gets the active configuration, as defined - by the particular project. - - - - - Gets a list of the configs for this project - - - - - Gets a test package for the primary or active - configuration within the project. The package - includes all the assemblies and any settings - specified in the project format. - - A TestPackage - - - - Gets a TestPackage for a specific configuration - within the project. The package includes all the - assemblies and any settings specified in the - project format. - - The name of the config to use - A TestPackage for the named configuration. - - - - The IProjectLoader interface is implemented by any class - that knows how to load projects in a specific format. - - - - - Returns true if the file indicated is one that this - loader knows how to load. - - The path of the project file - True if the loader knows how to load this file, otherwise false - - - - Loads a project of a known format. - - The path of the project file - An IProject interface to the loaded project or null if the project cannot be loaded - - - - Common interface for objects that process and write out test results - - - - - Checks if the output path is writable. If the output is not - writable, this method should throw an exception. - - - - - - Writes result to the specified output path. - - XmlNode for the result - Path to which it should be written - - - - Writes result to a TextWriter. - - XmlNode for the result - TextWriter to which it should be written - - - - TypeExtensionPointAttribute is used to bind an extension point - to a class or interface. - - - - - Construct a TypeExtensionPointAttribute, specifying the path. - - A unique string identifying the extension point. - - - - Construct an TypeExtensionPointAttribute, without specifying the path. - The extension point will use a path constructed based on the interface - or class to which the attribute is applied. - - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - Interface that returns a list of available runtime frameworks. - - - - - Gets a list of available runtime frameworks. - - - - - The IExtensionService interface allows a runner to manage extensions. - - - - - Gets an enumeration of all ExtensionPoints in the engine. - - - - - Gets an enumeration of all installed Extensions. - - - - - Get an ExtensionPoint based on its unique identifying path. - - - - - Get an enumeration of ExtensionNodes based on their identifying path. - - - - - Enable or disable an extension - - - - - - - Interface for logging within the engine - - - - - Logs the specified message at the error level. - - The message. - - - - Logs the specified message at the error level. - - The message. - The arguments. - - - - Logs the specified message at the warning level. - - The message. - - - - Logs the specified message at the warning level. - - The message. - The arguments. - - - - Logs the specified message at the info level. - - The message. - - - - Logs the specified message at the info level. - - The message. - The arguments. - - - - Logs the specified message at the debug level. - - The message. - - - - Logs the specified message at the debug level. - - The message. - The arguments. - - - - Interface to abstract getting loggers - - - - - Gets the logger. - - The name of the logger to get. - - - - - InternalTraceLevel is an enumeration controlling the - level of detailed presented in the internal log. - - - - - Use the default settings as specified by the user. - - - - - Do not display any trace messages - - - - - Display Error messages only - - - - - Display Warning level and higher messages - - - - - Display informational and higher messages - - - - - Display debug messages and higher - i.e. all messages - - - - - Display debug messages and higher - i.e. all messages - - - - - The IRecentFiles interface is used to isolate the app - from various implementations of recent files. - - - - - The max number of files saved - - - - - Get a list of all the file entries - - The most recent file list - - - - Set the most recent file name, reordering - the saved names as needed and removing the oldest - if the max number of files would be exceeded. - The current CLR version is used to create the entry. - - - - - Remove a file from the list - - The name of the file to remove - - - - IResultWriterService provides result writers for a specified - well-known format. - - - - - Gets an array of the available formats - - - - - Gets a ResultWriter for a given format and set of arguments. - - The name of the format to be used - A set of arguments to be used in constructing the writer or null if non arguments are needed - An IResultWriter - - - - Interface implemented by objects representing a runtime framework. - - - - - Gets the inique Id for this runtime, such as "net-4.5" - - - - - Gets the display name of the framework, such as ".NET 4.5" - - - - - Gets the framework version: usually contains two components, Major - and Minor, which match the corresponding CLR components, but not always. - - - - - Gets the Version of the CLR for this framework - - - - - Gets a string representing the particular profile installed, - or null if there is no profile. Currently. the only defined - values are Full and Client. - - - - - Implemented by a type that provides information about the - current and other available runtimes. - - - - - Returns true if the runtime framework represented by - the string passed as an argument is available. - - A string representing a framework, like 'net-4.0' - True if the framework is available, false if unavailable or nonexistent - - - - Selects a target runtime framework for a TestPackage based on - the settings in the package and the assemblies themselves. - The package RuntimeFramework setting may be updated as a - result and the selected runtime is returned. - - Note that if a package has subpackages, the subpackages may run on a different - framework to the top-level package. In future, this method should - probably not return a simple string, and instead require runners - to inspect the test package structure, to find all desired frameworks. - - A TestPackage - The selected RuntimeFramework - - - - Enumeration representing the status of a service - - - - Service was never started or has been stopped - - - Started successfully - - - Service failed to start and is unavailable - - - - The IService interface is implemented by all Services. Although it - is extensible, it does not reside in the Extensibility namespace - because it is so widely used by the engine. - - - - - The ServiceContext - - - - - Gets the ServiceStatus of this service - - - - - Initialize the Service - - - - - Do any cleanup needed before terminating the service - - - - - IServiceLocator allows clients to locate any NUnit services - for which the interface is referenced. In normal use, this - linits it to those services using interfaces defined in the - nunit.engine.api assembly. - - - - - Return a specified type of service - - - - - Return a specified type of service - - - - - Event handler for settings changes - - The sender. - The instance containing the event data. - - - - Event argument for settings changes - - - - - Initializes a new instance of the class. - - Name of the setting that has changed. - - - - Gets the name of the setting that has changed - - - - - The ISettings interface is used to access all user - settings and options. - - - - - Occurs when the settings are changed. - - - - - Load a setting from the storage. - - Name of the setting to load - Value of the setting or null - - - - Load a setting from the storage or return a default value - - Name of the setting to load - Value to return if the setting is missing - Value of the setting or the default value - - - - Remove a setting from the storage - - Name of the setting to remove - - - - Remove an entire group of settings from the storage - - Name of the group to remove - - - - Save a setting in the storage - - Name of the setting to save - Value to be saved - - - - ITestEngine represents an instance of the test engine. - Clients wanting to discover, explore or run tests start - require an instance of the engine, which is generally - acquired from the TestEngineActivator class. - - - - - Gets the IServiceLocator interface, which gives access to - certain services provided by the engine. - - - - - Gets and sets the directory path used by the engine for saving files. - Some services may ignore changes to this path made after initialization. - The default value is the current directory. - - - - - Gets and sets the InternalTraceLevel used by the engine. Changing this - setting after initialization will have no effect. The default value - is the value saved in the NUnit settings. - - - - - Initialize the engine. This includes initializing mono addins, - setting the trace level and creating the standard set of services - used in the Engine. - - This interface is not normally called by user code. Programs linking - only to the nunit.engine.api assembly are given a - pre-initialized instance of TestEngine. Programs - that link directly to nunit.engine usually do so - in order to perform custom initialization. - - - - - Returns a test runner instance for use by clients in discovering, - exploring and executing tests. - - The TestPackage for which the runner is intended. - An ITestRunner. - - - - The ITestListener interface is used to receive notices of significant - events while a test is running. Its single method accepts an Xml string, - which may represent any event generated by the test framework, the driver - or any of the runners internal to the engine. Use of Xml means that - any driver and framework may add additional events and the engine will - simply pass them on through this interface. - - - - - Handle a progress report or other event. - - An XML progress report. - - - - Interface to a TestFilterBuilder, which is used to create TestFilters - - - - - Add a test to be selected - - The full name of the test, as created by NUnit - - - - Specify what is to be included by the filter using a where clause. - - A where clause that will be parsed by NUnit to create the filter. - - - - Get a TestFilter constructed according to the criteria specified by the other calls. - - A TestFilter. - - - - The TestFilterService provides builders that can create TestFilters - - - - - Get an uninitialized TestFilterBuilder - - - - - The ITestRun class represents an ongoing test run. - - - - - Get the result of the test. - - An XmlNode representing the test run result - - - - Blocks the current thread until the current test run completes - or the timeout is reached - - A that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. - True if the run completed - - - - Interface implemented by all test runners. - - - - - Get a flag indicating whether a test is running - - - - - Load a TestPackage for possible execution - - An XmlNode representing the loaded package. - - This method is normally optional, since Explore and Run call - it automatically when necessary. The method is kept in order - to make it easier to convert older programs that use it. - - - - - Unload any loaded TestPackage. If none is loaded, - the call is ignored. - - - - - Reload the current TestPackage - - An XmlNode representing the loaded package. - - - - Count the test cases that would be run under - the specified filter. - - A TestFilter - The count of test cases - - - - Run the tests in the loaded TestPackage and return a test result. The tests - are run synchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - An XmlNode giving the result of the test execution - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Explore a loaded TestPackage and return information about the tests found. - - The TestFilter to be used in selecting tests to explore. - An XmlNode representing the tests found. - - - - TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface. - - - - - Create an instance of the test engine. - - An - - - - Abstract base for all test filters. A filter is represented - by an XmlNode with <filter> as its topmost element. - In the console runner, filters serve only to carry this - XML representation, as all filtering is done by the engine. - - - - - Initializes a new instance of the class. - - The XML text that specifies the filter. - - - - The empty filter - one that always passes. - - - - - Gets the XML representation of this filter as a string. - - - - - TestPackage holds information about a set of test files to - be loaded by a TestRunner. Each TestPackage represents - tests for one or more test files. TestPackages may be named - or anonymous, depending on the constructor used. - - Upon construction, a package is given an ID (string), which - remains unchanged for the lifetime of the TestPackage instance. - The package ID is passed to the test framework for use in generating - test IDs. - - A runner that reloads test assemblies and wants the ids to remain stable - should avoid creating a new package but should instead use the original - package, changing settings as needed. This gives the best chance for the - tests in the reloaded assembly to match those originally loaded. - - - - - Construct a named TestPackage, specifying a file path for - the assembly or project to be used. - - The file path. - - - - Construct an anonymous TestPackage that wraps test files. - - - - - - Every test package gets a unique ID used to prefix test IDs within that package. - - - The generated ID is only unique for packages created within the same application domain. - For that reason, NUnit pre-creates all test packages that will be needed. - - - - - Gets the name of the package - - - - - Gets the path to the file containing tests. It may be - an assembly or a recognized project type. - - - - - Gets the list of SubPackages contained in this package - - - - - Gets the settings dictionary for this package. - - - - - Add a subproject to the package. - - The subpackage to be added - - - - Add a setting to a package and all of its subpackages. - - The name of the setting - The value of the setting - - Once a package is created, subpackages may have been created - as well. If you add a setting directly to the Settings dictionary - of the package, the subpackages are not updated. This method is - used when the settings are intended to be reflected to all the - subpackages under the package. - - - - - Return the value of a setting or a default. - - The name of the setting - The default value - - - - - TestSelectionParserException is thrown when an error - is found while parsing the selection expression. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.core.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.core.deps.json deleted file mode 100644 index 52ca84f3deea7..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.core.deps.json +++ /dev/null @@ -1,1708 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETStandard,Version=v1.6/", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETStandard,Version=v1.6": {}, - ".NETStandard,Version=v1.6/": { - "nunit.engine.core/1.0.0": { - "dependencies": { - "Microsoft.DotNet.InternalAbstractions": "1.0.0", - "NETStandard.Library": "1.6.1", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0" - }, - "runtime": { - "nunit.engine.core.dll": {} - } - }, - "Microsoft.DotNet.InternalAbstractions/1.0.0": { - "dependencies": { - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Buffers/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": { - "assemblyVersion": "4.0.13.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Collections.NonGeneric/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Diagnostics.Process/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "Microsoft.Win32.Registry": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Threading.ThreadPool": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": { - "assemblyVersion": "4.0.13.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "runtime": { - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Runtime.Loader/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Numerics.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "1.0.24212.1" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": { - "assemblyVersion": "4.0.12.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Thread/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Thread.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.ThreadPool/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.ThreadPool.dll": { - "assemblyVersion": "4.0.11.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XDocument.dll": { - "assemblyVersion": "4.0.12.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XPath/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "TestCentric.Metadata/1.4.1": { - "runtime": { - "lib/netstandard1.6/testcentric.engine.metadata.dll": { - "assemblyVersion": "1.4.1.0", - "fileVersion": "1.4.1.0" - } - } - }, - "nunit.engine.api/3.12.0": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Runtime.Loader": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0" - }, - "runtime": { - "nunit.engine.api.dll": {} - } - } - } - }, - "libraries": { - "nunit.engine.core/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.DotNet.InternalAbstractions/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==", - "path": "microsoft.dotnet.internalabstractions/1.0.0", - "hashPath": "microsoft.dotnet.internalabstractions.1.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", - "path": "microsoft.win32.registry/4.3.0", - "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", - "path": "system.buffers/4.3.0", - "hashPath": "system.buffers.4.3.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "path": "system.componentmodel/4.3.0", - "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", - "path": "system.diagnostics.diagnosticsource/4.3.0", - "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Process/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==", - "path": "system.diagnostics.process/4.3.0", - "hashPath": "system.diagnostics.process.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", - "path": "system.runtime.loader/4.3.0", - "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "path": "system.security.cryptography.cng/4.3.0", - "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "path": "system.threading.tasks.extensions/4.3.0", - "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "path": "system.threading.thread/4.3.0", - "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" - }, - "System.Threading.ThreadPool/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", - "path": "system.threading.threadpool/4.3.0", - "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", - "path": "system.xml.xpath.xmldocument/4.3.0", - "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" - }, - "TestCentric.Metadata/1.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P9m8Vmg76Xq87WIhlE4IgyZhLkmSNMtfsb8IRwhb/C/el/3fLTmKol5POpNx62MJbV7GVj3GiL4e34V9cYnbUw==", - "path": "testcentric.metadata/1.4.1", - "hashPath": "testcentric.metadata.1.4.1.nupkg.sha512" - }, - "nunit.engine.api/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.core.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.core.dll deleted file mode 100644 index 792cca31c0c15..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.core.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.core.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.core.pdb deleted file mode 100644 index 33a50b4a83337..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.core.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.deps.json deleted file mode 100644 index 97112be4fc64f..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.deps.json +++ /dev/null @@ -1,1729 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETStandard,Version=v1.6/", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETStandard,Version=v1.6": {}, - ".NETStandard,Version=v1.6/": { - "nunit.engine/1.0.0": { - "dependencies": { - "Microsoft.DotNet.InternalAbstractions": "1.0.0", - "NETStandard.Library": "1.6.1", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0", - "nunit.engine.core": "3.12.0" - }, - "runtime": { - "nunit.engine.dll": {} - } - }, - "Microsoft.DotNet.InternalAbstractions/1.0.0": { - "dependencies": { - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Buffers/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": { - "assemblyVersion": "4.0.13.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Collections.NonGeneric/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Diagnostics.Process/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "Microsoft.Win32.Registry": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Threading.ThreadPool": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": { - "assemblyVersion": "4.0.13.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "runtime": { - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Runtime.Loader/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.Loader.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Numerics.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "1.0.24212.1" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": { - "assemblyVersion": "4.0.12.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Thread/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Thread.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.ThreadPool/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.ThreadPool.dll": { - "assemblyVersion": "4.0.11.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XDocument.dll": { - "assemblyVersion": "4.0.12.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XPath/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "TestCentric.Metadata/1.4.1": { - "runtime": { - "lib/netstandard1.6/testcentric.engine.metadata.dll": { - "assemblyVersion": "1.4.1.0", - "fileVersion": "1.4.1.0" - } - } - }, - "nunit.engine.api/3.12.0": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Runtime.Loader": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0" - }, - "runtime": { - "nunit.engine.api.dll": {} - } - }, - "nunit.engine.core/3.12.0": { - "dependencies": { - "Microsoft.DotNet.InternalAbstractions": "1.0.0", - "NETStandard.Library": "1.6.1", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0" - }, - "runtime": { - "nunit.engine.core.dll": {} - } - } - } - }, - "libraries": { - "nunit.engine/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.DotNet.InternalAbstractions/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==", - "path": "microsoft.dotnet.internalabstractions/1.0.0", - "hashPath": "microsoft.dotnet.internalabstractions.1.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", - "path": "microsoft.win32.registry/4.3.0", - "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", - "path": "system.buffers/4.3.0", - "hashPath": "system.buffers.4.3.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "path": "system.componentmodel/4.3.0", - "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", - "path": "system.diagnostics.diagnosticsource/4.3.0", - "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Process/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==", - "path": "system.diagnostics.process/4.3.0", - "hashPath": "system.diagnostics.process.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Loader/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==", - "path": "system.runtime.loader/4.3.0", - "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "path": "system.security.cryptography.cng/4.3.0", - "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "path": "system.threading.tasks.extensions/4.3.0", - "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "path": "system.threading.thread/4.3.0", - "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" - }, - "System.Threading.ThreadPool/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", - "path": "system.threading.threadpool/4.3.0", - "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", - "path": "system.xml.xpath.xmldocument/4.3.0", - "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" - }, - "TestCentric.Metadata/1.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P9m8Vmg76Xq87WIhlE4IgyZhLkmSNMtfsb8IRwhb/C/el/3fLTmKol5POpNx62MJbV7GVj3GiL4e34V9cYnbUw==", - "path": "testcentric.metadata/1.4.1", - "hashPath": "testcentric.metadata.1.4.1.nupkg.sha512" - }, - "nunit.engine.api/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine.core/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.dll deleted file mode 100644 index 9694f65fbd68e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.pdb deleted file mode 100644 index 18a3eb58eadc8..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/nunit.engine.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/testcentric.engine.metadata.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/testcentric.engine.metadata.dll deleted file mode 100644 index 9b659d946a3ba..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard1.6/testcentric.engine.metadata.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Collections.NonGeneric.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Collections.NonGeneric.dll deleted file mode 100644 index 92fc8f20edcee..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Collections.Specialized.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Collections.Specialized.dll deleted file mode 100644 index a1323642b9409..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Collections.Specialized.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.ComponentModel.Primitives.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.ComponentModel.Primitives.dll deleted file mode 100644 index 44bdd096e673b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.ComponentModel.TypeConverter.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.ComponentModel.TypeConverter.dll deleted file mode 100644 index 82463bec44989..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.ComponentModel.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.ComponentModel.dll deleted file mode 100644 index 602e66700ea98..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.ComponentModel.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.IO.FileSystem.Primitives.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.IO.FileSystem.Primitives.dll deleted file mode 100644 index 050c54d38f5d3..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Linq.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Linq.dll deleted file mode 100644 index d3ca6a40b19e9..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Linq.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Reflection.TypeExtensions.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Reflection.TypeExtensions.dll deleted file mode 100644 index 975497cf34cac..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Text.RegularExpressions.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Text.RegularExpressions.dll deleted file mode 100644 index 9b28654f396c2..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Threading.Tasks.Extensions.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Threading.Tasks.Extensions.dll deleted file mode 100644 index a1234ce81a34b..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Threading.Thread.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Threading.Thread.dll deleted file mode 100644 index a981cb1cae265..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Threading.Thread.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Threading.ThreadPool.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Threading.ThreadPool.dll deleted file mode 100644 index d43ecbf67d200..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Threading.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Threading.dll deleted file mode 100644 index 7868cf0437d68..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Threading.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Xml.ReaderWriter.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Xml.ReaderWriter.dll deleted file mode 100644 index 022e63a21a860..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Xml.XPath.XmlDocument.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Xml.XPath.XmlDocument.dll deleted file mode 100644 index 70eb0707eb3dc..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Xml.XPath.XmlDocument.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Xml.XPath.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Xml.XPath.dll deleted file mode 100644 index 963874b0631ca..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Xml.XPath.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Xml.XmlDocument.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Xml.XmlDocument.dll deleted file mode 100644 index c1d415d19c12e..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.api.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.api.deps.json deleted file mode 100644 index a72b3798aa4e0..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.api.deps.json +++ /dev/null @@ -1,472 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETStandard,Version=v2.0/", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETStandard,Version=v2.0": {}, - ".NETStandard,Version=v2.0/": { - "nunit.engine.api/1.0.0": { - "dependencies": { - "NETStandard.Library": "2.0.3", - "System.Xml.XPath.XmlDocument": "4.3.0" - }, - "runtime": { - "nunit.engine.api.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "NETStandard.Library/2.0.3": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": { - "assemblyVersion": "4.0.12.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XPath/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - } - } - }, - "libraries": { - "nunit.engine.api/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "NETStandard.Library/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", - "path": "netstandard.library/2.0.3", - "hashPath": "netstandard.library.2.0.3.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "path": "system.threading.tasks.extensions/4.3.0", - "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", - "path": "system.xml.xpath.xmldocument/4.3.0", - "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.api.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.api.dll deleted file mode 100644 index 39c93ef6fa4a4..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.api.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.api.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.api.pdb deleted file mode 100644 index 8e281f6e0ecdd..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.api.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.api.xml b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.api.xml deleted file mode 100644 index 52687344e914b..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.api.xml +++ /dev/null @@ -1,1161 +0,0 @@ - - - - nunit.engine.api - - - - - NUnitEngineException is thrown when the engine has been - called with improper values or when a particular facility - is not available. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Serialization constructor - - - - - The exception that is thrown if a valid test engine is not found - - - - - Initializes a new instance of the class. - - - - - Initializes a new instance of the class. - - The minimum version. - - - - NUnitEngineUnloadException is thrown when a test run has completed successfully - but one or more errors were encountered when attempting to unload - and shut down the test run cleanly. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - Construct with a message and a collection of exceptions. - - - - - Serialization constructor. - - - - - Gets the collection of exceptions . - - - - - The ExtensionAttribute is used to identify a class that is intended - to serve as an extension. - - - - - Initializes a new instance of the class. - - - - - A unique string identifying the ExtensionPoint for which this Extension is - intended. This is an optional field provided NUnit is able to deduce the - ExtensionPoint from the Type of the extension class. - - - - - An optional description of what the extension does. - - - - - Flag indicating whether the extension is enabled. - - true if enabled; otherwise, false. - - - - The minimum Engine version for which this extension is designed - - - - - ExtensionPointAttribute is used at the assembly level to identify and - document any ExtensionPoints supported by the assembly. - - - - - Construct an ExtensionPointAttribute - - A unique string identifying the extension point. - The required Type of any extension that is installed at this extension point. - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - The required Type (usually an interface) of any extension that is - installed at this ExtensionPoint. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - The ExtensionPropertyAttribute is used to specify named properties for an extension. - - - - - Construct an ExtensionPropertyAttribute - - The name of the property - The property value - - - - The name of the property. - - - - - The property value - - - - - Interface implemented by a Type that knows how to create a driver for a test assembly. - - - - - Gets a flag indicating whether a given AssemblyName - represents a test framework supported by this factory. - - An AssemblyName referring to the possible test framework. - - - - Gets a driver for a given test assembly and a framework - which the assembly is already known to reference. - - An AssemblyName referring to the test framework. - - - - - The IExtensionNode interface is implemented by a class that represents a - single extension being installed on a particular extension point. - - - - - Gets the full name of the Type of the extension object. - - - - - Gets a value indicating whether this is enabled. - - true if enabled; otherwise, false. - - - - Gets the unique string identifying the ExtensionPoint for which - this Extension is intended. This identifier may be supplied by the attribute - marking the extension or deduced by NUnit from the Type of the extension class. - - - - - Gets an optional description of what the extension does. - - - - - The TargetFramework of the extension assembly. - - - - - Gets a collection of the names of all this extension's properties - - - - - Gets a collection of the values of a particular named property - If none are present, returns an empty enumerator. - - The property name - A collection of values - - - - The path to the assembly implementing this extension. - - - - - The version of the assembly implementing this extension. - - - - - An ExtensionPoint represents a single point in the TestEngine - that may be extended by user addins and extensions. - - - - - Gets the unique path identifying this extension point. - - - - - Gets the description of this extension point. May be null. - - - - - Gets the FullName of the Type required for any extension to be installed at this extension point. - - - - - Gets an enumeration of IExtensionNodes for extensions installed on this extension point. - - - - - The IFrameworkDriver interface is implemented by a class that - is able to use an external framework to explore or run tests - under the engine. - - - - - Gets and sets the unique identifier for this driver, - used to ensure that test ids are unique across drivers. - - - - - Loads the tests in an assembly. - - An Xml string representing the loaded test - - - - Count the test cases that would be executed. - - An XML string representing the TestFilter to use in counting the tests - The number of test cases counted - - - - Executes the tests in an assembly. - - An ITestEventHandler that receives progress notices - A XML string representing the filter that controls which tests are executed - An Xml string representing the result - - - - Returns information about the tests in an assembly. - - An XML string representing the filter that controls which tests are included - An Xml string representing the tests - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Interface for the various project types that the engine can load. - - - - - Gets the path to the file storing this project, if any. - If the project has not been saved, this is null. - - - - - Gets the active configuration, as defined - by the particular project. - - - - - Gets a list of the configs for this project - - - - - Gets a test package for the primary or active - configuration within the project. The package - includes all the assemblies and any settings - specified in the project format. - - A TestPackage - - - - Gets a TestPackage for a specific configuration - within the project. The package includes all the - assemblies and any settings specified in the - project format. - - The name of the config to use - A TestPackage for the named configuration. - - - - The IProjectLoader interface is implemented by any class - that knows how to load projects in a specific format. - - - - - Returns true if the file indicated is one that this - loader knows how to load. - - The path of the project file - True if the loader knows how to load this file, otherwise false - - - - Loads a project of a known format. - - The path of the project file - An IProject interface to the loaded project or null if the project cannot be loaded - - - - Common interface for objects that process and write out test results - - - - - Checks if the output path is writable. If the output is not - writable, this method should throw an exception. - - - - - - Writes result to the specified output path. - - XmlNode for the result - Path to which it should be written - - - - Writes result to a TextWriter. - - XmlNode for the result - TextWriter to which it should be written - - - - TypeExtensionPointAttribute is used to bind an extension point - to a class or interface. - - - - - Construct a TypeExtensionPointAttribute, specifying the path. - - A unique string identifying the extension point. - - - - Construct an TypeExtensionPointAttribute, without specifying the path. - The extension point will use a path constructed based on the interface - or class to which the attribute is applied. - - - - - The unique string identifying this ExtensionPoint. This identifier - is typically formatted as a path using '/' and the set of extension - points is sometimes viewed as forming a tree. - - - - - An optional description of the purpose of the ExtensionPoint - - - - - Interface that returns a list of available runtime frameworks. - - - - - Gets a list of available runtime frameworks. - - - - - The IExtensionService interface allows a runner to manage extensions. - - - - - Gets an enumeration of all ExtensionPoints in the engine. - - - - - Gets an enumeration of all installed Extensions. - - - - - Get an ExtensionPoint based on its unique identifying path. - - - - - Get an enumeration of ExtensionNodes based on their identifying path. - - - - - Enable or disable an extension - - - - - - - Interface for logging within the engine - - - - - Logs the specified message at the error level. - - The message. - - - - Logs the specified message at the error level. - - The message. - The arguments. - - - - Logs the specified message at the warning level. - - The message. - - - - Logs the specified message at the warning level. - - The message. - The arguments. - - - - Logs the specified message at the info level. - - The message. - - - - Logs the specified message at the info level. - - The message. - The arguments. - - - - Logs the specified message at the debug level. - - The message. - - - - Logs the specified message at the debug level. - - The message. - The arguments. - - - - Interface to abstract getting loggers - - - - - Gets the logger. - - The name of the logger to get. - - - - - InternalTraceLevel is an enumeration controlling the - level of detailed presented in the internal log. - - - - - Use the default settings as specified by the user. - - - - - Do not display any trace messages - - - - - Display Error messages only - - - - - Display Warning level and higher messages - - - - - Display informational and higher messages - - - - - Display debug messages and higher - i.e. all messages - - - - - Display debug messages and higher - i.e. all messages - - - - - The IRecentFiles interface is used to isolate the app - from various implementations of recent files. - - - - - The max number of files saved - - - - - Get a list of all the file entries - - The most recent file list - - - - Set the most recent file name, reordering - the saved names as needed and removing the oldest - if the max number of files would be exceeded. - The current CLR version is used to create the entry. - - - - - Remove a file from the list - - The name of the file to remove - - - - IResultWriterService provides result writers for a specified - well-known format. - - - - - Gets an array of the available formats - - - - - Gets a ResultWriter for a given format and set of arguments. - - The name of the format to be used - A set of arguments to be used in constructing the writer or null if non arguments are needed - An IResultWriter - - - - Interface implemented by objects representing a runtime framework. - - - - - Gets the inique Id for this runtime, such as "net-4.5" - - - - - Gets the display name of the framework, such as ".NET 4.5" - - - - - Gets the framework version: usually contains two components, Major - and Minor, which match the corresponding CLR components, but not always. - - - - - Gets the Version of the CLR for this framework - - - - - Gets a string representing the particular profile installed, - or null if there is no profile. Currently. the only defined - values are Full and Client. - - - - - Implemented by a type that provides information about the - current and other available runtimes. - - - - - Returns true if the runtime framework represented by - the string passed as an argument is available. - - A string representing a framework, like 'net-4.0' - True if the framework is available, false if unavailable or nonexistent - - - - Selects a target runtime framework for a TestPackage based on - the settings in the package and the assemblies themselves. - The package RuntimeFramework setting may be updated as a - result and the selected runtime is returned. - - Note that if a package has subpackages, the subpackages may run on a different - framework to the top-level package. In future, this method should - probably not return a simple string, and instead require runners - to inspect the test package structure, to find all desired frameworks. - - A TestPackage - The selected RuntimeFramework - - - - Enumeration representing the status of a service - - - - Service was never started or has been stopped - - - Started successfully - - - Service failed to start and is unavailable - - - - The IService interface is implemented by all Services. Although it - is extensible, it does not reside in the Extensibility namespace - because it is so widely used by the engine. - - - - - The ServiceContext - - - - - Gets the ServiceStatus of this service - - - - - Initialize the Service - - - - - Do any cleanup needed before terminating the service - - - - - IServiceLocator allows clients to locate any NUnit services - for which the interface is referenced. In normal use, this - linits it to those services using interfaces defined in the - nunit.engine.api assembly. - - - - - Return a specified type of service - - - - - Return a specified type of service - - - - - Event handler for settings changes - - The sender. - The instance containing the event data. - - - - Event argument for settings changes - - - - - Initializes a new instance of the class. - - Name of the setting that has changed. - - - - Gets the name of the setting that has changed - - - - - The ISettings interface is used to access all user - settings and options. - - - - - Occurs when the settings are changed. - - - - - Load a setting from the storage. - - Name of the setting to load - Value of the setting or null - - - - Load a setting from the storage or return a default value - - Name of the setting to load - Value to return if the setting is missing - Value of the setting or the default value - - - - Remove a setting from the storage - - Name of the setting to remove - - - - Remove an entire group of settings from the storage - - Name of the group to remove - - - - Save a setting in the storage - - Name of the setting to save - Value to be saved - - - - ITestEngine represents an instance of the test engine. - Clients wanting to discover, explore or run tests start - require an instance of the engine, which is generally - acquired from the TestEngineActivator class. - - - - - Gets the IServiceLocator interface, which gives access to - certain services provided by the engine. - - - - - Gets and sets the directory path used by the engine for saving files. - Some services may ignore changes to this path made after initialization. - The default value is the current directory. - - - - - Gets and sets the InternalTraceLevel used by the engine. Changing this - setting after initialization will have no effect. The default value - is the value saved in the NUnit settings. - - - - - Initialize the engine. This includes initializing mono addins, - setting the trace level and creating the standard set of services - used in the Engine. - - This interface is not normally called by user code. Programs linking - only to the nunit.engine.api assembly are given a - pre-initialized instance of TestEngine. Programs - that link directly to nunit.engine usually do so - in order to perform custom initialization. - - - - - Returns a test runner instance for use by clients in discovering, - exploring and executing tests. - - The TestPackage for which the runner is intended. - An ITestRunner. - - - - The ITestListener interface is used to receive notices of significant - events while a test is running. Its single method accepts an Xml string, - which may represent any event generated by the test framework, the driver - or any of the runners internal to the engine. Use of Xml means that - any driver and framework may add additional events and the engine will - simply pass them on through this interface. - - - - - Handle a progress report or other event. - - An XML progress report. - - - - Interface to a TestFilterBuilder, which is used to create TestFilters - - - - - Add a test to be selected - - The full name of the test, as created by NUnit - - - - Specify what is to be included by the filter using a where clause. - - A where clause that will be parsed by NUnit to create the filter. - - - - Get a TestFilter constructed according to the criteria specified by the other calls. - - A TestFilter. - - - - The TestFilterService provides builders that can create TestFilters - - - - - Get an uninitialized TestFilterBuilder - - - - - The ITestRun class represents an ongoing test run. - - - - - Get the result of the test. - - An XmlNode representing the test run result - - - - Blocks the current thread until the current test run completes - or the timeout is reached - - A that represents the number of milliseconds to wait or -1 milliseconds to wait indefinitely. - True if the run completed - - - - Interface implemented by all test runners. - - - - - Get a flag indicating whether a test is running - - - - - Load a TestPackage for possible execution - - An XmlNode representing the loaded package. - - This method is normally optional, since Explore and Run call - it automatically when necessary. The method is kept in order - to make it easier to convert older programs that use it. - - - - - Unload any loaded TestPackage. If none is loaded, - the call is ignored. - - - - - Reload the current TestPackage - - An XmlNode representing the loaded package. - - - - Count the test cases that would be run under - the specified filter. - - A TestFilter - The count of test cases - - - - Run the tests in the loaded TestPackage and return a test result. The tests - are run synchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - An XmlNode giving the result of the test execution - - - - Start a run of the tests in the loaded TestPackage. The tests are run - asynchronously and the listener interface is notified as it progresses. - - The listener that is notified as the run progresses - A TestFilter used to select tests - - - - - Cancel the ongoing test run. If no test is running, the call is ignored. - - If true, cancel any ongoing test threads, otherwise wait for them to complete. - - - - Explore a loaded TestPackage and return information about the tests found. - - The TestFilter to be used in selecting tests to explore. - An XmlNode representing the tests found. - - - - TestEngineActivator creates an instance of the test engine and returns an ITestEngine interface. - - - - - Create an instance of the test engine. - - An - - - - Abstract base for all test filters. A filter is represented - by an XmlNode with <filter> as its topmost element. - In the console runner, filters serve only to carry this - XML representation, as all filtering is done by the engine. - - - - - Initializes a new instance of the class. - - The XML text that specifies the filter. - - - - The empty filter - one that always passes. - - - - - Gets the XML representation of this filter as a string. - - - - - TestPackage holds information about a set of test files to - be loaded by a TestRunner. Each TestPackage represents - tests for one or more test files. TestPackages may be named - or anonymous, depending on the constructor used. - - Upon construction, a package is given an ID (string), which - remains unchanged for the lifetime of the TestPackage instance. - The package ID is passed to the test framework for use in generating - test IDs. - - A runner that reloads test assemblies and wants the ids to remain stable - should avoid creating a new package but should instead use the original - package, changing settings as needed. This gives the best chance for the - tests in the reloaded assembly to match those originally loaded. - - - - - Construct a named TestPackage, specifying a file path for - the assembly or project to be used. - - The file path. - - - - Construct an anonymous TestPackage that wraps test files. - - - - - - Every test package gets a unique ID used to prefix test IDs within that package. - - - The generated ID is only unique for packages created within the same application domain. - For that reason, NUnit pre-creates all test packages that will be needed. - - - - - Gets the name of the package - - - - - Gets the path to the file containing tests. It may be - an assembly or a recognized project type. - - - - - Gets the list of SubPackages contained in this package - - - - - Gets the settings dictionary for this package. - - - - - Add a subproject to the package. - - The subpackage to be added - - - - Add a setting to a package and all of its subpackages. - - The name of the setting - The value of the setting - - Once a package is created, subpackages may have been created - as well. If you add a setting directly to the Settings dictionary - of the package, the subpackages are not updated. This method is - used when the settings are intended to be reflected to all the - subpackages under the package. - - - - - Return the value of a setting or a default. - - The name of the setting - The default value - - - - - TestSelectionParserException is thrown when an error - is found while parsing the selection expression. - - - - - Construct with a message - - - - - Construct with a message and inner exception - - - - - - - Serialization constructor - - - - diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.core.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.core.deps.json deleted file mode 100644 index e126dd4fb112f..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.core.deps.json +++ /dev/null @@ -1,810 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETStandard,Version=v2.0/", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETStandard,Version=v2.0": {}, - ".NETStandard,Version=v2.0/": { - "nunit.engine.core/1.0.0": { - "dependencies": { - "NETStandard.Library": "2.0.3", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0" - }, - "runtime": { - "nunit.engine.core.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "NETStandard.Library/2.0.3": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - } - }, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.NonGeneric/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Process/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "Microsoft.Win32.Registry": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Threading.ThreadPool": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": { - "assemblyVersion": "4.0.12.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Thread/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Thread.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.ThreadPool/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.ThreadPool.dll": { - "assemblyVersion": "4.0.11.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XPath/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "TestCentric.Metadata/1.4.1": { - "runtime": { - "lib/netstandard2.0/testcentric.engine.metadata.dll": { - "assemblyVersion": "1.4.1.0", - "fileVersion": "1.4.1.0" - } - } - }, - "nunit.engine.api/3.12.0": { - "dependencies": { - "System.Xml.XPath.XmlDocument": "4.3.0" - }, - "runtime": { - "nunit.engine.api.dll": {} - } - } - } - }, - "libraries": { - "nunit.engine.core/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", - "path": "microsoft.win32.registry/4.3.0", - "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" - }, - "NETStandard.Library/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", - "path": "netstandard.library/2.0.3", - "hashPath": "netstandard.library.2.0.3.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "path": "system.componentmodel/4.3.0", - "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Process/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==", - "path": "system.diagnostics.process/4.3.0", - "hashPath": "system.diagnostics.process.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "path": "system.threading.tasks.extensions/4.3.0", - "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "path": "system.threading.thread/4.3.0", - "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" - }, - "System.Threading.ThreadPool/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", - "path": "system.threading.threadpool/4.3.0", - "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", - "path": "system.xml.xpath.xmldocument/4.3.0", - "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" - }, - "TestCentric.Metadata/1.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P9m8Vmg76Xq87WIhlE4IgyZhLkmSNMtfsb8IRwhb/C/el/3fLTmKol5POpNx62MJbV7GVj3GiL4e34V9cYnbUw==", - "path": "testcentric.metadata/1.4.1", - "hashPath": "testcentric.metadata.1.4.1.nupkg.sha512" - }, - "nunit.engine.api/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.core.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.core.dll deleted file mode 100644 index f7df5797c12c6..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.core.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.core.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.core.pdb deleted file mode 100644 index 9c8425eb83a02..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.core.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.deps.json b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.deps.json deleted file mode 100644 index 8e07a80a5f31d..0000000000000 --- a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.deps.json +++ /dev/null @@ -1,829 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETStandard,Version=v2.0/", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETStandard,Version=v2.0": {}, - ".NETStandard,Version=v2.0/": { - "nunit.engine/1.0.0": { - "dependencies": { - "NETStandard.Library": "2.0.3", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0", - "nunit.engine.core": "3.12.0" - }, - "runtime": { - "nunit.engine.dll": {} - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "NETStandard.Library/2.0.3": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0" - } - }, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.NonGeneric/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Process/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "Microsoft.Win32.Registry": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Threading.ThreadPool": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": { - "assemblyVersion": "4.0.12.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.Thread/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Thread.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Threading.ThreadPool/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Threading.ThreadPool.dll": { - "assemblyVersion": "4.0.11.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XPath/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XPath": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.6.24705.1" - } - } - }, - "TestCentric.Metadata/1.4.1": { - "runtime": { - "lib/netstandard2.0/testcentric.engine.metadata.dll": { - "assemblyVersion": "1.4.1.0", - "fileVersion": "1.4.1.0" - } - } - }, - "nunit.engine.api/3.12.0": { - "dependencies": { - "System.Xml.XPath.XmlDocument": "4.3.0" - }, - "runtime": { - "nunit.engine.api.dll": {} - } - }, - "nunit.engine.core/3.12.0": { - "dependencies": { - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.Process": "4.3.0", - "System.Reflection": "4.3.0", - "System.Xml.XPath.XmlDocument": "4.3.0", - "TestCentric.Metadata": "1.4.1", - "nunit.engine.api": "3.12.0" - }, - "runtime": { - "nunit.engine.core.dll": {} - } - } - } - }, - "libraries": { - "nunit.engine/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", - "path": "microsoft.win32.registry/4.3.0", - "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" - }, - "NETStandard.Library/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", - "path": "netstandard.library/2.0.3", - "hashPath": "netstandard.library.2.0.3.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "path": "system.componentmodel/4.3.0", - "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Process/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==", - "path": "system.diagnostics.process/4.3.0", - "hashPath": "system.diagnostics.process.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", - "path": "system.threading.tasks.extensions/4.3.0", - "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "path": "system.threading.thread/4.3.0", - "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" - }, - "System.Threading.ThreadPool/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", - "path": "system.threading.threadpool/4.3.0", - "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", - "path": "system.xml.xpath.xmldocument/4.3.0", - "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" - }, - "TestCentric.Metadata/1.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P9m8Vmg76Xq87WIhlE4IgyZhLkmSNMtfsb8IRwhb/C/el/3fLTmKol5POpNx62MJbV7GVj3GiL4e34V9cYnbUw==", - "path": "testcentric.metadata/1.4.1", - "hashPath": "testcentric.metadata.1.4.1.nupkg.sha512" - }, - "nunit.engine.api/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "nunit.engine.core/3.12.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.dll deleted file mode 100644 index 58292a184f707..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.pdb b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.pdb deleted file mode 100644 index 1adc1a80852ff..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/nunit.engine.pdb and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/testcentric.engine.metadata.dll b/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/testcentric.engine.metadata.dll deleted file mode 100644 index 718cff1879661..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/bin/netstandard2.0/testcentric.engine.metadata.dll and /dev/null differ diff --git a/third_party/dotnet/nunit-console-3.12.0/nunit.ico b/third_party/dotnet/nunit-console-3.12.0/nunit.ico deleted file mode 100644 index 7073c24875bf3..0000000000000 Binary files a/third_party/dotnet/nunit-console-3.12.0/nunit.ico and /dev/null differ diff --git a/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/analyzers/dotnet/cs/StyleCop.Analyzers.CodeFixes.dll b/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/analyzers/dotnet/cs/StyleCop.Analyzers.CodeFixes.dll deleted file mode 100644 index 161ffea353685..0000000000000 Binary files a/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/analyzers/dotnet/cs/StyleCop.Analyzers.CodeFixes.dll and /dev/null differ diff --git a/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/analyzers/dotnet/cs/StyleCop.Analyzers.dll b/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/analyzers/dotnet/cs/StyleCop.Analyzers.dll deleted file mode 100644 index 51635f2bd4fb4..0000000000000 Binary files a/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/analyzers/dotnet/cs/StyleCop.Analyzers.dll and /dev/null differ diff --git a/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/stylecop.analyzers.1.0.2.nupkg b/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/stylecop.analyzers.1.0.2.nupkg deleted file mode 100644 index f8b8520b35255..0000000000000 Binary files a/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/stylecop.analyzers.1.0.2.nupkg and /dev/null differ diff --git a/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/tools/install.ps1 b/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/tools/install.ps1 deleted file mode 100644 index 4b06388cdc115..0000000000000 --- a/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/tools/install.ps1 +++ /dev/null @@ -1,194 +0,0 @@ -param($installPath, $toolsPath, $package, $project) - -$analyzersPaths = Join-Path (Join-Path (Split-Path -Path $toolsPath -Parent) "analyzers" ) * -Resolve - -foreach($analyzersPath in $analyzersPaths) -{ - # Install the language agnostic analyzers. - if (Test-Path $analyzersPath) - { - foreach ($analyzerFilePath in Get-ChildItem $analyzersPath -Filter *.dll) - { - if($project.Object.AnalyzerReferences) - { - $project.Object.AnalyzerReferences.Add($analyzerFilePath.FullName) - } - } - } -} - -# $project.Type gives the language name like (C# or VB.NET) -$languageFolder = "" -if($project.Type -eq "C#") -{ - $languageFolder = "cs" -} -if($project.Type -eq "VB.NET") -{ - $languageFolder = "vb" -} -if($languageFolder -eq "") -{ - return -} - -foreach($analyzersPath in $analyzersPaths) -{ - # Install language specific analyzers. - $languageAnalyzersPath = join-path $analyzersPath $languageFolder - if (Test-Path $languageAnalyzersPath) - { - foreach ($analyzerFilePath in Get-ChildItem $languageAnalyzersPath -Filter *.dll) - { - if($project.Object.AnalyzerReferences) - { - $project.Object.AnalyzerReferences.Add($analyzerFilePath.FullName) - } - } - } -} -# SIG # Begin signature block -# MIIaoQYJKoZIhvcNAQcCoIIakjCCGo4CAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB -# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR -# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQU2Q/XtUMgeda05ZRH6iWmJDPu -# oTCgghWCMIIEwzCCA6ugAwIBAgITMwAAAHPGWcJSl4OjOgAAAAAAczANBgkqhkiG -# 9w0BAQUFADB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G -# A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEw -# HwYDVQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwHhcNMTUwMzIwMTczMjA0 -# WhcNMTYwNjIwMTczMjA0WjCBszELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp -# bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw -# b3JhdGlvbjENMAsGA1UECxMETU9QUjEnMCUGA1UECxMebkNpcGhlciBEU0UgRVNO -# OkJCRUMtMzBDQS0yREJFMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBT -# ZXJ2aWNlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp0QvcscV762c -# vJQkN4+yFC55LDaPb7KevwD6jHhhG5S5Uij0cT8HGE/y6Je/f3Ow4zVsoSviUbYn -# qqI1ASnzKaVQ3natkrIUuQ8Mllkya3MeSL9Q877ogSskJFB0fOph5o8RAe6yfSD1 -# CkMqVGVAxRwMNFDik+TCDS7gUJlQaAZ9h3v2jQWOR+Xt0ELjY93j7iXPqVCjT4K7 -# x5WFfasB4FBCFeBZg8lR4D2gKOh/gnzSuRoCHqhzdFfIf7gJs7pF4EfCdNSp2BLX -# Lxuc1K567c/CWXMh3LDjZMMd5i8EvFv9ssV+Nua6VnlcHRWrsaB9FygH8+OpkVg8 -# tkWf1jVh3QIDAQABo4IBCTCCAQUwHQYDVR0OBBYEFDUsc4HZ7HD5Sj2P/0fAfApo -# obgbMB8GA1UdIwQYMBaAFCM0+NlSRnAK7UD7dvuzK7DDNbMPMFQGA1UdHwRNMEsw -# SaBHoEWGQ2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3Rz -# L01pY3Jvc29mdFRpbWVTdGFtcFBDQS5jcmwwWAYIKwYBBQUHAQEETDBKMEgGCCsG -# AQUFBzAChjxodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY3Jv -# c29mdFRpbWVTdGFtcFBDQS5jcnQwEwYDVR0lBAwwCgYIKwYBBQUHAwgwDQYJKoZI -# hvcNAQEFBQADggEBABhW2Lwu5/R0+yuB1kWyYWp9G8CaWAHqZhnXuCn1jzz09iI2 -# d1FUmQud9f7Fg9U7F18kV7sSywfz8omzn+eIMTZc0N0QbbGdHG5zeUCA26QRbUwQ -# 6BCVoUNlxEgptx5suXvzd7dgvF0jpzSnWPUVzaasjBvdqMfy/L2f24Jaiu9s8vsu -# w79c0Y2DVhPd4x2T7ReueUVSCxzhK8AzUN271fiW2JRLQ0tRCF8tnA5TKJe7RuvG -# emKndxIklRnPRf1Y2R0getwBvO8Lg3pDeZDUR+AIteZ96oBsSHnsJwxb8T45Ur6a -# lIw5sEMholc7XInenHZH5DEg0aJpQ86Btpv5rzgwggTsMIID1KADAgECAhMzAAAB -# Cix5rtd5e6asAAEAAAEKMA0GCSqGSIb3DQEBBQUAMHkxCzAJBgNVBAYTAlVTMRMw -# EQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVN -# aWNyb3NvZnQgQ29ycG9yYXRpb24xIzAhBgNVBAMTGk1pY3Jvc29mdCBDb2RlIFNp -# Z25pbmcgUENBMB4XDTE1MDYwNDE3NDI0NVoXDTE2MDkwNDE3NDI0NVowgYMxCzAJ -# BgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25k -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xDTALBgNVBAsTBE1PUFIx -# HjAcBgNVBAMTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjCCASIwDQYJKoZIhvcNAQEB -# BQADggEPADCCAQoCggEBAJL8bza74QO5KNZG0aJhuqVG+2MWPi75R9LH7O3HmbEm -# UXW92swPBhQRpGwZnsBfTVSJ5E1Q2I3NoWGldxOaHKftDXT3p1Z56Cj3U9KxemPg -# 9ZSXt+zZR/hsPfMliLO8CsUEp458hUh2HGFGqhnEemKLwcI1qvtYb8VjC5NJMIEb -# e99/fE+0R21feByvtveWE1LvudFNOeVz3khOPBSqlw05zItR4VzRO/COZ+owYKlN -# Wp1DvdsjusAP10sQnZxN8FGihKrknKc91qPvChhIqPqxTqWYDku/8BTzAMiwSNZb -# /jjXiREtBbpDAk8iAJYlrX01boRoqyAYOCj+HKIQsaUCAwEAAaOCAWAwggFcMBMG -# A1UdJQQMMAoGCCsGAQUFBwMDMB0GA1UdDgQWBBSJ/gox6ibN5m3HkZG5lIyiGGE3 -# NDBRBgNVHREESjBIpEYwRDENMAsGA1UECxMETU9QUjEzMDEGA1UEBRMqMzE1OTUr -# MDQwNzkzNTAtMTZmYS00YzYwLWI2YmYtOWQyYjFjZDA1OTg0MB8GA1UdIwQYMBaA -# FMsR6MrStBZYAck3LjMWFrlMmgofMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9j -# cmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY0NvZFNpZ1BDQV8w -# OC0zMS0yMDEwLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6 -# Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljQ29kU2lnUENBXzA4LTMx -# LTIwMTAuY3J0MA0GCSqGSIb3DQEBBQUAA4IBAQCmqFOR3zsB/mFdBlrrZvAM2PfZ -# hNMAUQ4Q0aTRFyjnjDM4K9hDxgOLdeszkvSp4mf9AtulHU5DRV0bSePgTxbwfo/w -# iBHKgq2k+6apX/WXYMh7xL98m2ntH4LB8c2OeEti9dcNHNdTEtaWUu81vRmOoECT -# oQqlLRacwkZ0COvb9NilSTZUEhFVA7N7FvtH/vto/MBFXOI/Enkzou+Cxd5AGQfu -# FcUKm1kFQanQl56BngNb/ErjGi4FrFBHL4z6edgeIPgF+ylrGBT6cgS3C6eaZOwR -# XU9FSY0pGi370LYJU180lOAWxLnqczXoV+/h6xbDGMcGszvPYYTitkSJlKOGMIIF -# vDCCA6SgAwIBAgIKYTMmGgAAAAAAMTANBgkqhkiG9w0BAQUFADBfMRMwEQYKCZIm -# iZPyLGQBGRYDY29tMRkwFwYKCZImiZPyLGQBGRYJbWljcm9zb2Z0MS0wKwYDVQQD -# EyRNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMTAwODMx -# MjIxOTMyWhcNMjAwODMxMjIyOTMyWjB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSMwIQYDVQQDExpNaWNyb3NvZnQgQ29kZSBTaWduaW5nIFBD -# QTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJyWVwZMGS/HZpgICBC -# mXZTbD4b1m/My/Hqa/6XFhDg3zp0gxq3L6Ay7P/ewkJOI9VyANs1VwqJyq4gSfTw -# aKxNS42lvXlLcZtHB9r9Jd+ddYjPqnNEf9eB2/O98jakyVxF3K+tPeAoaJcap6Vy -# c1bxF5Tk/TWUcqDWdl8ed0WDhTgW0HNbBbpnUo2lsmkv2hkL/pJ0KeJ2L1TdFDBZ -# +NKNYv3LyV9GMVC5JxPkQDDPcikQKCLHN049oDI9kM2hOAaFXE5WgigqBTK3S9dP -# Y+fSLWLxRT3nrAgA9kahntFbjCZT6HqqSvJGzzc8OJ60d1ylF56NyxGPVjzBrAlf -# A9MCAwEAAaOCAV4wggFaMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMsR6MrS -# tBZYAck3LjMWFrlMmgofMAsGA1UdDwQEAwIBhjASBgkrBgEEAYI3FQEEBQIDAQAB -# MCMGCSsGAQQBgjcVAgQWBBT90TFO0yaKleGYYDuoMW+mPLzYLTAZBgkrBgEEAYI3 -# FAIEDB4KAFMAdQBiAEMAQTAfBgNVHSMEGDAWgBQOrIJgQFYnl+UlE/wq4QpTlVnk -# pDBQBgNVHR8ESTBHMEWgQ6BBhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtp -# L2NybC9wcm9kdWN0cy9taWNyb3NvZnRyb290Y2VydC5jcmwwVAYIKwYBBQUHAQEE -# SDBGMEQGCCsGAQUFBzAChjhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2Nl -# cnRzL01pY3Jvc29mdFJvb3RDZXJ0LmNydDANBgkqhkiG9w0BAQUFAAOCAgEAWTk+ -# fyZGr+tvQLEytWrrDi9uqEn361917Uw7LddDrQv+y+ktMaMjzHxQmIAhXaw9L0y6 -# oqhWnONwu7i0+Hm1SXL3PupBf8rhDBdpy6WcIC36C1DEVs0t40rSvHDnqA2iA6VW -# 4LiKS1fylUKc8fPv7uOGHzQ8uFaa8FMjhSqkghyT4pQHHfLiTviMocroE6WRTsgb -# 0o9ylSpxbZsa+BzwU9ZnzCL/XB3Nooy9J7J5Y1ZEolHN+emjWFbdmwJFRC9f9Nqu -# 1IIybvyklRPk62nnqaIsvsgrEA5ljpnb9aL6EiYJZTiU8XofSrvR4Vbo0HiWGFzJ -# NRZf3ZMdSY4tvq00RBzuEBUaAF3dNVshzpjHCe6FDoxPbQ4TTj18KUicctHzbMrB -# 7HCjV5JXfZSNoBtIA1r3z6NnCnSlNu0tLxfI5nI3EvRvsTxngvlSso0zFmUeDord -# EN5k9G/ORtTTF+l5xAS00/ss3x+KnqwK+xMnQK3k+eGpf0a7B2BHZWBATrBC7E7t -# s3Z52Ao0CW0cgDEf4g5U3eWh++VHEK1kmP9QFi58vwUheuKVQSdpw5OPlcmN2Jsh -# rg1cnPCiroZogwxqLbt2awAdlq3yFnv2FoMkuYjPaqhHMS+a3ONxPdcAfmJH0c6I -# ybgY+g5yjcGjPa8CQGr/aZuW4hCoELQ3UAjWwz0wggYHMIID76ADAgECAgphFmg0 -# AAAAAAAcMA0GCSqGSIb3DQEBBQUAMF8xEzARBgoJkiaJk/IsZAEZFgNjb20xGTAX -# BgoJkiaJk/IsZAEZFgltaWNyb3NvZnQxLTArBgNVBAMTJE1pY3Jvc29mdCBSb290 -# IENlcnRpZmljYXRlIEF1dGhvcml0eTAeFw0wNzA0MDMxMjUzMDlaFw0yMTA0MDMx -# MzAzMDlaMHcxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYD -# VQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xITAf -# BgNVBAMTGE1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQTCCASIwDQYJKoZIhvcNAQEB -# BQADggEPADCCAQoCggEBAJ+hbLHf20iSKnxrLhnhveLjxZlRI1Ctzt0YTiQP7tGn -# 0UytdDAgEesH1VSVFUmUG0KSrphcMCbaAGvoe73siQcP9w4EmPCJzB/LMySHnfL0 -# Zxws/HvniB3q506jocEjU8qN+kXPCdBer9CwQgSi+aZsk2fXKNxGU7CG0OUoRi4n -# rIZPVVIM5AMs+2qQkDBuh/NZMJ36ftaXs+ghl3740hPzCLdTbVK0RZCfSABKR2YR -# JylmqJfk0waBSqL5hKcRRxQJgp+E7VV4/gGaHVAIhQAQMEbtt94jRrvELVSfrx54 -# QTF3zJvfO4OToWECtR0Nsfz3m7IBziJLVP/5BcPCIAsCAwEAAaOCAaswggGnMA8G -# A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFCM0+NlSRnAK7UD7dvuzK7DDNbMPMAsG -# A1UdDwQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADCBmAYDVR0jBIGQMIGNgBQOrIJg -# QFYnl+UlE/wq4QpTlVnkpKFjpGEwXzETMBEGCgmSJomT8ixkARkWA2NvbTEZMBcG -# CgmSJomT8ixkARkWCW1pY3Jvc29mdDEtMCsGA1UEAxMkTWljcm9zb2Z0IFJvb3Qg -# Q2VydGlmaWNhdGUgQXV0aG9yaXR5ghB5rRahSqClrUxzWPQHEy5lMFAGA1UdHwRJ -# MEcwRaBDoEGGP2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1 -# Y3RzL21pY3Jvc29mdHJvb3RjZXJ0LmNybDBUBggrBgEFBQcBAQRIMEYwRAYIKwYB -# BQUHMAKGOGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljcm9z -# b2Z0Um9vdENlcnQuY3J0MBMGA1UdJQQMMAoGCCsGAQUFBwMIMA0GCSqGSIb3DQEB -# BQUAA4ICAQAQl4rDXANENt3ptK132855UU0BsS50cVttDBOrzr57j7gu1BKijG1i -# uFcCy04gE1CZ3XpA4le7r1iaHOEdAYasu3jyi9DsOwHu4r6PCgXIjUji8FMV3U+r -# kuTnjWrVgMHmlPIGL4UD6ZEqJCJw+/b85HiZLg33B+JwvBhOnY5rCnKVuKE5nGct -# xVEO6mJcPxaYiyA/4gcaMvnMMUp2MT0rcgvI6nA9/4UKE9/CCmGO8Ne4F+tOi3/F -# NSteo7/rvH0LQnvUU3Ih7jDKu3hlXFsBFwoUDtLaFJj1PLlmWLMtL+f5hYbMUVbo -# nXCUbKw5TNT2eb+qGHpiKe+imyk0BncaYsk9Hm0fgvALxyy7z0Oz5fnsfbXjpKh0 -# NbhOxXEjEiZ2CzxSjHFaRkMUvLOzsE1nyJ9C/4B5IYCeFTBm6EISXhrIniIh0EPp -# K+m79EjMLNTYMoBMJipIJF9a6lbvpt6Znco6b72BJ3QGEe52Ib+bgsEnVLaxaj2J -# oXZhtG6hE6a/qkfwEm/9ijJssv7fUciMI8lmvZ0dhxJkAj0tr1mPuOQh5bWwymO0 -# eFQF1EEuUKyUsKV4q7OglnUa2ZKHE3UiLzKoCG6gW4wlv6DvhMoh1useT8ma7kng -# 9wFlb4kLfchpyOZu6qeXzjEp/w7FW1zYTRuh2Povnj8uVRZryROj/TGCBIkwggSF -# AgEBMIGQMHkxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYD -# VQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xIzAh -# BgNVBAMTGk1pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBAhMzAAABCix5rtd5e6as -# AAEAAAEKMAkGBSsOAwIaBQCggaIwGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQw -# HAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwIwYJKoZIhvcNAQkEMRYEFNWy -# JYWiXrB52VhT/lC+8pUKXim8MEIGCisGAQQBgjcCAQwxNDAyoBiAFgBpAG4AcwB0 -# AGEAbABsAC4AcABzADGhFoAUaHR0cDovL21pY3Jvc29mdC5jb20wDQYJKoZIhvcN -# AQEBBQAEggEAPijsy7fqbQghv6HRRRSMUi3S6UmVRRL/NIehIU4uTM0SniruHlUf -# YBFAp5PhTCjaj2dNnFL6J4zIcaugqI3Shk6kuopA3Vd8YIiqMOc/9CJ3lRxJ3/nI -# BBAAWpEYXo4xs2500Bco5TpoMUJORWUN15onwqGp+YIc/aWYX1Jtfqvb5oaiTcvI -# 2OWx1dyFfpWxc56hX4eyo3Lj5l2454Z5bB40kzLX07qCgvY+MRYSd89P1uNUtBEB -# qkaymzrmVkTMZaUn4YdyAHR7CfJ7sgMmiOyQ+YySDBDD6HPycGwLpdip93Bmjjfz -# Yj/4ERbiVOPRRpa2GtCAsNXtPiw0SSaQJaGCAigwggIkBgkqhkiG9w0BCQYxggIV -# MIICEQIBATCBjjB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQ -# MA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9u -# MSEwHwYDVQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0ECEzMAAABzxlnCUpeD -# ozoAAAAAAHMwCQYFKw4DAhoFAKBdMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEw -# HAYJKoZIhvcNAQkFMQ8XDTE1MDYxOTAyNTk0OFowIwYJKoZIhvcNAQkEMRYEFGZQ -# e8ojPYUl1DjvBan3KNtqFEJdMA0GCSqGSIb3DQEBBQUABIIBAJHjS6vTvsLIuzBU -# xQdQopG+qV3hJzqh7u1uPdsknaqMLWjn9zF7Qy6q7gk17eCQ+uStUXdqMCYWqX6J -# GkpaBZGZpmmQ2uEau2G6TuxdN4nVFAmlO5W+RbfLBTizjTH3/VRJsLiIHNu0JpmM -# SjbuKpROk3wKYiUIsbWrHU0rpWmU6lX/xGv/zIZrMskzJ0Xas7+78S1zHeHlsoWS -# TMNtcy+MJfhAfAg6AX1x9Ga7T4J2uT+zo16rMqkIgH/VGmS3+/1ZIMY92ev6BOps -# smrx6ksElucvRtwE41kulKtPbziSPaIhCQyoIvvalwdjO+F0nd3lip/k4dJpUpzj -# d2EmeyI= -# SIG # End signature block diff --git a/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/tools/uninstall.ps1 b/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/tools/uninstall.ps1 deleted file mode 100644 index eee3840a3a3a7..0000000000000 --- a/third_party/dotnet/stylecop/StyleCop.Analyzers.1.0.2/tools/uninstall.ps1 +++ /dev/null @@ -1,201 +0,0 @@ -param($installPath, $toolsPath, $package, $project) - -$analyzersPaths = Join-Path (Join-Path (Split-Path -Path $toolsPath -Parent) "analyzers" ) * -Resolve - -foreach($analyzersPath in $analyzersPaths) -{ - # Uninstall the language agnostic analyzers. - if (Test-Path $analyzersPath) - { - foreach ($analyzerFilePath in Get-ChildItem $analyzersPath -Filter *.dll) - { - if($project.Object.AnalyzerReferences) - { - $project.Object.AnalyzerReferences.Remove($analyzerFilePath.FullName) - } - } - } -} - -# $project.Type gives the language name like (C# or VB.NET) -$languageFolder = "" -if($project.Type -eq "C#") -{ - $languageFolder = "cs" -} -if($project.Type -eq "VB.NET") -{ - $languageFolder = "vb" -} -if($languageFolder -eq "") -{ - return -} - -foreach($analyzersPath in $analyzersPaths) -{ - # Uninstall language specific analyzers. - $languageAnalyzersPath = join-path $analyzersPath $languageFolder - if (Test-Path $languageAnalyzersPath) - { - foreach ($analyzerFilePath in Get-ChildItem $languageAnalyzersPath -Filter *.dll) - { - if($project.Object.AnalyzerReferences) - { - try - { - $project.Object.AnalyzerReferences.Remove($analyzerFilePath.FullName) - } - catch - { - - } - } - } - } -} -# SIG # Begin signature block -# MIIapQYJKoZIhvcNAQcCoIIaljCCGpICAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB -# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR -# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUA+iPf06reDGl8vnuLnqw/MIv -# 3FmgghWCMIIEwzCCA6ugAwIBAgITMwAAAHQNgGQOfWd9owAAAAAAdDANBgkqhkiG -# 9w0BAQUFADB3MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4G -# A1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSEw -# HwYDVQQDExhNaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EwHhcNMTUwMzIwMTczMjA1 -# WhcNMTYwNjIwMTczMjA1WjCBszELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp -# bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw -# b3JhdGlvbjENMAsGA1UECxMETU9QUjEnMCUGA1UECxMebkNpcGhlciBEU0UgRVNO -# OjdEMkUtMzc4Mi1CMEY3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBT -# ZXJ2aWNlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4NFrifjVvo5Y -# gN/jD+4M6zszXn3GnmZHP9AerBSCDRiftpwnIvG2hpREQXSJkW8X9t+Y5jbLX3iS -# 6XJ+S7kExWIUc3HGf2NBW+tk8r1cVWJGzA9ewQnEr9nxvyV94BegUO4lqkXl48Z+ -# vxBZqcGPPtn77GQbY1u1p7jq681X6xtD9WWRv1D1+cEGvH2qzDfnBqmgzLH1M8wN -# ssh1ZgDRbTCTR8+OomdEXhoTf/McHucPncG8SPyBgW1UauJpE8bO9ZdnMmxIyhHC -# VjrW3Dpi9PwQl2RIC4pc8RbClfDLYBukA5sMyfe7kr8Ac2czHKJ673VKGUZaDH6a -# W6A6HVQ16wIDAQABo4IBCTCCAQUwHQYDVR0OBBYEFCUsOGYFtEU5DmC29u69PuDd -# r4wNMB8GA1UdIwQYMBaAFCM0+NlSRnAK7UD7dvuzK7DDNbMPMFQGA1UdHwRNMEsw -# SaBHoEWGQ2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3Rz -# L01pY3Jvc29mdFRpbWVTdGFtcFBDQS5jcmwwWAYIKwYBBQUHAQEETDBKMEgGCCsG -# AQUFBzAChjxodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY3Jv -# c29mdFRpbWVTdGFtcFBDQS5jcnQwEwYDVR0lBAwwCgYIKwYBBQUHAwgwDQYJKoZI -# hvcNAQEFBQADggEBAEEG50j6xJHcMBMNInjC0iPTszPL+yYh1978CncY+4Nyzu/U -# LIaP4xXj1RICZ1xbN9MDe02RW0FTZgn9457fLHgJORo2HYqBocllfJx7kbIPSptB -# 3cdEC2EFyUwu8rRrKKoIR+4IrGZUF1aQiMbpddAhEDh5yT+7VTDFpjmmU7/NXFbS -# ThcUvGISy+lL8MWR3J2EypjWDttWFGht21OLMM+6J2V1oDFvk6N1EGDqqu7uduvl -# jAup0655zzS+SR8i0MT1o+/zrjDcjohGI4ygqjyXrwfbdug2VN+Ls4mewOospGBr -# 8d/DthI6rzM4elFxNTXm5AjiUZaC+b7hG4N8e2cwggTsMIID1KADAgECAhMzAAAB -# Cix5rtd5e6asAAEAAAEKMA0GCSqGSIb3DQEBBQUAMHkxCzAJBgNVBAYTAlVTMRMw -# EQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVN -# aWNyb3NvZnQgQ29ycG9yYXRpb24xIzAhBgNVBAMTGk1pY3Jvc29mdCBDb2RlIFNp -# Z25pbmcgUENBMB4XDTE1MDYwNDE3NDI0NVoXDTE2MDkwNDE3NDI0NVowgYMxCzAJ -# BgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25k -# MR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xDTALBgNVBAsTBE1PUFIx -# HjAcBgNVBAMTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjCCASIwDQYJKoZIhvcNAQEB -# BQADggEPADCCAQoCggEBAJL8bza74QO5KNZG0aJhuqVG+2MWPi75R9LH7O3HmbEm -# UXW92swPBhQRpGwZnsBfTVSJ5E1Q2I3NoWGldxOaHKftDXT3p1Z56Cj3U9KxemPg -# 9ZSXt+zZR/hsPfMliLO8CsUEp458hUh2HGFGqhnEemKLwcI1qvtYb8VjC5NJMIEb -# e99/fE+0R21feByvtveWE1LvudFNOeVz3khOPBSqlw05zItR4VzRO/COZ+owYKlN -# Wp1DvdsjusAP10sQnZxN8FGihKrknKc91qPvChhIqPqxTqWYDku/8BTzAMiwSNZb -# /jjXiREtBbpDAk8iAJYlrX01boRoqyAYOCj+HKIQsaUCAwEAAaOCAWAwggFcMBMG -# A1UdJQQMMAoGCCsGAQUFBwMDMB0GA1UdDgQWBBSJ/gox6ibN5m3HkZG5lIyiGGE3 -# NDBRBgNVHREESjBIpEYwRDENMAsGA1UECxMETU9QUjEzMDEGA1UEBRMqMzE1OTUr -# MDQwNzkzNTAtMTZmYS00YzYwLWI2YmYtOWQyYjFjZDA1OTg0MB8GA1UdIwQYMBaA -# FMsR6MrStBZYAck3LjMWFrlMmgofMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9j -# cmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY0NvZFNpZ1BDQV8w -# OC0zMS0yMDEwLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6 -# Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljQ29kU2lnUENBXzA4LTMx -# LTIwMTAuY3J0MA0GCSqGSIb3DQEBBQUAA4IBAQCmqFOR3zsB/mFdBlrrZvAM2PfZ -# hNMAUQ4Q0aTRFyjnjDM4K9hDxgOLdeszkvSp4mf9AtulHU5DRV0bSePgTxbwfo/w -# iBHKgq2k+6apX/WXYMh7xL98m2ntH4LB8c2OeEti9dcNHNdTEtaWUu81vRmOoECT -# oQqlLRacwkZ0COvb9NilSTZUEhFVA7N7FvtH/vto/MBFXOI/Enkzou+Cxd5AGQfu -# FcUKm1kFQanQl56BngNb/ErjGi4FrFBHL4z6edgeIPgF+ylrGBT6cgS3C6eaZOwR -# XU9FSY0pGi370LYJU180lOAWxLnqczXoV+/h6xbDGMcGszvPYYTitkSJlKOGMIIF -# vDCCA6SgAwIBAgIKYTMmGgAAAAAAMTANBgkqhkiG9w0BAQUFADBfMRMwEQYKCZIm -# iZPyLGQBGRYDY29tMRkwFwYKCZImiZPyLGQBGRYJbWljcm9zb2Z0MS0wKwYDVQQD -# EyRNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMTAwODMx -# MjIxOTMyWhcNMjAwODMxMjIyOTMyWjB5MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSMwIQYDVQQDExpNaWNyb3NvZnQgQ29kZSBTaWduaW5nIFBD -# QTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJyWVwZMGS/HZpgICBC -# mXZTbD4b1m/My/Hqa/6XFhDg3zp0gxq3L6Ay7P/ewkJOI9VyANs1VwqJyq4gSfTw -# aKxNS42lvXlLcZtHB9r9Jd+ddYjPqnNEf9eB2/O98jakyVxF3K+tPeAoaJcap6Vy -# c1bxF5Tk/TWUcqDWdl8ed0WDhTgW0HNbBbpnUo2lsmkv2hkL/pJ0KeJ2L1TdFDBZ -# +NKNYv3LyV9GMVC5JxPkQDDPcikQKCLHN049oDI9kM2hOAaFXE5WgigqBTK3S9dP -# Y+fSLWLxRT3nrAgA9kahntFbjCZT6HqqSvJGzzc8OJ60d1ylF56NyxGPVjzBrAlf -# A9MCAwEAAaOCAV4wggFaMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMsR6MrS -# tBZYAck3LjMWFrlMmgofMAsGA1UdDwQEAwIBhjASBgkrBgEEAYI3FQEEBQIDAQAB -# MCMGCSsGAQQBgjcVAgQWBBT90TFO0yaKleGYYDuoMW+mPLzYLTAZBgkrBgEEAYI3 -# FAIEDB4KAFMAdQBiAEMAQTAfBgNVHSMEGDAWgBQOrIJgQFYnl+UlE/wq4QpTlVnk -# pDBQBgNVHR8ESTBHMEWgQ6BBhj9odHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtp -# L2NybC9wcm9kdWN0cy9taWNyb3NvZnRyb290Y2VydC5jcmwwVAYIKwYBBQUHAQEE -# SDBGMEQGCCsGAQUFBzAChjhodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2Nl -# cnRzL01pY3Jvc29mdFJvb3RDZXJ0LmNydDANBgkqhkiG9w0BAQUFAAOCAgEAWTk+ -# fyZGr+tvQLEytWrrDi9uqEn361917Uw7LddDrQv+y+ktMaMjzHxQmIAhXaw9L0y6 -# oqhWnONwu7i0+Hm1SXL3PupBf8rhDBdpy6WcIC36C1DEVs0t40rSvHDnqA2iA6VW -# 4LiKS1fylUKc8fPv7uOGHzQ8uFaa8FMjhSqkghyT4pQHHfLiTviMocroE6WRTsgb -# 0o9ylSpxbZsa+BzwU9ZnzCL/XB3Nooy9J7J5Y1ZEolHN+emjWFbdmwJFRC9f9Nqu -# 1IIybvyklRPk62nnqaIsvsgrEA5ljpnb9aL6EiYJZTiU8XofSrvR4Vbo0HiWGFzJ -# NRZf3ZMdSY4tvq00RBzuEBUaAF3dNVshzpjHCe6FDoxPbQ4TTj18KUicctHzbMrB -# 7HCjV5JXfZSNoBtIA1r3z6NnCnSlNu0tLxfI5nI3EvRvsTxngvlSso0zFmUeDord -# EN5k9G/ORtTTF+l5xAS00/ss3x+KnqwK+xMnQK3k+eGpf0a7B2BHZWBATrBC7E7t -# s3Z52Ao0CW0cgDEf4g5U3eWh++VHEK1kmP9QFi58vwUheuKVQSdpw5OPlcmN2Jsh -# rg1cnPCiroZogwxqLbt2awAdlq3yFnv2FoMkuYjPaqhHMS+a3ONxPdcAfmJH0c6I -# ybgY+g5yjcGjPa8CQGr/aZuW4hCoELQ3UAjWwz0wggYHMIID76ADAgECAgphFmg0 -# AAAAAAAcMA0GCSqGSIb3DQEBBQUAMF8xEzARBgoJkiaJk/IsZAEZFgNjb20xGTAX -# BgoJkiaJk/IsZAEZFgltaWNyb3NvZnQxLTArBgNVBAMTJE1pY3Jvc29mdCBSb290 -# IENlcnRpZmljYXRlIEF1dGhvcml0eTAeFw0wNzA0MDMxMjUzMDlaFw0yMTA0MDMx -# MzAzMDlaMHcxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYD -# VQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xITAf -# BgNVBAMTGE1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQTCCASIwDQYJKoZIhvcNAQEB -# BQADggEPADCCAQoCggEBAJ+hbLHf20iSKnxrLhnhveLjxZlRI1Ctzt0YTiQP7tGn -# 0UytdDAgEesH1VSVFUmUG0KSrphcMCbaAGvoe73siQcP9w4EmPCJzB/LMySHnfL0 -# Zxws/HvniB3q506jocEjU8qN+kXPCdBer9CwQgSi+aZsk2fXKNxGU7CG0OUoRi4n -# rIZPVVIM5AMs+2qQkDBuh/NZMJ36ftaXs+ghl3740hPzCLdTbVK0RZCfSABKR2YR -# JylmqJfk0waBSqL5hKcRRxQJgp+E7VV4/gGaHVAIhQAQMEbtt94jRrvELVSfrx54 -# QTF3zJvfO4OToWECtR0Nsfz3m7IBziJLVP/5BcPCIAsCAwEAAaOCAaswggGnMA8G -# A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFCM0+NlSRnAK7UD7dvuzK7DDNbMPMAsG -# A1UdDwQEAwIBhjAQBgkrBgEEAYI3FQEEAwIBADCBmAYDVR0jBIGQMIGNgBQOrIJg -# QFYnl+UlE/wq4QpTlVnkpKFjpGEwXzETMBEGCgmSJomT8ixkARkWA2NvbTEZMBcG -# CgmSJomT8ixkARkWCW1pY3Jvc29mdDEtMCsGA1UEAxMkTWljcm9zb2Z0IFJvb3Qg -# Q2VydGlmaWNhdGUgQXV0aG9yaXR5ghB5rRahSqClrUxzWPQHEy5lMFAGA1UdHwRJ -# MEcwRaBDoEGGP2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1 -# Y3RzL21pY3Jvc29mdHJvb3RjZXJ0LmNybDBUBggrBgEFBQcBAQRIMEYwRAYIKwYB -# BQUHMAKGOGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljcm9z -# b2Z0Um9vdENlcnQuY3J0MBMGA1UdJQQMMAoGCCsGAQUFBwMIMA0GCSqGSIb3DQEB -# BQUAA4ICAQAQl4rDXANENt3ptK132855UU0BsS50cVttDBOrzr57j7gu1BKijG1i -# uFcCy04gE1CZ3XpA4le7r1iaHOEdAYasu3jyi9DsOwHu4r6PCgXIjUji8FMV3U+r -# kuTnjWrVgMHmlPIGL4UD6ZEqJCJw+/b85HiZLg33B+JwvBhOnY5rCnKVuKE5nGct -# xVEO6mJcPxaYiyA/4gcaMvnMMUp2MT0rcgvI6nA9/4UKE9/CCmGO8Ne4F+tOi3/F -# NSteo7/rvH0LQnvUU3Ih7jDKu3hlXFsBFwoUDtLaFJj1PLlmWLMtL+f5hYbMUVbo -# nXCUbKw5TNT2eb+qGHpiKe+imyk0BncaYsk9Hm0fgvALxyy7z0Oz5fnsfbXjpKh0 -# NbhOxXEjEiZ2CzxSjHFaRkMUvLOzsE1nyJ9C/4B5IYCeFTBm6EISXhrIniIh0EPp -# K+m79EjMLNTYMoBMJipIJF9a6lbvpt6Znco6b72BJ3QGEe52Ib+bgsEnVLaxaj2J -# oXZhtG6hE6a/qkfwEm/9ijJssv7fUciMI8lmvZ0dhxJkAj0tr1mPuOQh5bWwymO0 -# eFQF1EEuUKyUsKV4q7OglnUa2ZKHE3UiLzKoCG6gW4wlv6DvhMoh1useT8ma7kng -# 9wFlb4kLfchpyOZu6qeXzjEp/w7FW1zYTRuh2Povnj8uVRZryROj/TGCBI0wggSJ -# AgEBMIGQMHkxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYD -# VQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xIzAh -# BgNVBAMTGk1pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBAhMzAAABCix5rtd5e6as -# AAEAAAEKMAkGBSsOAwIaBQCggaYwGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQw -# HAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwIwYJKoZIhvcNAQkEMRYEFHxv -# QEFmGVD4yYwxkgEb+6vYK1SsMEYGCisGAQQBgjcCAQwxODA2oByAGgB1AG4AaQBu -# AHMAdABhAGwAbAAuAHAAcwAxoRaAFGh0dHA6Ly9taWNyb3NvZnQuY29tMA0GCSqG -# SIb3DQEBAQUABIIBAIQVySydDm+61yXfwvTRQm9YV2k/tk6GJYRhfMIfUkKD3ysR -# wEN+nXa15Lk6exFXkTnD4O0UxJQUXUso3SfpPmUifQ6fMJYxPsXnyHENiWXsdQ8r -# 5DXgbByYcJS0QsHBxv6wNUAa3UOCV4znYZ4DQ+MY/L4QT9hN7kC7kOHuF0F6Kohz -# 22KHpUwnw5tH+EqjP3oUla0NdrMHJEKAUDaAJ5sVuHIJOiOTbv34x7hd2fty8Gv9 -# VJ1KW8Kwv/k6PXzf0u9kpDtw5K5IjPwBgrY+Ds/ufuqLdNNfECHO7LhP//fUtmAz -# qv0r+3LC0ro6Fp1nruAvRpXvtrGMDGy8hk5ofK+hggIoMIICJAYJKoZIhvcNAQkG -# MYICFTCCAhECAQEwgY4wdzELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 -# b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3Jh -# dGlvbjEhMB8GA1UEAxMYTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBAhMzAAAAdA2A -# ZA59Z32jAAAAAAB0MAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcN -# AQcBMBwGCSqGSIb3DQEJBTEPFw0xNTA2MTkwMjU5NDhaMCMGCSqGSIb3DQEJBDEW -# BBS3ur37KGDNwz4wbagIdT/bQ0V7eDANBgkqhkiG9w0BAQUFAASCAQCcfMVGV2cj -# D1Zp77HKsBOTX7x6b9fgXDytnkbjr9hT4nydyIh1qCEFpCBjFi59iEAbMDEvv9M8 -# YsSesU0pi0PjGX//XEzfYqQ5C+j7D91PSLG8JbWXq0PT20LHBOyiyJ4/dl6flfeN -# BAlw1RS6xyNdSsczoLfq71p4OI3Ob5VFy9cfNqBhiYV9NqpOzUh6toJH2Q4gyn8B -# AeKTws6OU0lgc19mw0ezTMULb3NeOuowY9PMF6GcR4Btu9+zq5T0E89PUXE/wr6x -# LYAAyX43lASSLOB8t6xZP/getsRkA7dCWZsrzQzhsyxdE4Krb1QY1esNMaB0t2zO -# yHkt4p+Ldz8C -# SIG # End signature block