├── FindKeys.json ├── Properties └── launchSettings.json ├── FindKeys.csproj ├── Extensions.cs ├── README.md ├── Program.cs └── obj └── project.assets.json /FindKeys.json: -------------------------------------------------------------------------------- 1 | { 2 | "binfile": "g:memdump.bin", 3 | "keyfile": "g:keyfile.txt", 4 | "checkfile": "", 5 | "family": "SDS1X-E" 6 | } 7 | -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "FindKeys": { 4 | "commandName": "Project", 5 | "commandLineArgs": "" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /FindKeys.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | netcoreapp2.1 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | PreserveNewest 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Extensions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace FindKeys 6 | { 7 | public static class Extensions 8 | { 9 | public static Boolean isMixedCase(this String s) 10 | { 11 | return !(s == s.ToUpper()); 12 | } 13 | 14 | public static Boolean isLowerCase(this String s) 15 | { 16 | return (s == s.ToLower()); 17 | } 18 | 19 | public static Boolean isUpperCase(this String s) 20 | { 21 | return (s == s.ToUpper()); 22 | } 23 | 24 | public static Boolean isNumeric(this String s) 25 | { 26 | foreach (Char c in s) 27 | if (!"0123456789".Contains(c)) 28 | return false; 29 | return true; 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | FindKeys - a .NET Core 2.1 utility 2 | 3 | Derived from a code sample posted by 'tv84' on eevblog. 4 | See: https:www.eevblog.com/forum/testgear/siglent-ads-firmware-file-format/msg1774208/#msg1774208 5 | 6 | The purpose of this utility is to recover your valid keys you licensed with your scope but you lost 7 | the paperwork for. First you must obtain a memory dump from your scope. Follow the procedures documented 8 | in various posts on eevblog. 9 | 10 | Upon startup, the program reads the contents of "FindKeys.json" to configure various parameters needed 11 | for it to work. The options in this file and their purpose are as follows: 12 | 13 | binfile: The fully-qualified path to the memory dump you wish to scan, e.g. "g:memdump.bin" 14 | 15 | keyfile: The fully-qualified path to the file the list of keys will be written to, e.g. "g:trykeys.txt" 16 | 17 | family: the product family you are scanning for. Currently supported product families include: 18 | SDS1X-E - the SDS1###X-E family of oscilloscopes 19 | 20 | checkfile: (optional) a file containing a key/option pair to check against once the scan is correct. 21 | this option is used to verify the keys are, in fact, in the memory dump. 22 | 23 | 24 | Theory of operation: 25 | 26 | License keys are 16 printable ascii characters in length. This program scans through a memory dump binary 27 | file and, each time it encounters string of a length divisible by 16, it processes it as a series of 28 | possible keys and stores the values in a SortedSet. 29 | 30 | Since memory dumps are not of contiguous memory, the program also monitors when it encounters a 4K memory 31 | page boundary, and, if it has a "partial key" of 4, 8 or 12 characters at either the end or beginning of 32 | a memory page, it will add that partial string a temporary holding location. Once the entire memory scan 33 | is complete, all of the 4 and 12 character partial strings, and all the 8 character partial strings, are 34 | concatinated together to form additional key possibilities (since, for example, 4 characters of a key 35 | may have been at the end of one memory page, and the remaining 12 characters somewhere else at the 36 | beginning of a memory page.) 37 | 38 | During execution you will see a line: 39 | 40 | Scanning for keys: 0059 0005 0007 0023 41 | 42 | This tells you how many full 16-character keys, and how many 12, 8, and 4 character "chunks" have 43 | been detected by the program thusfar. 44 | 45 | Once all the keys possibilities are generated, the program will optionally check them against a file 46 | containing a list of known option/key pairs (i.e. "AWG xxxyyywwwzzzaaa1" or "MSO ccccffffggggdddd"), 47 | one option/key pair per line, to determine if they key was found. This optional mechanism exists as a 48 | check for the developers to ensure their code was working :) but we left it in so others who wanted 49 | to try the program on their own could see if the program detected their license keys without needing 50 | to sift through all the possibilities generated and stored in the output keyfile. 51 | 52 | To execute from the command line: dotnet FindKeys.dll 53 | 54 | Sample log files (with and without check file): 55 | 56 | Execution starts @ 10/6/2018 8:52 AM 57 | Scanning for keys: 0059 0005 0007 0023 58 | Found 200M option: 2222222222222222 59 | Found 100M option: 1111111111111111 60 | Found 70M option: 7777777777777777 61 | Found 50M option: 5555555555555555 62 | Found AWG option: AAAAAAAAAAAAAAAA 63 | Found MSO option: MMMMMMMMMMMMMMMM 64 | Found WIFI option: WWWWWWWWWWWWWWWW 65 | 66 | 320 possible keys written to g:keyfile.txt 67 | 68 | Execution ends @ 10/6/2018 8:53 AM 69 | 70 | This program has dependencies you must install through the NuGet Package Manager. 71 | They are: Microsoft.Extensions.Configuration. 72 | 73 | Note: at the moment this utility only supports the SDS####X-E series of scopes, however, additional 74 | functionality will be added as details become available. 75 | 76 | Special thanks to eevblog user tv84 who gave me tons of assistance during the development of this 77 | utility. His (or her - you never know on the Internet!) constant feedback prompted me to continuously 78 | hone and refine this program to make it better. -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- 1 | /* 2 | FindKeys - a .NET Core 2.1 utility 3 | 4 | Derived from a code sample posted by 'tv84' on eevblog. 5 | See: https:www.eevblog.com/forum/testgear/siglent-ads-firmware-file-format/msg1774208/#msg1774208 6 | 7 | The purpose of this utility is to recover your valid keys you licensed with your scope but you lost 8 | the paperwork for. First you must obtain a memory dump from your scope. Follow the procedures documented 9 | in various posts on eevblog. 10 | 11 | Upon startup, the program reads the contents of "FindKeys.json" to configure various parameters needed 12 | for it to work. The options in this file and their purpose are as follows: 13 | 14 | binfile: The fully-qualified path to the memory dump you wish to scan, e.g. "g:memdump.bin" 15 | 16 | keyfile: The fully-qualified path to the file the list of keys will be written to, e.g. "g:trykeys.txt" 17 | 18 | family: the product family you are scanning for. Currently supported product families include: 19 | SDS1X-E - the SDS1###X-E family of oscilloscopes 20 | 21 | checkfile: (optional) a file containing a key/option pair to check against once the scan is correct. 22 | this option is used to verify the keys are, in fact, in the memory dump. 23 | 24 | 25 | Theory of operation: 26 | 27 | License keys are 16 printable ascii characters in length. This program scans through a memory dump binary 28 | file and, each time it encounters string of a length divisible by 16, it processes it as a series of 29 | possible keys and stores the values in a SortedSet. 30 | 31 | Since memory dumps are not of contiguous memory, the program also monitors when it encounters a 4K memory 32 | page boundary, and, if it has a "partial key" of 4, 8 or 12 characters at either the end or beginning of 33 | a memory page, it will add that partial string a temporary holding location. Once the entire memory scan 34 | is complete, all of the 4 and 12 character partial strings, and all the 8 character partial strings, are 35 | concatinated together to form additional key possibilities (since, for example, 4 characters of a key 36 | may have been at the end of one memory page, and the remaining 12 characters somewhere else at the 37 | beginning of a memory page.) 38 | 39 | During execution you will see a line: 40 | 41 | Scanning for keys: 0059 0005 0007 0023 42 | 43 | This tells you how many full 16-character keys, and how many 12, 8, and 4 character "chunks" have 44 | been detected by the program thusfar. 45 | 46 | Once all the keys possibilities are generated, the program will optionally check them against a file 47 | containing a list of known option/key pairs (i.e. "AWG xxxyyywwwzzzaaa1" or "MSO ccccffffggggdddd"), 48 | one option/key pair per line, to determine if they key was found. This optional mechanism exists as a 49 | check for the developers to ensure their code was working :) but we left it in so others who wanted 50 | to try the program on their own could see if the program detected their license keys without needing 51 | to sift through all the possibilities generated and stored in the output keyfile. 52 | 53 | To execute from the command line: dotnet FindKeys.dll 54 | 55 | Sample log file: 56 | 57 | Execution starts @ 10/6/2018 8:52 AM 58 | Scanning for keys: 0059 0005 0007 0023 59 | Found 200M option: 2222222222222222 60 | Found 100M option: 1111111111111111 61 | Found 70M option: 7777777777777777 62 | Found 50M option: 5555555555555555 63 | Found AWG option: AAAAAAAAAAAAAAAA 64 | Found MSO option: MMMMMMMMMMMMMMMM 65 | Found WIFI option: WWWWWWWWWWWWWWWW 66 | 67 | 320 possible keys written to g:keyfile.txt 68 | 69 | Execution ends @ 10/6/2018 8:53 AM 70 | 71 | This program has dependencies you must install through the NuGet Package Manager. 72 | They are: Microsoft.Extensions.Configuration. 73 | 74 | Note: at the moment this utility only supports the SDS####X-E series of scopes, however, additional 75 | functionality will be added as details become available. 76 | 77 | Special thanks to eevblog user tv84 who gave me tons of assistance during the development of this 78 | utility. His (or her - you never know on the Internet!) constant feedback prompted me to continuously 79 | hone and refine this program to make it better. 80 | */ 81 | using System; 82 | using System.IO; 83 | using System.Collections.Generic; 84 | using System.Text; 85 | using Microsoft.Extensions.Configuration; 86 | 87 | namespace FindKeys 88 | { 89 | static class Program 90 | { 91 | static SortedSet keys = new SortedSet(); 92 | 93 | static List parts4 = new List(); 94 | static List parts8 = new List(); 95 | static List parts12 = new List(); 96 | 97 | static Boolean b_AllNumeric = false; 98 | static Boolean b_AllUpper = true; 99 | static Boolean b_AllLower = false; 100 | 101 | static void Main(string[] args) 102 | { 103 | Boolean b; 104 | Int32 i = 0, j = 0, l = 0, x = 0, y = 0, strStart = 0, strSize = 0; 105 | String s = String.Empty, t = String.Empty; 106 | Char c; 107 | 108 | IConfigurationRoot config = new ConfigurationBuilder().AddJsonFile("FindKeys.json", false, true).Build(); 109 | 110 | if (!String.IsNullOrEmpty(config["binfile"])) 111 | { 112 | if (!File.Exists(config["binfile"])) 113 | { 114 | Console.WriteLine("ERROR: Binary file not found (wrong file specified in configuration file?)"); 115 | return; 116 | } 117 | } 118 | else 119 | { 120 | Console.WriteLine("ERROR: Binary file not specified in configuration file."); 121 | return; 122 | } 123 | 124 | if (!String.IsNullOrEmpty(config["keyfile"])) 125 | { 126 | if (File.Exists(config["keyfile"])) 127 | { 128 | Console.WriteLine("WARNING: Key file exists and will be overwritten."); 129 | } 130 | else 131 | { 132 | if (!CheckValidPath(config["keyfile"])) 133 | { 134 | Console.WriteLine("ERROR: Output filename is not valid or path does not exist."); 135 | return; 136 | } 137 | } 138 | } 139 | else 140 | { 141 | Console.WriteLine("ERROR: Key file not specified in configuration file."); 142 | return; 143 | } 144 | 145 | if (!String.IsNullOrEmpty(config["family"])) 146 | { 147 | switch (config["family"].ToUpper()) 148 | { 149 | case "SDS1X-E": 150 | b_AllLower = false; 151 | b_AllUpper = true; 152 | b_AllNumeric = false; 153 | break; 154 | default: 155 | Console.WriteLine("ERROR: Unsupported scope family specified in configuration file."); 156 | return; 157 | } 158 | } 159 | else 160 | { 161 | Console.WriteLine("ERROR: Scope family not specified in configuration file."); 162 | return; 163 | } 164 | 165 | Console.WriteLine("Execution starts @ " + DateTime.Now.ToShortDateString() + " " + DateTime.Now.ToShortTimeString()); 166 | 167 | byte[] buffer = File.ReadAllBytes(config["binfile"]); 168 | 169 | Console.Write("Scanning for keys: 0000 0000 0000 0000"); 170 | 171 | for (j = 0, l = 0; j < 2; j++, l += 0x20) 172 | { 173 | for (i = 0, strStart = 0, strSize = 0; i < buffer.Length; i++) 174 | { 175 | c = (Char)buffer[i]; 176 | if (((c < '2') || (c > '9')) && ((c < 'A' + l) || (c > 'Z' + l)) && c != ('L' + l) && c != ('O' + l)) 177 | { 178 | b = (strStart % 4096 == 0) || (i % 4096 == 0); 179 | if (strSize > 15 || (strSize > 3 && b )) 180 | { 181 | // handles: 182 | // /--- key #1 ---\/--- key #2 ---\ 183 | // wwwwwwwwwwwwwwwwxxxxxxxxxxxxxxxx 184 | // 185 | if (strSize % 16 == 0) 186 | { 187 | s = Encoding.UTF8.GetString(buffer, strStart, strSize); 188 | while (s.Length > 15) 189 | CheckAndAdd(PeelOffString(ref s, 16)); 190 | } 191 | // 192 | // handles any of these four scenarios: 193 | // 194 | // /--- key #1 ---\/- key #n -\ or /--- key #1 ---\/- key #n -\ 195 | // xxxxxxxxxxxxxxxx[...keys...]ssssssssssss ppppxxxxxxxxxxxxxxxx[...keys...]ssssssss 196 | // 197 | // /--- key #1 ---\/- key #n -\ or / ---key #1 ---\/- key #n -\ 198 | // ppppppppxxxxxxxxxxxxxxxx[...keys...]ssss ppppppppppppxxxxxxxxxxxxxxxx[...keys...] 199 | // 200 | if (strSize % 4 == 0 && b) 201 | { 202 | // 0, 4, 8, 12 byte offsets 203 | for (x = 0; x < 16; x = x + 4) 204 | { 205 | s = Encoding.UTF8.GetString(buffer, strStart, strSize); 206 | // deal with "prefix", which could be partial key possibilities 207 | CheckAndAdd(PeelOffString(ref s, x)); 208 | // deal with centers, which are whole key possibilities 209 | while (s.Length > 15) 210 | CheckAndAdd(PeelOffString(ref s, 16)); 211 | // deal with suffix, which could be partial key possibility 212 | CheckAndAdd(s); 213 | } 214 | } 215 | } 216 | strSize = 0; 217 | strStart = i + 1; 218 | } 219 | else 220 | strSize++; 221 | } 222 | } 223 | 224 | Console.WriteLine(); 225 | 226 | keys.UnionWith(ConsolidateParts(parts8, parts8)); 227 | keys.UnionWith(ConsolidateParts(parts4, parts12)); 228 | keys.UnionWith(ConsolidateParts(parts12, parts4)); 229 | 230 | if (keys.Count > 0) 231 | { 232 | StreamWriter sw = new StreamWriter(config["keyfile"], false); 233 | foreach (String u in keys) 234 | { 235 | sw.WriteLine(u); 236 | } 237 | sw.Close(); 238 | } 239 | 240 | if (!String.IsNullOrEmpty(config["checkfile"])) 241 | { 242 | if (File.Exists(config["checkfile"])) 243 | { 244 | String[] fields; 245 | StreamReader file = new StreamReader(config["checkfile"]); 246 | while ((s = file.ReadLine()) != null) 247 | { 248 | fields = s.Trim().Split(' '); 249 | if (fields.Length > 1 && keys.Contains(fields[1])) 250 | Console.WriteLine("Found {0} option: {1}", fields[0], fields[1]); 251 | } 252 | file.Close(); 253 | } 254 | } 255 | 256 | Console.WriteLine("\n{0} possible keys written to {1}", keys.Count, config["keyfile"]); 257 | Console.WriteLine("\nExecution ends @ " + DateTime.Now.ToShortDateString() + " " + DateTime.Now.ToShortTimeString()); 258 | 259 | } 260 | 261 | static String PeelOffString(ref String s, Int32 i) 262 | { 263 | String rc = ""; 264 | if (s.Length >= i) 265 | { 266 | rc = s.Substring(0, i); 267 | s = s.Remove(0, i); 268 | } 269 | return rc; 270 | } 271 | 272 | static SortedSet ConsolidateParts(List p1, List p2) 273 | { 274 | SortedSet rc = new SortedSet(); 275 | String s = String.Empty; 276 | Int32 i = 0, j = 0; 277 | for (i = 0; i < p1.Count; i++) 278 | { 279 | for (j = 0; j < p2.Count; j++) 280 | { 281 | if (i != j) 282 | { 283 | s = p1[i] + p2[j]; 284 | if (!s.isMixedCase()) 285 | { 286 | rc.Add(s); 287 | } 288 | } 289 | } 290 | } 291 | return rc; 292 | } 293 | 294 | static Boolean CheckAndAdd(String s) 295 | { 296 | Boolean b_ok = ((s.isLowerCase() && b_AllLower) || 297 | (s.isUpperCase() && b_AllUpper) || 298 | (s.isNumeric() && b_AllNumeric) && 299 | s.Length % 4 == 0 && s.Length > 0); 300 | if (b_ok) 301 | { 302 | switch (s.Length) 303 | { 304 | case 4: 305 | if (!parts4.Contains(s)) 306 | parts4.Add(s); 307 | break; 308 | case 8: 309 | if (!parts8.Contains(s)) 310 | parts8.Add(s); 311 | break; 312 | case 12: 313 | if (!parts12.Contains(s)) 314 | parts12.Add(s); 315 | break; 316 | case 16: 317 | if (!keys.Contains(s)) 318 | keys.Add(s); 319 | break; 320 | } 321 | Console.Write("{0}{1:D4} {2:D4} {3:D4} {4:D4}", new String('\b', 19), keys.Count, parts12.Count, parts8.Count, parts4.Count); 322 | } 323 | return b_ok; 324 | } 325 | private static Boolean CheckValidPath(String sFileName) 326 | { 327 | FileInfo fi = null; 328 | try 329 | { 330 | fi = new FileInfo(sFileName); 331 | } 332 | catch (ArgumentException) { } 333 | catch (System.IO.PathTooLongException) { } 334 | catch (NotSupportedException) { } 335 | return (ReferenceEquals(fi, null)) ? false : Directory.Exists(fi.DirectoryName); 336 | } 337 | } 338 | } -------------------------------------------------------------------------------- /obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | ".NETCoreApp,Version=v2.1": { 5 | "Microsoft.Extensions.Configuration/2.1.1": { 6 | "type": "package", 7 | "dependencies": { 8 | "Microsoft.Extensions.Configuration.Abstractions": "2.1.1" 9 | }, 10 | "compile": { 11 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} 12 | }, 13 | "runtime": { 14 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} 15 | } 16 | }, 17 | "Microsoft.Extensions.Configuration.Abstractions/2.1.1": { 18 | "type": "package", 19 | "dependencies": { 20 | "Microsoft.Extensions.Primitives": "2.1.1" 21 | }, 22 | "compile": { 23 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} 24 | }, 25 | "runtime": { 26 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} 27 | } 28 | }, 29 | "Microsoft.Extensions.Configuration.FileExtensions/2.1.1": { 30 | "type": "package", 31 | "dependencies": { 32 | "Microsoft.Extensions.Configuration": "2.1.1", 33 | "Microsoft.Extensions.FileProviders.Physical": "2.1.1" 34 | }, 35 | "compile": { 36 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} 37 | }, 38 | "runtime": { 39 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} 40 | } 41 | }, 42 | "Microsoft.Extensions.Configuration.Json/2.1.1": { 43 | "type": "package", 44 | "dependencies": { 45 | "Microsoft.Extensions.Configuration": "2.1.1", 46 | "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1", 47 | "Newtonsoft.Json": "11.0.2" 48 | }, 49 | "compile": { 50 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {} 51 | }, 52 | "runtime": { 53 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {} 54 | } 55 | }, 56 | "Microsoft.Extensions.FileProviders.Abstractions/2.1.1": { 57 | "type": "package", 58 | "dependencies": { 59 | "Microsoft.Extensions.Primitives": "2.1.1" 60 | }, 61 | "compile": { 62 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} 63 | }, 64 | "runtime": { 65 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} 66 | } 67 | }, 68 | "Microsoft.Extensions.FileProviders.Physical/2.1.1": { 69 | "type": "package", 70 | "dependencies": { 71 | "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1", 72 | "Microsoft.Extensions.FileSystemGlobbing": "2.1.1" 73 | }, 74 | "compile": { 75 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {} 76 | }, 77 | "runtime": { 78 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {} 79 | } 80 | }, 81 | "Microsoft.Extensions.FileSystemGlobbing/2.1.1": { 82 | "type": "package", 83 | "compile": { 84 | "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} 85 | }, 86 | "runtime": { 87 | "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} 88 | } 89 | }, 90 | "Microsoft.Extensions.Primitives/2.1.1": { 91 | "type": "package", 92 | "dependencies": { 93 | "System.Memory": "4.5.1", 94 | "System.Runtime.CompilerServices.Unsafe": "4.5.1" 95 | }, 96 | "compile": { 97 | "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} 98 | }, 99 | "runtime": { 100 | "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} 101 | } 102 | }, 103 | "Microsoft.NETCore.App/2.1.0": { 104 | "type": "package", 105 | "dependencies": { 106 | "Microsoft.NETCore.DotNetHostPolicy": "2.1.0", 107 | "Microsoft.NETCore.Platforms": "2.1.0", 108 | "Microsoft.NETCore.Targets": "2.1.0", 109 | "NETStandard.Library": "2.0.3" 110 | }, 111 | "compile": { 112 | "ref/netcoreapp2.1/Microsoft.CSharp.dll": {}, 113 | "ref/netcoreapp2.1/Microsoft.VisualBasic.dll": {}, 114 | "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll": {}, 115 | "ref/netcoreapp2.1/System.AppContext.dll": {}, 116 | "ref/netcoreapp2.1/System.Buffers.dll": {}, 117 | "ref/netcoreapp2.1/System.Collections.Concurrent.dll": {}, 118 | "ref/netcoreapp2.1/System.Collections.Immutable.dll": {}, 119 | "ref/netcoreapp2.1/System.Collections.NonGeneric.dll": {}, 120 | "ref/netcoreapp2.1/System.Collections.Specialized.dll": {}, 121 | "ref/netcoreapp2.1/System.Collections.dll": {}, 122 | "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll": {}, 123 | "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll": {}, 124 | "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll": {}, 125 | "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll": {}, 126 | "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll": {}, 127 | "ref/netcoreapp2.1/System.ComponentModel.dll": {}, 128 | "ref/netcoreapp2.1/System.Configuration.dll": {}, 129 | "ref/netcoreapp2.1/System.Console.dll": {}, 130 | "ref/netcoreapp2.1/System.Core.dll": {}, 131 | "ref/netcoreapp2.1/System.Data.Common.dll": {}, 132 | "ref/netcoreapp2.1/System.Data.dll": {}, 133 | "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll": {}, 134 | "ref/netcoreapp2.1/System.Diagnostics.Debug.dll": {}, 135 | "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll": {}, 136 | "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll": {}, 137 | "ref/netcoreapp2.1/System.Diagnostics.Process.dll": {}, 138 | "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll": {}, 139 | "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll": {}, 140 | "ref/netcoreapp2.1/System.Diagnostics.Tools.dll": {}, 141 | "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll": {}, 142 | "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll": {}, 143 | "ref/netcoreapp2.1/System.Drawing.Primitives.dll": {}, 144 | "ref/netcoreapp2.1/System.Drawing.dll": {}, 145 | "ref/netcoreapp2.1/System.Dynamic.Runtime.dll": {}, 146 | "ref/netcoreapp2.1/System.Globalization.Calendars.dll": {}, 147 | "ref/netcoreapp2.1/System.Globalization.Extensions.dll": {}, 148 | "ref/netcoreapp2.1/System.Globalization.dll": {}, 149 | "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll": {}, 150 | "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll": {}, 151 | "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll": {}, 152 | "ref/netcoreapp2.1/System.IO.Compression.dll": {}, 153 | "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll": {}, 154 | "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll": {}, 155 | "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll": {}, 156 | "ref/netcoreapp2.1/System.IO.FileSystem.dll": {}, 157 | "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll": {}, 158 | "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll": {}, 159 | "ref/netcoreapp2.1/System.IO.Pipes.dll": {}, 160 | "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll": {}, 161 | "ref/netcoreapp2.1/System.IO.dll": {}, 162 | "ref/netcoreapp2.1/System.Linq.Expressions.dll": {}, 163 | "ref/netcoreapp2.1/System.Linq.Parallel.dll": {}, 164 | "ref/netcoreapp2.1/System.Linq.Queryable.dll": {}, 165 | "ref/netcoreapp2.1/System.Linq.dll": {}, 166 | "ref/netcoreapp2.1/System.Memory.dll": {}, 167 | "ref/netcoreapp2.1/System.Net.Http.dll": {}, 168 | "ref/netcoreapp2.1/System.Net.HttpListener.dll": {}, 169 | "ref/netcoreapp2.1/System.Net.Mail.dll": {}, 170 | "ref/netcoreapp2.1/System.Net.NameResolution.dll": {}, 171 | "ref/netcoreapp2.1/System.Net.NetworkInformation.dll": {}, 172 | "ref/netcoreapp2.1/System.Net.Ping.dll": {}, 173 | "ref/netcoreapp2.1/System.Net.Primitives.dll": {}, 174 | "ref/netcoreapp2.1/System.Net.Requests.dll": {}, 175 | "ref/netcoreapp2.1/System.Net.Security.dll": {}, 176 | "ref/netcoreapp2.1/System.Net.ServicePoint.dll": {}, 177 | "ref/netcoreapp2.1/System.Net.Sockets.dll": {}, 178 | "ref/netcoreapp2.1/System.Net.WebClient.dll": {}, 179 | "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll": {}, 180 | "ref/netcoreapp2.1/System.Net.WebProxy.dll": {}, 181 | "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll": {}, 182 | "ref/netcoreapp2.1/System.Net.WebSockets.dll": {}, 183 | "ref/netcoreapp2.1/System.Net.dll": {}, 184 | "ref/netcoreapp2.1/System.Numerics.Vectors.dll": {}, 185 | "ref/netcoreapp2.1/System.Numerics.dll": {}, 186 | "ref/netcoreapp2.1/System.ObjectModel.dll": {}, 187 | "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll": {}, 188 | "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll": {}, 189 | "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll": {}, 190 | "ref/netcoreapp2.1/System.Reflection.Emit.dll": {}, 191 | "ref/netcoreapp2.1/System.Reflection.Extensions.dll": {}, 192 | "ref/netcoreapp2.1/System.Reflection.Metadata.dll": {}, 193 | "ref/netcoreapp2.1/System.Reflection.Primitives.dll": {}, 194 | "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll": {}, 195 | "ref/netcoreapp2.1/System.Reflection.dll": {}, 196 | "ref/netcoreapp2.1/System.Resources.Reader.dll": {}, 197 | "ref/netcoreapp2.1/System.Resources.ResourceManager.dll": {}, 198 | "ref/netcoreapp2.1/System.Resources.Writer.dll": {}, 199 | "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll": {}, 200 | "ref/netcoreapp2.1/System.Runtime.Extensions.dll": {}, 201 | "ref/netcoreapp2.1/System.Runtime.Handles.dll": {}, 202 | "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, 203 | "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, 204 | "ref/netcoreapp2.1/System.Runtime.InteropServices.dll": {}, 205 | "ref/netcoreapp2.1/System.Runtime.Loader.dll": {}, 206 | "ref/netcoreapp2.1/System.Runtime.Numerics.dll": {}, 207 | "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll": {}, 208 | "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll": {}, 209 | "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll": {}, 210 | "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll": {}, 211 | "ref/netcoreapp2.1/System.Runtime.Serialization.dll": {}, 212 | "ref/netcoreapp2.1/System.Runtime.dll": {}, 213 | "ref/netcoreapp2.1/System.Security.Claims.dll": {}, 214 | "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll": {}, 215 | "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll": {}, 216 | "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll": {}, 217 | "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll": {}, 218 | "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll": {}, 219 | "ref/netcoreapp2.1/System.Security.Principal.dll": {}, 220 | "ref/netcoreapp2.1/System.Security.SecureString.dll": {}, 221 | "ref/netcoreapp2.1/System.Security.dll": {}, 222 | "ref/netcoreapp2.1/System.ServiceModel.Web.dll": {}, 223 | "ref/netcoreapp2.1/System.ServiceProcess.dll": {}, 224 | "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll": {}, 225 | "ref/netcoreapp2.1/System.Text.Encoding.dll": {}, 226 | "ref/netcoreapp2.1/System.Text.RegularExpressions.dll": {}, 227 | "ref/netcoreapp2.1/System.Threading.Overlapped.dll": {}, 228 | "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll": {}, 229 | "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll": {}, 230 | "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll": {}, 231 | "ref/netcoreapp2.1/System.Threading.Tasks.dll": {}, 232 | "ref/netcoreapp2.1/System.Threading.Thread.dll": {}, 233 | "ref/netcoreapp2.1/System.Threading.ThreadPool.dll": {}, 234 | "ref/netcoreapp2.1/System.Threading.Timer.dll": {}, 235 | "ref/netcoreapp2.1/System.Threading.dll": {}, 236 | "ref/netcoreapp2.1/System.Transactions.Local.dll": {}, 237 | "ref/netcoreapp2.1/System.Transactions.dll": {}, 238 | "ref/netcoreapp2.1/System.ValueTuple.dll": {}, 239 | "ref/netcoreapp2.1/System.Web.HttpUtility.dll": {}, 240 | "ref/netcoreapp2.1/System.Web.dll": {}, 241 | "ref/netcoreapp2.1/System.Windows.dll": {}, 242 | "ref/netcoreapp2.1/System.Xml.Linq.dll": {}, 243 | "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll": {}, 244 | "ref/netcoreapp2.1/System.Xml.Serialization.dll": {}, 245 | "ref/netcoreapp2.1/System.Xml.XDocument.dll": {}, 246 | "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll": {}, 247 | "ref/netcoreapp2.1/System.Xml.XPath.dll": {}, 248 | "ref/netcoreapp2.1/System.Xml.XmlDocument.dll": {}, 249 | "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll": {}, 250 | "ref/netcoreapp2.1/System.Xml.dll": {}, 251 | "ref/netcoreapp2.1/System.dll": {}, 252 | "ref/netcoreapp2.1/WindowsBase.dll": {}, 253 | "ref/netcoreapp2.1/mscorlib.dll": {}, 254 | "ref/netcoreapp2.1/netstandard.dll": {} 255 | }, 256 | "build": { 257 | "build/netcoreapp2.1/Microsoft.NETCore.App.props": {}, 258 | "build/netcoreapp2.1/Microsoft.NETCore.App.targets": {} 259 | } 260 | }, 261 | "Microsoft.NETCore.DotNetAppHost/2.1.0": { 262 | "type": "package" 263 | }, 264 | "Microsoft.NETCore.DotNetHostPolicy/2.1.0": { 265 | "type": "package", 266 | "dependencies": { 267 | "Microsoft.NETCore.DotNetHostResolver": "2.1.0" 268 | } 269 | }, 270 | "Microsoft.NETCore.DotNetHostResolver/2.1.0": { 271 | "type": "package", 272 | "dependencies": { 273 | "Microsoft.NETCore.DotNetAppHost": "2.1.0" 274 | } 275 | }, 276 | "Microsoft.NETCore.Platforms/2.1.0": { 277 | "type": "package", 278 | "compile": { 279 | "lib/netstandard1.0/_._": {} 280 | }, 281 | "runtime": { 282 | "lib/netstandard1.0/_._": {} 283 | } 284 | }, 285 | "Microsoft.NETCore.Targets/2.1.0": { 286 | "type": "package", 287 | "compile": { 288 | "lib/netstandard1.0/_._": {} 289 | }, 290 | "runtime": { 291 | "lib/netstandard1.0/_._": {} 292 | } 293 | }, 294 | "NETStandard.Library/2.0.3": { 295 | "type": "package", 296 | "dependencies": { 297 | "Microsoft.NETCore.Platforms": "1.1.0" 298 | }, 299 | "compile": { 300 | "lib/netstandard1.0/_._": {} 301 | }, 302 | "runtime": { 303 | "lib/netstandard1.0/_._": {} 304 | }, 305 | "build": { 306 | "build/netstandard2.0/NETStandard.Library.targets": {} 307 | } 308 | }, 309 | "Newtonsoft.Json/11.0.2": { 310 | "type": "package", 311 | "compile": { 312 | "lib/netstandard2.0/Newtonsoft.Json.dll": {} 313 | }, 314 | "runtime": { 315 | "lib/netstandard2.0/Newtonsoft.Json.dll": {} 316 | } 317 | }, 318 | "System.Memory/4.5.1": { 319 | "type": "package", 320 | "compile": { 321 | "ref/netcoreapp2.1/_._": {} 322 | }, 323 | "runtime": { 324 | "lib/netcoreapp2.1/_._": {} 325 | } 326 | }, 327 | "System.Runtime.CompilerServices.Unsafe/4.5.1": { 328 | "type": "package", 329 | "compile": { 330 | "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} 331 | }, 332 | "runtime": { 333 | "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} 334 | } 335 | } 336 | } 337 | }, 338 | "libraries": { 339 | "Microsoft.Extensions.Configuration/2.1.1": { 340 | "sha512": "1JaydycXzbfAExlsD7XIWykzVnU/wZM86KzrHyGlXuxqnqzcWSXLJn4Ejn8bDnq07CEJNZ+GjsxWKlJ8kFfnvQ==", 341 | "type": "package", 342 | "path": "microsoft.extensions.configuration/2.1.1", 343 | "files": [ 344 | ".signature.p7s", 345 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", 346 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", 347 | "microsoft.extensions.configuration.2.1.1.nupkg.sha512", 348 | "microsoft.extensions.configuration.nuspec" 349 | ] 350 | }, 351 | "Microsoft.Extensions.Configuration.Abstractions/2.1.1": { 352 | "sha512": "9EMhOWU2eOQOtMIJ+vfwKJpnLRc1Wl3vXu8qXeevA91cSY4j3WvArmF7ApGtJwa7yKewJTvlQlBSn9OSnLFg6Q==", 353 | "type": "package", 354 | "path": "microsoft.extensions.configuration.abstractions/2.1.1", 355 | "files": [ 356 | ".signature.p7s", 357 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", 358 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", 359 | "microsoft.extensions.configuration.abstractions.2.1.1.nupkg.sha512", 360 | "microsoft.extensions.configuration.abstractions.nuspec" 361 | ] 362 | }, 363 | "Microsoft.Extensions.Configuration.FileExtensions/2.1.1": { 364 | "sha512": "JnhKotPCs1+X4CPSsHOk8CpxmBeIS/vIXYewsoM8XflXNhpzMe1gfIckQyuRKyORlGaNFEBr4WrPjpZ159bS/Q==", 365 | "type": "package", 366 | "path": "microsoft.extensions.configuration.fileextensions/2.1.1", 367 | "files": [ 368 | ".signature.p7s", 369 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", 370 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", 371 | "microsoft.extensions.configuration.fileextensions.2.1.1.nupkg.sha512", 372 | "microsoft.extensions.configuration.fileextensions.nuspec" 373 | ] 374 | }, 375 | "Microsoft.Extensions.Configuration.Json/2.1.1": { 376 | "sha512": "f6KcI9v0GVA4YL/ExoxrEfeQv9La3hyQnySfgxGkFtMeDJIUun0ANoMjspbdpXXnuaScwgbQ2mFE3lJHt9lpJw==", 377 | "type": "package", 378 | "path": "microsoft.extensions.configuration.json/2.1.1", 379 | "files": [ 380 | ".signature.p7s", 381 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", 382 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", 383 | "microsoft.extensions.configuration.json.2.1.1.nupkg.sha512", 384 | "microsoft.extensions.configuration.json.nuspec" 385 | ] 386 | }, 387 | "Microsoft.Extensions.FileProviders.Abstractions/2.1.1": { 388 | "sha512": "qOJP+VAlXDeMQSJ6iflW62bEsN3S1NJIPHmhKFA9L37yU+jce2wbwesA7sDe9WdJ8+SoKtLnHPUxvOyQrAcRCA==", 389 | "type": "package", 390 | "path": "microsoft.extensions.fileproviders.abstractions/2.1.1", 391 | "files": [ 392 | ".signature.p7s", 393 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", 394 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", 395 | "microsoft.extensions.fileproviders.abstractions.2.1.1.nupkg.sha512", 396 | "microsoft.extensions.fileproviders.abstractions.nuspec" 397 | ] 398 | }, 399 | "Microsoft.Extensions.FileProviders.Physical/2.1.1": { 400 | "sha512": "pbT/J3B686Xgktv5WH11FbcbZXDmBQuCN3ce8IKIF+DpOk3p0RgUPrOXcYNp81TyH+K/5Cosr4VFVjYMoirNDg==", 401 | "type": "package", 402 | "path": "microsoft.extensions.fileproviders.physical/2.1.1", 403 | "files": [ 404 | ".signature.p7s", 405 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", 406 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", 407 | "microsoft.extensions.fileproviders.physical.2.1.1.nupkg.sha512", 408 | "microsoft.extensions.fileproviders.physical.nuspec" 409 | ] 410 | }, 411 | "Microsoft.Extensions.FileSystemGlobbing/2.1.1": { 412 | "sha512": "Pu/O8jBc7QlEmqmbDGVosuDlyzGspMuKc71rOsJigwGMF5574aWYw9uRMX+ho1dmbnL502ZYHo6PlBP3IXkm5A==", 413 | "type": "package", 414 | "path": "microsoft.extensions.filesystemglobbing/2.1.1", 415 | "files": [ 416 | ".signature.p7s", 417 | "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", 418 | "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", 419 | "microsoft.extensions.filesystemglobbing.2.1.1.nupkg.sha512", 420 | "microsoft.extensions.filesystemglobbing.nuspec" 421 | ] 422 | }, 423 | "Microsoft.Extensions.Primitives/2.1.1": { 424 | "sha512": "Svz25/egj1TsNL4118jyMqkhDiu0l8QYWq2p52P4BBN0GbqwR18ZRIctSP5TTDJy0m0EFC8aB2FOVjGtvEGWSA==", 425 | "type": "package", 426 | "path": "microsoft.extensions.primitives/2.1.1", 427 | "files": [ 428 | ".signature.p7s", 429 | "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", 430 | "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", 431 | "microsoft.extensions.primitives.2.1.1.nupkg.sha512", 432 | "microsoft.extensions.primitives.nuspec" 433 | ] 434 | }, 435 | "Microsoft.NETCore.App/2.1.0": { 436 | "sha512": "AvT774nTFgU8cYcGO9j1EMwuayKslxqYTurg32HGpWa2hEYNuW2+XgYVVNcZe6Ndbr84QX6fwaOZfd5n+1m2OA==", 437 | "type": "package", 438 | "path": "microsoft.netcore.app/2.1.0", 439 | "files": [ 440 | ".signature.p7s", 441 | "LICENSE.TXT", 442 | "Microsoft.NETCore.App.versions.txt", 443 | "THIRD-PARTY-NOTICES.TXT", 444 | "build/netcoreapp2.1/Microsoft.NETCore.App.PlatformManifest.txt", 445 | "build/netcoreapp2.1/Microsoft.NETCore.App.props", 446 | "build/netcoreapp2.1/Microsoft.NETCore.App.targets", 447 | "microsoft.netcore.app.2.1.0.nupkg.sha512", 448 | "microsoft.netcore.app.nuspec", 449 | "ref/netcoreapp/_._", 450 | "ref/netcoreapp2.1/Microsoft.CSharp.dll", 451 | "ref/netcoreapp2.1/Microsoft.CSharp.xml", 452 | "ref/netcoreapp2.1/Microsoft.VisualBasic.dll", 453 | "ref/netcoreapp2.1/Microsoft.VisualBasic.xml", 454 | "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll", 455 | "ref/netcoreapp2.1/Microsoft.Win32.Primitives.xml", 456 | "ref/netcoreapp2.1/System.AppContext.dll", 457 | "ref/netcoreapp2.1/System.Buffers.dll", 458 | "ref/netcoreapp2.1/System.Buffers.xml", 459 | "ref/netcoreapp2.1/System.Collections.Concurrent.dll", 460 | "ref/netcoreapp2.1/System.Collections.Concurrent.xml", 461 | "ref/netcoreapp2.1/System.Collections.Immutable.dll", 462 | "ref/netcoreapp2.1/System.Collections.Immutable.xml", 463 | "ref/netcoreapp2.1/System.Collections.NonGeneric.dll", 464 | "ref/netcoreapp2.1/System.Collections.NonGeneric.xml", 465 | "ref/netcoreapp2.1/System.Collections.Specialized.dll", 466 | "ref/netcoreapp2.1/System.Collections.Specialized.xml", 467 | "ref/netcoreapp2.1/System.Collections.dll", 468 | "ref/netcoreapp2.1/System.Collections.xml", 469 | "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll", 470 | "ref/netcoreapp2.1/System.ComponentModel.Annotations.xml", 471 | "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll", 472 | "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll", 473 | "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.xml", 474 | "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll", 475 | "ref/netcoreapp2.1/System.ComponentModel.Primitives.xml", 476 | "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll", 477 | "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.xml", 478 | "ref/netcoreapp2.1/System.ComponentModel.dll", 479 | "ref/netcoreapp2.1/System.ComponentModel.xml", 480 | "ref/netcoreapp2.1/System.Configuration.dll", 481 | "ref/netcoreapp2.1/System.Console.dll", 482 | "ref/netcoreapp2.1/System.Console.xml", 483 | "ref/netcoreapp2.1/System.Core.dll", 484 | "ref/netcoreapp2.1/System.Data.Common.dll", 485 | "ref/netcoreapp2.1/System.Data.Common.xml", 486 | "ref/netcoreapp2.1/System.Data.dll", 487 | "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll", 488 | "ref/netcoreapp2.1/System.Diagnostics.Contracts.xml", 489 | "ref/netcoreapp2.1/System.Diagnostics.Debug.dll", 490 | "ref/netcoreapp2.1/System.Diagnostics.Debug.xml", 491 | "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll", 492 | "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.xml", 493 | "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll", 494 | "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.xml", 495 | "ref/netcoreapp2.1/System.Diagnostics.Process.dll", 496 | "ref/netcoreapp2.1/System.Diagnostics.Process.xml", 497 | "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll", 498 | "ref/netcoreapp2.1/System.Diagnostics.StackTrace.xml", 499 | "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll", 500 | "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.xml", 501 | "ref/netcoreapp2.1/System.Diagnostics.Tools.dll", 502 | "ref/netcoreapp2.1/System.Diagnostics.Tools.xml", 503 | "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll", 504 | "ref/netcoreapp2.1/System.Diagnostics.TraceSource.xml", 505 | "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll", 506 | "ref/netcoreapp2.1/System.Diagnostics.Tracing.xml", 507 | "ref/netcoreapp2.1/System.Drawing.Primitives.dll", 508 | "ref/netcoreapp2.1/System.Drawing.Primitives.xml", 509 | "ref/netcoreapp2.1/System.Drawing.dll", 510 | "ref/netcoreapp2.1/System.Dynamic.Runtime.dll", 511 | "ref/netcoreapp2.1/System.Globalization.Calendars.dll", 512 | "ref/netcoreapp2.1/System.Globalization.Extensions.dll", 513 | "ref/netcoreapp2.1/System.Globalization.dll", 514 | "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll", 515 | "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll", 516 | "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll", 517 | "ref/netcoreapp2.1/System.IO.Compression.ZipFile.xml", 518 | "ref/netcoreapp2.1/System.IO.Compression.dll", 519 | "ref/netcoreapp2.1/System.IO.Compression.xml", 520 | "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll", 521 | "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.xml", 522 | "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll", 523 | "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll", 524 | "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.xml", 525 | "ref/netcoreapp2.1/System.IO.FileSystem.dll", 526 | "ref/netcoreapp2.1/System.IO.FileSystem.xml", 527 | "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll", 528 | "ref/netcoreapp2.1/System.IO.IsolatedStorage.xml", 529 | "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll", 530 | "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.xml", 531 | "ref/netcoreapp2.1/System.IO.Pipes.dll", 532 | "ref/netcoreapp2.1/System.IO.Pipes.xml", 533 | "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll", 534 | "ref/netcoreapp2.1/System.IO.dll", 535 | "ref/netcoreapp2.1/System.Linq.Expressions.dll", 536 | "ref/netcoreapp2.1/System.Linq.Expressions.xml", 537 | "ref/netcoreapp2.1/System.Linq.Parallel.dll", 538 | "ref/netcoreapp2.1/System.Linq.Parallel.xml", 539 | "ref/netcoreapp2.1/System.Linq.Queryable.dll", 540 | "ref/netcoreapp2.1/System.Linq.Queryable.xml", 541 | "ref/netcoreapp2.1/System.Linq.dll", 542 | "ref/netcoreapp2.1/System.Linq.xml", 543 | "ref/netcoreapp2.1/System.Memory.dll", 544 | "ref/netcoreapp2.1/System.Memory.xml", 545 | "ref/netcoreapp2.1/System.Net.Http.dll", 546 | "ref/netcoreapp2.1/System.Net.Http.xml", 547 | "ref/netcoreapp2.1/System.Net.HttpListener.dll", 548 | "ref/netcoreapp2.1/System.Net.HttpListener.xml", 549 | "ref/netcoreapp2.1/System.Net.Mail.dll", 550 | "ref/netcoreapp2.1/System.Net.Mail.xml", 551 | "ref/netcoreapp2.1/System.Net.NameResolution.dll", 552 | "ref/netcoreapp2.1/System.Net.NameResolution.xml", 553 | "ref/netcoreapp2.1/System.Net.NetworkInformation.dll", 554 | "ref/netcoreapp2.1/System.Net.NetworkInformation.xml", 555 | "ref/netcoreapp2.1/System.Net.Ping.dll", 556 | "ref/netcoreapp2.1/System.Net.Ping.xml", 557 | "ref/netcoreapp2.1/System.Net.Primitives.dll", 558 | "ref/netcoreapp2.1/System.Net.Primitives.xml", 559 | "ref/netcoreapp2.1/System.Net.Requests.dll", 560 | "ref/netcoreapp2.1/System.Net.Requests.xml", 561 | "ref/netcoreapp2.1/System.Net.Security.dll", 562 | "ref/netcoreapp2.1/System.Net.Security.xml", 563 | "ref/netcoreapp2.1/System.Net.ServicePoint.dll", 564 | "ref/netcoreapp2.1/System.Net.ServicePoint.xml", 565 | "ref/netcoreapp2.1/System.Net.Sockets.dll", 566 | "ref/netcoreapp2.1/System.Net.Sockets.xml", 567 | "ref/netcoreapp2.1/System.Net.WebClient.dll", 568 | "ref/netcoreapp2.1/System.Net.WebClient.xml", 569 | "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll", 570 | "ref/netcoreapp2.1/System.Net.WebHeaderCollection.xml", 571 | "ref/netcoreapp2.1/System.Net.WebProxy.dll", 572 | "ref/netcoreapp2.1/System.Net.WebProxy.xml", 573 | "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll", 574 | "ref/netcoreapp2.1/System.Net.WebSockets.Client.xml", 575 | "ref/netcoreapp2.1/System.Net.WebSockets.dll", 576 | "ref/netcoreapp2.1/System.Net.WebSockets.xml", 577 | "ref/netcoreapp2.1/System.Net.dll", 578 | "ref/netcoreapp2.1/System.Numerics.Vectors.dll", 579 | "ref/netcoreapp2.1/System.Numerics.Vectors.xml", 580 | "ref/netcoreapp2.1/System.Numerics.dll", 581 | "ref/netcoreapp2.1/System.ObjectModel.dll", 582 | "ref/netcoreapp2.1/System.ObjectModel.xml", 583 | "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll", 584 | "ref/netcoreapp2.1/System.Reflection.DispatchProxy.xml", 585 | "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll", 586 | "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.xml", 587 | "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll", 588 | "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.xml", 589 | "ref/netcoreapp2.1/System.Reflection.Emit.dll", 590 | "ref/netcoreapp2.1/System.Reflection.Emit.xml", 591 | "ref/netcoreapp2.1/System.Reflection.Extensions.dll", 592 | "ref/netcoreapp2.1/System.Reflection.Metadata.dll", 593 | "ref/netcoreapp2.1/System.Reflection.Metadata.xml", 594 | "ref/netcoreapp2.1/System.Reflection.Primitives.dll", 595 | "ref/netcoreapp2.1/System.Reflection.Primitives.xml", 596 | "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll", 597 | "ref/netcoreapp2.1/System.Reflection.TypeExtensions.xml", 598 | "ref/netcoreapp2.1/System.Reflection.dll", 599 | "ref/netcoreapp2.1/System.Resources.Reader.dll", 600 | "ref/netcoreapp2.1/System.Resources.ResourceManager.dll", 601 | "ref/netcoreapp2.1/System.Resources.ResourceManager.xml", 602 | "ref/netcoreapp2.1/System.Resources.Writer.dll", 603 | "ref/netcoreapp2.1/System.Resources.Writer.xml", 604 | "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll", 605 | "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.xml", 606 | "ref/netcoreapp2.1/System.Runtime.Extensions.dll", 607 | "ref/netcoreapp2.1/System.Runtime.Extensions.xml", 608 | "ref/netcoreapp2.1/System.Runtime.Handles.dll", 609 | "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll", 610 | "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.xml", 611 | "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll", 612 | "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.xml", 613 | "ref/netcoreapp2.1/System.Runtime.InteropServices.dll", 614 | "ref/netcoreapp2.1/System.Runtime.InteropServices.xml", 615 | "ref/netcoreapp2.1/System.Runtime.Loader.dll", 616 | "ref/netcoreapp2.1/System.Runtime.Loader.xml", 617 | "ref/netcoreapp2.1/System.Runtime.Numerics.dll", 618 | "ref/netcoreapp2.1/System.Runtime.Numerics.xml", 619 | "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll", 620 | "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.xml", 621 | "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll", 622 | "ref/netcoreapp2.1/System.Runtime.Serialization.Json.xml", 623 | "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll", 624 | "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.xml", 625 | "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll", 626 | "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.xml", 627 | "ref/netcoreapp2.1/System.Runtime.Serialization.dll", 628 | "ref/netcoreapp2.1/System.Runtime.dll", 629 | "ref/netcoreapp2.1/System.Runtime.xml", 630 | "ref/netcoreapp2.1/System.Security.Claims.dll", 631 | "ref/netcoreapp2.1/System.Security.Claims.xml", 632 | "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll", 633 | "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.xml", 634 | "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll", 635 | "ref/netcoreapp2.1/System.Security.Cryptography.Csp.xml", 636 | "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll", 637 | "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.xml", 638 | "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll", 639 | "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.xml", 640 | "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll", 641 | "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.xml", 642 | "ref/netcoreapp2.1/System.Security.Principal.dll", 643 | "ref/netcoreapp2.1/System.Security.Principal.xml", 644 | "ref/netcoreapp2.1/System.Security.SecureString.dll", 645 | "ref/netcoreapp2.1/System.Security.dll", 646 | "ref/netcoreapp2.1/System.ServiceModel.Web.dll", 647 | "ref/netcoreapp2.1/System.ServiceProcess.dll", 648 | "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll", 649 | "ref/netcoreapp2.1/System.Text.Encoding.Extensions.xml", 650 | "ref/netcoreapp2.1/System.Text.Encoding.dll", 651 | "ref/netcoreapp2.1/System.Text.RegularExpressions.dll", 652 | "ref/netcoreapp2.1/System.Text.RegularExpressions.xml", 653 | "ref/netcoreapp2.1/System.Threading.Overlapped.dll", 654 | "ref/netcoreapp2.1/System.Threading.Overlapped.xml", 655 | "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll", 656 | "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.xml", 657 | "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll", 658 | "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.xml", 659 | "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll", 660 | "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.xml", 661 | "ref/netcoreapp2.1/System.Threading.Tasks.dll", 662 | "ref/netcoreapp2.1/System.Threading.Tasks.xml", 663 | "ref/netcoreapp2.1/System.Threading.Thread.dll", 664 | "ref/netcoreapp2.1/System.Threading.Thread.xml", 665 | "ref/netcoreapp2.1/System.Threading.ThreadPool.dll", 666 | "ref/netcoreapp2.1/System.Threading.ThreadPool.xml", 667 | "ref/netcoreapp2.1/System.Threading.Timer.dll", 668 | "ref/netcoreapp2.1/System.Threading.Timer.xml", 669 | "ref/netcoreapp2.1/System.Threading.dll", 670 | "ref/netcoreapp2.1/System.Threading.xml", 671 | "ref/netcoreapp2.1/System.Transactions.Local.dll", 672 | "ref/netcoreapp2.1/System.Transactions.Local.xml", 673 | "ref/netcoreapp2.1/System.Transactions.dll", 674 | "ref/netcoreapp2.1/System.ValueTuple.dll", 675 | "ref/netcoreapp2.1/System.Web.HttpUtility.dll", 676 | "ref/netcoreapp2.1/System.Web.HttpUtility.xml", 677 | "ref/netcoreapp2.1/System.Web.dll", 678 | "ref/netcoreapp2.1/System.Windows.dll", 679 | "ref/netcoreapp2.1/System.Xml.Linq.dll", 680 | "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll", 681 | "ref/netcoreapp2.1/System.Xml.ReaderWriter.xml", 682 | "ref/netcoreapp2.1/System.Xml.Serialization.dll", 683 | "ref/netcoreapp2.1/System.Xml.XDocument.dll", 684 | "ref/netcoreapp2.1/System.Xml.XDocument.xml", 685 | "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll", 686 | "ref/netcoreapp2.1/System.Xml.XPath.XDocument.xml", 687 | "ref/netcoreapp2.1/System.Xml.XPath.dll", 688 | "ref/netcoreapp2.1/System.Xml.XPath.xml", 689 | "ref/netcoreapp2.1/System.Xml.XmlDocument.dll", 690 | "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll", 691 | "ref/netcoreapp2.1/System.Xml.XmlSerializer.xml", 692 | "ref/netcoreapp2.1/System.Xml.dll", 693 | "ref/netcoreapp2.1/System.dll", 694 | "ref/netcoreapp2.1/WindowsBase.dll", 695 | "ref/netcoreapp2.1/mscorlib.dll", 696 | "ref/netcoreapp2.1/netstandard.dll", 697 | "runtime.json" 698 | ] 699 | }, 700 | "Microsoft.NETCore.DotNetAppHost/2.1.0": { 701 | "sha512": "f/47I60Wg3SrveTvnecCQhCZCAMYlUujWF15EQ/AZTqF/54qeEJjbCIAxKcZI8ToUYzSg6JdfrHggsgjCyCE9Q==", 702 | "type": "package", 703 | "path": "microsoft.netcore.dotnetapphost/2.1.0", 704 | "files": [ 705 | ".signature.p7s", 706 | "LICENSE.TXT", 707 | "THIRD-PARTY-NOTICES.TXT", 708 | "microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512", 709 | "microsoft.netcore.dotnetapphost.nuspec", 710 | "runtime.json" 711 | ] 712 | }, 713 | "Microsoft.NETCore.DotNetHostPolicy/2.1.0": { 714 | "sha512": "p50yZYKzhH64lmArJgoKjtvsNehECa+/sAuOQzZh5uDNBTbRKxjN8IXP1e517xdVsgrFcSNxSEVDKZIOWVjGcQ==", 715 | "type": "package", 716 | "path": "microsoft.netcore.dotnethostpolicy/2.1.0", 717 | "files": [ 718 | ".signature.p7s", 719 | "LICENSE.TXT", 720 | "THIRD-PARTY-NOTICES.TXT", 721 | "microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512", 722 | "microsoft.netcore.dotnethostpolicy.nuspec", 723 | "runtime.json" 724 | ] 725 | }, 726 | "Microsoft.NETCore.DotNetHostResolver/2.1.0": { 727 | "sha512": "fS9D8a+y55n6mHMbNqgHXaPGkjmpVH9h97OyrBxsCuo3Z8aQaFMJ5xIfmzji2ntUd/3truhMbSgSfIelHOkQpg==", 728 | "type": "package", 729 | "path": "microsoft.netcore.dotnethostresolver/2.1.0", 730 | "files": [ 731 | ".signature.p7s", 732 | "LICENSE.TXT", 733 | "THIRD-PARTY-NOTICES.TXT", 734 | "microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512", 735 | "microsoft.netcore.dotnethostresolver.nuspec", 736 | "runtime.json" 737 | ] 738 | }, 739 | "Microsoft.NETCore.Platforms/2.1.0": { 740 | "sha512": "TT+QCi9LcxGTjBssH7S7n5+8DVcwfG4DYgXX7Dk7+BfZ4oVHj8Q0CbYk9glzAlHLsSt3bYzol+fOdra2iu6GOw==", 741 | "type": "package", 742 | "path": "microsoft.netcore.platforms/2.1.0", 743 | "files": [ 744 | ".signature.p7s", 745 | "LICENSE.TXT", 746 | "THIRD-PARTY-NOTICES.TXT", 747 | "lib/netstandard1.0/_._", 748 | "microsoft.netcore.platforms.2.1.0.nupkg.sha512", 749 | "microsoft.netcore.platforms.nuspec", 750 | "runtime.json", 751 | "useSharedDesignerContext.txt", 752 | "version.txt" 753 | ] 754 | }, 755 | "Microsoft.NETCore.Targets/2.1.0": { 756 | "sha512": "etaYwrLZQUS+b3UWTpCnUggd6SQ/ZIkZ5pHnoR7+dIWt/wp2Rv3CvMKOZISsrt7FYCHKwCxfcepuuyEWkQxADg==", 757 | "type": "package", 758 | "path": "microsoft.netcore.targets/2.1.0", 759 | "files": [ 760 | ".signature.p7s", 761 | "LICENSE.TXT", 762 | "THIRD-PARTY-NOTICES.TXT", 763 | "lib/netstandard1.0/_._", 764 | "microsoft.netcore.targets.2.1.0.nupkg.sha512", 765 | "microsoft.netcore.targets.nuspec", 766 | "runtime.json", 767 | "useSharedDesignerContext.txt", 768 | "version.txt" 769 | ] 770 | }, 771 | "NETStandard.Library/2.0.3": { 772 | "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", 773 | "type": "package", 774 | "path": "netstandard.library/2.0.3", 775 | "files": [ 776 | "LICENSE.TXT", 777 | "THIRD-PARTY-NOTICES.TXT", 778 | "build/netstandard2.0/NETStandard.Library.targets", 779 | "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", 780 | "build/netstandard2.0/ref/System.AppContext.dll", 781 | "build/netstandard2.0/ref/System.Collections.Concurrent.dll", 782 | "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", 783 | "build/netstandard2.0/ref/System.Collections.Specialized.dll", 784 | "build/netstandard2.0/ref/System.Collections.dll", 785 | "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", 786 | "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", 787 | "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", 788 | "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", 789 | "build/netstandard2.0/ref/System.ComponentModel.dll", 790 | "build/netstandard2.0/ref/System.Console.dll", 791 | "build/netstandard2.0/ref/System.Core.dll", 792 | "build/netstandard2.0/ref/System.Data.Common.dll", 793 | "build/netstandard2.0/ref/System.Data.dll", 794 | "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", 795 | "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", 796 | "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", 797 | "build/netstandard2.0/ref/System.Diagnostics.Process.dll", 798 | "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", 799 | "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", 800 | "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", 801 | "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", 802 | "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", 803 | "build/netstandard2.0/ref/System.Drawing.Primitives.dll", 804 | "build/netstandard2.0/ref/System.Drawing.dll", 805 | "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", 806 | "build/netstandard2.0/ref/System.Globalization.Calendars.dll", 807 | "build/netstandard2.0/ref/System.Globalization.Extensions.dll", 808 | "build/netstandard2.0/ref/System.Globalization.dll", 809 | "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", 810 | "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", 811 | "build/netstandard2.0/ref/System.IO.Compression.dll", 812 | "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", 813 | "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", 814 | "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", 815 | "build/netstandard2.0/ref/System.IO.FileSystem.dll", 816 | "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", 817 | "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", 818 | "build/netstandard2.0/ref/System.IO.Pipes.dll", 819 | "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", 820 | "build/netstandard2.0/ref/System.IO.dll", 821 | "build/netstandard2.0/ref/System.Linq.Expressions.dll", 822 | "build/netstandard2.0/ref/System.Linq.Parallel.dll", 823 | "build/netstandard2.0/ref/System.Linq.Queryable.dll", 824 | "build/netstandard2.0/ref/System.Linq.dll", 825 | "build/netstandard2.0/ref/System.Net.Http.dll", 826 | "build/netstandard2.0/ref/System.Net.NameResolution.dll", 827 | "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", 828 | "build/netstandard2.0/ref/System.Net.Ping.dll", 829 | "build/netstandard2.0/ref/System.Net.Primitives.dll", 830 | "build/netstandard2.0/ref/System.Net.Requests.dll", 831 | "build/netstandard2.0/ref/System.Net.Security.dll", 832 | "build/netstandard2.0/ref/System.Net.Sockets.dll", 833 | "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", 834 | "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", 835 | "build/netstandard2.0/ref/System.Net.WebSockets.dll", 836 | "build/netstandard2.0/ref/System.Net.dll", 837 | "build/netstandard2.0/ref/System.Numerics.dll", 838 | "build/netstandard2.0/ref/System.ObjectModel.dll", 839 | "build/netstandard2.0/ref/System.Reflection.Extensions.dll", 840 | "build/netstandard2.0/ref/System.Reflection.Primitives.dll", 841 | "build/netstandard2.0/ref/System.Reflection.dll", 842 | "build/netstandard2.0/ref/System.Resources.Reader.dll", 843 | "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", 844 | "build/netstandard2.0/ref/System.Resources.Writer.dll", 845 | "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", 846 | "build/netstandard2.0/ref/System.Runtime.Extensions.dll", 847 | "build/netstandard2.0/ref/System.Runtime.Handles.dll", 848 | "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", 849 | "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", 850 | "build/netstandard2.0/ref/System.Runtime.Numerics.dll", 851 | "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", 852 | "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", 853 | "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", 854 | "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", 855 | "build/netstandard2.0/ref/System.Runtime.Serialization.dll", 856 | "build/netstandard2.0/ref/System.Runtime.dll", 857 | "build/netstandard2.0/ref/System.Security.Claims.dll", 858 | "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", 859 | "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", 860 | "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", 861 | "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", 862 | "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", 863 | "build/netstandard2.0/ref/System.Security.Principal.dll", 864 | "build/netstandard2.0/ref/System.Security.SecureString.dll", 865 | "build/netstandard2.0/ref/System.ServiceModel.Web.dll", 866 | "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", 867 | "build/netstandard2.0/ref/System.Text.Encoding.dll", 868 | "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", 869 | "build/netstandard2.0/ref/System.Threading.Overlapped.dll", 870 | "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", 871 | "build/netstandard2.0/ref/System.Threading.Tasks.dll", 872 | "build/netstandard2.0/ref/System.Threading.Thread.dll", 873 | "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", 874 | "build/netstandard2.0/ref/System.Threading.Timer.dll", 875 | "build/netstandard2.0/ref/System.Threading.dll", 876 | "build/netstandard2.0/ref/System.Transactions.dll", 877 | "build/netstandard2.0/ref/System.ValueTuple.dll", 878 | "build/netstandard2.0/ref/System.Web.dll", 879 | "build/netstandard2.0/ref/System.Windows.dll", 880 | "build/netstandard2.0/ref/System.Xml.Linq.dll", 881 | "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", 882 | "build/netstandard2.0/ref/System.Xml.Serialization.dll", 883 | "build/netstandard2.0/ref/System.Xml.XDocument.dll", 884 | "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", 885 | "build/netstandard2.0/ref/System.Xml.XPath.dll", 886 | "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", 887 | "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", 888 | "build/netstandard2.0/ref/System.Xml.dll", 889 | "build/netstandard2.0/ref/System.dll", 890 | "build/netstandard2.0/ref/mscorlib.dll", 891 | "build/netstandard2.0/ref/netstandard.dll", 892 | "build/netstandard2.0/ref/netstandard.xml", 893 | "lib/netstandard1.0/_._", 894 | "netstandard.library.2.0.3.nupkg.sha512", 895 | "netstandard.library.nuspec" 896 | ] 897 | }, 898 | "Newtonsoft.Json/11.0.2": { 899 | "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", 900 | "type": "package", 901 | "path": "newtonsoft.json/11.0.2", 902 | "files": [ 903 | "LICENSE.md", 904 | "lib/net20/Newtonsoft.Json.dll", 905 | "lib/net20/Newtonsoft.Json.xml", 906 | "lib/net35/Newtonsoft.Json.dll", 907 | "lib/net35/Newtonsoft.Json.xml", 908 | "lib/net40/Newtonsoft.Json.dll", 909 | "lib/net40/Newtonsoft.Json.xml", 910 | "lib/net45/Newtonsoft.Json.dll", 911 | "lib/net45/Newtonsoft.Json.xml", 912 | "lib/netstandard1.0/Newtonsoft.Json.dll", 913 | "lib/netstandard1.0/Newtonsoft.Json.xml", 914 | "lib/netstandard1.3/Newtonsoft.Json.dll", 915 | "lib/netstandard1.3/Newtonsoft.Json.xml", 916 | "lib/netstandard2.0/Newtonsoft.Json.dll", 917 | "lib/netstandard2.0/Newtonsoft.Json.xml", 918 | "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", 919 | "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", 920 | "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", 921 | "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", 922 | "newtonsoft.json.11.0.2.nupkg.sha512", 923 | "newtonsoft.json.nuspec" 924 | ] 925 | }, 926 | "System.Memory/4.5.1": { 927 | "sha512": "vcG3/MbfpxznMkkkaAblJi7RHOmuP7kawQMhDgLSuA1tRpRQYsFSCTxRSINDUgn2QNn2jWeLxv8er5BXbyACkw==", 928 | "type": "package", 929 | "path": "system.memory/4.5.1", 930 | "files": [ 931 | ".signature.p7s", 932 | "LICENSE.TXT", 933 | "THIRD-PARTY-NOTICES.TXT", 934 | "lib/netcoreapp2.1/_._", 935 | "lib/netstandard1.1/System.Memory.dll", 936 | "lib/netstandard1.1/System.Memory.xml", 937 | "lib/netstandard2.0/System.Memory.dll", 938 | "lib/netstandard2.0/System.Memory.xml", 939 | "ref/netcoreapp2.1/_._", 940 | "ref/netstandard1.1/System.Memory.dll", 941 | "ref/netstandard1.1/System.Memory.xml", 942 | "ref/netstandard2.0/System.Memory.dll", 943 | "ref/netstandard2.0/System.Memory.xml", 944 | "system.memory.4.5.1.nupkg.sha512", 945 | "system.memory.nuspec", 946 | "useSharedDesignerContext.txt", 947 | "version.txt" 948 | ] 949 | }, 950 | "System.Runtime.CompilerServices.Unsafe/4.5.1": { 951 | "sha512": "qUJMNWhbm9oZ3XaMFiEMiYmRPszbnXIkRIi7+4b2Md2xZ6JUOepf0/kY3S85qistRohl9OdMe4PsO+RdG2kTIQ==", 952 | "type": "package", 953 | "path": "system.runtime.compilerservices.unsafe/4.5.1", 954 | "files": [ 955 | ".signature.p7s", 956 | "LICENSE.TXT", 957 | "THIRD-PARTY-NOTICES.TXT", 958 | "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", 959 | "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", 960 | "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", 961 | "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", 962 | "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", 963 | "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", 964 | "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", 965 | "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", 966 | "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", 967 | "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", 968 | "system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512", 969 | "system.runtime.compilerservices.unsafe.nuspec", 970 | "useSharedDesignerContext.txt", 971 | "version.txt" 972 | ] 973 | } 974 | }, 975 | "projectFileDependencyGroups": { 976 | ".NETCoreApp,Version=v2.1": [ 977 | "Microsoft.Extensions.Configuration >= 2.1.1", 978 | "Microsoft.Extensions.Configuration.Json >= 2.1.1", 979 | "Microsoft.NETCore.App >= 2.1.0" 980 | ] 981 | }, 982 | "packageFolders": { 983 | "D:\\.nuget\\packages\\": {}, 984 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} 985 | }, 986 | "project": { 987 | "version": "1.0.0", 988 | "restore": { 989 | "projectUniqueName": "D:\\Development\\siglent\\FindKeys\\FindKeys.csproj", 990 | "projectName": "FindKeys", 991 | "projectPath": "D:\\Development\\siglent\\FindKeys\\FindKeys.csproj", 992 | "packagesPath": "D:\\.nuget\\packages\\", 993 | "outputPath": "D:\\Development\\siglent\\FindKeys\\obj\\", 994 | "projectStyle": "PackageReference", 995 | "fallbackFolders": [ 996 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 997 | ], 998 | "configFilePaths": [ 999 | "D:\\AppData\\Roaming\\NuGet\\NuGet.Config", 1000 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 1001 | ], 1002 | "originalTargetFrameworks": [ 1003 | "netcoreapp2.1" 1004 | ], 1005 | "sources": { 1006 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 1007 | "https://api.nuget.org/v3/index.json": {} 1008 | }, 1009 | "frameworks": { 1010 | "netcoreapp2.1": { 1011 | "projectReferences": {} 1012 | } 1013 | }, 1014 | "warningProperties": { 1015 | "warnAsError": [ 1016 | "NU1605" 1017 | ] 1018 | } 1019 | }, 1020 | "frameworks": { 1021 | "netcoreapp2.1": { 1022 | "dependencies": { 1023 | "Microsoft.Extensions.Configuration": { 1024 | "target": "Package", 1025 | "version": "[2.1.1, )" 1026 | }, 1027 | "Microsoft.Extensions.Configuration.Json": { 1028 | "target": "Package", 1029 | "version": "[2.1.1, )" 1030 | }, 1031 | "Microsoft.NETCore.App": { 1032 | "target": "Package", 1033 | "version": "[2.1.0, )", 1034 | "autoReferenced": true 1035 | } 1036 | }, 1037 | "imports": [ 1038 | "net461" 1039 | ], 1040 | "assetTargetFallback": true, 1041 | "warn": true 1042 | } 1043 | } 1044 | } 1045 | }{ 1046 | "version": 3, 1047 | "targets": { 1048 | ".NETCoreApp,Version=v2.1": { 1049 | "Microsoft.Extensions.Configuration/2.1.1": { 1050 | "type": "package", 1051 | "dependencies": { 1052 | "Microsoft.Extensions.Configuration.Abstractions": "2.1.1" 1053 | }, 1054 | "compile": { 1055 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} 1056 | }, 1057 | "runtime": { 1058 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {} 1059 | } 1060 | }, 1061 | "Microsoft.Extensions.Configuration.Abstractions/2.1.1": { 1062 | "type": "package", 1063 | "dependencies": { 1064 | "Microsoft.Extensions.Primitives": "2.1.1" 1065 | }, 1066 | "compile": { 1067 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} 1068 | }, 1069 | "runtime": { 1070 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} 1071 | } 1072 | }, 1073 | "Microsoft.Extensions.Configuration.FileExtensions/2.1.1": { 1074 | "type": "package", 1075 | "dependencies": { 1076 | "Microsoft.Extensions.Configuration": "2.1.1", 1077 | "Microsoft.Extensions.FileProviders.Physical": "2.1.1" 1078 | }, 1079 | "compile": { 1080 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} 1081 | }, 1082 | "runtime": { 1083 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {} 1084 | } 1085 | }, 1086 | "Microsoft.Extensions.Configuration.Json/2.1.1": { 1087 | "type": "package", 1088 | "dependencies": { 1089 | "Microsoft.Extensions.Configuration": "2.1.1", 1090 | "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1", 1091 | "Newtonsoft.Json": "11.0.2" 1092 | }, 1093 | "compile": { 1094 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {} 1095 | }, 1096 | "runtime": { 1097 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {} 1098 | } 1099 | }, 1100 | "Microsoft.Extensions.FileProviders.Abstractions/2.1.1": { 1101 | "type": "package", 1102 | "dependencies": { 1103 | "Microsoft.Extensions.Primitives": "2.1.1" 1104 | }, 1105 | "compile": { 1106 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} 1107 | }, 1108 | "runtime": { 1109 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} 1110 | } 1111 | }, 1112 | "Microsoft.Extensions.FileProviders.Physical/2.1.1": { 1113 | "type": "package", 1114 | "dependencies": { 1115 | "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1", 1116 | "Microsoft.Extensions.FileSystemGlobbing": "2.1.1" 1117 | }, 1118 | "compile": { 1119 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {} 1120 | }, 1121 | "runtime": { 1122 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {} 1123 | } 1124 | }, 1125 | "Microsoft.Extensions.FileSystemGlobbing/2.1.1": { 1126 | "type": "package", 1127 | "compile": { 1128 | "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} 1129 | }, 1130 | "runtime": { 1131 | "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} 1132 | } 1133 | }, 1134 | "Microsoft.Extensions.Primitives/2.1.1": { 1135 | "type": "package", 1136 | "dependencies": { 1137 | "System.Memory": "4.5.1", 1138 | "System.Runtime.CompilerServices.Unsafe": "4.5.1" 1139 | }, 1140 | "compile": { 1141 | "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} 1142 | }, 1143 | "runtime": { 1144 | "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {} 1145 | } 1146 | }, 1147 | "Microsoft.NETCore.App/2.1.0": { 1148 | "type": "package", 1149 | "dependencies": { 1150 | "Microsoft.NETCore.DotNetHostPolicy": "2.1.0", 1151 | "Microsoft.NETCore.Platforms": "2.1.0", 1152 | "Microsoft.NETCore.Targets": "2.1.0", 1153 | "NETStandard.Library": "2.0.3" 1154 | }, 1155 | "compile": { 1156 | "ref/netcoreapp2.1/Microsoft.CSharp.dll": {}, 1157 | "ref/netcoreapp2.1/Microsoft.VisualBasic.dll": {}, 1158 | "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll": {}, 1159 | "ref/netcoreapp2.1/System.AppContext.dll": {}, 1160 | "ref/netcoreapp2.1/System.Buffers.dll": {}, 1161 | "ref/netcoreapp2.1/System.Collections.Concurrent.dll": {}, 1162 | "ref/netcoreapp2.1/System.Collections.Immutable.dll": {}, 1163 | "ref/netcoreapp2.1/System.Collections.NonGeneric.dll": {}, 1164 | "ref/netcoreapp2.1/System.Collections.Specialized.dll": {}, 1165 | "ref/netcoreapp2.1/System.Collections.dll": {}, 1166 | "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll": {}, 1167 | "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll": {}, 1168 | "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll": {}, 1169 | "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll": {}, 1170 | "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll": {}, 1171 | "ref/netcoreapp2.1/System.ComponentModel.dll": {}, 1172 | "ref/netcoreapp2.1/System.Configuration.dll": {}, 1173 | "ref/netcoreapp2.1/System.Console.dll": {}, 1174 | "ref/netcoreapp2.1/System.Core.dll": {}, 1175 | "ref/netcoreapp2.1/System.Data.Common.dll": {}, 1176 | "ref/netcoreapp2.1/System.Data.dll": {}, 1177 | "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll": {}, 1178 | "ref/netcoreapp2.1/System.Diagnostics.Debug.dll": {}, 1179 | "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll": {}, 1180 | "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll": {}, 1181 | "ref/netcoreapp2.1/System.Diagnostics.Process.dll": {}, 1182 | "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll": {}, 1183 | "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll": {}, 1184 | "ref/netcoreapp2.1/System.Diagnostics.Tools.dll": {}, 1185 | "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll": {}, 1186 | "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll": {}, 1187 | "ref/netcoreapp2.1/System.Drawing.Primitives.dll": {}, 1188 | "ref/netcoreapp2.1/System.Drawing.dll": {}, 1189 | "ref/netcoreapp2.1/System.Dynamic.Runtime.dll": {}, 1190 | "ref/netcoreapp2.1/System.Globalization.Calendars.dll": {}, 1191 | "ref/netcoreapp2.1/System.Globalization.Extensions.dll": {}, 1192 | "ref/netcoreapp2.1/System.Globalization.dll": {}, 1193 | "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll": {}, 1194 | "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll": {}, 1195 | "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll": {}, 1196 | "ref/netcoreapp2.1/System.IO.Compression.dll": {}, 1197 | "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll": {}, 1198 | "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll": {}, 1199 | "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll": {}, 1200 | "ref/netcoreapp2.1/System.IO.FileSystem.dll": {}, 1201 | "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll": {}, 1202 | "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll": {}, 1203 | "ref/netcoreapp2.1/System.IO.Pipes.dll": {}, 1204 | "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll": {}, 1205 | "ref/netcoreapp2.1/System.IO.dll": {}, 1206 | "ref/netcoreapp2.1/System.Linq.Expressions.dll": {}, 1207 | "ref/netcoreapp2.1/System.Linq.Parallel.dll": {}, 1208 | "ref/netcoreapp2.1/System.Linq.Queryable.dll": {}, 1209 | "ref/netcoreapp2.1/System.Linq.dll": {}, 1210 | "ref/netcoreapp2.1/System.Memory.dll": {}, 1211 | "ref/netcoreapp2.1/System.Net.Http.dll": {}, 1212 | "ref/netcoreapp2.1/System.Net.HttpListener.dll": {}, 1213 | "ref/netcoreapp2.1/System.Net.Mail.dll": {}, 1214 | "ref/netcoreapp2.1/System.Net.NameResolution.dll": {}, 1215 | "ref/netcoreapp2.1/System.Net.NetworkInformation.dll": {}, 1216 | "ref/netcoreapp2.1/System.Net.Ping.dll": {}, 1217 | "ref/netcoreapp2.1/System.Net.Primitives.dll": {}, 1218 | "ref/netcoreapp2.1/System.Net.Requests.dll": {}, 1219 | "ref/netcoreapp2.1/System.Net.Security.dll": {}, 1220 | "ref/netcoreapp2.1/System.Net.ServicePoint.dll": {}, 1221 | "ref/netcoreapp2.1/System.Net.Sockets.dll": {}, 1222 | "ref/netcoreapp2.1/System.Net.WebClient.dll": {}, 1223 | "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll": {}, 1224 | "ref/netcoreapp2.1/System.Net.WebProxy.dll": {}, 1225 | "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll": {}, 1226 | "ref/netcoreapp2.1/System.Net.WebSockets.dll": {}, 1227 | "ref/netcoreapp2.1/System.Net.dll": {}, 1228 | "ref/netcoreapp2.1/System.Numerics.Vectors.dll": {}, 1229 | "ref/netcoreapp2.1/System.Numerics.dll": {}, 1230 | "ref/netcoreapp2.1/System.ObjectModel.dll": {}, 1231 | "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll": {}, 1232 | "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll": {}, 1233 | "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll": {}, 1234 | "ref/netcoreapp2.1/System.Reflection.Emit.dll": {}, 1235 | "ref/netcoreapp2.1/System.Reflection.Extensions.dll": {}, 1236 | "ref/netcoreapp2.1/System.Reflection.Metadata.dll": {}, 1237 | "ref/netcoreapp2.1/System.Reflection.Primitives.dll": {}, 1238 | "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll": {}, 1239 | "ref/netcoreapp2.1/System.Reflection.dll": {}, 1240 | "ref/netcoreapp2.1/System.Resources.Reader.dll": {}, 1241 | "ref/netcoreapp2.1/System.Resources.ResourceManager.dll": {}, 1242 | "ref/netcoreapp2.1/System.Resources.Writer.dll": {}, 1243 | "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll": {}, 1244 | "ref/netcoreapp2.1/System.Runtime.Extensions.dll": {}, 1245 | "ref/netcoreapp2.1/System.Runtime.Handles.dll": {}, 1246 | "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}, 1247 | "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll": {}, 1248 | "ref/netcoreapp2.1/System.Runtime.InteropServices.dll": {}, 1249 | "ref/netcoreapp2.1/System.Runtime.Loader.dll": {}, 1250 | "ref/netcoreapp2.1/System.Runtime.Numerics.dll": {}, 1251 | "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll": {}, 1252 | "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll": {}, 1253 | "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll": {}, 1254 | "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll": {}, 1255 | "ref/netcoreapp2.1/System.Runtime.Serialization.dll": {}, 1256 | "ref/netcoreapp2.1/System.Runtime.dll": {}, 1257 | "ref/netcoreapp2.1/System.Security.Claims.dll": {}, 1258 | "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll": {}, 1259 | "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll": {}, 1260 | "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll": {}, 1261 | "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll": {}, 1262 | "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll": {}, 1263 | "ref/netcoreapp2.1/System.Security.Principal.dll": {}, 1264 | "ref/netcoreapp2.1/System.Security.SecureString.dll": {}, 1265 | "ref/netcoreapp2.1/System.Security.dll": {}, 1266 | "ref/netcoreapp2.1/System.ServiceModel.Web.dll": {}, 1267 | "ref/netcoreapp2.1/System.ServiceProcess.dll": {}, 1268 | "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll": {}, 1269 | "ref/netcoreapp2.1/System.Text.Encoding.dll": {}, 1270 | "ref/netcoreapp2.1/System.Text.RegularExpressions.dll": {}, 1271 | "ref/netcoreapp2.1/System.Threading.Overlapped.dll": {}, 1272 | "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll": {}, 1273 | "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll": {}, 1274 | "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll": {}, 1275 | "ref/netcoreapp2.1/System.Threading.Tasks.dll": {}, 1276 | "ref/netcoreapp2.1/System.Threading.Thread.dll": {}, 1277 | "ref/netcoreapp2.1/System.Threading.ThreadPool.dll": {}, 1278 | "ref/netcoreapp2.1/System.Threading.Timer.dll": {}, 1279 | "ref/netcoreapp2.1/System.Threading.dll": {}, 1280 | "ref/netcoreapp2.1/System.Transactions.Local.dll": {}, 1281 | "ref/netcoreapp2.1/System.Transactions.dll": {}, 1282 | "ref/netcoreapp2.1/System.ValueTuple.dll": {}, 1283 | "ref/netcoreapp2.1/System.Web.HttpUtility.dll": {}, 1284 | "ref/netcoreapp2.1/System.Web.dll": {}, 1285 | "ref/netcoreapp2.1/System.Windows.dll": {}, 1286 | "ref/netcoreapp2.1/System.Xml.Linq.dll": {}, 1287 | "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll": {}, 1288 | "ref/netcoreapp2.1/System.Xml.Serialization.dll": {}, 1289 | "ref/netcoreapp2.1/System.Xml.XDocument.dll": {}, 1290 | "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll": {}, 1291 | "ref/netcoreapp2.1/System.Xml.XPath.dll": {}, 1292 | "ref/netcoreapp2.1/System.Xml.XmlDocument.dll": {}, 1293 | "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll": {}, 1294 | "ref/netcoreapp2.1/System.Xml.dll": {}, 1295 | "ref/netcoreapp2.1/System.dll": {}, 1296 | "ref/netcoreapp2.1/WindowsBase.dll": {}, 1297 | "ref/netcoreapp2.1/mscorlib.dll": {}, 1298 | "ref/netcoreapp2.1/netstandard.dll": {} 1299 | }, 1300 | "build": { 1301 | "build/netcoreapp2.1/Microsoft.NETCore.App.props": {}, 1302 | "build/netcoreapp2.1/Microsoft.NETCore.App.targets": {} 1303 | } 1304 | }, 1305 | "Microsoft.NETCore.DotNetAppHost/2.1.0": { 1306 | "type": "package" 1307 | }, 1308 | "Microsoft.NETCore.DotNetHostPolicy/2.1.0": { 1309 | "type": "package", 1310 | "dependencies": { 1311 | "Microsoft.NETCore.DotNetHostResolver": "2.1.0" 1312 | } 1313 | }, 1314 | "Microsoft.NETCore.DotNetHostResolver/2.1.0": { 1315 | "type": "package", 1316 | "dependencies": { 1317 | "Microsoft.NETCore.DotNetAppHost": "2.1.0" 1318 | } 1319 | }, 1320 | "Microsoft.NETCore.Platforms/2.1.0": { 1321 | "type": "package", 1322 | "compile": { 1323 | "lib/netstandard1.0/_._": {} 1324 | }, 1325 | "runtime": { 1326 | "lib/netstandard1.0/_._": {} 1327 | } 1328 | }, 1329 | "Microsoft.NETCore.Targets/2.1.0": { 1330 | "type": "package", 1331 | "compile": { 1332 | "lib/netstandard1.0/_._": {} 1333 | }, 1334 | "runtime": { 1335 | "lib/netstandard1.0/_._": {} 1336 | } 1337 | }, 1338 | "NETStandard.Library/2.0.3": { 1339 | "type": "package", 1340 | "dependencies": { 1341 | "Microsoft.NETCore.Platforms": "1.1.0" 1342 | }, 1343 | "compile": { 1344 | "lib/netstandard1.0/_._": {} 1345 | }, 1346 | "runtime": { 1347 | "lib/netstandard1.0/_._": {} 1348 | }, 1349 | "build": { 1350 | "build/netstandard2.0/NETStandard.Library.targets": {} 1351 | } 1352 | }, 1353 | "Newtonsoft.Json/11.0.2": { 1354 | "type": "package", 1355 | "compile": { 1356 | "lib/netstandard2.0/Newtonsoft.Json.dll": {} 1357 | }, 1358 | "runtime": { 1359 | "lib/netstandard2.0/Newtonsoft.Json.dll": {} 1360 | } 1361 | }, 1362 | "System.Memory/4.5.1": { 1363 | "type": "package", 1364 | "compile": { 1365 | "ref/netcoreapp2.1/_._": {} 1366 | }, 1367 | "runtime": { 1368 | "lib/netcoreapp2.1/_._": {} 1369 | } 1370 | }, 1371 | "System.Runtime.CompilerServices.Unsafe/4.5.1": { 1372 | "type": "package", 1373 | "compile": { 1374 | "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {} 1375 | }, 1376 | "runtime": { 1377 | "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} 1378 | } 1379 | } 1380 | } 1381 | }, 1382 | "libraries": { 1383 | "Microsoft.Extensions.Configuration/2.1.1": { 1384 | "sha512": "1JaydycXzbfAExlsD7XIWykzVnU/wZM86KzrHyGlXuxqnqzcWSXLJn4Ejn8bDnq07CEJNZ+GjsxWKlJ8kFfnvQ==", 1385 | "type": "package", 1386 | "path": "microsoft.extensions.configuration/2.1.1", 1387 | "files": [ 1388 | ".signature.p7s", 1389 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", 1390 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", 1391 | "microsoft.extensions.configuration.2.1.1.nupkg.sha512", 1392 | "microsoft.extensions.configuration.nuspec" 1393 | ] 1394 | }, 1395 | "Microsoft.Extensions.Configuration.Abstractions/2.1.1": { 1396 | "sha512": "9EMhOWU2eOQOtMIJ+vfwKJpnLRc1Wl3vXu8qXeevA91cSY4j3WvArmF7ApGtJwa7yKewJTvlQlBSn9OSnLFg6Q==", 1397 | "type": "package", 1398 | "path": "microsoft.extensions.configuration.abstractions/2.1.1", 1399 | "files": [ 1400 | ".signature.p7s", 1401 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", 1402 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", 1403 | "microsoft.extensions.configuration.abstractions.2.1.1.nupkg.sha512", 1404 | "microsoft.extensions.configuration.abstractions.nuspec" 1405 | ] 1406 | }, 1407 | "Microsoft.Extensions.Configuration.FileExtensions/2.1.1": { 1408 | "sha512": "JnhKotPCs1+X4CPSsHOk8CpxmBeIS/vIXYewsoM8XflXNhpzMe1gfIckQyuRKyORlGaNFEBr4WrPjpZ159bS/Q==", 1409 | "type": "package", 1410 | "path": "microsoft.extensions.configuration.fileextensions/2.1.1", 1411 | "files": [ 1412 | ".signature.p7s", 1413 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", 1414 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", 1415 | "microsoft.extensions.configuration.fileextensions.2.1.1.nupkg.sha512", 1416 | "microsoft.extensions.configuration.fileextensions.nuspec" 1417 | ] 1418 | }, 1419 | "Microsoft.Extensions.Configuration.Json/2.1.1": { 1420 | "sha512": "f6KcI9v0GVA4YL/ExoxrEfeQv9La3hyQnySfgxGkFtMeDJIUun0ANoMjspbdpXXnuaScwgbQ2mFE3lJHt9lpJw==", 1421 | "type": "package", 1422 | "path": "microsoft.extensions.configuration.json/2.1.1", 1423 | "files": [ 1424 | ".signature.p7s", 1425 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", 1426 | "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", 1427 | "microsoft.extensions.configuration.json.2.1.1.nupkg.sha512", 1428 | "microsoft.extensions.configuration.json.nuspec" 1429 | ] 1430 | }, 1431 | "Microsoft.Extensions.FileProviders.Abstractions/2.1.1": { 1432 | "sha512": "qOJP+VAlXDeMQSJ6iflW62bEsN3S1NJIPHmhKFA9L37yU+jce2wbwesA7sDe9WdJ8+SoKtLnHPUxvOyQrAcRCA==", 1433 | "type": "package", 1434 | "path": "microsoft.extensions.fileproviders.abstractions/2.1.1", 1435 | "files": [ 1436 | ".signature.p7s", 1437 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", 1438 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", 1439 | "microsoft.extensions.fileproviders.abstractions.2.1.1.nupkg.sha512", 1440 | "microsoft.extensions.fileproviders.abstractions.nuspec" 1441 | ] 1442 | }, 1443 | "Microsoft.Extensions.FileProviders.Physical/2.1.1": { 1444 | "sha512": "pbT/J3B686Xgktv5WH11FbcbZXDmBQuCN3ce8IKIF+DpOk3p0RgUPrOXcYNp81TyH+K/5Cosr4VFVjYMoirNDg==", 1445 | "type": "package", 1446 | "path": "microsoft.extensions.fileproviders.physical/2.1.1", 1447 | "files": [ 1448 | ".signature.p7s", 1449 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", 1450 | "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", 1451 | "microsoft.extensions.fileproviders.physical.2.1.1.nupkg.sha512", 1452 | "microsoft.extensions.fileproviders.physical.nuspec" 1453 | ] 1454 | }, 1455 | "Microsoft.Extensions.FileSystemGlobbing/2.1.1": { 1456 | "sha512": "Pu/O8jBc7QlEmqmbDGVosuDlyzGspMuKc71rOsJigwGMF5574aWYw9uRMX+ho1dmbnL502ZYHo6PlBP3IXkm5A==", 1457 | "type": "package", 1458 | "path": "microsoft.extensions.filesystemglobbing/2.1.1", 1459 | "files": [ 1460 | ".signature.p7s", 1461 | "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", 1462 | "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", 1463 | "microsoft.extensions.filesystemglobbing.2.1.1.nupkg.sha512", 1464 | "microsoft.extensions.filesystemglobbing.nuspec" 1465 | ] 1466 | }, 1467 | "Microsoft.Extensions.Primitives/2.1.1": { 1468 | "sha512": "Svz25/egj1TsNL4118jyMqkhDiu0l8QYWq2p52P4BBN0GbqwR18ZRIctSP5TTDJy0m0EFC8aB2FOVjGtvEGWSA==", 1469 | "type": "package", 1470 | "path": "microsoft.extensions.primitives/2.1.1", 1471 | "files": [ 1472 | ".signature.p7s", 1473 | "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", 1474 | "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", 1475 | "microsoft.extensions.primitives.2.1.1.nupkg.sha512", 1476 | "microsoft.extensions.primitives.nuspec" 1477 | ] 1478 | }, 1479 | "Microsoft.NETCore.App/2.1.0": { 1480 | "sha512": "AvT774nTFgU8cYcGO9j1EMwuayKslxqYTurg32HGpWa2hEYNuW2+XgYVVNcZe6Ndbr84QX6fwaOZfd5n+1m2OA==", 1481 | "type": "package", 1482 | "path": "microsoft.netcore.app/2.1.0", 1483 | "files": [ 1484 | ".signature.p7s", 1485 | "LICENSE.TXT", 1486 | "Microsoft.NETCore.App.versions.txt", 1487 | "THIRD-PARTY-NOTICES.TXT", 1488 | "build/netcoreapp2.1/Microsoft.NETCore.App.PlatformManifest.txt", 1489 | "build/netcoreapp2.1/Microsoft.NETCore.App.props", 1490 | "build/netcoreapp2.1/Microsoft.NETCore.App.targets", 1491 | "microsoft.netcore.app.2.1.0.nupkg.sha512", 1492 | "microsoft.netcore.app.nuspec", 1493 | "ref/netcoreapp/_._", 1494 | "ref/netcoreapp2.1/Microsoft.CSharp.dll", 1495 | "ref/netcoreapp2.1/Microsoft.CSharp.xml", 1496 | "ref/netcoreapp2.1/Microsoft.VisualBasic.dll", 1497 | "ref/netcoreapp2.1/Microsoft.VisualBasic.xml", 1498 | "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll", 1499 | "ref/netcoreapp2.1/Microsoft.Win32.Primitives.xml", 1500 | "ref/netcoreapp2.1/System.AppContext.dll", 1501 | "ref/netcoreapp2.1/System.Buffers.dll", 1502 | "ref/netcoreapp2.1/System.Buffers.xml", 1503 | "ref/netcoreapp2.1/System.Collections.Concurrent.dll", 1504 | "ref/netcoreapp2.1/System.Collections.Concurrent.xml", 1505 | "ref/netcoreapp2.1/System.Collections.Immutable.dll", 1506 | "ref/netcoreapp2.1/System.Collections.Immutable.xml", 1507 | "ref/netcoreapp2.1/System.Collections.NonGeneric.dll", 1508 | "ref/netcoreapp2.1/System.Collections.NonGeneric.xml", 1509 | "ref/netcoreapp2.1/System.Collections.Specialized.dll", 1510 | "ref/netcoreapp2.1/System.Collections.Specialized.xml", 1511 | "ref/netcoreapp2.1/System.Collections.dll", 1512 | "ref/netcoreapp2.1/System.Collections.xml", 1513 | "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll", 1514 | "ref/netcoreapp2.1/System.ComponentModel.Annotations.xml", 1515 | "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll", 1516 | "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll", 1517 | "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.xml", 1518 | "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll", 1519 | "ref/netcoreapp2.1/System.ComponentModel.Primitives.xml", 1520 | "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll", 1521 | "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.xml", 1522 | "ref/netcoreapp2.1/System.ComponentModel.dll", 1523 | "ref/netcoreapp2.1/System.ComponentModel.xml", 1524 | "ref/netcoreapp2.1/System.Configuration.dll", 1525 | "ref/netcoreapp2.1/System.Console.dll", 1526 | "ref/netcoreapp2.1/System.Console.xml", 1527 | "ref/netcoreapp2.1/System.Core.dll", 1528 | "ref/netcoreapp2.1/System.Data.Common.dll", 1529 | "ref/netcoreapp2.1/System.Data.Common.xml", 1530 | "ref/netcoreapp2.1/System.Data.dll", 1531 | "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll", 1532 | "ref/netcoreapp2.1/System.Diagnostics.Contracts.xml", 1533 | "ref/netcoreapp2.1/System.Diagnostics.Debug.dll", 1534 | "ref/netcoreapp2.1/System.Diagnostics.Debug.xml", 1535 | "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll", 1536 | "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.xml", 1537 | "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll", 1538 | "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.xml", 1539 | "ref/netcoreapp2.1/System.Diagnostics.Process.dll", 1540 | "ref/netcoreapp2.1/System.Diagnostics.Process.xml", 1541 | "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll", 1542 | "ref/netcoreapp2.1/System.Diagnostics.StackTrace.xml", 1543 | "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll", 1544 | "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.xml", 1545 | "ref/netcoreapp2.1/System.Diagnostics.Tools.dll", 1546 | "ref/netcoreapp2.1/System.Diagnostics.Tools.xml", 1547 | "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll", 1548 | "ref/netcoreapp2.1/System.Diagnostics.TraceSource.xml", 1549 | "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll", 1550 | "ref/netcoreapp2.1/System.Diagnostics.Tracing.xml", 1551 | "ref/netcoreapp2.1/System.Drawing.Primitives.dll", 1552 | "ref/netcoreapp2.1/System.Drawing.Primitives.xml", 1553 | "ref/netcoreapp2.1/System.Drawing.dll", 1554 | "ref/netcoreapp2.1/System.Dynamic.Runtime.dll", 1555 | "ref/netcoreapp2.1/System.Globalization.Calendars.dll", 1556 | "ref/netcoreapp2.1/System.Globalization.Extensions.dll", 1557 | "ref/netcoreapp2.1/System.Globalization.dll", 1558 | "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll", 1559 | "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll", 1560 | "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll", 1561 | "ref/netcoreapp2.1/System.IO.Compression.ZipFile.xml", 1562 | "ref/netcoreapp2.1/System.IO.Compression.dll", 1563 | "ref/netcoreapp2.1/System.IO.Compression.xml", 1564 | "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll", 1565 | "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.xml", 1566 | "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll", 1567 | "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll", 1568 | "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.xml", 1569 | "ref/netcoreapp2.1/System.IO.FileSystem.dll", 1570 | "ref/netcoreapp2.1/System.IO.FileSystem.xml", 1571 | "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll", 1572 | "ref/netcoreapp2.1/System.IO.IsolatedStorage.xml", 1573 | "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll", 1574 | "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.xml", 1575 | "ref/netcoreapp2.1/System.IO.Pipes.dll", 1576 | "ref/netcoreapp2.1/System.IO.Pipes.xml", 1577 | "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll", 1578 | "ref/netcoreapp2.1/System.IO.dll", 1579 | "ref/netcoreapp2.1/System.Linq.Expressions.dll", 1580 | "ref/netcoreapp2.1/System.Linq.Expressions.xml", 1581 | "ref/netcoreapp2.1/System.Linq.Parallel.dll", 1582 | "ref/netcoreapp2.1/System.Linq.Parallel.xml", 1583 | "ref/netcoreapp2.1/System.Linq.Queryable.dll", 1584 | "ref/netcoreapp2.1/System.Linq.Queryable.xml", 1585 | "ref/netcoreapp2.1/System.Linq.dll", 1586 | "ref/netcoreapp2.1/System.Linq.xml", 1587 | "ref/netcoreapp2.1/System.Memory.dll", 1588 | "ref/netcoreapp2.1/System.Memory.xml", 1589 | "ref/netcoreapp2.1/System.Net.Http.dll", 1590 | "ref/netcoreapp2.1/System.Net.Http.xml", 1591 | "ref/netcoreapp2.1/System.Net.HttpListener.dll", 1592 | "ref/netcoreapp2.1/System.Net.HttpListener.xml", 1593 | "ref/netcoreapp2.1/System.Net.Mail.dll", 1594 | "ref/netcoreapp2.1/System.Net.Mail.xml", 1595 | "ref/netcoreapp2.1/System.Net.NameResolution.dll", 1596 | "ref/netcoreapp2.1/System.Net.NameResolution.xml", 1597 | "ref/netcoreapp2.1/System.Net.NetworkInformation.dll", 1598 | "ref/netcoreapp2.1/System.Net.NetworkInformation.xml", 1599 | "ref/netcoreapp2.1/System.Net.Ping.dll", 1600 | "ref/netcoreapp2.1/System.Net.Ping.xml", 1601 | "ref/netcoreapp2.1/System.Net.Primitives.dll", 1602 | "ref/netcoreapp2.1/System.Net.Primitives.xml", 1603 | "ref/netcoreapp2.1/System.Net.Requests.dll", 1604 | "ref/netcoreapp2.1/System.Net.Requests.xml", 1605 | "ref/netcoreapp2.1/System.Net.Security.dll", 1606 | "ref/netcoreapp2.1/System.Net.Security.xml", 1607 | "ref/netcoreapp2.1/System.Net.ServicePoint.dll", 1608 | "ref/netcoreapp2.1/System.Net.ServicePoint.xml", 1609 | "ref/netcoreapp2.1/System.Net.Sockets.dll", 1610 | "ref/netcoreapp2.1/System.Net.Sockets.xml", 1611 | "ref/netcoreapp2.1/System.Net.WebClient.dll", 1612 | "ref/netcoreapp2.1/System.Net.WebClient.xml", 1613 | "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll", 1614 | "ref/netcoreapp2.1/System.Net.WebHeaderCollection.xml", 1615 | "ref/netcoreapp2.1/System.Net.WebProxy.dll", 1616 | "ref/netcoreapp2.1/System.Net.WebProxy.xml", 1617 | "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll", 1618 | "ref/netcoreapp2.1/System.Net.WebSockets.Client.xml", 1619 | "ref/netcoreapp2.1/System.Net.WebSockets.dll", 1620 | "ref/netcoreapp2.1/System.Net.WebSockets.xml", 1621 | "ref/netcoreapp2.1/System.Net.dll", 1622 | "ref/netcoreapp2.1/System.Numerics.Vectors.dll", 1623 | "ref/netcoreapp2.1/System.Numerics.Vectors.xml", 1624 | "ref/netcoreapp2.1/System.Numerics.dll", 1625 | "ref/netcoreapp2.1/System.ObjectModel.dll", 1626 | "ref/netcoreapp2.1/System.ObjectModel.xml", 1627 | "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll", 1628 | "ref/netcoreapp2.1/System.Reflection.DispatchProxy.xml", 1629 | "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll", 1630 | "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.xml", 1631 | "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll", 1632 | "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.xml", 1633 | "ref/netcoreapp2.1/System.Reflection.Emit.dll", 1634 | "ref/netcoreapp2.1/System.Reflection.Emit.xml", 1635 | "ref/netcoreapp2.1/System.Reflection.Extensions.dll", 1636 | "ref/netcoreapp2.1/System.Reflection.Metadata.dll", 1637 | "ref/netcoreapp2.1/System.Reflection.Metadata.xml", 1638 | "ref/netcoreapp2.1/System.Reflection.Primitives.dll", 1639 | "ref/netcoreapp2.1/System.Reflection.Primitives.xml", 1640 | "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll", 1641 | "ref/netcoreapp2.1/System.Reflection.TypeExtensions.xml", 1642 | "ref/netcoreapp2.1/System.Reflection.dll", 1643 | "ref/netcoreapp2.1/System.Resources.Reader.dll", 1644 | "ref/netcoreapp2.1/System.Resources.ResourceManager.dll", 1645 | "ref/netcoreapp2.1/System.Resources.ResourceManager.xml", 1646 | "ref/netcoreapp2.1/System.Resources.Writer.dll", 1647 | "ref/netcoreapp2.1/System.Resources.Writer.xml", 1648 | "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll", 1649 | "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.xml", 1650 | "ref/netcoreapp2.1/System.Runtime.Extensions.dll", 1651 | "ref/netcoreapp2.1/System.Runtime.Extensions.xml", 1652 | "ref/netcoreapp2.1/System.Runtime.Handles.dll", 1653 | "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll", 1654 | "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.xml", 1655 | "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll", 1656 | "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.xml", 1657 | "ref/netcoreapp2.1/System.Runtime.InteropServices.dll", 1658 | "ref/netcoreapp2.1/System.Runtime.InteropServices.xml", 1659 | "ref/netcoreapp2.1/System.Runtime.Loader.dll", 1660 | "ref/netcoreapp2.1/System.Runtime.Loader.xml", 1661 | "ref/netcoreapp2.1/System.Runtime.Numerics.dll", 1662 | "ref/netcoreapp2.1/System.Runtime.Numerics.xml", 1663 | "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll", 1664 | "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.xml", 1665 | "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll", 1666 | "ref/netcoreapp2.1/System.Runtime.Serialization.Json.xml", 1667 | "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll", 1668 | "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.xml", 1669 | "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll", 1670 | "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.xml", 1671 | "ref/netcoreapp2.1/System.Runtime.Serialization.dll", 1672 | "ref/netcoreapp2.1/System.Runtime.dll", 1673 | "ref/netcoreapp2.1/System.Runtime.xml", 1674 | "ref/netcoreapp2.1/System.Security.Claims.dll", 1675 | "ref/netcoreapp2.1/System.Security.Claims.xml", 1676 | "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll", 1677 | "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.xml", 1678 | "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll", 1679 | "ref/netcoreapp2.1/System.Security.Cryptography.Csp.xml", 1680 | "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll", 1681 | "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.xml", 1682 | "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll", 1683 | "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.xml", 1684 | "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll", 1685 | "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.xml", 1686 | "ref/netcoreapp2.1/System.Security.Principal.dll", 1687 | "ref/netcoreapp2.1/System.Security.Principal.xml", 1688 | "ref/netcoreapp2.1/System.Security.SecureString.dll", 1689 | "ref/netcoreapp2.1/System.Security.dll", 1690 | "ref/netcoreapp2.1/System.ServiceModel.Web.dll", 1691 | "ref/netcoreapp2.1/System.ServiceProcess.dll", 1692 | "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll", 1693 | "ref/netcoreapp2.1/System.Text.Encoding.Extensions.xml", 1694 | "ref/netcoreapp2.1/System.Text.Encoding.dll", 1695 | "ref/netcoreapp2.1/System.Text.RegularExpressions.dll", 1696 | "ref/netcoreapp2.1/System.Text.RegularExpressions.xml", 1697 | "ref/netcoreapp2.1/System.Threading.Overlapped.dll", 1698 | "ref/netcoreapp2.1/System.Threading.Overlapped.xml", 1699 | "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll", 1700 | "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.xml", 1701 | "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll", 1702 | "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.xml", 1703 | "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll", 1704 | "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.xml", 1705 | "ref/netcoreapp2.1/System.Threading.Tasks.dll", 1706 | "ref/netcoreapp2.1/System.Threading.Tasks.xml", 1707 | "ref/netcoreapp2.1/System.Threading.Thread.dll", 1708 | "ref/netcoreapp2.1/System.Threading.Thread.xml", 1709 | "ref/netcoreapp2.1/System.Threading.ThreadPool.dll", 1710 | "ref/netcoreapp2.1/System.Threading.ThreadPool.xml", 1711 | "ref/netcoreapp2.1/System.Threading.Timer.dll", 1712 | "ref/netcoreapp2.1/System.Threading.Timer.xml", 1713 | "ref/netcoreapp2.1/System.Threading.dll", 1714 | "ref/netcoreapp2.1/System.Threading.xml", 1715 | "ref/netcoreapp2.1/System.Transactions.Local.dll", 1716 | "ref/netcoreapp2.1/System.Transactions.Local.xml", 1717 | "ref/netcoreapp2.1/System.Transactions.dll", 1718 | "ref/netcoreapp2.1/System.ValueTuple.dll", 1719 | "ref/netcoreapp2.1/System.Web.HttpUtility.dll", 1720 | "ref/netcoreapp2.1/System.Web.HttpUtility.xml", 1721 | "ref/netcoreapp2.1/System.Web.dll", 1722 | "ref/netcoreapp2.1/System.Windows.dll", 1723 | "ref/netcoreapp2.1/System.Xml.Linq.dll", 1724 | "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll", 1725 | "ref/netcoreapp2.1/System.Xml.ReaderWriter.xml", 1726 | "ref/netcoreapp2.1/System.Xml.Serialization.dll", 1727 | "ref/netcoreapp2.1/System.Xml.XDocument.dll", 1728 | "ref/netcoreapp2.1/System.Xml.XDocument.xml", 1729 | "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll", 1730 | "ref/netcoreapp2.1/System.Xml.XPath.XDocument.xml", 1731 | "ref/netcoreapp2.1/System.Xml.XPath.dll", 1732 | "ref/netcoreapp2.1/System.Xml.XPath.xml", 1733 | "ref/netcoreapp2.1/System.Xml.XmlDocument.dll", 1734 | "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll", 1735 | "ref/netcoreapp2.1/System.Xml.XmlSerializer.xml", 1736 | "ref/netcoreapp2.1/System.Xml.dll", 1737 | "ref/netcoreapp2.1/System.dll", 1738 | "ref/netcoreapp2.1/WindowsBase.dll", 1739 | "ref/netcoreapp2.1/mscorlib.dll", 1740 | "ref/netcoreapp2.1/netstandard.dll", 1741 | "runtime.json" 1742 | ] 1743 | }, 1744 | "Microsoft.NETCore.DotNetAppHost/2.1.0": { 1745 | "sha512": "f/47I60Wg3SrveTvnecCQhCZCAMYlUujWF15EQ/AZTqF/54qeEJjbCIAxKcZI8ToUYzSg6JdfrHggsgjCyCE9Q==", 1746 | "type": "package", 1747 | "path": "microsoft.netcore.dotnetapphost/2.1.0", 1748 | "files": [ 1749 | ".signature.p7s", 1750 | "LICENSE.TXT", 1751 | "THIRD-PARTY-NOTICES.TXT", 1752 | "microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512", 1753 | "microsoft.netcore.dotnetapphost.nuspec", 1754 | "runtime.json" 1755 | ] 1756 | }, 1757 | "Microsoft.NETCore.DotNetHostPolicy/2.1.0": { 1758 | "sha512": "p50yZYKzhH64lmArJgoKjtvsNehECa+/sAuOQzZh5uDNBTbRKxjN8IXP1e517xdVsgrFcSNxSEVDKZIOWVjGcQ==", 1759 | "type": "package", 1760 | "path": "microsoft.netcore.dotnethostpolicy/2.1.0", 1761 | "files": [ 1762 | ".signature.p7s", 1763 | "LICENSE.TXT", 1764 | "THIRD-PARTY-NOTICES.TXT", 1765 | "microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512", 1766 | "microsoft.netcore.dotnethostpolicy.nuspec", 1767 | "runtime.json" 1768 | ] 1769 | }, 1770 | "Microsoft.NETCore.DotNetHostResolver/2.1.0": { 1771 | "sha512": "fS9D8a+y55n6mHMbNqgHXaPGkjmpVH9h97OyrBxsCuo3Z8aQaFMJ5xIfmzji2ntUd/3truhMbSgSfIelHOkQpg==", 1772 | "type": "package", 1773 | "path": "microsoft.netcore.dotnethostresolver/2.1.0", 1774 | "files": [ 1775 | ".signature.p7s", 1776 | "LICENSE.TXT", 1777 | "THIRD-PARTY-NOTICES.TXT", 1778 | "microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512", 1779 | "microsoft.netcore.dotnethostresolver.nuspec", 1780 | "runtime.json" 1781 | ] 1782 | }, 1783 | "Microsoft.NETCore.Platforms/2.1.0": { 1784 | "sha512": "TT+QCi9LcxGTjBssH7S7n5+8DVcwfG4DYgXX7Dk7+BfZ4oVHj8Q0CbYk9glzAlHLsSt3bYzol+fOdra2iu6GOw==", 1785 | "type": "package", 1786 | "path": "microsoft.netcore.platforms/2.1.0", 1787 | "files": [ 1788 | ".signature.p7s", 1789 | "LICENSE.TXT", 1790 | "THIRD-PARTY-NOTICES.TXT", 1791 | "lib/netstandard1.0/_._", 1792 | "microsoft.netcore.platforms.2.1.0.nupkg.sha512", 1793 | "microsoft.netcore.platforms.nuspec", 1794 | "runtime.json", 1795 | "useSharedDesignerContext.txt", 1796 | "version.txt" 1797 | ] 1798 | }, 1799 | "Microsoft.NETCore.Targets/2.1.0": { 1800 | "sha512": "etaYwrLZQUS+b3UWTpCnUggd6SQ/ZIkZ5pHnoR7+dIWt/wp2Rv3CvMKOZISsrt7FYCHKwCxfcepuuyEWkQxADg==", 1801 | "type": "package", 1802 | "path": "microsoft.netcore.targets/2.1.0", 1803 | "files": [ 1804 | ".signature.p7s", 1805 | "LICENSE.TXT", 1806 | "THIRD-PARTY-NOTICES.TXT", 1807 | "lib/netstandard1.0/_._", 1808 | "microsoft.netcore.targets.2.1.0.nupkg.sha512", 1809 | "microsoft.netcore.targets.nuspec", 1810 | "runtime.json", 1811 | "useSharedDesignerContext.txt", 1812 | "version.txt" 1813 | ] 1814 | }, 1815 | "NETStandard.Library/2.0.3": { 1816 | "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", 1817 | "type": "package", 1818 | "path": "netstandard.library/2.0.3", 1819 | "files": [ 1820 | "LICENSE.TXT", 1821 | "THIRD-PARTY-NOTICES.TXT", 1822 | "build/netstandard2.0/NETStandard.Library.targets", 1823 | "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", 1824 | "build/netstandard2.0/ref/System.AppContext.dll", 1825 | "build/netstandard2.0/ref/System.Collections.Concurrent.dll", 1826 | "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", 1827 | "build/netstandard2.0/ref/System.Collections.Specialized.dll", 1828 | "build/netstandard2.0/ref/System.Collections.dll", 1829 | "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", 1830 | "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", 1831 | "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", 1832 | "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", 1833 | "build/netstandard2.0/ref/System.ComponentModel.dll", 1834 | "build/netstandard2.0/ref/System.Console.dll", 1835 | "build/netstandard2.0/ref/System.Core.dll", 1836 | "build/netstandard2.0/ref/System.Data.Common.dll", 1837 | "build/netstandard2.0/ref/System.Data.dll", 1838 | "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", 1839 | "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", 1840 | "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", 1841 | "build/netstandard2.0/ref/System.Diagnostics.Process.dll", 1842 | "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", 1843 | "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", 1844 | "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", 1845 | "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", 1846 | "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", 1847 | "build/netstandard2.0/ref/System.Drawing.Primitives.dll", 1848 | "build/netstandard2.0/ref/System.Drawing.dll", 1849 | "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", 1850 | "build/netstandard2.0/ref/System.Globalization.Calendars.dll", 1851 | "build/netstandard2.0/ref/System.Globalization.Extensions.dll", 1852 | "build/netstandard2.0/ref/System.Globalization.dll", 1853 | "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", 1854 | "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", 1855 | "build/netstandard2.0/ref/System.IO.Compression.dll", 1856 | "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", 1857 | "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", 1858 | "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", 1859 | "build/netstandard2.0/ref/System.IO.FileSystem.dll", 1860 | "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", 1861 | "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", 1862 | "build/netstandard2.0/ref/System.IO.Pipes.dll", 1863 | "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", 1864 | "build/netstandard2.0/ref/System.IO.dll", 1865 | "build/netstandard2.0/ref/System.Linq.Expressions.dll", 1866 | "build/netstandard2.0/ref/System.Linq.Parallel.dll", 1867 | "build/netstandard2.0/ref/System.Linq.Queryable.dll", 1868 | "build/netstandard2.0/ref/System.Linq.dll", 1869 | "build/netstandard2.0/ref/System.Net.Http.dll", 1870 | "build/netstandard2.0/ref/System.Net.NameResolution.dll", 1871 | "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", 1872 | "build/netstandard2.0/ref/System.Net.Ping.dll", 1873 | "build/netstandard2.0/ref/System.Net.Primitives.dll", 1874 | "build/netstandard2.0/ref/System.Net.Requests.dll", 1875 | "build/netstandard2.0/ref/System.Net.Security.dll", 1876 | "build/netstandard2.0/ref/System.Net.Sockets.dll", 1877 | "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", 1878 | "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", 1879 | "build/netstandard2.0/ref/System.Net.WebSockets.dll", 1880 | "build/netstandard2.0/ref/System.Net.dll", 1881 | "build/netstandard2.0/ref/System.Numerics.dll", 1882 | "build/netstandard2.0/ref/System.ObjectModel.dll", 1883 | "build/netstandard2.0/ref/System.Reflection.Extensions.dll", 1884 | "build/netstandard2.0/ref/System.Reflection.Primitives.dll", 1885 | "build/netstandard2.0/ref/System.Reflection.dll", 1886 | "build/netstandard2.0/ref/System.Resources.Reader.dll", 1887 | "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", 1888 | "build/netstandard2.0/ref/System.Resources.Writer.dll", 1889 | "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", 1890 | "build/netstandard2.0/ref/System.Runtime.Extensions.dll", 1891 | "build/netstandard2.0/ref/System.Runtime.Handles.dll", 1892 | "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", 1893 | "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", 1894 | "build/netstandard2.0/ref/System.Runtime.Numerics.dll", 1895 | "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", 1896 | "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", 1897 | "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", 1898 | "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", 1899 | "build/netstandard2.0/ref/System.Runtime.Serialization.dll", 1900 | "build/netstandard2.0/ref/System.Runtime.dll", 1901 | "build/netstandard2.0/ref/System.Security.Claims.dll", 1902 | "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", 1903 | "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", 1904 | "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", 1905 | "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", 1906 | "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", 1907 | "build/netstandard2.0/ref/System.Security.Principal.dll", 1908 | "build/netstandard2.0/ref/System.Security.SecureString.dll", 1909 | "build/netstandard2.0/ref/System.ServiceModel.Web.dll", 1910 | "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", 1911 | "build/netstandard2.0/ref/System.Text.Encoding.dll", 1912 | "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", 1913 | "build/netstandard2.0/ref/System.Threading.Overlapped.dll", 1914 | "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", 1915 | "build/netstandard2.0/ref/System.Threading.Tasks.dll", 1916 | "build/netstandard2.0/ref/System.Threading.Thread.dll", 1917 | "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", 1918 | "build/netstandard2.0/ref/System.Threading.Timer.dll", 1919 | "build/netstandard2.0/ref/System.Threading.dll", 1920 | "build/netstandard2.0/ref/System.Transactions.dll", 1921 | "build/netstandard2.0/ref/System.ValueTuple.dll", 1922 | "build/netstandard2.0/ref/System.Web.dll", 1923 | "build/netstandard2.0/ref/System.Windows.dll", 1924 | "build/netstandard2.0/ref/System.Xml.Linq.dll", 1925 | "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", 1926 | "build/netstandard2.0/ref/System.Xml.Serialization.dll", 1927 | "build/netstandard2.0/ref/System.Xml.XDocument.dll", 1928 | "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", 1929 | "build/netstandard2.0/ref/System.Xml.XPath.dll", 1930 | "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", 1931 | "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", 1932 | "build/netstandard2.0/ref/System.Xml.dll", 1933 | "build/netstandard2.0/ref/System.dll", 1934 | "build/netstandard2.0/ref/mscorlib.dll", 1935 | "build/netstandard2.0/ref/netstandard.dll", 1936 | "build/netstandard2.0/ref/netstandard.xml", 1937 | "lib/netstandard1.0/_._", 1938 | "netstandard.library.2.0.3.nupkg.sha512", 1939 | "netstandard.library.nuspec" 1940 | ] 1941 | }, 1942 | "Newtonsoft.Json/11.0.2": { 1943 | "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==", 1944 | "type": "package", 1945 | "path": "newtonsoft.json/11.0.2", 1946 | "files": [ 1947 | "LICENSE.md", 1948 | "lib/net20/Newtonsoft.Json.dll", 1949 | "lib/net20/Newtonsoft.Json.xml", 1950 | "lib/net35/Newtonsoft.Json.dll", 1951 | "lib/net35/Newtonsoft.Json.xml", 1952 | "lib/net40/Newtonsoft.Json.dll", 1953 | "lib/net40/Newtonsoft.Json.xml", 1954 | "lib/net45/Newtonsoft.Json.dll", 1955 | "lib/net45/Newtonsoft.Json.xml", 1956 | "lib/netstandard1.0/Newtonsoft.Json.dll", 1957 | "lib/netstandard1.0/Newtonsoft.Json.xml", 1958 | "lib/netstandard1.3/Newtonsoft.Json.dll", 1959 | "lib/netstandard1.3/Newtonsoft.Json.xml", 1960 | "lib/netstandard2.0/Newtonsoft.Json.dll", 1961 | "lib/netstandard2.0/Newtonsoft.Json.xml", 1962 | "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", 1963 | "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", 1964 | "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", 1965 | "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", 1966 | "newtonsoft.json.11.0.2.nupkg.sha512", 1967 | "newtonsoft.json.nuspec" 1968 | ] 1969 | }, 1970 | "System.Memory/4.5.1": { 1971 | "sha512": "vcG3/MbfpxznMkkkaAblJi7RHOmuP7kawQMhDgLSuA1tRpRQYsFSCTxRSINDUgn2QNn2jWeLxv8er5BXbyACkw==", 1972 | "type": "package", 1973 | "path": "system.memory/4.5.1", 1974 | "files": [ 1975 | ".signature.p7s", 1976 | "LICENSE.TXT", 1977 | "THIRD-PARTY-NOTICES.TXT", 1978 | "lib/netcoreapp2.1/_._", 1979 | "lib/netstandard1.1/System.Memory.dll", 1980 | "lib/netstandard1.1/System.Memory.xml", 1981 | "lib/netstandard2.0/System.Memory.dll", 1982 | "lib/netstandard2.0/System.Memory.xml", 1983 | "ref/netcoreapp2.1/_._", 1984 | "ref/netstandard1.1/System.Memory.dll", 1985 | "ref/netstandard1.1/System.Memory.xml", 1986 | "ref/netstandard2.0/System.Memory.dll", 1987 | "ref/netstandard2.0/System.Memory.xml", 1988 | "system.memory.4.5.1.nupkg.sha512", 1989 | "system.memory.nuspec", 1990 | "useSharedDesignerContext.txt", 1991 | "version.txt" 1992 | ] 1993 | }, 1994 | "System.Runtime.CompilerServices.Unsafe/4.5.1": { 1995 | "sha512": "qUJMNWhbm9oZ3XaMFiEMiYmRPszbnXIkRIi7+4b2Md2xZ6JUOepf0/kY3S85qistRohl9OdMe4PsO+RdG2kTIQ==", 1996 | "type": "package", 1997 | "path": "system.runtime.compilerservices.unsafe/4.5.1", 1998 | "files": [ 1999 | ".signature.p7s", 2000 | "LICENSE.TXT", 2001 | "THIRD-PARTY-NOTICES.TXT", 2002 | "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", 2003 | "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", 2004 | "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", 2005 | "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", 2006 | "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", 2007 | "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", 2008 | "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", 2009 | "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", 2010 | "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", 2011 | "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", 2012 | "system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512", 2013 | "system.runtime.compilerservices.unsafe.nuspec", 2014 | "useSharedDesignerContext.txt", 2015 | "version.txt" 2016 | ] 2017 | } 2018 | }, 2019 | "projectFileDependencyGroups": { 2020 | ".NETCoreApp,Version=v2.1": [ 2021 | "Microsoft.Extensions.Configuration >= 2.1.1", 2022 | "Microsoft.Extensions.Configuration.Json >= 2.1.1", 2023 | "Microsoft.NETCore.App >= 2.1.0" 2024 | ] 2025 | }, 2026 | "packageFolders": { 2027 | "D:\\.nuget\\packages\\": {}, 2028 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} 2029 | }, 2030 | "project": { 2031 | "version": "1.0.0", 2032 | "restore": { 2033 | "projectUniqueName": "D:\\Development\\siglent\\FindKeys\\FindKeys.csproj", 2034 | "projectName": "FindKeys", 2035 | "projectPath": "D:\\Development\\siglent\\FindKeys\\FindKeys.csproj", 2036 | "packagesPath": "D:\\.nuget\\packages\\", 2037 | "outputPath": "D:\\Development\\siglent\\FindKeys\\obj\\", 2038 | "projectStyle": "PackageReference", 2039 | "fallbackFolders": [ 2040 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 2041 | ], 2042 | "configFilePaths": [ 2043 | "D:\\AppData\\Roaming\\NuGet\\NuGet.Config", 2044 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 2045 | ], 2046 | "originalTargetFrameworks": [ 2047 | "netcoreapp2.1" 2048 | ], 2049 | "sources": { 2050 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 2051 | "https://api.nuget.org/v3/index.json": {} 2052 | }, 2053 | "frameworks": { 2054 | "netcoreapp2.1": { 2055 | "projectReferences": {} 2056 | } 2057 | }, 2058 | "warningProperties": { 2059 | "warnAsError": [ 2060 | "NU1605" 2061 | ] 2062 | } 2063 | }, 2064 | "frameworks": { 2065 | "netcoreapp2.1": { 2066 | "dependencies": { 2067 | "Microsoft.Extensions.Configuration": { 2068 | "target": "Package", 2069 | "version": "[2.1.1, )" 2070 | }, 2071 | "Microsoft.Extensions.Configuration.Json": { 2072 | "target": "Package", 2073 | "version": "[2.1.1, )" 2074 | }, 2075 | "Microsoft.NETCore.App": { 2076 | "target": "Package", 2077 | "version": "[2.1.0, )", 2078 | "autoReferenced": true 2079 | } 2080 | }, 2081 | "imports": [ 2082 | "net461" 2083 | ], 2084 | "assetTargetFallback": true, 2085 | "warn": true 2086 | } 2087 | } 2088 | } 2089 | } --------------------------------------------------------------------------------