Model.deps.json 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v7.0/win-x64",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v7.0": {},
  9. ".NETCoreApp,Version=v7.0/win-x64": {
  10. "Model/1.0.0": {
  11. "dependencies": {
  12. "Core": "1.0.0",
  13. "Loader": "1.0.0",
  14. "SuperSocket.ClientEngine": "0.10.0",
  15. "SuperSocket.ProtoBase": "1.7.0.17",
  16. "ThirdParty": "1.0.0",
  17. "Core.Reference": "1.0.0.0",
  18. "Ice": "3.6.4.0",
  19. "Loader.Reference": "1.0.0.0",
  20. "ThirdParty.Reference": "1.0.0.0"
  21. },
  22. "runtime": {
  23. "Model.dll": {}
  24. }
  25. },
  26. "CommandLineParser/2.9.1": {
  27. "runtime": {
  28. "lib/netstandard2.0/CommandLine.dll": {
  29. "assemblyVersion": "2.9.1.0",
  30. "fileVersion": "2.9.1.0"
  31. }
  32. }
  33. },
  34. "DnsClient/1.6.1": {
  35. "dependencies": {
  36. "Microsoft.Win32.Registry": "5.0.0"
  37. },
  38. "runtime": {
  39. "lib/net5.0/DnsClient.dll": {
  40. "assemblyVersion": "1.6.1.0",
  41. "fileVersion": "1.6.1.0"
  42. }
  43. }
  44. },
  45. "EPPlus/6.2.6": {
  46. "dependencies": {
  47. "EPPlus.Interfaces": "6.1.1",
  48. "EPPlus.System.Drawing": "6.1.1",
  49. "Microsoft.Extensions.Configuration.Json": "7.0.0",
  50. "Microsoft.IO.RecyclableMemoryStream": "2.2.1",
  51. "System.Security.Cryptography.Pkcs": "7.0.2",
  52. "System.Text.Encoding.CodePages": "7.0.0"
  53. },
  54. "runtime": {
  55. "lib/net7.0/EPPlus.dll": {
  56. "assemblyVersion": "6.2.6.0",
  57. "fileVersion": "6.2.6.0"
  58. }
  59. }
  60. },
  61. "EPPlus.Interfaces/6.1.1": {
  62. "runtime": {
  63. "lib/net7.0/EPPlus.Interfaces.dll": {
  64. "assemblyVersion": "6.1.1.0",
  65. "fileVersion": "6.1.1.0"
  66. }
  67. }
  68. },
  69. "EPPlus.System.Drawing/6.1.1": {
  70. "dependencies": {
  71. "EPPlus.Interfaces": "6.1.1",
  72. "System.Drawing.Common": "7.0.0"
  73. },
  74. "runtime": {
  75. "lib/net7.0/EPPlus.System.Drawing.dll": {
  76. "assemblyVersion": "6.1.1.0",
  77. "fileVersion": "6.1.1.0"
  78. }
  79. }
  80. },
  81. "Microsoft.CodeAnalysis.Analyzers/3.3.2": {},
  82. "Microsoft.CodeAnalysis.Common/4.0.1": {
  83. "dependencies": {
  84. "Microsoft.CodeAnalysis.Analyzers": "3.3.2",
  85. "System.Collections.Immutable": "5.0.0",
  86. "System.Memory": "4.5.4",
  87. "System.Reflection.Metadata": "5.0.0",
  88. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  89. "System.Text.Encoding.CodePages": "7.0.0",
  90. "System.Threading.Tasks.Extensions": "4.5.4"
  91. },
  92. "runtime": {
  93. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  94. "assemblyVersion": "4.0.0.0",
  95. "fileVersion": "4.0.121.55815"
  96. }
  97. }
  98. },
  99. "Microsoft.CodeAnalysis.CSharp/4.0.1": {
  100. "dependencies": {
  101. "Microsoft.CodeAnalysis.Common": "4.0.1"
  102. },
  103. "runtime": {
  104. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  105. "assemblyVersion": "4.0.0.0",
  106. "fileVersion": "4.0.121.55815"
  107. }
  108. }
  109. },
  110. "Microsoft.Extensions.Configuration/7.0.0": {
  111. "dependencies": {
  112. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
  113. "Microsoft.Extensions.Primitives": "7.0.0"
  114. },
  115. "runtime": {
  116. "lib/net7.0/Microsoft.Extensions.Configuration.dll": {
  117. "assemblyVersion": "7.0.0.0",
  118. "fileVersion": "7.0.22.51805"
  119. }
  120. }
  121. },
  122. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  123. "dependencies": {
  124. "Microsoft.Extensions.Primitives": "7.0.0"
  125. },
  126. "runtime": {
  127. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  128. "assemblyVersion": "7.0.0.0",
  129. "fileVersion": "7.0.22.51805"
  130. }
  131. }
  132. },
  133. "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": {
  134. "dependencies": {
  135. "Microsoft.Extensions.Configuration": "7.0.0",
  136. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
  137. "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0",
  138. "Microsoft.Extensions.FileProviders.Physical": "7.0.0",
  139. "Microsoft.Extensions.Primitives": "7.0.0"
  140. },
  141. "runtime": {
  142. "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  143. "assemblyVersion": "7.0.0.0",
  144. "fileVersion": "7.0.22.51805"
  145. }
  146. }
  147. },
  148. "Microsoft.Extensions.Configuration.Json/7.0.0": {
  149. "dependencies": {
  150. "Microsoft.Extensions.Configuration": "7.0.0",
  151. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
  152. "Microsoft.Extensions.Configuration.FileExtensions": "7.0.0",
  153. "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0",
  154. "System.Text.Json": "7.0.0"
  155. },
  156. "runtime": {
  157. "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll": {
  158. "assemblyVersion": "7.0.0.0",
  159. "fileVersion": "7.0.22.51805"
  160. }
  161. }
  162. },
  163. "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": {
  164. "dependencies": {
  165. "Microsoft.Extensions.Primitives": "7.0.0"
  166. },
  167. "runtime": {
  168. "lib/net7.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  169. "assemblyVersion": "7.0.0.0",
  170. "fileVersion": "7.0.22.51805"
  171. }
  172. }
  173. },
  174. "Microsoft.Extensions.FileProviders.Physical/7.0.0": {
  175. "dependencies": {
  176. "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0",
  177. "Microsoft.Extensions.FileSystemGlobbing": "7.0.0",
  178. "Microsoft.Extensions.Primitives": "7.0.0"
  179. },
  180. "runtime": {
  181. "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  182. "assemblyVersion": "7.0.0.0",
  183. "fileVersion": "7.0.22.51805"
  184. }
  185. }
  186. },
  187. "Microsoft.Extensions.FileSystemGlobbing/7.0.0": {
  188. "runtime": {
  189. "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  190. "assemblyVersion": "7.0.0.0",
  191. "fileVersion": "7.0.22.51805"
  192. }
  193. }
  194. },
  195. "Microsoft.Extensions.Primitives/7.0.0": {
  196. "runtime": {
  197. "lib/net7.0/Microsoft.Extensions.Primitives.dll": {
  198. "assemblyVersion": "7.0.0.0",
  199. "fileVersion": "7.0.22.51805"
  200. }
  201. }
  202. },
  203. "Microsoft.IO.RecyclableMemoryStream/2.2.1": {
  204. "runtime": {
  205. "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll": {
  206. "assemblyVersion": "2.2.1.0",
  207. "fileVersion": "2.2.1.0"
  208. }
  209. }
  210. },
  211. "Microsoft.NETCore.Platforms/5.0.0": {},
  212. "Microsoft.NETCore.Targets/1.1.0": {},
  213. "Microsoft.Win32.Primitives/4.3.0": {
  214. "dependencies": {
  215. "Microsoft.NETCore.Platforms": "5.0.0",
  216. "Microsoft.NETCore.Targets": "1.1.0",
  217. "System.Runtime": "4.3.0",
  218. "runtime.win.Microsoft.Win32.Primitives": "4.3.0"
  219. }
  220. },
  221. "Microsoft.Win32.Registry/5.0.0": {
  222. "dependencies": {
  223. "System.Security.AccessControl": "5.0.0",
  224. "System.Security.Principal.Windows": "5.0.0"
  225. }
  226. },
  227. "Microsoft.Win32.SystemEvents/7.0.0": {
  228. "runtime": {
  229. "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
  230. "assemblyVersion": "7.0.0.0",
  231. "fileVersion": "7.0.22.51805"
  232. }
  233. }
  234. },
  235. "MongoDB.Bson/2.17.1": {
  236. "dependencies": {
  237. "System.Runtime.CompilerServices.Unsafe": "5.0.0"
  238. },
  239. "runtime": {
  240. "lib/netstandard2.1/MongoDB.Bson.dll": {
  241. "assemblyVersion": "2.17.1.0",
  242. "fileVersion": "2.17.1.0"
  243. }
  244. }
  245. },
  246. "MongoDB.Driver/2.17.1": {
  247. "dependencies": {
  248. "MongoDB.Bson": "2.17.1",
  249. "MongoDB.Driver.Core": "2.17.1",
  250. "MongoDB.Libmongocrypt": "1.5.5"
  251. },
  252. "runtime": {
  253. "lib/netstandard2.1/MongoDB.Driver.dll": {
  254. "assemblyVersion": "2.17.1.0",
  255. "fileVersion": "2.17.1.0"
  256. }
  257. }
  258. },
  259. "MongoDB.Driver.Core/2.17.1": {
  260. "dependencies": {
  261. "DnsClient": "1.6.1",
  262. "MongoDB.Bson": "2.17.1",
  263. "MongoDB.Libmongocrypt": "1.5.5",
  264. "SharpCompress": "0.30.1",
  265. "System.Buffers": "4.5.1"
  266. },
  267. "runtime": {
  268. "lib/netstandard2.1/MongoDB.Driver.Core.dll": {
  269. "assemblyVersion": "2.17.1.0",
  270. "fileVersion": "2.17.1.0"
  271. }
  272. },
  273. "native": {
  274. "runtimes/win/native/libzstd.dll": {
  275. "fileVersion": "0.0.0.0"
  276. },
  277. "runtimes/win/native/snappy32.dll": {
  278. "fileVersion": "1.1.1.7"
  279. },
  280. "runtimes/win/native/snappy64.dll": {
  281. "fileVersion": "1.1.1.7"
  282. }
  283. }
  284. },
  285. "MongoDB.Libmongocrypt/1.5.5": {
  286. "runtime": {
  287. "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {
  288. "assemblyVersion": "1.5.5.0",
  289. "fileVersion": "1.5.5.0"
  290. }
  291. },
  292. "native": {
  293. "runtimes/win/native/mongocrypt.dll": {
  294. "fileVersion": "0.0.0.0"
  295. }
  296. }
  297. },
  298. "Newtonsoft.Json/13.0.3": {
  299. "runtime": {
  300. "lib/net6.0/Newtonsoft.Json.dll": {
  301. "assemblyVersion": "13.0.0.0",
  302. "fileVersion": "13.0.3.27908"
  303. }
  304. }
  305. },
  306. "NLog/5.2.2": {
  307. "runtime": {
  308. "lib/netstandard2.0/NLog.dll": {
  309. "assemblyVersion": "5.0.0.0",
  310. "fileVersion": "5.2.2.1914"
  311. }
  312. }
  313. },
  314. "protobuf-net/2.4.8": {
  315. "dependencies": {
  316. "System.ServiceModel.Primitives": "4.5.3"
  317. },
  318. "runtime": {
  319. "lib/netcoreapp3.1/protobuf-net.dll": {
  320. "assemblyVersion": "2.4.0.0",
  321. "fileVersion": "2.4.8.1"
  322. }
  323. }
  324. },
  325. "runtime.any.System.Collections/4.3.0": {
  326. "dependencies": {
  327. "System.Runtime": "4.3.0"
  328. }
  329. },
  330. "runtime.any.System.Diagnostics.Tracing/4.3.0": {},
  331. "runtime.any.System.Globalization/4.3.0": {},
  332. "runtime.any.System.Globalization.Calendars/4.3.0": {},
  333. "runtime.any.System.IO/4.3.0": {},
  334. "runtime.any.System.Reflection/4.3.0": {},
  335. "runtime.any.System.Reflection.Primitives/4.3.0": {},
  336. "runtime.any.System.Resources.ResourceManager/4.3.0": {},
  337. "runtime.any.System.Runtime/4.3.0": {
  338. "dependencies": {
  339. "System.Private.Uri": "4.3.0"
  340. }
  341. },
  342. "runtime.any.System.Runtime.Handles/4.3.0": {},
  343. "runtime.any.System.Runtime.InteropServices/4.3.0": {},
  344. "runtime.any.System.Text.Encoding/4.3.0": {},
  345. "runtime.any.System.Text.Encoding.Extensions/4.3.0": {},
  346. "runtime.any.System.Threading.Tasks/4.3.0": {},
  347. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  348. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  349. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  350. "runtime.native.System/4.3.0": {
  351. "dependencies": {
  352. "Microsoft.NETCore.Platforms": "5.0.0",
  353. "Microsoft.NETCore.Targets": "1.1.0"
  354. }
  355. },
  356. "runtime.native.System.Net.Http/4.3.0": {
  357. "dependencies": {
  358. "Microsoft.NETCore.Platforms": "5.0.0",
  359. "Microsoft.NETCore.Targets": "1.1.0"
  360. }
  361. },
  362. "runtime.native.System.Net.Security/4.3.0": {
  363. "dependencies": {
  364. "Microsoft.NETCore.Platforms": "5.0.0",
  365. "Microsoft.NETCore.Targets": "1.1.0"
  366. }
  367. },
  368. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  369. "dependencies": {
  370. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  371. }
  372. },
  373. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  374. "dependencies": {
  375. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  376. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  377. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  378. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  379. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  380. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  381. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  382. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  383. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  384. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  385. }
  386. },
  387. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  388. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  389. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
  390. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  391. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  392. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  393. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  394. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  395. "runtime.win.Microsoft.Win32.Primitives/4.3.0": {
  396. "dependencies": {
  397. "System.Runtime": "4.3.0",
  398. "System.Runtime.InteropServices": "4.3.0"
  399. }
  400. },
  401. "runtime.win.System.Diagnostics.Debug/4.3.0": {},
  402. "runtime.win.System.IO.FileSystem/4.3.0": {
  403. "dependencies": {
  404. "System.Buffers": "4.5.1",
  405. "System.Collections": "4.3.0",
  406. "System.Diagnostics.Debug": "4.3.0",
  407. "System.IO": "4.3.0",
  408. "System.IO.FileSystem.Primitives": "4.3.0",
  409. "System.Resources.ResourceManager": "4.3.0",
  410. "System.Runtime": "4.3.0",
  411. "System.Runtime.Extensions": "4.3.0",
  412. "System.Runtime.Handles": "4.3.0",
  413. "System.Runtime.InteropServices": "4.3.0",
  414. "System.Text.Encoding": "4.3.0",
  415. "System.Text.Encoding.Extensions": "4.3.0",
  416. "System.Threading": "4.3.0",
  417. "System.Threading.Overlapped": "4.3.0",
  418. "System.Threading.Tasks": "4.3.0"
  419. }
  420. },
  421. "runtime.win.System.Net.Primitives/4.3.0": {
  422. "dependencies": {
  423. "Microsoft.Win32.Primitives": "4.3.0",
  424. "System.Collections": "4.3.0",
  425. "System.Diagnostics.Tracing": "4.3.0",
  426. "System.Globalization": "4.3.0",
  427. "System.Resources.ResourceManager": "4.3.0",
  428. "System.Runtime": "4.3.0",
  429. "System.Runtime.Extensions": "4.3.0",
  430. "System.Runtime.Handles": "4.3.0",
  431. "System.Runtime.InteropServices": "4.3.0",
  432. "System.Threading": "4.3.0"
  433. }
  434. },
  435. "runtime.win.System.Net.Sockets/4.3.0": {
  436. "dependencies": {
  437. "System.Collections": "4.3.0",
  438. "System.Diagnostics.Debug": "4.3.0",
  439. "System.Diagnostics.Tracing": "4.3.0",
  440. "System.Globalization": "4.3.0",
  441. "System.IO": "4.3.0",
  442. "System.IO.FileSystem": "4.3.0",
  443. "System.IO.FileSystem.Primitives": "4.3.0",
  444. "System.Net.NameResolution": "4.3.0",
  445. "System.Net.Primitives": "4.3.0",
  446. "System.Resources.ResourceManager": "4.3.0",
  447. "System.Runtime": "4.3.0",
  448. "System.Runtime.Extensions": "4.3.0",
  449. "System.Runtime.Handles": "4.3.0",
  450. "System.Runtime.InteropServices": "4.3.0",
  451. "System.Security.Principal.Windows": "5.0.0",
  452. "System.Threading": "4.3.0",
  453. "System.Threading.Overlapped": "4.3.0",
  454. "System.Threading.Tasks": "4.3.0"
  455. }
  456. },
  457. "runtime.win.System.Runtime.Extensions/4.3.0": {
  458. "dependencies": {
  459. "System.Private.Uri": "4.3.0"
  460. }
  461. },
  462. "SharpCompress/0.30.1": {
  463. "runtime": {
  464. "lib/net5.0/SharpCompress.dll": {
  465. "assemblyVersion": "0.30.1.0",
  466. "fileVersion": "0.30.1.0"
  467. }
  468. }
  469. },
  470. "SharpZipLib/1.4.2": {
  471. "runtime": {
  472. "lib/net6.0/ICSharpCode.SharpZipLib.dll": {
  473. "assemblyVersion": "1.4.2.13",
  474. "fileVersion": "1.4.2.13"
  475. }
  476. }
  477. },
  478. "SuperSocket.ClientEngine/0.10.0": {
  479. "dependencies": {
  480. "System.Collections.Specialized": "4.3.0",
  481. "System.Linq": "4.3.0",
  482. "System.Net.NameResolution": "4.3.0",
  483. "System.Net.Security": "4.3.0",
  484. "System.Net.Sockets": "4.3.0",
  485. "System.Runtime.Extensions": "4.3.0",
  486. "System.Runtime.InteropServices": "4.3.0",
  487. "System.Security.Cryptography.X509Certificates": "4.3.0"
  488. },
  489. "runtime": {
  490. "lib/netstandard1.3/SuperSocket.ClientEngine.dll": {
  491. "assemblyVersion": "0.10.0.0",
  492. "fileVersion": "0.10.0.0"
  493. }
  494. }
  495. },
  496. "SuperSocket.ProtoBase/1.7.0.17": {
  497. "dependencies": {
  498. "System.IO": "4.3.0",
  499. "System.Linq": "4.3.0",
  500. "System.Runtime.Extensions": "4.3.0",
  501. "System.Text.Encoding": "4.3.0",
  502. "System.Threading": "4.3.0"
  503. },
  504. "runtime": {
  505. "lib/netstandard1.1/SuperSocket.ProtoBase.dll": {
  506. "assemblyVersion": "1.7.0.17",
  507. "fileVersion": "1.7.0.17"
  508. }
  509. }
  510. },
  511. "System.Buffers/4.5.1": {},
  512. "System.Collections/4.3.0": {
  513. "dependencies": {
  514. "Microsoft.NETCore.Platforms": "5.0.0",
  515. "Microsoft.NETCore.Targets": "1.1.0",
  516. "System.Runtime": "4.3.0",
  517. "runtime.any.System.Collections": "4.3.0"
  518. }
  519. },
  520. "System.Collections.Concurrent/4.3.0": {
  521. "dependencies": {
  522. "System.Collections": "4.3.0",
  523. "System.Diagnostics.Debug": "4.3.0",
  524. "System.Diagnostics.Tracing": "4.3.0",
  525. "System.Globalization": "4.3.0",
  526. "System.Reflection": "4.3.0",
  527. "System.Resources.ResourceManager": "4.3.0",
  528. "System.Runtime": "4.3.0",
  529. "System.Runtime.Extensions": "4.3.0",
  530. "System.Threading": "4.3.0",
  531. "System.Threading.Tasks": "4.3.0"
  532. }
  533. },
  534. "System.Collections.Immutable/5.0.0": {},
  535. "System.Collections.NonGeneric/4.3.0": {
  536. "dependencies": {
  537. "System.Diagnostics.Debug": "4.3.0",
  538. "System.Globalization": "4.3.0",
  539. "System.Resources.ResourceManager": "4.3.0",
  540. "System.Runtime": "4.3.0",
  541. "System.Runtime.Extensions": "4.3.0",
  542. "System.Threading": "4.3.0"
  543. }
  544. },
  545. "System.Collections.Specialized/4.3.0": {
  546. "dependencies": {
  547. "System.Collections.NonGeneric": "4.3.0",
  548. "System.Globalization": "4.3.0",
  549. "System.Globalization.Extensions": "4.3.0",
  550. "System.Resources.ResourceManager": "4.3.0",
  551. "System.Runtime": "4.3.0",
  552. "System.Runtime.Extensions": "4.3.0",
  553. "System.Threading": "4.3.0"
  554. }
  555. },
  556. "System.Diagnostics.Debug/4.3.0": {
  557. "dependencies": {
  558. "Microsoft.NETCore.Platforms": "5.0.0",
  559. "Microsoft.NETCore.Targets": "1.1.0",
  560. "System.Runtime": "4.3.0",
  561. "runtime.win.System.Diagnostics.Debug": "4.3.0"
  562. }
  563. },
  564. "System.Diagnostics.Tracing/4.3.0": {
  565. "dependencies": {
  566. "Microsoft.NETCore.Platforms": "5.0.0",
  567. "Microsoft.NETCore.Targets": "1.1.0",
  568. "System.Runtime": "4.3.0",
  569. "runtime.any.System.Diagnostics.Tracing": "4.3.0"
  570. }
  571. },
  572. "System.Drawing.Common/7.0.0": {
  573. "dependencies": {
  574. "Microsoft.Win32.SystemEvents": "7.0.0"
  575. },
  576. "runtime": {
  577. "runtimes/win/lib/net7.0/System.Drawing.Common.dll": {
  578. "assemblyVersion": "7.0.0.0",
  579. "fileVersion": "7.0.22.51805"
  580. }
  581. }
  582. },
  583. "System.Formats.Asn1/7.0.0": {},
  584. "System.Globalization/4.3.0": {
  585. "dependencies": {
  586. "Microsoft.NETCore.Platforms": "5.0.0",
  587. "Microsoft.NETCore.Targets": "1.1.0",
  588. "System.Runtime": "4.3.0",
  589. "runtime.any.System.Globalization": "4.3.0"
  590. }
  591. },
  592. "System.Globalization.Calendars/4.3.0": {
  593. "dependencies": {
  594. "Microsoft.NETCore.Platforms": "5.0.0",
  595. "Microsoft.NETCore.Targets": "1.1.0",
  596. "System.Globalization": "4.3.0",
  597. "System.Runtime": "4.3.0",
  598. "runtime.any.System.Globalization.Calendars": "4.3.0"
  599. }
  600. },
  601. "System.Globalization.Extensions/4.3.0": {
  602. "dependencies": {
  603. "Microsoft.NETCore.Platforms": "5.0.0",
  604. "System.Globalization": "4.3.0",
  605. "System.Resources.ResourceManager": "4.3.0",
  606. "System.Runtime": "4.3.0",
  607. "System.Runtime.Extensions": "4.3.0",
  608. "System.Runtime.InteropServices": "4.3.0"
  609. }
  610. },
  611. "System.IO/4.3.0": {
  612. "dependencies": {
  613. "Microsoft.NETCore.Platforms": "5.0.0",
  614. "Microsoft.NETCore.Targets": "1.1.0",
  615. "System.Runtime": "4.3.0",
  616. "System.Text.Encoding": "4.3.0",
  617. "System.Threading.Tasks": "4.3.0",
  618. "runtime.any.System.IO": "4.3.0"
  619. }
  620. },
  621. "System.IO.FileSystem/4.3.0": {
  622. "dependencies": {
  623. "Microsoft.NETCore.Platforms": "5.0.0",
  624. "Microsoft.NETCore.Targets": "1.1.0",
  625. "System.IO": "4.3.0",
  626. "System.IO.FileSystem.Primitives": "4.3.0",
  627. "System.Runtime": "4.3.0",
  628. "System.Runtime.Handles": "4.3.0",
  629. "System.Text.Encoding": "4.3.0",
  630. "System.Threading.Tasks": "4.3.0",
  631. "runtime.win.System.IO.FileSystem": "4.3.0"
  632. }
  633. },
  634. "System.IO.FileSystem.Primitives/4.3.0": {
  635. "dependencies": {
  636. "System.Runtime": "4.3.0"
  637. }
  638. },
  639. "System.Linq/4.3.0": {
  640. "dependencies": {
  641. "System.Collections": "4.3.0",
  642. "System.Diagnostics.Debug": "4.3.0",
  643. "System.Resources.ResourceManager": "4.3.0",
  644. "System.Runtime": "4.3.0",
  645. "System.Runtime.Extensions": "4.3.0"
  646. }
  647. },
  648. "System.Memory/4.5.4": {},
  649. "System.Net.NameResolution/4.3.0": {
  650. "dependencies": {
  651. "Microsoft.NETCore.Platforms": "5.0.0",
  652. "System.Collections": "4.3.0",
  653. "System.Diagnostics.Tracing": "4.3.0",
  654. "System.Globalization": "4.3.0",
  655. "System.Net.Primitives": "4.3.0",
  656. "System.Resources.ResourceManager": "4.3.0",
  657. "System.Runtime": "4.3.0",
  658. "System.Runtime.Extensions": "4.3.0",
  659. "System.Runtime.Handles": "4.3.0",
  660. "System.Runtime.InteropServices": "4.3.0",
  661. "System.Security.Principal.Windows": "5.0.0",
  662. "System.Threading": "4.3.0",
  663. "System.Threading.Tasks": "4.3.0",
  664. "runtime.native.System": "4.3.0"
  665. }
  666. },
  667. "System.Net.Primitives/4.3.0": {
  668. "dependencies": {
  669. "Microsoft.NETCore.Platforms": "5.0.0",
  670. "Microsoft.NETCore.Targets": "1.1.0",
  671. "System.Runtime": "4.3.0",
  672. "System.Runtime.Handles": "4.3.0",
  673. "runtime.win.System.Net.Primitives": "4.3.0"
  674. }
  675. },
  676. "System.Net.Security/4.3.0": {
  677. "dependencies": {
  678. "Microsoft.NETCore.Platforms": "5.0.0",
  679. "Microsoft.Win32.Primitives": "4.3.0",
  680. "System.Collections": "4.3.0",
  681. "System.Collections.Concurrent": "4.3.0",
  682. "System.Diagnostics.Tracing": "4.3.0",
  683. "System.Globalization": "4.3.0",
  684. "System.Globalization.Extensions": "4.3.0",
  685. "System.IO": "4.3.0",
  686. "System.Net.Primitives": "4.3.0",
  687. "System.Resources.ResourceManager": "4.3.0",
  688. "System.Runtime": "4.3.0",
  689. "System.Runtime.Extensions": "4.3.0",
  690. "System.Runtime.Handles": "4.3.0",
  691. "System.Runtime.InteropServices": "4.3.0",
  692. "System.Security.Claims": "4.3.0",
  693. "System.Security.Cryptography.Algorithms": "4.3.0",
  694. "System.Security.Cryptography.Encoding": "4.3.0",
  695. "System.Security.Cryptography.OpenSsl": "4.3.0",
  696. "System.Security.Cryptography.Primitives": "4.3.0",
  697. "System.Security.Cryptography.X509Certificates": "4.3.0",
  698. "System.Security.Principal": "4.3.0",
  699. "System.Text.Encoding": "4.3.0",
  700. "System.Threading": "4.3.0",
  701. "System.Threading.Tasks": "4.3.0",
  702. "System.Threading.ThreadPool": "4.3.0",
  703. "runtime.native.System": "4.3.0",
  704. "runtime.native.System.Net.Security": "4.3.0",
  705. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  706. }
  707. },
  708. "System.Net.Sockets/4.3.0": {
  709. "dependencies": {
  710. "Microsoft.NETCore.Platforms": "5.0.0",
  711. "Microsoft.NETCore.Targets": "1.1.0",
  712. "System.IO": "4.3.0",
  713. "System.Net.Primitives": "4.3.0",
  714. "System.Runtime": "4.3.0",
  715. "System.Threading.Tasks": "4.3.0",
  716. "runtime.win.System.Net.Sockets": "4.3.0"
  717. }
  718. },
  719. "System.Private.ServiceModel/4.5.3": {
  720. "dependencies": {
  721. "Microsoft.NETCore.Platforms": "5.0.0",
  722. "System.Reflection.DispatchProxy": "4.5.0",
  723. "System.Security.Principal.Windows": "5.0.0"
  724. },
  725. "runtime": {
  726. "runtimes/win/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  727. "assemblyVersion": "4.5.0.3",
  728. "fileVersion": "4.6.26720.1"
  729. }
  730. }
  731. },
  732. "System.Private.Uri/4.3.0": {
  733. "dependencies": {
  734. "Microsoft.NETCore.Platforms": "5.0.0",
  735. "Microsoft.NETCore.Targets": "1.1.0"
  736. }
  737. },
  738. "System.Reflection/4.3.0": {
  739. "dependencies": {
  740. "Microsoft.NETCore.Platforms": "5.0.0",
  741. "Microsoft.NETCore.Targets": "1.1.0",
  742. "System.IO": "4.3.0",
  743. "System.Reflection.Primitives": "4.3.0",
  744. "System.Runtime": "4.3.0",
  745. "runtime.any.System.Reflection": "4.3.0"
  746. }
  747. },
  748. "System.Reflection.DispatchProxy/4.5.0": {},
  749. "System.Reflection.Metadata/5.0.0": {},
  750. "System.Reflection.Primitives/4.3.0": {
  751. "dependencies": {
  752. "Microsoft.NETCore.Platforms": "5.0.0",
  753. "Microsoft.NETCore.Targets": "1.1.0",
  754. "System.Runtime": "4.3.0",
  755. "runtime.any.System.Reflection.Primitives": "4.3.0"
  756. }
  757. },
  758. "System.Resources.ResourceManager/4.3.0": {
  759. "dependencies": {
  760. "Microsoft.NETCore.Platforms": "5.0.0",
  761. "Microsoft.NETCore.Targets": "1.1.0",
  762. "System.Globalization": "4.3.0",
  763. "System.Reflection": "4.3.0",
  764. "System.Runtime": "4.3.0",
  765. "runtime.any.System.Resources.ResourceManager": "4.3.0"
  766. }
  767. },
  768. "System.Runtime/4.3.0": {
  769. "dependencies": {
  770. "Microsoft.NETCore.Platforms": "5.0.0",
  771. "Microsoft.NETCore.Targets": "1.1.0",
  772. "runtime.any.System.Runtime": "4.3.0"
  773. }
  774. },
  775. "System.Runtime.CompilerServices.Unsafe/5.0.0": {},
  776. "System.Runtime.Extensions/4.3.0": {
  777. "dependencies": {
  778. "Microsoft.NETCore.Platforms": "5.0.0",
  779. "Microsoft.NETCore.Targets": "1.1.0",
  780. "System.Runtime": "4.3.0",
  781. "runtime.win.System.Runtime.Extensions": "4.3.0"
  782. }
  783. },
  784. "System.Runtime.Handles/4.3.0": {
  785. "dependencies": {
  786. "Microsoft.NETCore.Platforms": "5.0.0",
  787. "Microsoft.NETCore.Targets": "1.1.0",
  788. "System.Runtime": "4.3.0",
  789. "runtime.any.System.Runtime.Handles": "4.3.0"
  790. }
  791. },
  792. "System.Runtime.InteropServices/4.3.0": {
  793. "dependencies": {
  794. "Microsoft.NETCore.Platforms": "5.0.0",
  795. "Microsoft.NETCore.Targets": "1.1.0",
  796. "System.Reflection": "4.3.0",
  797. "System.Reflection.Primitives": "4.3.0",
  798. "System.Runtime": "4.3.0",
  799. "System.Runtime.Handles": "4.3.0",
  800. "runtime.any.System.Runtime.InteropServices": "4.3.0"
  801. }
  802. },
  803. "System.Runtime.Numerics/4.3.0": {
  804. "dependencies": {
  805. "System.Globalization": "4.3.0",
  806. "System.Resources.ResourceManager": "4.3.0",
  807. "System.Runtime": "4.3.0",
  808. "System.Runtime.Extensions": "4.3.0"
  809. }
  810. },
  811. "System.Security.AccessControl/5.0.0": {
  812. "dependencies": {
  813. "Microsoft.NETCore.Platforms": "5.0.0",
  814. "System.Security.Principal.Windows": "5.0.0"
  815. }
  816. },
  817. "System.Security.Claims/4.3.0": {
  818. "dependencies": {
  819. "System.Collections": "4.3.0",
  820. "System.Globalization": "4.3.0",
  821. "System.IO": "4.3.0",
  822. "System.Resources.ResourceManager": "4.3.0",
  823. "System.Runtime": "4.3.0",
  824. "System.Runtime.Extensions": "4.3.0",
  825. "System.Security.Principal": "4.3.0"
  826. }
  827. },
  828. "System.Security.Cryptography.Algorithms/4.3.0": {
  829. "dependencies": {
  830. "Microsoft.NETCore.Platforms": "5.0.0",
  831. "System.Collections": "4.3.0",
  832. "System.IO": "4.3.0",
  833. "System.Resources.ResourceManager": "4.3.0",
  834. "System.Runtime": "4.3.0",
  835. "System.Runtime.Extensions": "4.3.0",
  836. "System.Runtime.Handles": "4.3.0",
  837. "System.Runtime.InteropServices": "4.3.0",
  838. "System.Runtime.Numerics": "4.3.0",
  839. "System.Security.Cryptography.Encoding": "4.3.0",
  840. "System.Security.Cryptography.Primitives": "4.3.0",
  841. "System.Text.Encoding": "4.3.0",
  842. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  843. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  844. }
  845. },
  846. "System.Security.Cryptography.Cng/4.3.0": {
  847. "dependencies": {
  848. "Microsoft.NETCore.Platforms": "5.0.0",
  849. "System.IO": "4.3.0",
  850. "System.Resources.ResourceManager": "4.3.0",
  851. "System.Runtime": "4.3.0",
  852. "System.Runtime.Extensions": "4.3.0",
  853. "System.Runtime.Handles": "4.3.0",
  854. "System.Runtime.InteropServices": "4.3.0",
  855. "System.Security.Cryptography.Algorithms": "4.3.0",
  856. "System.Security.Cryptography.Encoding": "4.3.0",
  857. "System.Security.Cryptography.Primitives": "4.3.0",
  858. "System.Text.Encoding": "4.3.0"
  859. }
  860. },
  861. "System.Security.Cryptography.Csp/4.3.0": {
  862. "dependencies": {
  863. "Microsoft.NETCore.Platforms": "5.0.0",
  864. "System.IO": "4.3.0",
  865. "System.Reflection": "4.3.0",
  866. "System.Resources.ResourceManager": "4.3.0",
  867. "System.Runtime": "4.3.0",
  868. "System.Runtime.Extensions": "4.3.0",
  869. "System.Runtime.Handles": "4.3.0",
  870. "System.Runtime.InteropServices": "4.3.0",
  871. "System.Security.Cryptography.Algorithms": "4.3.0",
  872. "System.Security.Cryptography.Encoding": "4.3.0",
  873. "System.Security.Cryptography.Primitives": "4.3.0",
  874. "System.Text.Encoding": "4.3.0",
  875. "System.Threading": "4.3.0"
  876. }
  877. },
  878. "System.Security.Cryptography.Encoding/4.3.0": {
  879. "dependencies": {
  880. "Microsoft.NETCore.Platforms": "5.0.0",
  881. "System.Collections": "4.3.0",
  882. "System.Collections.Concurrent": "4.3.0",
  883. "System.Linq": "4.3.0",
  884. "System.Resources.ResourceManager": "4.3.0",
  885. "System.Runtime": "4.3.0",
  886. "System.Runtime.Extensions": "4.3.0",
  887. "System.Runtime.Handles": "4.3.0",
  888. "System.Runtime.InteropServices": "4.3.0",
  889. "System.Security.Cryptography.Primitives": "4.3.0",
  890. "System.Text.Encoding": "4.3.0",
  891. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  892. }
  893. },
  894. "System.Security.Cryptography.OpenSsl/4.3.0": {
  895. "dependencies": {
  896. "System.Collections": "4.3.0",
  897. "System.IO": "4.3.0",
  898. "System.Resources.ResourceManager": "4.3.0",
  899. "System.Runtime": "4.3.0",
  900. "System.Runtime.Extensions": "4.3.0",
  901. "System.Runtime.Handles": "4.3.0",
  902. "System.Runtime.InteropServices": "4.3.0",
  903. "System.Runtime.Numerics": "4.3.0",
  904. "System.Security.Cryptography.Algorithms": "4.3.0",
  905. "System.Security.Cryptography.Encoding": "4.3.0",
  906. "System.Security.Cryptography.Primitives": "4.3.0",
  907. "System.Text.Encoding": "4.3.0",
  908. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  909. }
  910. },
  911. "System.Security.Cryptography.Pkcs/7.0.2": {
  912. "dependencies": {
  913. "System.Formats.Asn1": "7.0.0"
  914. },
  915. "runtime": {
  916. "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.dll": {
  917. "assemblyVersion": "7.0.0.0",
  918. "fileVersion": "7.0.723.27404"
  919. }
  920. }
  921. },
  922. "System.Security.Cryptography.Primitives/4.3.0": {
  923. "dependencies": {
  924. "System.Diagnostics.Debug": "4.3.0",
  925. "System.Globalization": "4.3.0",
  926. "System.IO": "4.3.0",
  927. "System.Resources.ResourceManager": "4.3.0",
  928. "System.Runtime": "4.3.0",
  929. "System.Threading": "4.3.0",
  930. "System.Threading.Tasks": "4.3.0"
  931. }
  932. },
  933. "System.Security.Cryptography.X509Certificates/4.3.0": {
  934. "dependencies": {
  935. "Microsoft.NETCore.Platforms": "5.0.0",
  936. "System.Collections": "4.3.0",
  937. "System.Diagnostics.Debug": "4.3.0",
  938. "System.Globalization": "4.3.0",
  939. "System.Globalization.Calendars": "4.3.0",
  940. "System.IO": "4.3.0",
  941. "System.IO.FileSystem": "4.3.0",
  942. "System.IO.FileSystem.Primitives": "4.3.0",
  943. "System.Resources.ResourceManager": "4.3.0",
  944. "System.Runtime": "4.3.0",
  945. "System.Runtime.Extensions": "4.3.0",
  946. "System.Runtime.Handles": "4.3.0",
  947. "System.Runtime.InteropServices": "4.3.0",
  948. "System.Runtime.Numerics": "4.3.0",
  949. "System.Security.Cryptography.Algorithms": "4.3.0",
  950. "System.Security.Cryptography.Cng": "4.3.0",
  951. "System.Security.Cryptography.Csp": "4.3.0",
  952. "System.Security.Cryptography.Encoding": "4.3.0",
  953. "System.Security.Cryptography.OpenSsl": "4.3.0",
  954. "System.Security.Cryptography.Primitives": "4.3.0",
  955. "System.Text.Encoding": "4.3.0",
  956. "System.Threading": "4.3.0",
  957. "runtime.native.System": "4.3.0",
  958. "runtime.native.System.Net.Http": "4.3.0",
  959. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  960. }
  961. },
  962. "System.Security.Principal/4.3.0": {
  963. "dependencies": {
  964. "System.Runtime": "4.3.0"
  965. }
  966. },
  967. "System.Security.Principal.Windows/5.0.0": {},
  968. "System.ServiceModel.Primitives/4.5.3": {
  969. "dependencies": {
  970. "System.Private.ServiceModel": "4.5.3"
  971. },
  972. "runtime": {
  973. "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {
  974. "assemblyVersion": "4.5.0.3",
  975. "fileVersion": "4.6.26720.1"
  976. },
  977. "lib/netstandard2.0/System.ServiceModel.dll": {
  978. "assemblyVersion": "4.0.0.0",
  979. "fileVersion": "4.6.26720.1"
  980. }
  981. }
  982. },
  983. "System.Text.Encoding/4.3.0": {
  984. "dependencies": {
  985. "Microsoft.NETCore.Platforms": "5.0.0",
  986. "Microsoft.NETCore.Targets": "1.1.0",
  987. "System.Runtime": "4.3.0",
  988. "runtime.any.System.Text.Encoding": "4.3.0"
  989. }
  990. },
  991. "System.Text.Encoding.CodePages/7.0.0": {},
  992. "System.Text.Encoding.Extensions/4.3.0": {
  993. "dependencies": {
  994. "Microsoft.NETCore.Platforms": "5.0.0",
  995. "Microsoft.NETCore.Targets": "1.1.0",
  996. "System.Runtime": "4.3.0",
  997. "System.Text.Encoding": "4.3.0",
  998. "runtime.any.System.Text.Encoding.Extensions": "4.3.0"
  999. }
  1000. },
  1001. "System.Text.Encodings.Web/7.0.0": {},
  1002. "System.Text.Json/7.0.0": {
  1003. "dependencies": {
  1004. "System.Text.Encodings.Web": "7.0.0"
  1005. }
  1006. },
  1007. "System.Threading/4.3.0": {
  1008. "dependencies": {
  1009. "System.Runtime": "4.3.0",
  1010. "System.Threading.Tasks": "4.3.0"
  1011. }
  1012. },
  1013. "System.Threading.Overlapped/4.3.0": {
  1014. "dependencies": {
  1015. "Microsoft.NETCore.Platforms": "5.0.0",
  1016. "System.Resources.ResourceManager": "4.3.0",
  1017. "System.Runtime": "4.3.0",
  1018. "System.Runtime.Handles": "4.3.0"
  1019. }
  1020. },
  1021. "System.Threading.Tasks/4.3.0": {
  1022. "dependencies": {
  1023. "Microsoft.NETCore.Platforms": "5.0.0",
  1024. "Microsoft.NETCore.Targets": "1.1.0",
  1025. "System.Runtime": "4.3.0",
  1026. "runtime.any.System.Threading.Tasks": "4.3.0"
  1027. }
  1028. },
  1029. "System.Threading.Tasks.Extensions/4.5.4": {},
  1030. "System.Threading.ThreadPool/4.3.0": {
  1031. "dependencies": {
  1032. "System.Runtime": "4.3.0",
  1033. "System.Runtime.Handles": "4.3.0"
  1034. }
  1035. },
  1036. "Core/1.0.0": {
  1037. "dependencies": {
  1038. "ThirdParty": "1.0.0"
  1039. },
  1040. "runtime": {
  1041. "Core.dll": {}
  1042. }
  1043. },
  1044. "Loader/1.0.0": {
  1045. "dependencies": {
  1046. "Core": "1.0.0",
  1047. "ThirdParty": "1.0.0"
  1048. },
  1049. "runtime": {
  1050. "Loader.dll": {}
  1051. }
  1052. },
  1053. "ThirdParty/1.0.0": {
  1054. "dependencies": {
  1055. "CommandLineParser": "2.9.1",
  1056. "EPPlus": "6.2.6",
  1057. "Microsoft.CodeAnalysis.CSharp": "4.0.1",
  1058. "Microsoft.CodeAnalysis.Common": "4.0.1",
  1059. "MongoDB.Driver": "2.17.1",
  1060. "NLog": "5.2.2",
  1061. "Newtonsoft.Json": "13.0.3",
  1062. "SharpZipLib": "1.4.2",
  1063. "protobuf-net": "2.4.8"
  1064. },
  1065. "runtime": {
  1066. "ThirdParty.dll": {}
  1067. }
  1068. },
  1069. "Core.Reference/1.0.0.0": {
  1070. "runtime": {
  1071. "Core.dll": {
  1072. "assemblyVersion": "1.0.0.0",
  1073. "fileVersion": "1.0.0.0"
  1074. }
  1075. }
  1076. },
  1077. "Ice/3.6.4.0": {
  1078. "runtime": {
  1079. "Ice.dll": {
  1080. "assemblyVersion": "3.6.4.0",
  1081. "fileVersion": "3.6.4.0"
  1082. }
  1083. }
  1084. },
  1085. "Loader.Reference/1.0.0.0": {
  1086. "runtime": {
  1087. "Loader.dll": {
  1088. "assemblyVersion": "1.0.0.0",
  1089. "fileVersion": "1.0.0.0"
  1090. }
  1091. }
  1092. },
  1093. "ThirdParty.Reference/1.0.0.0": {
  1094. "runtime": {
  1095. "ThirdParty.dll": {
  1096. "assemblyVersion": "1.0.0.0",
  1097. "fileVersion": "1.0.0.0"
  1098. }
  1099. }
  1100. }
  1101. }
  1102. },
  1103. "libraries": {
  1104. "Model/1.0.0": {
  1105. "type": "project",
  1106. "serviceable": false,
  1107. "sha512": ""
  1108. },
  1109. "CommandLineParser/2.9.1": {
  1110. "type": "package",
  1111. "serviceable": true,
  1112. "sha512": "sha512-OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==",
  1113. "path": "commandlineparser/2.9.1",
  1114. "hashPath": "commandlineparser.2.9.1.nupkg.sha512"
  1115. },
  1116. "DnsClient/1.6.1": {
  1117. "type": "package",
  1118. "serviceable": true,
  1119. "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==",
  1120. "path": "dnsclient/1.6.1",
  1121. "hashPath": "dnsclient.1.6.1.nupkg.sha512"
  1122. },
  1123. "EPPlus/6.2.6": {
  1124. "type": "package",
  1125. "serviceable": true,
  1126. "sha512": "sha512-eAPQbEHPCsEh8pAICPP4YYhhBuUHq2HH6oLqHzfgUP+GynB7MFHL+Jjx1X7rZPD+iA3c12ilz/WygRylc+xriw==",
  1127. "path": "epplus/6.2.6",
  1128. "hashPath": "epplus.6.2.6.nupkg.sha512"
  1129. },
  1130. "EPPlus.Interfaces/6.1.1": {
  1131. "type": "package",
  1132. "serviceable": true,
  1133. "sha512": "sha512-y7dkrOoE1ZR9Vgy1Jf2rEIaTf3SHlUjYt01NklP+F5Qh7S2ruPbzTcpYLRWMeXiG8XL8h2jqX4CyIkFt3NQGZw==",
  1134. "path": "epplus.interfaces/6.1.1",
  1135. "hashPath": "epplus.interfaces.6.1.1.nupkg.sha512"
  1136. },
  1137. "EPPlus.System.Drawing/6.1.1": {
  1138. "type": "package",
  1139. "serviceable": true,
  1140. "sha512": "sha512-lRF5gHYrmkHOOiLMI0t6q8zNYjUrzRgAM5BCXumv5xiqXko8fx3AWI+HCNZfhEqVFGOop+42KfR5GiUcCoyoMw==",
  1141. "path": "epplus.system.drawing/6.1.1",
  1142. "hashPath": "epplus.system.drawing.6.1.1.nupkg.sha512"
  1143. },
  1144. "Microsoft.CodeAnalysis.Analyzers/3.3.2": {
  1145. "type": "package",
  1146. "serviceable": true,
  1147. "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==",
  1148. "path": "microsoft.codeanalysis.analyzers/3.3.2",
  1149. "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512"
  1150. },
  1151. "Microsoft.CodeAnalysis.Common/4.0.1": {
  1152. "type": "package",
  1153. "serviceable": true,
  1154. "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==",
  1155. "path": "microsoft.codeanalysis.common/4.0.1",
  1156. "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512"
  1157. },
  1158. "Microsoft.CodeAnalysis.CSharp/4.0.1": {
  1159. "type": "package",
  1160. "serviceable": true,
  1161. "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==",
  1162. "path": "microsoft.codeanalysis.csharp/4.0.1",
  1163. "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512"
  1164. },
  1165. "Microsoft.Extensions.Configuration/7.0.0": {
  1166. "type": "package",
  1167. "serviceable": true,
  1168. "sha512": "sha512-tldQUBWt/xeH2K7/hMPPo5g8zuLc3Ro9I5d4o/XrxvxOCA2EZBtW7bCHHTc49fcBtvB8tLAb/Qsmfrq+2SJ4vA==",
  1169. "path": "microsoft.extensions.configuration/7.0.0",
  1170. "hashPath": "microsoft.extensions.configuration.7.0.0.nupkg.sha512"
  1171. },
  1172. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  1173. "type": "package",
  1174. "serviceable": true,
  1175. "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
  1176. "path": "microsoft.extensions.configuration.abstractions/7.0.0",
  1177. "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512"
  1178. },
  1179. "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": {
  1180. "type": "package",
  1181. "serviceable": true,
  1182. "sha512": "sha512-xk2lRJ1RDuqe57BmgvRPyCt6zyePKUmvT6iuXqiHR+/OIIgWVR8Ff5k2p6DwmqY8a17hx/OnrekEhziEIeQP6Q==",
  1183. "path": "microsoft.extensions.configuration.fileextensions/7.0.0",
  1184. "hashPath": "microsoft.extensions.configuration.fileextensions.7.0.0.nupkg.sha512"
  1185. },
  1186. "Microsoft.Extensions.Configuration.Json/7.0.0": {
  1187. "type": "package",
  1188. "serviceable": true,
  1189. "sha512": "sha512-LDNYe3uw76W35Jci+be4LDf2lkQZe0A7EEYQVChFbc509CpZ4Iupod8li4PUXPBhEUOFI/rlQNf5xkzJRQGvtA==",
  1190. "path": "microsoft.extensions.configuration.json/7.0.0",
  1191. "hashPath": "microsoft.extensions.configuration.json.7.0.0.nupkg.sha512"
  1192. },
  1193. "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": {
  1194. "type": "package",
  1195. "serviceable": true,
  1196. "sha512": "sha512-NyawiW9ZT/liQb34k9YqBSNPLuuPkrjMgQZ24Y/xXX1RoiBkLUdPMaQTmxhZ5TYu8ZKZ9qayzil75JX95vGQUg==",
  1197. "path": "microsoft.extensions.fileproviders.abstractions/7.0.0",
  1198. "hashPath": "microsoft.extensions.fileproviders.abstractions.7.0.0.nupkg.sha512"
  1199. },
  1200. "Microsoft.Extensions.FileProviders.Physical/7.0.0": {
  1201. "type": "package",
  1202. "serviceable": true,
  1203. "sha512": "sha512-K8D2MTR+EtzkbZ8z80LrG7Ur64R7ZZdRLt1J5cgpc/pUWl0C6IkAUapPuK28oionHueCPELUqq0oYEvZfalNdg==",
  1204. "path": "microsoft.extensions.fileproviders.physical/7.0.0",
  1205. "hashPath": "microsoft.extensions.fileproviders.physical.7.0.0.nupkg.sha512"
  1206. },
  1207. "Microsoft.Extensions.FileSystemGlobbing/7.0.0": {
  1208. "type": "package",
  1209. "serviceable": true,
  1210. "sha512": "sha512-2jONjKHiF+E92ynz2ZFcr9OvxIw+rTGMPEH+UZGeHTEComVav93jQUWGkso8yWwVBcEJGcNcZAaqY01FFJcj7w==",
  1211. "path": "microsoft.extensions.filesystemglobbing/7.0.0",
  1212. "hashPath": "microsoft.extensions.filesystemglobbing.7.0.0.nupkg.sha512"
  1213. },
  1214. "Microsoft.Extensions.Primitives/7.0.0": {
  1215. "type": "package",
  1216. "serviceable": true,
  1217. "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
  1218. "path": "microsoft.extensions.primitives/7.0.0",
  1219. "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512"
  1220. },
  1221. "Microsoft.IO.RecyclableMemoryStream/2.2.1": {
  1222. "type": "package",
  1223. "serviceable": true,
  1224. "sha512": "sha512-T5ahjOqWFMTSb9wFHKFNAcGXm35BxbUbwARtAPLSSPPFehcLz5mwDsKO1RR9R2aZ2Lk1BNQC7Ja63onOBE6rpA==",
  1225. "path": "microsoft.io.recyclablememorystream/2.2.1",
  1226. "hashPath": "microsoft.io.recyclablememorystream.2.2.1.nupkg.sha512"
  1227. },
  1228. "Microsoft.NETCore.Platforms/5.0.0": {
  1229. "type": "package",
  1230. "serviceable": true,
  1231. "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  1232. "path": "microsoft.netcore.platforms/5.0.0",
  1233. "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
  1234. },
  1235. "Microsoft.NETCore.Targets/1.1.0": {
  1236. "type": "package",
  1237. "serviceable": true,
  1238. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  1239. "path": "microsoft.netcore.targets/1.1.0",
  1240. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  1241. },
  1242. "Microsoft.Win32.Primitives/4.3.0": {
  1243. "type": "package",
  1244. "serviceable": true,
  1245. "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  1246. "path": "microsoft.win32.primitives/4.3.0",
  1247. "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
  1248. },
  1249. "Microsoft.Win32.Registry/5.0.0": {
  1250. "type": "package",
  1251. "serviceable": true,
  1252. "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  1253. "path": "microsoft.win32.registry/5.0.0",
  1254. "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
  1255. },
  1256. "Microsoft.Win32.SystemEvents/7.0.0": {
  1257. "type": "package",
  1258. "serviceable": true,
  1259. "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==",
  1260. "path": "microsoft.win32.systemevents/7.0.0",
  1261. "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512"
  1262. },
  1263. "MongoDB.Bson/2.17.1": {
  1264. "type": "package",
  1265. "serviceable": true,
  1266. "sha512": "sha512-IBr5w6ygeUCTobiS4J2UlYeIsnjSJvOOf31g60EkRa3NIeyrYs7Y51HeOvJ8r6NPcKv1hLj8xwoop6hDTetAdA==",
  1267. "path": "mongodb.bson/2.17.1",
  1268. "hashPath": "mongodb.bson.2.17.1.nupkg.sha512"
  1269. },
  1270. "MongoDB.Driver/2.17.1": {
  1271. "type": "package",
  1272. "serviceable": true,
  1273. "sha512": "sha512-A5Yvm3RUdkSYnvKWVb/bZfvhzG+L+t0n80JuUXf0p2QG1TbtqHE9hX/FBK+BoF7sw9rzUTw8VHYeqX5rT0rxdA==",
  1274. "path": "mongodb.driver/2.17.1",
  1275. "hashPath": "mongodb.driver.2.17.1.nupkg.sha512"
  1276. },
  1277. "MongoDB.Driver.Core/2.17.1": {
  1278. "type": "package",
  1279. "serviceable": true,
  1280. "sha512": "sha512-lfuuQvCXcco6mG096PL8xRO+dBdHsDTR3DiYfK/ICHgFlL5RfKlBuE0xClEGKtaZ4Spe28/fF/GUcrrA/yfoAQ==",
  1281. "path": "mongodb.driver.core/2.17.1",
  1282. "hashPath": "mongodb.driver.core.2.17.1.nupkg.sha512"
  1283. },
  1284. "MongoDB.Libmongocrypt/1.5.5": {
  1285. "type": "package",
  1286. "serviceable": true,
  1287. "sha512": "sha512-0DV4l2PjXirSJHD/b+LpOK3IfUDvkbpvvZBM2w1aYL6E/4vbhfyr/FP5laDNx2zRylqN1hIZO+EL7NgO/5GpVg==",
  1288. "path": "mongodb.libmongocrypt/1.5.5",
  1289. "hashPath": "mongodb.libmongocrypt.1.5.5.nupkg.sha512"
  1290. },
  1291. "Newtonsoft.Json/13.0.3": {
  1292. "type": "package",
  1293. "serviceable": true,
  1294. "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  1295. "path": "newtonsoft.json/13.0.3",
  1296. "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
  1297. },
  1298. "NLog/5.2.2": {
  1299. "type": "package",
  1300. "serviceable": true,
  1301. "sha512": "sha512-r6Q9740g29gTwmTWlsgdIFm0mhNsfNZmbvWKX/Fxmi8X89ZrpUowHM2T2X1lP7RVpND+ef+XnfKL5g6Q1iNGXA==",
  1302. "path": "nlog/5.2.2",
  1303. "hashPath": "nlog.5.2.2.nupkg.sha512"
  1304. },
  1305. "protobuf-net/2.4.8": {
  1306. "type": "package",
  1307. "serviceable": true,
  1308. "sha512": "sha512-O+vbVVDxTWlFRBe5OsAmMKqqD7WQ7TPIH97Nr/Pk8gDxtNW77seiDmXfxnODuWIkm0fYW7kE5ILq8jHsgH79yg==",
  1309. "path": "protobuf-net/2.4.8",
  1310. "hashPath": "protobuf-net.2.4.8.nupkg.sha512"
  1311. },
  1312. "runtime.any.System.Collections/4.3.0": {
  1313. "type": "package",
  1314. "serviceable": true,
  1315. "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==",
  1316. "path": "runtime.any.system.collections/4.3.0",
  1317. "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512"
  1318. },
  1319. "runtime.any.System.Diagnostics.Tracing/4.3.0": {
  1320. "type": "package",
  1321. "serviceable": true,
  1322. "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==",
  1323. "path": "runtime.any.system.diagnostics.tracing/4.3.0",
  1324. "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512"
  1325. },
  1326. "runtime.any.System.Globalization/4.3.0": {
  1327. "type": "package",
  1328. "serviceable": true,
  1329. "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==",
  1330. "path": "runtime.any.system.globalization/4.3.0",
  1331. "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512"
  1332. },
  1333. "runtime.any.System.Globalization.Calendars/4.3.0": {
  1334. "type": "package",
  1335. "serviceable": true,
  1336. "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==",
  1337. "path": "runtime.any.system.globalization.calendars/4.3.0",
  1338. "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512"
  1339. },
  1340. "runtime.any.System.IO/4.3.0": {
  1341. "type": "package",
  1342. "serviceable": true,
  1343. "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==",
  1344. "path": "runtime.any.system.io/4.3.0",
  1345. "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512"
  1346. },
  1347. "runtime.any.System.Reflection/4.3.0": {
  1348. "type": "package",
  1349. "serviceable": true,
  1350. "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==",
  1351. "path": "runtime.any.system.reflection/4.3.0",
  1352. "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512"
  1353. },
  1354. "runtime.any.System.Reflection.Primitives/4.3.0": {
  1355. "type": "package",
  1356. "serviceable": true,
  1357. "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==",
  1358. "path": "runtime.any.system.reflection.primitives/4.3.0",
  1359. "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512"
  1360. },
  1361. "runtime.any.System.Resources.ResourceManager/4.3.0": {
  1362. "type": "package",
  1363. "serviceable": true,
  1364. "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==",
  1365. "path": "runtime.any.system.resources.resourcemanager/4.3.0",
  1366. "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512"
  1367. },
  1368. "runtime.any.System.Runtime/4.3.0": {
  1369. "type": "package",
  1370. "serviceable": true,
  1371. "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==",
  1372. "path": "runtime.any.system.runtime/4.3.0",
  1373. "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512"
  1374. },
  1375. "runtime.any.System.Runtime.Handles/4.3.0": {
  1376. "type": "package",
  1377. "serviceable": true,
  1378. "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==",
  1379. "path": "runtime.any.system.runtime.handles/4.3.0",
  1380. "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512"
  1381. },
  1382. "runtime.any.System.Runtime.InteropServices/4.3.0": {
  1383. "type": "package",
  1384. "serviceable": true,
  1385. "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==",
  1386. "path": "runtime.any.system.runtime.interopservices/4.3.0",
  1387. "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512"
  1388. },
  1389. "runtime.any.System.Text.Encoding/4.3.0": {
  1390. "type": "package",
  1391. "serviceable": true,
  1392. "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==",
  1393. "path": "runtime.any.system.text.encoding/4.3.0",
  1394. "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512"
  1395. },
  1396. "runtime.any.System.Text.Encoding.Extensions/4.3.0": {
  1397. "type": "package",
  1398. "serviceable": true,
  1399. "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==",
  1400. "path": "runtime.any.system.text.encoding.extensions/4.3.0",
  1401. "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512"
  1402. },
  1403. "runtime.any.System.Threading.Tasks/4.3.0": {
  1404. "type": "package",
  1405. "serviceable": true,
  1406. "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==",
  1407. "path": "runtime.any.system.threading.tasks/4.3.0",
  1408. "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512"
  1409. },
  1410. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1411. "type": "package",
  1412. "serviceable": true,
  1413. "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  1414. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1415. "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1416. },
  1417. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1418. "type": "package",
  1419. "serviceable": true,
  1420. "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  1421. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1422. "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1423. },
  1424. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1425. "type": "package",
  1426. "serviceable": true,
  1427. "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  1428. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1429. "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1430. },
  1431. "runtime.native.System/4.3.0": {
  1432. "type": "package",
  1433. "serviceable": true,
  1434. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  1435. "path": "runtime.native.system/4.3.0",
  1436. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  1437. },
  1438. "runtime.native.System.Net.Http/4.3.0": {
  1439. "type": "package",
  1440. "serviceable": true,
  1441. "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  1442. "path": "runtime.native.system.net.http/4.3.0",
  1443. "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
  1444. },
  1445. "runtime.native.System.Net.Security/4.3.0": {
  1446. "type": "package",
  1447. "serviceable": true,
  1448. "sha512": "sha512-M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  1449. "path": "runtime.native.system.net.security/4.3.0",
  1450. "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512"
  1451. },
  1452. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1453. "type": "package",
  1454. "serviceable": true,
  1455. "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  1456. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  1457. "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  1458. },
  1459. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1460. "type": "package",
  1461. "serviceable": true,
  1462. "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  1463. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  1464. "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1465. },
  1466. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1467. "type": "package",
  1468. "serviceable": true,
  1469. "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  1470. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1471. "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1472. },
  1473. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1474. "type": "package",
  1475. "serviceable": true,
  1476. "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  1477. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1478. "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1479. },
  1480. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1481. "type": "package",
  1482. "serviceable": true,
  1483. "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  1484. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  1485. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  1486. },
  1487. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1488. "type": "package",
  1489. "serviceable": true,
  1490. "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  1491. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1492. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1493. },
  1494. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1495. "type": "package",
  1496. "serviceable": true,
  1497. "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  1498. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1499. "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1500. },
  1501. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1502. "type": "package",
  1503. "serviceable": true,
  1504. "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  1505. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1506. "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1507. },
  1508. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1509. "type": "package",
  1510. "serviceable": true,
  1511. "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  1512. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1513. "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1514. },
  1515. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1516. "type": "package",
  1517. "serviceable": true,
  1518. "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  1519. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1520. "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1521. },
  1522. "runtime.win.Microsoft.Win32.Primitives/4.3.0": {
  1523. "type": "package",
  1524. "serviceable": true,
  1525. "sha512": "sha512-NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==",
  1526. "path": "runtime.win.microsoft.win32.primitives/4.3.0",
  1527. "hashPath": "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512"
  1528. },
  1529. "runtime.win.System.Diagnostics.Debug/4.3.0": {
  1530. "type": "package",
  1531. "serviceable": true,
  1532. "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==",
  1533. "path": "runtime.win.system.diagnostics.debug/4.3.0",
  1534. "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512"
  1535. },
  1536. "runtime.win.System.IO.FileSystem/4.3.0": {
  1537. "type": "package",
  1538. "serviceable": true,
  1539. "sha512": "sha512-Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==",
  1540. "path": "runtime.win.system.io.filesystem/4.3.0",
  1541. "hashPath": "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512"
  1542. },
  1543. "runtime.win.System.Net.Primitives/4.3.0": {
  1544. "type": "package",
  1545. "serviceable": true,
  1546. "sha512": "sha512-lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==",
  1547. "path": "runtime.win.system.net.primitives/4.3.0",
  1548. "hashPath": "runtime.win.system.net.primitives.4.3.0.nupkg.sha512"
  1549. },
  1550. "runtime.win.System.Net.Sockets/4.3.0": {
  1551. "type": "package",
  1552. "serviceable": true,
  1553. "sha512": "sha512-FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==",
  1554. "path": "runtime.win.system.net.sockets/4.3.0",
  1555. "hashPath": "runtime.win.system.net.sockets.4.3.0.nupkg.sha512"
  1556. },
  1557. "runtime.win.System.Runtime.Extensions/4.3.0": {
  1558. "type": "package",
  1559. "serviceable": true,
  1560. "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==",
  1561. "path": "runtime.win.system.runtime.extensions/4.3.0",
  1562. "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512"
  1563. },
  1564. "SharpCompress/0.30.1": {
  1565. "type": "package",
  1566. "serviceable": true,
  1567. "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==",
  1568. "path": "sharpcompress/0.30.1",
  1569. "hashPath": "sharpcompress.0.30.1.nupkg.sha512"
  1570. },
  1571. "SharpZipLib/1.4.2": {
  1572. "type": "package",
  1573. "serviceable": true,
  1574. "sha512": "sha512-yjj+3zgz8zgXpiiC3ZdF/iyTBbz2fFvMxZFEBPUcwZjIvXOf37Ylm+K58hqMfIBt5JgU/Z2uoUS67JmTLe973A==",
  1575. "path": "sharpziplib/1.4.2",
  1576. "hashPath": "sharpziplib.1.4.2.nupkg.sha512"
  1577. },
  1578. "SuperSocket.ClientEngine/0.10.0": {
  1579. "type": "package",
  1580. "serviceable": true,
  1581. "sha512": "sha512-Z6cyVq/npADn/21OMhuU1F1JOnVKjxicNZItJLCqyQerzSzx8bGZV12o8COs5wnpVMRIRXypf9TbypY453Llcg==",
  1582. "path": "supersocket.clientengine/0.10.0",
  1583. "hashPath": "supersocket.clientengine.0.10.0.nupkg.sha512"
  1584. },
  1585. "SuperSocket.ProtoBase/1.7.0.17": {
  1586. "type": "package",
  1587. "serviceable": true,
  1588. "sha512": "sha512-v0rMnxKiJUrVRTpI/4h3pEY5LdH0NNrX+O7claVC9r6jd1KQbgZV4wDuferKsVn1GZbS0Wp6XI4p5IwMS8QWHg==",
  1589. "path": "supersocket.protobase/1.7.0.17",
  1590. "hashPath": "supersocket.protobase.1.7.0.17.nupkg.sha512"
  1591. },
  1592. "System.Buffers/4.5.1": {
  1593. "type": "package",
  1594. "serviceable": true,
  1595. "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  1596. "path": "system.buffers/4.5.1",
  1597. "hashPath": "system.buffers.4.5.1.nupkg.sha512"
  1598. },
  1599. "System.Collections/4.3.0": {
  1600. "type": "package",
  1601. "serviceable": true,
  1602. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  1603. "path": "system.collections/4.3.0",
  1604. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  1605. },
  1606. "System.Collections.Concurrent/4.3.0": {
  1607. "type": "package",
  1608. "serviceable": true,
  1609. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  1610. "path": "system.collections.concurrent/4.3.0",
  1611. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  1612. },
  1613. "System.Collections.Immutable/5.0.0": {
  1614. "type": "package",
  1615. "serviceable": true,
  1616. "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  1617. "path": "system.collections.immutable/5.0.0",
  1618. "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512"
  1619. },
  1620. "System.Collections.NonGeneric/4.3.0": {
  1621. "type": "package",
  1622. "serviceable": true,
  1623. "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  1624. "path": "system.collections.nongeneric/4.3.0",
  1625. "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
  1626. },
  1627. "System.Collections.Specialized/4.3.0": {
  1628. "type": "package",
  1629. "serviceable": true,
  1630. "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  1631. "path": "system.collections.specialized/4.3.0",
  1632. "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
  1633. },
  1634. "System.Diagnostics.Debug/4.3.0": {
  1635. "type": "package",
  1636. "serviceable": true,
  1637. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  1638. "path": "system.diagnostics.debug/4.3.0",
  1639. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  1640. },
  1641. "System.Diagnostics.Tracing/4.3.0": {
  1642. "type": "package",
  1643. "serviceable": true,
  1644. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  1645. "path": "system.diagnostics.tracing/4.3.0",
  1646. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  1647. },
  1648. "System.Drawing.Common/7.0.0": {
  1649. "type": "package",
  1650. "serviceable": true,
  1651. "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==",
  1652. "path": "system.drawing.common/7.0.0",
  1653. "hashPath": "system.drawing.common.7.0.0.nupkg.sha512"
  1654. },
  1655. "System.Formats.Asn1/7.0.0": {
  1656. "type": "package",
  1657. "serviceable": true,
  1658. "sha512": "sha512-+nfpV0afLmvJW8+pLlHxRjz3oZJw4fkyU9MMEaMhCsHi/SN9bGF9q79ROubDiwTiCHezmK0uCWkPP7tGFP/4yg==",
  1659. "path": "system.formats.asn1/7.0.0",
  1660. "hashPath": "system.formats.asn1.7.0.0.nupkg.sha512"
  1661. },
  1662. "System.Globalization/4.3.0": {
  1663. "type": "package",
  1664. "serviceable": true,
  1665. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  1666. "path": "system.globalization/4.3.0",
  1667. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  1668. },
  1669. "System.Globalization.Calendars/4.3.0": {
  1670. "type": "package",
  1671. "serviceable": true,
  1672. "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  1673. "path": "system.globalization.calendars/4.3.0",
  1674. "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
  1675. },
  1676. "System.Globalization.Extensions/4.3.0": {
  1677. "type": "package",
  1678. "serviceable": true,
  1679. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  1680. "path": "system.globalization.extensions/4.3.0",
  1681. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  1682. },
  1683. "System.IO/4.3.0": {
  1684. "type": "package",
  1685. "serviceable": true,
  1686. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  1687. "path": "system.io/4.3.0",
  1688. "hashPath": "system.io.4.3.0.nupkg.sha512"
  1689. },
  1690. "System.IO.FileSystem/4.3.0": {
  1691. "type": "package",
  1692. "serviceable": true,
  1693. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  1694. "path": "system.io.filesystem/4.3.0",
  1695. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  1696. },
  1697. "System.IO.FileSystem.Primitives/4.3.0": {
  1698. "type": "package",
  1699. "serviceable": true,
  1700. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  1701. "path": "system.io.filesystem.primitives/4.3.0",
  1702. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  1703. },
  1704. "System.Linq/4.3.0": {
  1705. "type": "package",
  1706. "serviceable": true,
  1707. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  1708. "path": "system.linq/4.3.0",
  1709. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  1710. },
  1711. "System.Memory/4.5.4": {
  1712. "type": "package",
  1713. "serviceable": true,
  1714. "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  1715. "path": "system.memory/4.5.4",
  1716. "hashPath": "system.memory.4.5.4.nupkg.sha512"
  1717. },
  1718. "System.Net.NameResolution/4.3.0": {
  1719. "type": "package",
  1720. "serviceable": true,
  1721. "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  1722. "path": "system.net.nameresolution/4.3.0",
  1723. "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
  1724. },
  1725. "System.Net.Primitives/4.3.0": {
  1726. "type": "package",
  1727. "serviceable": true,
  1728. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  1729. "path": "system.net.primitives/4.3.0",
  1730. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  1731. },
  1732. "System.Net.Security/4.3.0": {
  1733. "type": "package",
  1734. "serviceable": true,
  1735. "sha512": "sha512-IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  1736. "path": "system.net.security/4.3.0",
  1737. "hashPath": "system.net.security.4.3.0.nupkg.sha512"
  1738. },
  1739. "System.Net.Sockets/4.3.0": {
  1740. "type": "package",
  1741. "serviceable": true,
  1742. "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  1743. "path": "system.net.sockets/4.3.0",
  1744. "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
  1745. },
  1746. "System.Private.ServiceModel/4.5.3": {
  1747. "type": "package",
  1748. "serviceable": true,
  1749. "sha512": "sha512-ancrQgJagx+yC4SZbuE+eShiEAUIF0E1d21TRSoy1C/rTwafAVcBr/fKibkq5TQzyy9uNil2tx2/iaUxsy0S9g==",
  1750. "path": "system.private.servicemodel/4.5.3",
  1751. "hashPath": "system.private.servicemodel.4.5.3.nupkg.sha512"
  1752. },
  1753. "System.Private.Uri/4.3.0": {
  1754. "type": "package",
  1755. "serviceable": true,
  1756. "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==",
  1757. "path": "system.private.uri/4.3.0",
  1758. "hashPath": "system.private.uri.4.3.0.nupkg.sha512"
  1759. },
  1760. "System.Reflection/4.3.0": {
  1761. "type": "package",
  1762. "serviceable": true,
  1763. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  1764. "path": "system.reflection/4.3.0",
  1765. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  1766. },
  1767. "System.Reflection.DispatchProxy/4.5.0": {
  1768. "type": "package",
  1769. "serviceable": true,
  1770. "sha512": "sha512-+UW1hq11TNSeb+16rIk8hRQ02o339NFyzMc4ma/FqmxBzM30l1c2IherBB4ld1MNcenS48fz8tbt50OW4rVULA==",
  1771. "path": "system.reflection.dispatchproxy/4.5.0",
  1772. "hashPath": "system.reflection.dispatchproxy.4.5.0.nupkg.sha512"
  1773. },
  1774. "System.Reflection.Metadata/5.0.0": {
  1775. "type": "package",
  1776. "serviceable": true,
  1777. "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
  1778. "path": "system.reflection.metadata/5.0.0",
  1779. "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512"
  1780. },
  1781. "System.Reflection.Primitives/4.3.0": {
  1782. "type": "package",
  1783. "serviceable": true,
  1784. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  1785. "path": "system.reflection.primitives/4.3.0",
  1786. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  1787. },
  1788. "System.Resources.ResourceManager/4.3.0": {
  1789. "type": "package",
  1790. "serviceable": true,
  1791. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  1792. "path": "system.resources.resourcemanager/4.3.0",
  1793. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  1794. },
  1795. "System.Runtime/4.3.0": {
  1796. "type": "package",
  1797. "serviceable": true,
  1798. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  1799. "path": "system.runtime/4.3.0",
  1800. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  1801. },
  1802. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  1803. "type": "package",
  1804. "serviceable": true,
  1805. "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  1806. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  1807. "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
  1808. },
  1809. "System.Runtime.Extensions/4.3.0": {
  1810. "type": "package",
  1811. "serviceable": true,
  1812. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  1813. "path": "system.runtime.extensions/4.3.0",
  1814. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  1815. },
  1816. "System.Runtime.Handles/4.3.0": {
  1817. "type": "package",
  1818. "serviceable": true,
  1819. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  1820. "path": "system.runtime.handles/4.3.0",
  1821. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  1822. },
  1823. "System.Runtime.InteropServices/4.3.0": {
  1824. "type": "package",
  1825. "serviceable": true,
  1826. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  1827. "path": "system.runtime.interopservices/4.3.0",
  1828. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  1829. },
  1830. "System.Runtime.Numerics/4.3.0": {
  1831. "type": "package",
  1832. "serviceable": true,
  1833. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  1834. "path": "system.runtime.numerics/4.3.0",
  1835. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  1836. },
  1837. "System.Security.AccessControl/5.0.0": {
  1838. "type": "package",
  1839. "serviceable": true,
  1840. "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  1841. "path": "system.security.accesscontrol/5.0.0",
  1842. "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
  1843. },
  1844. "System.Security.Claims/4.3.0": {
  1845. "type": "package",
  1846. "serviceable": true,
  1847. "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  1848. "path": "system.security.claims/4.3.0",
  1849. "hashPath": "system.security.claims.4.3.0.nupkg.sha512"
  1850. },
  1851. "System.Security.Cryptography.Algorithms/4.3.0": {
  1852. "type": "package",
  1853. "serviceable": true,
  1854. "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  1855. "path": "system.security.cryptography.algorithms/4.3.0",
  1856. "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
  1857. },
  1858. "System.Security.Cryptography.Cng/4.3.0": {
  1859. "type": "package",
  1860. "serviceable": true,
  1861. "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  1862. "path": "system.security.cryptography.cng/4.3.0",
  1863. "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
  1864. },
  1865. "System.Security.Cryptography.Csp/4.3.0": {
  1866. "type": "package",
  1867. "serviceable": true,
  1868. "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  1869. "path": "system.security.cryptography.csp/4.3.0",
  1870. "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
  1871. },
  1872. "System.Security.Cryptography.Encoding/4.3.0": {
  1873. "type": "package",
  1874. "serviceable": true,
  1875. "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  1876. "path": "system.security.cryptography.encoding/4.3.0",
  1877. "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
  1878. },
  1879. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1880. "type": "package",
  1881. "serviceable": true,
  1882. "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  1883. "path": "system.security.cryptography.openssl/4.3.0",
  1884. "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1885. },
  1886. "System.Security.Cryptography.Pkcs/7.0.2": {
  1887. "type": "package",
  1888. "serviceable": true,
  1889. "sha512": "sha512-xhFNJOcQSWhpiVGLLBQYoxAltQSQVycMkwaX1z7I7oEdT9Wr0HzSM1yeAbfoHaERIYd5s6EpLSOLs2qMchSKlA==",
  1890. "path": "system.security.cryptography.pkcs/7.0.2",
  1891. "hashPath": "system.security.cryptography.pkcs.7.0.2.nupkg.sha512"
  1892. },
  1893. "System.Security.Cryptography.Primitives/4.3.0": {
  1894. "type": "package",
  1895. "serviceable": true,
  1896. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  1897. "path": "system.security.cryptography.primitives/4.3.0",
  1898. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  1899. },
  1900. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1901. "type": "package",
  1902. "serviceable": true,
  1903. "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  1904. "path": "system.security.cryptography.x509certificates/4.3.0",
  1905. "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
  1906. },
  1907. "System.Security.Principal/4.3.0": {
  1908. "type": "package",
  1909. "serviceable": true,
  1910. "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  1911. "path": "system.security.principal/4.3.0",
  1912. "hashPath": "system.security.principal.4.3.0.nupkg.sha512"
  1913. },
  1914. "System.Security.Principal.Windows/5.0.0": {
  1915. "type": "package",
  1916. "serviceable": true,
  1917. "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  1918. "path": "system.security.principal.windows/5.0.0",
  1919. "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
  1920. },
  1921. "System.ServiceModel.Primitives/4.5.3": {
  1922. "type": "package",
  1923. "serviceable": true,
  1924. "sha512": "sha512-Wc9Hgg4Cmqi416zvEgq2sW1YYCGuhwWzspDclJWlFZqY6EGhFUPZU+kVpl5z9kAgrSOQP7/Uiik+PtSQtmq+5A==",
  1925. "path": "system.servicemodel.primitives/4.5.3",
  1926. "hashPath": "system.servicemodel.primitives.4.5.3.nupkg.sha512"
  1927. },
  1928. "System.Text.Encoding/4.3.0": {
  1929. "type": "package",
  1930. "serviceable": true,
  1931. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  1932. "path": "system.text.encoding/4.3.0",
  1933. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  1934. },
  1935. "System.Text.Encoding.CodePages/7.0.0": {
  1936. "type": "package",
  1937. "serviceable": true,
  1938. "sha512": "sha512-LSyCblMpvOe0N3E+8e0skHcrIhgV2huaNcjUUEa8hRtgEAm36aGkRoC8Jxlb6Ra6GSfF29ftduPNywin8XolzQ==",
  1939. "path": "system.text.encoding.codepages/7.0.0",
  1940. "hashPath": "system.text.encoding.codepages.7.0.0.nupkg.sha512"
  1941. },
  1942. "System.Text.Encoding.Extensions/4.3.0": {
  1943. "type": "package",
  1944. "serviceable": true,
  1945. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  1946. "path": "system.text.encoding.extensions/4.3.0",
  1947. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  1948. },
  1949. "System.Text.Encodings.Web/7.0.0": {
  1950. "type": "package",
  1951. "serviceable": true,
  1952. "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
  1953. "path": "system.text.encodings.web/7.0.0",
  1954. "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512"
  1955. },
  1956. "System.Text.Json/7.0.0": {
  1957. "type": "package",
  1958. "serviceable": true,
  1959. "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==",
  1960. "path": "system.text.json/7.0.0",
  1961. "hashPath": "system.text.json.7.0.0.nupkg.sha512"
  1962. },
  1963. "System.Threading/4.3.0": {
  1964. "type": "package",
  1965. "serviceable": true,
  1966. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  1967. "path": "system.threading/4.3.0",
  1968. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  1969. },
  1970. "System.Threading.Overlapped/4.3.0": {
  1971. "type": "package",
  1972. "serviceable": true,
  1973. "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==",
  1974. "path": "system.threading.overlapped/4.3.0",
  1975. "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512"
  1976. },
  1977. "System.Threading.Tasks/4.3.0": {
  1978. "type": "package",
  1979. "serviceable": true,
  1980. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  1981. "path": "system.threading.tasks/4.3.0",
  1982. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  1983. },
  1984. "System.Threading.Tasks.Extensions/4.5.4": {
  1985. "type": "package",
  1986. "serviceable": true,
  1987. "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  1988. "path": "system.threading.tasks.extensions/4.5.4",
  1989. "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
  1990. },
  1991. "System.Threading.ThreadPool/4.3.0": {
  1992. "type": "package",
  1993. "serviceable": true,
  1994. "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  1995. "path": "system.threading.threadpool/4.3.0",
  1996. "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
  1997. },
  1998. "Core/1.0.0": {
  1999. "type": "project",
  2000. "serviceable": false,
  2001. "sha512": ""
  2002. },
  2003. "Loader/1.0.0": {
  2004. "type": "project",
  2005. "serviceable": false,
  2006. "sha512": ""
  2007. },
  2008. "ThirdParty/1.0.0": {
  2009. "type": "project",
  2010. "serviceable": false,
  2011. "sha512": ""
  2012. },
  2013. "Core.Reference/1.0.0.0": {
  2014. "type": "reference",
  2015. "serviceable": false,
  2016. "sha512": ""
  2017. },
  2018. "Ice/3.6.4.0": {
  2019. "type": "reference",
  2020. "serviceable": false,
  2021. "sha512": ""
  2022. },
  2023. "Loader.Reference/1.0.0.0": {
  2024. "type": "reference",
  2025. "serviceable": false,
  2026. "sha512": ""
  2027. },
  2028. "ThirdParty.Reference/1.0.0.0": {
  2029. "type": "reference",
  2030. "serviceable": false,
  2031. "sha512": ""
  2032. }
  2033. }
  2034. }