WCS.deps.json 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v8.0",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v8.0": {
  9. "WCS/1.0.0": {
  10. "dependencies": {
  11. "Flurl.Http": "4.0.2",
  12. "GZY.Quartz.MUI": "2.6.0",
  13. "Newtonsoft.Json": "13.0.3",
  14. "Pomelo.EntityFrameworkCore.MySql": "8.0.2",
  15. "Pomelo.EntityFrameworkCore.MySql.Design": "1.1.2",
  16. "Quartz": "3.11.0",
  17. "S7netplus": "0.20.0",
  18. "StackExchange.Redis": "2.8.0",
  19. "Swashbuckle.AspNetCore": "6.4.0",
  20. "FTP": "1.0.0.7",
  21. "HslCommunication": "7.0.1.0",
  22. "Renci.SshNet": "2016.1.0.0",
  23. "WinSCPnet": "1.8.3.11933"
  24. },
  25. "runtime": {
  26. "WCS.dll": {}
  27. }
  28. },
  29. "Flurl/4.0.0": {
  30. "runtime": {
  31. "lib/netstandard2.0/Flurl.dll": {
  32. "assemblyVersion": "4.0.0.0",
  33. "fileVersion": "4.0.0.0"
  34. }
  35. }
  36. },
  37. "Flurl.Http/4.0.2": {
  38. "dependencies": {
  39. "Flurl": "4.0.0"
  40. },
  41. "runtime": {
  42. "lib/net6.0/Flurl.Http.dll": {
  43. "assemblyVersion": "4.0.2.0",
  44. "fileVersion": "4.0.2.0"
  45. }
  46. }
  47. },
  48. "GZY.Quartz.MUI/2.6.0": {
  49. "dependencies": {
  50. "Microsoft.EntityFrameworkCore": "8.0.2",
  51. "Microsoft.EntityFrameworkCore.Relational": "8.0.2",
  52. "Newtonsoft.Json": "13.0.3",
  53. "Quartz": "3.11.0"
  54. },
  55. "runtime": {
  56. "lib/net8.0/GZY.Quartz.MUI.dll": {
  57. "assemblyVersion": "2.6.0.0",
  58. "fileVersion": "2.6.0.0"
  59. }
  60. }
  61. },
  62. "Microsoft.EntityFrameworkCore/8.0.2": {
  63. "dependencies": {
  64. "Microsoft.EntityFrameworkCore.Abstractions": "8.0.2",
  65. "Microsoft.EntityFrameworkCore.Analyzers": "8.0.2",
  66. "Microsoft.Extensions.Caching.Memory": "8.0.0",
  67. "Microsoft.Extensions.Logging": "8.0.0"
  68. },
  69. "runtime": {
  70. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  71. "assemblyVersion": "8.0.2.0",
  72. "fileVersion": "8.0.224.6803"
  73. }
  74. }
  75. },
  76. "Microsoft.EntityFrameworkCore.Abstractions/8.0.2": {
  77. "runtime": {
  78. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  79. "assemblyVersion": "8.0.2.0",
  80. "fileVersion": "8.0.224.6803"
  81. }
  82. }
  83. },
  84. "Microsoft.EntityFrameworkCore.Analyzers/8.0.2": {},
  85. "Microsoft.EntityFrameworkCore.Relational/8.0.2": {
  86. "dependencies": {
  87. "Microsoft.EntityFrameworkCore": "8.0.2",
  88. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  89. },
  90. "runtime": {
  91. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  92. "assemblyVersion": "8.0.2.0",
  93. "fileVersion": "8.0.224.6803"
  94. }
  95. }
  96. },
  97. "Microsoft.EntityFrameworkCore.Relational.Design/1.1.1": {
  98. "dependencies": {
  99. "Microsoft.EntityFrameworkCore.Relational": "8.0.2",
  100. "NETStandard.Library": "1.6.1"
  101. },
  102. "runtime": {
  103. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": {
  104. "assemblyVersion": "1.1.1.0",
  105. "fileVersion": "1.1.1.30217"
  106. }
  107. }
  108. },
  109. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
  110. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  111. "dependencies": {
  112. "Microsoft.Extensions.Primitives": "8.0.0"
  113. }
  114. },
  115. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  116. "dependencies": {
  117. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  118. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  119. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  120. "Microsoft.Extensions.Options": "8.0.0",
  121. "Microsoft.Extensions.Primitives": "8.0.0"
  122. }
  123. },
  124. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  125. "dependencies": {
  126. "Microsoft.Extensions.Primitives": "8.0.0"
  127. }
  128. },
  129. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  130. "dependencies": {
  131. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  132. }
  133. },
  134. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {},
  135. "Microsoft.Extensions.Logging/8.0.0": {
  136. "dependencies": {
  137. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  138. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  139. "Microsoft.Extensions.Options": "8.0.0"
  140. }
  141. },
  142. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  143. "dependencies": {
  144. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  145. }
  146. },
  147. "Microsoft.Extensions.Logging.Console/1.1.1": {
  148. "dependencies": {
  149. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  150. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  151. "NETStandard.Library": "1.6.1"
  152. }
  153. },
  154. "Microsoft.Extensions.Options/8.0.0": {
  155. "dependencies": {
  156. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  157. "Microsoft.Extensions.Primitives": "8.0.0"
  158. }
  159. },
  160. "Microsoft.Extensions.Primitives/8.0.0": {},
  161. "Microsoft.NETCore.Platforms/1.1.0": {},
  162. "Microsoft.NETCore.Targets/1.1.0": {},
  163. "Microsoft.OpenApi/1.2.3": {
  164. "runtime": {
  165. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  166. "assemblyVersion": "1.2.3.0",
  167. "fileVersion": "1.2.3.0"
  168. }
  169. }
  170. },
  171. "Microsoft.Win32.Primitives/4.3.0": {
  172. "dependencies": {
  173. "Microsoft.NETCore.Platforms": "1.1.0",
  174. "Microsoft.NETCore.Targets": "1.1.0",
  175. "System.Runtime": "4.3.0"
  176. }
  177. },
  178. "Microsoft.Win32.SystemEvents/6.0.0": {
  179. "runtime": {
  180. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  181. "assemblyVersion": "6.0.0.0",
  182. "fileVersion": "6.0.21.52210"
  183. }
  184. },
  185. "runtimeTargets": {
  186. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  187. "rid": "win",
  188. "assetType": "runtime",
  189. "assemblyVersion": "6.0.0.0",
  190. "fileVersion": "6.0.21.52210"
  191. }
  192. }
  193. },
  194. "MySqlConnector/2.3.5": {
  195. "dependencies": {
  196. "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
  197. },
  198. "runtime": {
  199. "lib/net8.0/MySqlConnector.dll": {
  200. "assemblyVersion": "2.0.0.0",
  201. "fileVersion": "2.3.5.0"
  202. }
  203. }
  204. },
  205. "NETStandard.Library/1.6.1": {
  206. "dependencies": {
  207. "Microsoft.NETCore.Platforms": "1.1.0",
  208. "Microsoft.Win32.Primitives": "4.3.0",
  209. "System.AppContext": "4.3.0",
  210. "System.Collections": "4.3.0",
  211. "System.Collections.Concurrent": "4.3.0",
  212. "System.Console": "4.3.0",
  213. "System.Diagnostics.Debug": "4.3.0",
  214. "System.Diagnostics.Tools": "4.3.0",
  215. "System.Diagnostics.Tracing": "4.3.0",
  216. "System.Globalization": "4.3.0",
  217. "System.Globalization.Calendars": "4.3.0",
  218. "System.IO": "4.3.0",
  219. "System.IO.Compression": "4.3.0",
  220. "System.IO.Compression.ZipFile": "4.3.0",
  221. "System.IO.FileSystem": "4.3.0",
  222. "System.IO.FileSystem.Primitives": "4.3.0",
  223. "System.Linq": "4.3.0",
  224. "System.Linq.Expressions": "4.3.0",
  225. "System.Net.Http": "4.3.0",
  226. "System.Net.Primitives": "4.3.0",
  227. "System.Net.Sockets": "4.3.0",
  228. "System.ObjectModel": "4.3.0",
  229. "System.Reflection": "4.3.0",
  230. "System.Reflection.Extensions": "4.3.0",
  231. "System.Reflection.Primitives": "4.3.0",
  232. "System.Resources.ResourceManager": "4.3.0",
  233. "System.Runtime": "4.3.0",
  234. "System.Runtime.Extensions": "4.3.0",
  235. "System.Runtime.Handles": "4.3.0",
  236. "System.Runtime.InteropServices": "4.3.0",
  237. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  238. "System.Runtime.Numerics": "4.3.0",
  239. "System.Security.Cryptography.Algorithms": "4.3.0",
  240. "System.Security.Cryptography.Encoding": "4.3.0",
  241. "System.Security.Cryptography.Primitives": "4.3.0",
  242. "System.Security.Cryptography.X509Certificates": "4.3.0",
  243. "System.Text.Encoding": "4.3.0",
  244. "System.Text.Encoding.Extensions": "4.3.0",
  245. "System.Text.RegularExpressions": "4.3.0",
  246. "System.Threading": "4.3.0",
  247. "System.Threading.Tasks": "4.3.0",
  248. "System.Threading.Timer": "4.3.0",
  249. "System.Xml.ReaderWriter": "4.3.0",
  250. "System.Xml.XDocument": "4.3.0"
  251. }
  252. },
  253. "Newtonsoft.Json/13.0.3": {
  254. "runtime": {
  255. "lib/net6.0/Newtonsoft.Json.dll": {
  256. "assemblyVersion": "13.0.0.0",
  257. "fileVersion": "13.0.3.27908"
  258. }
  259. }
  260. },
  261. "Pipelines.Sockets.Unofficial/2.2.8": {
  262. "dependencies": {
  263. "System.IO.Pipelines": "5.0.1"
  264. },
  265. "runtime": {
  266. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  267. "assemblyVersion": "1.0.0.0",
  268. "fileVersion": "2.2.8.1080"
  269. }
  270. }
  271. },
  272. "Pomelo.EntityFrameworkCore.MySql/8.0.2": {
  273. "dependencies": {
  274. "Microsoft.EntityFrameworkCore.Relational": "8.0.2",
  275. "MySqlConnector": "2.3.5"
  276. },
  277. "runtime": {
  278. "lib/net8.0/Pomelo.EntityFrameworkCore.MySql.dll": {
  279. "assemblyVersion": "8.0.2.0",
  280. "fileVersion": "8.0.2.0"
  281. }
  282. }
  283. },
  284. "Pomelo.EntityFrameworkCore.MySql.Design/1.1.2": {
  285. "dependencies": {
  286. "Microsoft.EntityFrameworkCore.Relational.Design": "1.1.1",
  287. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  288. "Microsoft.Extensions.Logging.Console": "1.1.1",
  289. "MySqlConnector": "2.3.5",
  290. "NETStandard.Library": "1.6.1",
  291. "Pomelo.EntityFrameworkCore.MySql": "8.0.2"
  292. },
  293. "runtime": {
  294. "lib/netstandard1.3/Pomelo.EntityFrameworkCore.MySql.Design.dll": {
  295. "assemblyVersion": "1.1.1.0",
  296. "fileVersion": "1.1.1.0"
  297. }
  298. }
  299. },
  300. "Quartz/3.11.0": {
  301. "dependencies": {
  302. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  303. "System.Configuration.ConfigurationManager": "6.0.1"
  304. },
  305. "runtime": {
  306. "lib/net6.0/Quartz.dll": {
  307. "assemblyVersion": "3.11.0.0",
  308. "fileVersion": "3.11.0.0"
  309. }
  310. }
  311. },
  312. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  313. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  314. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  315. "runtime.native.System/4.3.0": {
  316. "dependencies": {
  317. "Microsoft.NETCore.Platforms": "1.1.0",
  318. "Microsoft.NETCore.Targets": "1.1.0"
  319. }
  320. },
  321. "runtime.native.System.IO.Compression/4.3.0": {
  322. "dependencies": {
  323. "Microsoft.NETCore.Platforms": "1.1.0",
  324. "Microsoft.NETCore.Targets": "1.1.0"
  325. }
  326. },
  327. "runtime.native.System.Net.Http/4.3.0": {
  328. "dependencies": {
  329. "Microsoft.NETCore.Platforms": "1.1.0",
  330. "Microsoft.NETCore.Targets": "1.1.0"
  331. }
  332. },
  333. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  334. "dependencies": {
  335. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  336. }
  337. },
  338. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  339. "dependencies": {
  340. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  341. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  342. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  343. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  344. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  345. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  346. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  347. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  348. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  349. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  350. }
  351. },
  352. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  353. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  354. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
  355. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  356. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  357. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  358. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  359. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  360. "S7netplus/0.20.0": {
  361. "runtime": {
  362. "lib/net7.0/S7.Net.dll": {
  363. "assemblyVersion": "0.20.0.0",
  364. "fileVersion": "0.20.0.0"
  365. }
  366. }
  367. },
  368. "StackExchange.Redis/2.8.0": {
  369. "dependencies": {
  370. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  371. "Pipelines.Sockets.Unofficial": "2.2.8"
  372. },
  373. "runtime": {
  374. "lib/net6.0/StackExchange.Redis.dll": {
  375. "assemblyVersion": "2.0.0.0",
  376. "fileVersion": "2.8.0.27420"
  377. }
  378. }
  379. },
  380. "Swashbuckle.AspNetCore/6.4.0": {
  381. "dependencies": {
  382. "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
  383. "Swashbuckle.AspNetCore.Swagger": "6.4.0",
  384. "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0",
  385. "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0"
  386. }
  387. },
  388. "Swashbuckle.AspNetCore.Swagger/6.4.0": {
  389. "dependencies": {
  390. "Microsoft.OpenApi": "1.2.3"
  391. },
  392. "runtime": {
  393. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
  394. "assemblyVersion": "6.4.0.0",
  395. "fileVersion": "6.4.0.0"
  396. }
  397. }
  398. },
  399. "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": {
  400. "dependencies": {
  401. "Swashbuckle.AspNetCore.Swagger": "6.4.0"
  402. },
  403. "runtime": {
  404. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  405. "assemblyVersion": "6.4.0.0",
  406. "fileVersion": "6.4.0.0"
  407. }
  408. }
  409. },
  410. "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": {
  411. "runtime": {
  412. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  413. "assemblyVersion": "6.4.0.0",
  414. "fileVersion": "6.4.0.0"
  415. }
  416. }
  417. },
  418. "System.AppContext/4.3.0": {
  419. "dependencies": {
  420. "System.Runtime": "4.3.0"
  421. }
  422. },
  423. "System.Buffers/4.3.0": {
  424. "dependencies": {
  425. "System.Diagnostics.Debug": "4.3.0",
  426. "System.Diagnostics.Tracing": "4.3.0",
  427. "System.Resources.ResourceManager": "4.3.0",
  428. "System.Runtime": "4.3.0",
  429. "System.Threading": "4.3.0"
  430. }
  431. },
  432. "System.Collections/4.3.0": {
  433. "dependencies": {
  434. "Microsoft.NETCore.Platforms": "1.1.0",
  435. "Microsoft.NETCore.Targets": "1.1.0",
  436. "System.Runtime": "4.3.0"
  437. }
  438. },
  439. "System.Collections.Concurrent/4.3.0": {
  440. "dependencies": {
  441. "System.Collections": "4.3.0",
  442. "System.Diagnostics.Debug": "4.3.0",
  443. "System.Diagnostics.Tracing": "4.3.0",
  444. "System.Globalization": "4.3.0",
  445. "System.Reflection": "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.Threading": "4.3.0",
  450. "System.Threading.Tasks": "4.3.0"
  451. }
  452. },
  453. "System.Configuration.ConfigurationManager/6.0.1": {
  454. "dependencies": {
  455. "System.Security.Cryptography.ProtectedData": "6.0.0",
  456. "System.Security.Permissions": "6.0.0"
  457. },
  458. "runtime": {
  459. "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
  460. "assemblyVersion": "6.0.0.0",
  461. "fileVersion": "6.0.922.41905"
  462. }
  463. }
  464. },
  465. "System.Console/4.3.0": {
  466. "dependencies": {
  467. "Microsoft.NETCore.Platforms": "1.1.0",
  468. "Microsoft.NETCore.Targets": "1.1.0",
  469. "System.IO": "4.3.0",
  470. "System.Runtime": "4.3.0",
  471. "System.Text.Encoding": "4.3.0"
  472. }
  473. },
  474. "System.Diagnostics.Debug/4.3.0": {
  475. "dependencies": {
  476. "Microsoft.NETCore.Platforms": "1.1.0",
  477. "Microsoft.NETCore.Targets": "1.1.0",
  478. "System.Runtime": "4.3.0"
  479. }
  480. },
  481. "System.Diagnostics.DiagnosticSource/4.3.0": {
  482. "dependencies": {
  483. "System.Collections": "4.3.0",
  484. "System.Diagnostics.Tracing": "4.3.0",
  485. "System.Reflection": "4.3.0",
  486. "System.Runtime": "4.3.0",
  487. "System.Threading": "4.3.0"
  488. }
  489. },
  490. "System.Diagnostics.Tools/4.3.0": {
  491. "dependencies": {
  492. "Microsoft.NETCore.Platforms": "1.1.0",
  493. "Microsoft.NETCore.Targets": "1.1.0",
  494. "System.Runtime": "4.3.0"
  495. }
  496. },
  497. "System.Diagnostics.Tracing/4.3.0": {
  498. "dependencies": {
  499. "Microsoft.NETCore.Platforms": "1.1.0",
  500. "Microsoft.NETCore.Targets": "1.1.0",
  501. "System.Runtime": "4.3.0"
  502. }
  503. },
  504. "System.Drawing.Common/6.0.0": {
  505. "dependencies": {
  506. "Microsoft.Win32.SystemEvents": "6.0.0"
  507. },
  508. "runtime": {
  509. "lib/net6.0/System.Drawing.Common.dll": {
  510. "assemblyVersion": "6.0.0.0",
  511. "fileVersion": "6.0.21.52210"
  512. }
  513. },
  514. "runtimeTargets": {
  515. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
  516. "rid": "unix",
  517. "assetType": "runtime",
  518. "assemblyVersion": "6.0.0.0",
  519. "fileVersion": "6.0.21.52210"
  520. },
  521. "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
  522. "rid": "win",
  523. "assetType": "runtime",
  524. "assemblyVersion": "6.0.0.0",
  525. "fileVersion": "6.0.21.52210"
  526. }
  527. }
  528. },
  529. "System.Globalization/4.3.0": {
  530. "dependencies": {
  531. "Microsoft.NETCore.Platforms": "1.1.0",
  532. "Microsoft.NETCore.Targets": "1.1.0",
  533. "System.Runtime": "4.3.0"
  534. }
  535. },
  536. "System.Globalization.Calendars/4.3.0": {
  537. "dependencies": {
  538. "Microsoft.NETCore.Platforms": "1.1.0",
  539. "Microsoft.NETCore.Targets": "1.1.0",
  540. "System.Globalization": "4.3.0",
  541. "System.Runtime": "4.3.0"
  542. }
  543. },
  544. "System.Globalization.Extensions/4.3.0": {
  545. "dependencies": {
  546. "Microsoft.NETCore.Platforms": "1.1.0",
  547. "System.Globalization": "4.3.0",
  548. "System.Resources.ResourceManager": "4.3.0",
  549. "System.Runtime": "4.3.0",
  550. "System.Runtime.Extensions": "4.3.0",
  551. "System.Runtime.InteropServices": "4.3.0"
  552. }
  553. },
  554. "System.IO/4.3.0": {
  555. "dependencies": {
  556. "Microsoft.NETCore.Platforms": "1.1.0",
  557. "Microsoft.NETCore.Targets": "1.1.0",
  558. "System.Runtime": "4.3.0",
  559. "System.Text.Encoding": "4.3.0",
  560. "System.Threading.Tasks": "4.3.0"
  561. }
  562. },
  563. "System.IO.Compression/4.3.0": {
  564. "dependencies": {
  565. "Microsoft.NETCore.Platforms": "1.1.0",
  566. "System.Buffers": "4.3.0",
  567. "System.Collections": "4.3.0",
  568. "System.Diagnostics.Debug": "4.3.0",
  569. "System.IO": "4.3.0",
  570. "System.Resources.ResourceManager": "4.3.0",
  571. "System.Runtime": "4.3.0",
  572. "System.Runtime.Extensions": "4.3.0",
  573. "System.Runtime.Handles": "4.3.0",
  574. "System.Runtime.InteropServices": "4.3.0",
  575. "System.Text.Encoding": "4.3.0",
  576. "System.Threading": "4.3.0",
  577. "System.Threading.Tasks": "4.3.0",
  578. "runtime.native.System": "4.3.0",
  579. "runtime.native.System.IO.Compression": "4.3.0"
  580. }
  581. },
  582. "System.IO.Compression.ZipFile/4.3.0": {
  583. "dependencies": {
  584. "System.Buffers": "4.3.0",
  585. "System.IO": "4.3.0",
  586. "System.IO.Compression": "4.3.0",
  587. "System.IO.FileSystem": "4.3.0",
  588. "System.IO.FileSystem.Primitives": "4.3.0",
  589. "System.Resources.ResourceManager": "4.3.0",
  590. "System.Runtime": "4.3.0",
  591. "System.Runtime.Extensions": "4.3.0",
  592. "System.Text.Encoding": "4.3.0"
  593. }
  594. },
  595. "System.IO.FileSystem/4.3.0": {
  596. "dependencies": {
  597. "Microsoft.NETCore.Platforms": "1.1.0",
  598. "Microsoft.NETCore.Targets": "1.1.0",
  599. "System.IO": "4.3.0",
  600. "System.IO.FileSystem.Primitives": "4.3.0",
  601. "System.Runtime": "4.3.0",
  602. "System.Runtime.Handles": "4.3.0",
  603. "System.Text.Encoding": "4.3.0",
  604. "System.Threading.Tasks": "4.3.0"
  605. }
  606. },
  607. "System.IO.FileSystem.Primitives/4.3.0": {
  608. "dependencies": {
  609. "System.Runtime": "4.3.0"
  610. }
  611. },
  612. "System.IO.Pipelines/5.0.1": {},
  613. "System.Linq/4.3.0": {
  614. "dependencies": {
  615. "System.Collections": "4.3.0",
  616. "System.Diagnostics.Debug": "4.3.0",
  617. "System.Resources.ResourceManager": "4.3.0",
  618. "System.Runtime": "4.3.0",
  619. "System.Runtime.Extensions": "4.3.0"
  620. }
  621. },
  622. "System.Linq.Expressions/4.3.0": {
  623. "dependencies": {
  624. "System.Collections": "4.3.0",
  625. "System.Diagnostics.Debug": "4.3.0",
  626. "System.Globalization": "4.3.0",
  627. "System.IO": "4.3.0",
  628. "System.Linq": "4.3.0",
  629. "System.ObjectModel": "4.3.0",
  630. "System.Reflection": "4.3.0",
  631. "System.Reflection.Emit": "4.3.0",
  632. "System.Reflection.Emit.ILGeneration": "4.3.0",
  633. "System.Reflection.Emit.Lightweight": "4.3.0",
  634. "System.Reflection.Extensions": "4.3.0",
  635. "System.Reflection.Primitives": "4.3.0",
  636. "System.Reflection.TypeExtensions": "4.3.0",
  637. "System.Resources.ResourceManager": "4.3.0",
  638. "System.Runtime": "4.3.0",
  639. "System.Runtime.Extensions": "4.3.0",
  640. "System.Threading": "4.3.0"
  641. }
  642. },
  643. "System.Net.Http/4.3.0": {
  644. "dependencies": {
  645. "Microsoft.NETCore.Platforms": "1.1.0",
  646. "System.Collections": "4.3.0",
  647. "System.Diagnostics.Debug": "4.3.0",
  648. "System.Diagnostics.DiagnosticSource": "4.3.0",
  649. "System.Diagnostics.Tracing": "4.3.0",
  650. "System.Globalization": "4.3.0",
  651. "System.Globalization.Extensions": "4.3.0",
  652. "System.IO": "4.3.0",
  653. "System.IO.FileSystem": "4.3.0",
  654. "System.Net.Primitives": "4.3.0",
  655. "System.Resources.ResourceManager": "4.3.0",
  656. "System.Runtime": "4.3.0",
  657. "System.Runtime.Extensions": "4.3.0",
  658. "System.Runtime.Handles": "4.3.0",
  659. "System.Runtime.InteropServices": "4.3.0",
  660. "System.Security.Cryptography.Algorithms": "4.3.0",
  661. "System.Security.Cryptography.Encoding": "4.3.0",
  662. "System.Security.Cryptography.OpenSsl": "4.3.0",
  663. "System.Security.Cryptography.Primitives": "4.3.0",
  664. "System.Security.Cryptography.X509Certificates": "4.3.0",
  665. "System.Text.Encoding": "4.3.0",
  666. "System.Threading": "4.3.0",
  667. "System.Threading.Tasks": "4.3.0",
  668. "runtime.native.System": "4.3.0",
  669. "runtime.native.System.Net.Http": "4.3.0",
  670. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  671. }
  672. },
  673. "System.Net.Primitives/4.3.0": {
  674. "dependencies": {
  675. "Microsoft.NETCore.Platforms": "1.1.0",
  676. "Microsoft.NETCore.Targets": "1.1.0",
  677. "System.Runtime": "4.3.0",
  678. "System.Runtime.Handles": "4.3.0"
  679. }
  680. },
  681. "System.Net.Sockets/4.3.0": {
  682. "dependencies": {
  683. "Microsoft.NETCore.Platforms": "1.1.0",
  684. "Microsoft.NETCore.Targets": "1.1.0",
  685. "System.IO": "4.3.0",
  686. "System.Net.Primitives": "4.3.0",
  687. "System.Runtime": "4.3.0",
  688. "System.Threading.Tasks": "4.3.0"
  689. }
  690. },
  691. "System.ObjectModel/4.3.0": {
  692. "dependencies": {
  693. "System.Collections": "4.3.0",
  694. "System.Diagnostics.Debug": "4.3.0",
  695. "System.Resources.ResourceManager": "4.3.0",
  696. "System.Runtime": "4.3.0",
  697. "System.Threading": "4.3.0"
  698. }
  699. },
  700. "System.Reflection/4.3.0": {
  701. "dependencies": {
  702. "Microsoft.NETCore.Platforms": "1.1.0",
  703. "Microsoft.NETCore.Targets": "1.1.0",
  704. "System.IO": "4.3.0",
  705. "System.Reflection.Primitives": "4.3.0",
  706. "System.Runtime": "4.3.0"
  707. }
  708. },
  709. "System.Reflection.Emit/4.3.0": {
  710. "dependencies": {
  711. "System.IO": "4.3.0",
  712. "System.Reflection": "4.3.0",
  713. "System.Reflection.Emit.ILGeneration": "4.3.0",
  714. "System.Reflection.Primitives": "4.3.0",
  715. "System.Runtime": "4.3.0"
  716. }
  717. },
  718. "System.Reflection.Emit.ILGeneration/4.3.0": {
  719. "dependencies": {
  720. "System.Reflection": "4.3.0",
  721. "System.Reflection.Primitives": "4.3.0",
  722. "System.Runtime": "4.3.0"
  723. }
  724. },
  725. "System.Reflection.Emit.Lightweight/4.3.0": {
  726. "dependencies": {
  727. "System.Reflection": "4.3.0",
  728. "System.Reflection.Emit.ILGeneration": "4.3.0",
  729. "System.Reflection.Primitives": "4.3.0",
  730. "System.Runtime": "4.3.0"
  731. }
  732. },
  733. "System.Reflection.Extensions/4.3.0": {
  734. "dependencies": {
  735. "Microsoft.NETCore.Platforms": "1.1.0",
  736. "Microsoft.NETCore.Targets": "1.1.0",
  737. "System.Reflection": "4.3.0",
  738. "System.Runtime": "4.3.0"
  739. }
  740. },
  741. "System.Reflection.Primitives/4.3.0": {
  742. "dependencies": {
  743. "Microsoft.NETCore.Platforms": "1.1.0",
  744. "Microsoft.NETCore.Targets": "1.1.0",
  745. "System.Runtime": "4.3.0"
  746. }
  747. },
  748. "System.Reflection.TypeExtensions/4.3.0": {
  749. "dependencies": {
  750. "System.Reflection": "4.3.0",
  751. "System.Runtime": "4.3.0"
  752. }
  753. },
  754. "System.Resources.ResourceManager/4.3.0": {
  755. "dependencies": {
  756. "Microsoft.NETCore.Platforms": "1.1.0",
  757. "Microsoft.NETCore.Targets": "1.1.0",
  758. "System.Globalization": "4.3.0",
  759. "System.Reflection": "4.3.0",
  760. "System.Runtime": "4.3.0"
  761. }
  762. },
  763. "System.Runtime/4.3.0": {
  764. "dependencies": {
  765. "Microsoft.NETCore.Platforms": "1.1.0",
  766. "Microsoft.NETCore.Targets": "1.1.0"
  767. }
  768. },
  769. "System.Runtime.Extensions/4.3.0": {
  770. "dependencies": {
  771. "Microsoft.NETCore.Platforms": "1.1.0",
  772. "Microsoft.NETCore.Targets": "1.1.0",
  773. "System.Runtime": "4.3.0"
  774. }
  775. },
  776. "System.Runtime.Handles/4.3.0": {
  777. "dependencies": {
  778. "Microsoft.NETCore.Platforms": "1.1.0",
  779. "Microsoft.NETCore.Targets": "1.1.0",
  780. "System.Runtime": "4.3.0"
  781. }
  782. },
  783. "System.Runtime.InteropServices/4.3.0": {
  784. "dependencies": {
  785. "Microsoft.NETCore.Platforms": "1.1.0",
  786. "Microsoft.NETCore.Targets": "1.1.0",
  787. "System.Reflection": "4.3.0",
  788. "System.Reflection.Primitives": "4.3.0",
  789. "System.Runtime": "4.3.0",
  790. "System.Runtime.Handles": "4.3.0"
  791. }
  792. },
  793. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  794. "dependencies": {
  795. "System.Reflection": "4.3.0",
  796. "System.Reflection.Extensions": "4.3.0",
  797. "System.Resources.ResourceManager": "4.3.0",
  798. "System.Runtime": "4.3.0",
  799. "System.Runtime.InteropServices": "4.3.0",
  800. "System.Threading": "4.3.0",
  801. "runtime.native.System": "4.3.0"
  802. }
  803. },
  804. "System.Runtime.Numerics/4.3.0": {
  805. "dependencies": {
  806. "System.Globalization": "4.3.0",
  807. "System.Resources.ResourceManager": "4.3.0",
  808. "System.Runtime": "4.3.0",
  809. "System.Runtime.Extensions": "4.3.0"
  810. }
  811. },
  812. "System.Security.AccessControl/6.0.0": {},
  813. "System.Security.Cryptography.Algorithms/4.3.0": {
  814. "dependencies": {
  815. "Microsoft.NETCore.Platforms": "1.1.0",
  816. "System.Collections": "4.3.0",
  817. "System.IO": "4.3.0",
  818. "System.Resources.ResourceManager": "4.3.0",
  819. "System.Runtime": "4.3.0",
  820. "System.Runtime.Extensions": "4.3.0",
  821. "System.Runtime.Handles": "4.3.0",
  822. "System.Runtime.InteropServices": "4.3.0",
  823. "System.Runtime.Numerics": "4.3.0",
  824. "System.Security.Cryptography.Encoding": "4.3.0",
  825. "System.Security.Cryptography.Primitives": "4.3.0",
  826. "System.Text.Encoding": "4.3.0",
  827. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  828. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  829. }
  830. },
  831. "System.Security.Cryptography.Cng/4.3.0": {
  832. "dependencies": {
  833. "Microsoft.NETCore.Platforms": "1.1.0",
  834. "System.IO": "4.3.0",
  835. "System.Resources.ResourceManager": "4.3.0",
  836. "System.Runtime": "4.3.0",
  837. "System.Runtime.Extensions": "4.3.0",
  838. "System.Runtime.Handles": "4.3.0",
  839. "System.Runtime.InteropServices": "4.3.0",
  840. "System.Security.Cryptography.Algorithms": "4.3.0",
  841. "System.Security.Cryptography.Encoding": "4.3.0",
  842. "System.Security.Cryptography.Primitives": "4.3.0",
  843. "System.Text.Encoding": "4.3.0"
  844. }
  845. },
  846. "System.Security.Cryptography.Csp/4.3.0": {
  847. "dependencies": {
  848. "Microsoft.NETCore.Platforms": "1.1.0",
  849. "System.IO": "4.3.0",
  850. "System.Reflection": "4.3.0",
  851. "System.Resources.ResourceManager": "4.3.0",
  852. "System.Runtime": "4.3.0",
  853. "System.Runtime.Extensions": "4.3.0",
  854. "System.Runtime.Handles": "4.3.0",
  855. "System.Runtime.InteropServices": "4.3.0",
  856. "System.Security.Cryptography.Algorithms": "4.3.0",
  857. "System.Security.Cryptography.Encoding": "4.3.0",
  858. "System.Security.Cryptography.Primitives": "4.3.0",
  859. "System.Text.Encoding": "4.3.0",
  860. "System.Threading": "4.3.0"
  861. }
  862. },
  863. "System.Security.Cryptography.Encoding/4.3.0": {
  864. "dependencies": {
  865. "Microsoft.NETCore.Platforms": "1.1.0",
  866. "System.Collections": "4.3.0",
  867. "System.Collections.Concurrent": "4.3.0",
  868. "System.Linq": "4.3.0",
  869. "System.Resources.ResourceManager": "4.3.0",
  870. "System.Runtime": "4.3.0",
  871. "System.Runtime.Extensions": "4.3.0",
  872. "System.Runtime.Handles": "4.3.0",
  873. "System.Runtime.InteropServices": "4.3.0",
  874. "System.Security.Cryptography.Primitives": "4.3.0",
  875. "System.Text.Encoding": "4.3.0",
  876. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  877. }
  878. },
  879. "System.Security.Cryptography.OpenSsl/4.3.0": {
  880. "dependencies": {
  881. "System.Collections": "4.3.0",
  882. "System.IO": "4.3.0",
  883. "System.Resources.ResourceManager": "4.3.0",
  884. "System.Runtime": "4.3.0",
  885. "System.Runtime.Extensions": "4.3.0",
  886. "System.Runtime.Handles": "4.3.0",
  887. "System.Runtime.InteropServices": "4.3.0",
  888. "System.Runtime.Numerics": "4.3.0",
  889. "System.Security.Cryptography.Algorithms": "4.3.0",
  890. "System.Security.Cryptography.Encoding": "4.3.0",
  891. "System.Security.Cryptography.Primitives": "4.3.0",
  892. "System.Text.Encoding": "4.3.0",
  893. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  894. }
  895. },
  896. "System.Security.Cryptography.Primitives/4.3.0": {
  897. "dependencies": {
  898. "System.Diagnostics.Debug": "4.3.0",
  899. "System.Globalization": "4.3.0",
  900. "System.IO": "4.3.0",
  901. "System.Resources.ResourceManager": "4.3.0",
  902. "System.Runtime": "4.3.0",
  903. "System.Threading": "4.3.0",
  904. "System.Threading.Tasks": "4.3.0"
  905. }
  906. },
  907. "System.Security.Cryptography.ProtectedData/6.0.0": {
  908. "runtime": {
  909. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  910. "assemblyVersion": "6.0.0.0",
  911. "fileVersion": "6.0.21.52210"
  912. }
  913. },
  914. "runtimeTargets": {
  915. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  916. "rid": "win",
  917. "assetType": "runtime",
  918. "assemblyVersion": "6.0.0.0",
  919. "fileVersion": "6.0.21.52210"
  920. }
  921. }
  922. },
  923. "System.Security.Cryptography.X509Certificates/4.3.0": {
  924. "dependencies": {
  925. "Microsoft.NETCore.Platforms": "1.1.0",
  926. "System.Collections": "4.3.0",
  927. "System.Diagnostics.Debug": "4.3.0",
  928. "System.Globalization": "4.3.0",
  929. "System.Globalization.Calendars": "4.3.0",
  930. "System.IO": "4.3.0",
  931. "System.IO.FileSystem": "4.3.0",
  932. "System.IO.FileSystem.Primitives": "4.3.0",
  933. "System.Resources.ResourceManager": "4.3.0",
  934. "System.Runtime": "4.3.0",
  935. "System.Runtime.Extensions": "4.3.0",
  936. "System.Runtime.Handles": "4.3.0",
  937. "System.Runtime.InteropServices": "4.3.0",
  938. "System.Runtime.Numerics": "4.3.0",
  939. "System.Security.Cryptography.Algorithms": "4.3.0",
  940. "System.Security.Cryptography.Cng": "4.3.0",
  941. "System.Security.Cryptography.Csp": "4.3.0",
  942. "System.Security.Cryptography.Encoding": "4.3.0",
  943. "System.Security.Cryptography.OpenSsl": "4.3.0",
  944. "System.Security.Cryptography.Primitives": "4.3.0",
  945. "System.Text.Encoding": "4.3.0",
  946. "System.Threading": "4.3.0",
  947. "runtime.native.System": "4.3.0",
  948. "runtime.native.System.Net.Http": "4.3.0",
  949. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  950. }
  951. },
  952. "System.Security.Permissions/6.0.0": {
  953. "dependencies": {
  954. "System.Security.AccessControl": "6.0.0",
  955. "System.Windows.Extensions": "6.0.0"
  956. },
  957. "runtime": {
  958. "lib/net6.0/System.Security.Permissions.dll": {
  959. "assemblyVersion": "6.0.0.0",
  960. "fileVersion": "6.0.21.52210"
  961. }
  962. }
  963. },
  964. "System.Text.Encoding/4.3.0": {
  965. "dependencies": {
  966. "Microsoft.NETCore.Platforms": "1.1.0",
  967. "Microsoft.NETCore.Targets": "1.1.0",
  968. "System.Runtime": "4.3.0"
  969. }
  970. },
  971. "System.Text.Encoding.Extensions/4.3.0": {
  972. "dependencies": {
  973. "Microsoft.NETCore.Platforms": "1.1.0",
  974. "Microsoft.NETCore.Targets": "1.1.0",
  975. "System.Runtime": "4.3.0",
  976. "System.Text.Encoding": "4.3.0"
  977. }
  978. },
  979. "System.Text.RegularExpressions/4.3.0": {
  980. "dependencies": {
  981. "System.Runtime": "4.3.0"
  982. }
  983. },
  984. "System.Threading/4.3.0": {
  985. "dependencies": {
  986. "System.Runtime": "4.3.0",
  987. "System.Threading.Tasks": "4.3.0"
  988. }
  989. },
  990. "System.Threading.Tasks/4.3.0": {
  991. "dependencies": {
  992. "Microsoft.NETCore.Platforms": "1.1.0",
  993. "Microsoft.NETCore.Targets": "1.1.0",
  994. "System.Runtime": "4.3.0"
  995. }
  996. },
  997. "System.Threading.Tasks.Extensions/4.3.0": {
  998. "dependencies": {
  999. "System.Collections": "4.3.0",
  1000. "System.Runtime": "4.3.0",
  1001. "System.Threading.Tasks": "4.3.0"
  1002. }
  1003. },
  1004. "System.Threading.Timer/4.3.0": {
  1005. "dependencies": {
  1006. "Microsoft.NETCore.Platforms": "1.1.0",
  1007. "Microsoft.NETCore.Targets": "1.1.0",
  1008. "System.Runtime": "4.3.0"
  1009. }
  1010. },
  1011. "System.Windows.Extensions/6.0.0": {
  1012. "dependencies": {
  1013. "System.Drawing.Common": "6.0.0"
  1014. },
  1015. "runtime": {
  1016. "lib/net6.0/System.Windows.Extensions.dll": {
  1017. "assemblyVersion": "6.0.0.0",
  1018. "fileVersion": "6.0.21.52210"
  1019. }
  1020. },
  1021. "runtimeTargets": {
  1022. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
  1023. "rid": "win",
  1024. "assetType": "runtime",
  1025. "assemblyVersion": "6.0.0.0",
  1026. "fileVersion": "6.0.21.52210"
  1027. }
  1028. }
  1029. },
  1030. "System.Xml.ReaderWriter/4.3.0": {
  1031. "dependencies": {
  1032. "System.Collections": "4.3.0",
  1033. "System.Diagnostics.Debug": "4.3.0",
  1034. "System.Globalization": "4.3.0",
  1035. "System.IO": "4.3.0",
  1036. "System.IO.FileSystem": "4.3.0",
  1037. "System.IO.FileSystem.Primitives": "4.3.0",
  1038. "System.Resources.ResourceManager": "4.3.0",
  1039. "System.Runtime": "4.3.0",
  1040. "System.Runtime.Extensions": "4.3.0",
  1041. "System.Runtime.InteropServices": "4.3.0",
  1042. "System.Text.Encoding": "4.3.0",
  1043. "System.Text.Encoding.Extensions": "4.3.0",
  1044. "System.Text.RegularExpressions": "4.3.0",
  1045. "System.Threading.Tasks": "4.3.0",
  1046. "System.Threading.Tasks.Extensions": "4.3.0"
  1047. }
  1048. },
  1049. "System.Xml.XDocument/4.3.0": {
  1050. "dependencies": {
  1051. "System.Collections": "4.3.0",
  1052. "System.Diagnostics.Debug": "4.3.0",
  1053. "System.Diagnostics.Tools": "4.3.0",
  1054. "System.Globalization": "4.3.0",
  1055. "System.IO": "4.3.0",
  1056. "System.Reflection": "4.3.0",
  1057. "System.Resources.ResourceManager": "4.3.0",
  1058. "System.Runtime": "4.3.0",
  1059. "System.Runtime.Extensions": "4.3.0",
  1060. "System.Text.Encoding": "4.3.0",
  1061. "System.Threading": "4.3.0",
  1062. "System.Xml.ReaderWriter": "4.3.0"
  1063. }
  1064. },
  1065. "FTP/1.0.0.7": {
  1066. "runtime": {
  1067. "FTP.dll": {
  1068. "assemblyVersion": "1.0.0.7",
  1069. "fileVersion": "1.0.0.7"
  1070. }
  1071. }
  1072. },
  1073. "HslCommunication/7.0.1.0": {
  1074. "runtime": {
  1075. "HslCommunication.dll": {
  1076. "assemblyVersion": "7.0.1.0",
  1077. "fileVersion": "7.0.1.0"
  1078. }
  1079. }
  1080. },
  1081. "Renci.SshNet/2016.1.0.0": {
  1082. "runtime": {
  1083. "Renci.SshNet.dll": {
  1084. "assemblyVersion": "2016.1.0.0",
  1085. "fileVersion": "2016.1.0.0"
  1086. }
  1087. }
  1088. },
  1089. "WinSCPnet/1.8.3.11933": {
  1090. "runtime": {
  1091. "WinSCPnet.dll": {
  1092. "assemblyVersion": "1.8.3.11933",
  1093. "fileVersion": "1.8.3.11933"
  1094. }
  1095. }
  1096. }
  1097. }
  1098. },
  1099. "libraries": {
  1100. "WCS/1.0.0": {
  1101. "type": "project",
  1102. "serviceable": false,
  1103. "sha512": ""
  1104. },
  1105. "Flurl/4.0.0": {
  1106. "type": "package",
  1107. "serviceable": true,
  1108. "sha512": "sha512-rpts69yYgvJqg6PPgqShBQEZ4aNzWQqWpWppcT0oDWxDCIsBqiod4pj6LQZdhk+1OozLFagemldMRACdHF3CsA==",
  1109. "path": "flurl/4.0.0",
  1110. "hashPath": "flurl.4.0.0.nupkg.sha512"
  1111. },
  1112. "Flurl.Http/4.0.2": {
  1113. "type": "package",
  1114. "serviceable": true,
  1115. "sha512": "sha512-9vCqFFyceA11yplkFD8AbCFFTvG1Lrw3tpsgOpL5sLUc28p6zcvGszNleuT6nDymRvtt5eS+rqUX+bRztg1fhA==",
  1116. "path": "flurl.http/4.0.2",
  1117. "hashPath": "flurl.http.4.0.2.nupkg.sha512"
  1118. },
  1119. "GZY.Quartz.MUI/2.6.0": {
  1120. "type": "package",
  1121. "serviceable": true,
  1122. "sha512": "sha512-gqUh0ipK+cil/h6grKyD71DBV5IttgAEvXEkaFu4b2NpAlSYbEPTjMy9+oBqFJ1S4dmbALtA+PuizDvhKG1Wmg==",
  1123. "path": "gzy.quartz.mui/2.6.0",
  1124. "hashPath": "gzy.quartz.mui.2.6.0.nupkg.sha512"
  1125. },
  1126. "Microsoft.EntityFrameworkCore/8.0.2": {
  1127. "type": "package",
  1128. "serviceable": true,
  1129. "sha512": "sha512-6QlvBx4rdawW3AkkCsGVV+8qRLk34aknV5JD40s1hbVR18vKmT2KDl2DW83nHcPX7f4oebQ3BD1UMNCI/gkE0g==",
  1130. "path": "microsoft.entityframeworkcore/8.0.2",
  1131. "hashPath": "microsoft.entityframeworkcore.8.0.2.nupkg.sha512"
  1132. },
  1133. "Microsoft.EntityFrameworkCore.Abstractions/8.0.2": {
  1134. "type": "package",
  1135. "serviceable": true,
  1136. "sha512": "sha512-DjDKp++BTKFZmX+xLTow7grQTY+pImKfhGW68Zf8myiL3zyJ3b8RZbnLsWGNCqKQIF6hJIz/zA/zmERobFwV0A==",
  1137. "path": "microsoft.entityframeworkcore.abstractions/8.0.2",
  1138. "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.2.nupkg.sha512"
  1139. },
  1140. "Microsoft.EntityFrameworkCore.Analyzers/8.0.2": {
  1141. "type": "package",
  1142. "serviceable": true,
  1143. "sha512": "sha512-LI7awhc0fiAKvcUemsqxXUWqzAH9ywTSyM1rpC1un4p5SE1bhr5nRLvyRVbKRzKakmnNNY3to8NPDnoySEkxVw==",
  1144. "path": "microsoft.entityframeworkcore.analyzers/8.0.2",
  1145. "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.2.nupkg.sha512"
  1146. },
  1147. "Microsoft.EntityFrameworkCore.Relational/8.0.2": {
  1148. "type": "package",
  1149. "serviceable": true,
  1150. "sha512": "sha512-NoGfcq2OPw0z8XAPf74YFwGlTKjedWdsIEJqq4SvKcPjcu+B+/XDDNrDRxTvILfz4Ug8POSF49s1jz1JvUqTAg==",
  1151. "path": "microsoft.entityframeworkcore.relational/8.0.2",
  1152. "hashPath": "microsoft.entityframeworkcore.relational.8.0.2.nupkg.sha512"
  1153. },
  1154. "Microsoft.EntityFrameworkCore.Relational.Design/1.1.1": {
  1155. "type": "package",
  1156. "serviceable": true,
  1157. "sha512": "sha512-WZKmQwuDUTLtjhxT/6c3hiMJTwi8OBl9rsPljY/ZhcMFAsF8sLj4uVrpkuNmrg5DEK2dEtnQn6p+Y9miQiIeZw==",
  1158. "path": "microsoft.entityframeworkcore.relational.design/1.1.1",
  1159. "hashPath": "microsoft.entityframeworkcore.relational.design.1.1.1.nupkg.sha512"
  1160. },
  1161. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  1162. "type": "package",
  1163. "serviceable": true,
  1164. "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
  1165. "path": "microsoft.extensions.apidescription.server/6.0.5",
  1166. "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
  1167. },
  1168. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  1169. "type": "package",
  1170. "serviceable": true,
  1171. "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
  1172. "path": "microsoft.extensions.caching.abstractions/8.0.0",
  1173. "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
  1174. },
  1175. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  1176. "type": "package",
  1177. "serviceable": true,
  1178. "sha512": "sha512-7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==",
  1179. "path": "microsoft.extensions.caching.memory/8.0.0",
  1180. "hashPath": "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512"
  1181. },
  1182. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  1183. "type": "package",
  1184. "serviceable": true,
  1185. "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
  1186. "path": "microsoft.extensions.configuration.abstractions/8.0.0",
  1187. "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
  1188. },
  1189. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  1190. "type": "package",
  1191. "serviceable": true,
  1192. "sha512": "sha512-V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
  1193. "path": "microsoft.extensions.dependencyinjection/8.0.0",
  1194. "hashPath": "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512"
  1195. },
  1196. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  1197. "type": "package",
  1198. "serviceable": true,
  1199. "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
  1200. "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
  1201. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512"
  1202. },
  1203. "Microsoft.Extensions.Logging/8.0.0": {
  1204. "type": "package",
  1205. "serviceable": true,
  1206. "sha512": "sha512-tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
  1207. "path": "microsoft.extensions.logging/8.0.0",
  1208. "hashPath": "microsoft.extensions.logging.8.0.0.nupkg.sha512"
  1209. },
  1210. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  1211. "type": "package",
  1212. "serviceable": true,
  1213. "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
  1214. "path": "microsoft.extensions.logging.abstractions/8.0.0",
  1215. "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512"
  1216. },
  1217. "Microsoft.Extensions.Logging.Console/1.1.1": {
  1218. "type": "package",
  1219. "serviceable": true,
  1220. "sha512": "sha512-oKfmQdH7c89QyFvolNhwIU3AME0LXOo89DTNbu0c3+b42/0UkJi3fT4Jz6Pg8AY38yYYP7lH/MFVxmbRqiUmhw==",
  1221. "path": "microsoft.extensions.logging.console/1.1.1",
  1222. "hashPath": "microsoft.extensions.logging.console.1.1.1.nupkg.sha512"
  1223. },
  1224. "Microsoft.Extensions.Options/8.0.0": {
  1225. "type": "package",
  1226. "serviceable": true,
  1227. "sha512": "sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
  1228. "path": "microsoft.extensions.options/8.0.0",
  1229. "hashPath": "microsoft.extensions.options.8.0.0.nupkg.sha512"
  1230. },
  1231. "Microsoft.Extensions.Primitives/8.0.0": {
  1232. "type": "package",
  1233. "serviceable": true,
  1234. "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
  1235. "path": "microsoft.extensions.primitives/8.0.0",
  1236. "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
  1237. },
  1238. "Microsoft.NETCore.Platforms/1.1.0": {
  1239. "type": "package",
  1240. "serviceable": true,
  1241. "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  1242. "path": "microsoft.netcore.platforms/1.1.0",
  1243. "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
  1244. },
  1245. "Microsoft.NETCore.Targets/1.1.0": {
  1246. "type": "package",
  1247. "serviceable": true,
  1248. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  1249. "path": "microsoft.netcore.targets/1.1.0",
  1250. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  1251. },
  1252. "Microsoft.OpenApi/1.2.3": {
  1253. "type": "package",
  1254. "serviceable": true,
  1255. "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  1256. "path": "microsoft.openapi/1.2.3",
  1257. "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512"
  1258. },
  1259. "Microsoft.Win32.Primitives/4.3.0": {
  1260. "type": "package",
  1261. "serviceable": true,
  1262. "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  1263. "path": "microsoft.win32.primitives/4.3.0",
  1264. "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
  1265. },
  1266. "Microsoft.Win32.SystemEvents/6.0.0": {
  1267. "type": "package",
  1268. "serviceable": true,
  1269. "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  1270. "path": "microsoft.win32.systemevents/6.0.0",
  1271. "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
  1272. },
  1273. "MySqlConnector/2.3.5": {
  1274. "type": "package",
  1275. "serviceable": true,
  1276. "sha512": "sha512-AmEfUPkFl+Ev6jJ8Dhns3CYHBfD12RHzGYWuLt6DfG6/af6YvOMyPz74ZPPjBYQGRJkumD2Z48Kqm8s5DJuhLA==",
  1277. "path": "mysqlconnector/2.3.5",
  1278. "hashPath": "mysqlconnector.2.3.5.nupkg.sha512"
  1279. },
  1280. "NETStandard.Library/1.6.1": {
  1281. "type": "package",
  1282. "serviceable": true,
  1283. "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  1284. "path": "netstandard.library/1.6.1",
  1285. "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
  1286. },
  1287. "Newtonsoft.Json/13.0.3": {
  1288. "type": "package",
  1289. "serviceable": true,
  1290. "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  1291. "path": "newtonsoft.json/13.0.3",
  1292. "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
  1293. },
  1294. "Pipelines.Sockets.Unofficial/2.2.8": {
  1295. "type": "package",
  1296. "serviceable": true,
  1297. "sha512": "sha512-zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==",
  1298. "path": "pipelines.sockets.unofficial/2.2.8",
  1299. "hashPath": "pipelines.sockets.unofficial.2.2.8.nupkg.sha512"
  1300. },
  1301. "Pomelo.EntityFrameworkCore.MySql/8.0.2": {
  1302. "type": "package",
  1303. "serviceable": true,
  1304. "sha512": "sha512-XjnlcxVBLnEMbyEc5cZzgZeDyLvAniACZQ04W1slWN0f4rmfNzl98gEMvHnFH0fMDF06z9MmgGi/Sr7hJ+BVnw==",
  1305. "path": "pomelo.entityframeworkcore.mysql/8.0.2",
  1306. "hashPath": "pomelo.entityframeworkcore.mysql.8.0.2.nupkg.sha512"
  1307. },
  1308. "Pomelo.EntityFrameworkCore.MySql.Design/1.1.2": {
  1309. "type": "package",
  1310. "serviceable": true,
  1311. "sha512": "sha512-Hzq1gPtZ3+1zuNhOAQea8Q7j6iX0FjRwNp5S30+X0jBdATiLEJvlfQi4wuVQDS5Y2ClYICGynNqAJUR3EtgA5g==",
  1312. "path": "pomelo.entityframeworkcore.mysql.design/1.1.2",
  1313. "hashPath": "pomelo.entityframeworkcore.mysql.design.1.1.2.nupkg.sha512"
  1314. },
  1315. "Quartz/3.11.0": {
  1316. "type": "package",
  1317. "serviceable": true,
  1318. "sha512": "sha512-dx8K/3C7P+o+tNI7LosOwoCWjT8aM/AojO+3IPlp4ArvgVcqf36pYu3Rqorcxc4kfklfHcFRrS9hQAIgp6TkGg==",
  1319. "path": "quartz/3.11.0",
  1320. "hashPath": "quartz.3.11.0.nupkg.sha512"
  1321. },
  1322. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1323. "type": "package",
  1324. "serviceable": true,
  1325. "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  1326. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1327. "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1328. },
  1329. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1330. "type": "package",
  1331. "serviceable": true,
  1332. "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  1333. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1334. "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1335. },
  1336. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1337. "type": "package",
  1338. "serviceable": true,
  1339. "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  1340. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1341. "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1342. },
  1343. "runtime.native.System/4.3.0": {
  1344. "type": "package",
  1345. "serviceable": true,
  1346. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  1347. "path": "runtime.native.system/4.3.0",
  1348. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  1349. },
  1350. "runtime.native.System.IO.Compression/4.3.0": {
  1351. "type": "package",
  1352. "serviceable": true,
  1353. "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  1354. "path": "runtime.native.system.io.compression/4.3.0",
  1355. "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
  1356. },
  1357. "runtime.native.System.Net.Http/4.3.0": {
  1358. "type": "package",
  1359. "serviceable": true,
  1360. "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  1361. "path": "runtime.native.system.net.http/4.3.0",
  1362. "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
  1363. },
  1364. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1365. "type": "package",
  1366. "serviceable": true,
  1367. "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  1368. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  1369. "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  1370. },
  1371. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1372. "type": "package",
  1373. "serviceable": true,
  1374. "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  1375. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  1376. "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1377. },
  1378. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1379. "type": "package",
  1380. "serviceable": true,
  1381. "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  1382. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1383. "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1384. },
  1385. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1386. "type": "package",
  1387. "serviceable": true,
  1388. "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  1389. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1390. "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1391. },
  1392. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1393. "type": "package",
  1394. "serviceable": true,
  1395. "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  1396. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  1397. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  1398. },
  1399. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1400. "type": "package",
  1401. "serviceable": true,
  1402. "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  1403. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1404. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1405. },
  1406. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1407. "type": "package",
  1408. "serviceable": true,
  1409. "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  1410. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1411. "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1412. },
  1413. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1414. "type": "package",
  1415. "serviceable": true,
  1416. "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  1417. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1418. "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1419. },
  1420. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1421. "type": "package",
  1422. "serviceable": true,
  1423. "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  1424. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1425. "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1426. },
  1427. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1428. "type": "package",
  1429. "serviceable": true,
  1430. "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  1431. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1432. "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1433. },
  1434. "S7netplus/0.20.0": {
  1435. "type": "package",
  1436. "serviceable": true,
  1437. "sha512": "sha512-XAubZ076bhWHQZlnBkzwQO4WxqF5ofwhrkDxfBhGbeD1JC1jBDn3EbWIqMLW6+G0RsxzxirSjLERCQZPfjwGdw==",
  1438. "path": "s7netplus/0.20.0",
  1439. "hashPath": "s7netplus.0.20.0.nupkg.sha512"
  1440. },
  1441. "StackExchange.Redis/2.8.0": {
  1442. "type": "package",
  1443. "serviceable": true,
  1444. "sha512": "sha512-MjAJ0ejH8zLhtuN5+Z+/I07NmPGdVuGEvE2+4xONQoFwgl+7vbQ/A6jlUgH9UkZb4s9Mu9QDyBq1TkRqQcOgTQ==",
  1445. "path": "stackexchange.redis/2.8.0",
  1446. "hashPath": "stackexchange.redis.2.8.0.nupkg.sha512"
  1447. },
  1448. "Swashbuckle.AspNetCore/6.4.0": {
  1449. "type": "package",
  1450. "serviceable": true,
  1451. "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==",
  1452. "path": "swashbuckle.aspnetcore/6.4.0",
  1453. "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512"
  1454. },
  1455. "Swashbuckle.AspNetCore.Swagger/6.4.0": {
  1456. "type": "package",
  1457. "serviceable": true,
  1458. "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==",
  1459. "path": "swashbuckle.aspnetcore.swagger/6.4.0",
  1460. "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512"
  1461. },
  1462. "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": {
  1463. "type": "package",
  1464. "serviceable": true,
  1465. "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==",
  1466. "path": "swashbuckle.aspnetcore.swaggergen/6.4.0",
  1467. "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512"
  1468. },
  1469. "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": {
  1470. "type": "package",
  1471. "serviceable": true,
  1472. "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==",
  1473. "path": "swashbuckle.aspnetcore.swaggerui/6.4.0",
  1474. "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512"
  1475. },
  1476. "System.AppContext/4.3.0": {
  1477. "type": "package",
  1478. "serviceable": true,
  1479. "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  1480. "path": "system.appcontext/4.3.0",
  1481. "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
  1482. },
  1483. "System.Buffers/4.3.0": {
  1484. "type": "package",
  1485. "serviceable": true,
  1486. "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
  1487. "path": "system.buffers/4.3.0",
  1488. "hashPath": "system.buffers.4.3.0.nupkg.sha512"
  1489. },
  1490. "System.Collections/4.3.0": {
  1491. "type": "package",
  1492. "serviceable": true,
  1493. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  1494. "path": "system.collections/4.3.0",
  1495. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  1496. },
  1497. "System.Collections.Concurrent/4.3.0": {
  1498. "type": "package",
  1499. "serviceable": true,
  1500. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  1501. "path": "system.collections.concurrent/4.3.0",
  1502. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  1503. },
  1504. "System.Configuration.ConfigurationManager/6.0.1": {
  1505. "type": "package",
  1506. "serviceable": true,
  1507. "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
  1508. "path": "system.configuration.configurationmanager/6.0.1",
  1509. "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512"
  1510. },
  1511. "System.Console/4.3.0": {
  1512. "type": "package",
  1513. "serviceable": true,
  1514. "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  1515. "path": "system.console/4.3.0",
  1516. "hashPath": "system.console.4.3.0.nupkg.sha512"
  1517. },
  1518. "System.Diagnostics.Debug/4.3.0": {
  1519. "type": "package",
  1520. "serviceable": true,
  1521. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  1522. "path": "system.diagnostics.debug/4.3.0",
  1523. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  1524. },
  1525. "System.Diagnostics.DiagnosticSource/4.3.0": {
  1526. "type": "package",
  1527. "serviceable": true,
  1528. "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
  1529. "path": "system.diagnostics.diagnosticsource/4.3.0",
  1530. "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512"
  1531. },
  1532. "System.Diagnostics.Tools/4.3.0": {
  1533. "type": "package",
  1534. "serviceable": true,
  1535. "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  1536. "path": "system.diagnostics.tools/4.3.0",
  1537. "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
  1538. },
  1539. "System.Diagnostics.Tracing/4.3.0": {
  1540. "type": "package",
  1541. "serviceable": true,
  1542. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  1543. "path": "system.diagnostics.tracing/4.3.0",
  1544. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  1545. },
  1546. "System.Drawing.Common/6.0.0": {
  1547. "type": "package",
  1548. "serviceable": true,
  1549. "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  1550. "path": "system.drawing.common/6.0.0",
  1551. "hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
  1552. },
  1553. "System.Globalization/4.3.0": {
  1554. "type": "package",
  1555. "serviceable": true,
  1556. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  1557. "path": "system.globalization/4.3.0",
  1558. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  1559. },
  1560. "System.Globalization.Calendars/4.3.0": {
  1561. "type": "package",
  1562. "serviceable": true,
  1563. "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  1564. "path": "system.globalization.calendars/4.3.0",
  1565. "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
  1566. },
  1567. "System.Globalization.Extensions/4.3.0": {
  1568. "type": "package",
  1569. "serviceable": true,
  1570. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  1571. "path": "system.globalization.extensions/4.3.0",
  1572. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  1573. },
  1574. "System.IO/4.3.0": {
  1575. "type": "package",
  1576. "serviceable": true,
  1577. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  1578. "path": "system.io/4.3.0",
  1579. "hashPath": "system.io.4.3.0.nupkg.sha512"
  1580. },
  1581. "System.IO.Compression/4.3.0": {
  1582. "type": "package",
  1583. "serviceable": true,
  1584. "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  1585. "path": "system.io.compression/4.3.0",
  1586. "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
  1587. },
  1588. "System.IO.Compression.ZipFile/4.3.0": {
  1589. "type": "package",
  1590. "serviceable": true,
  1591. "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  1592. "path": "system.io.compression.zipfile/4.3.0",
  1593. "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
  1594. },
  1595. "System.IO.FileSystem/4.3.0": {
  1596. "type": "package",
  1597. "serviceable": true,
  1598. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  1599. "path": "system.io.filesystem/4.3.0",
  1600. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  1601. },
  1602. "System.IO.FileSystem.Primitives/4.3.0": {
  1603. "type": "package",
  1604. "serviceable": true,
  1605. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  1606. "path": "system.io.filesystem.primitives/4.3.0",
  1607. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  1608. },
  1609. "System.IO.Pipelines/5.0.1": {
  1610. "type": "package",
  1611. "serviceable": true,
  1612. "sha512": "sha512-qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==",
  1613. "path": "system.io.pipelines/5.0.1",
  1614. "hashPath": "system.io.pipelines.5.0.1.nupkg.sha512"
  1615. },
  1616. "System.Linq/4.3.0": {
  1617. "type": "package",
  1618. "serviceable": true,
  1619. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  1620. "path": "system.linq/4.3.0",
  1621. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  1622. },
  1623. "System.Linq.Expressions/4.3.0": {
  1624. "type": "package",
  1625. "serviceable": true,
  1626. "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  1627. "path": "system.linq.expressions/4.3.0",
  1628. "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
  1629. },
  1630. "System.Net.Http/4.3.0": {
  1631. "type": "package",
  1632. "serviceable": true,
  1633. "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  1634. "path": "system.net.http/4.3.0",
  1635. "hashPath": "system.net.http.4.3.0.nupkg.sha512"
  1636. },
  1637. "System.Net.Primitives/4.3.0": {
  1638. "type": "package",
  1639. "serviceable": true,
  1640. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  1641. "path": "system.net.primitives/4.3.0",
  1642. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  1643. },
  1644. "System.Net.Sockets/4.3.0": {
  1645. "type": "package",
  1646. "serviceable": true,
  1647. "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  1648. "path": "system.net.sockets/4.3.0",
  1649. "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
  1650. },
  1651. "System.ObjectModel/4.3.0": {
  1652. "type": "package",
  1653. "serviceable": true,
  1654. "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  1655. "path": "system.objectmodel/4.3.0",
  1656. "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
  1657. },
  1658. "System.Reflection/4.3.0": {
  1659. "type": "package",
  1660. "serviceable": true,
  1661. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  1662. "path": "system.reflection/4.3.0",
  1663. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  1664. },
  1665. "System.Reflection.Emit/4.3.0": {
  1666. "type": "package",
  1667. "serviceable": true,
  1668. "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  1669. "path": "system.reflection.emit/4.3.0",
  1670. "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
  1671. },
  1672. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1673. "type": "package",
  1674. "serviceable": true,
  1675. "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  1676. "path": "system.reflection.emit.ilgeneration/4.3.0",
  1677. "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
  1678. },
  1679. "System.Reflection.Emit.Lightweight/4.3.0": {
  1680. "type": "package",
  1681. "serviceable": true,
  1682. "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  1683. "path": "system.reflection.emit.lightweight/4.3.0",
  1684. "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
  1685. },
  1686. "System.Reflection.Extensions/4.3.0": {
  1687. "type": "package",
  1688. "serviceable": true,
  1689. "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  1690. "path": "system.reflection.extensions/4.3.0",
  1691. "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
  1692. },
  1693. "System.Reflection.Primitives/4.3.0": {
  1694. "type": "package",
  1695. "serviceable": true,
  1696. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  1697. "path": "system.reflection.primitives/4.3.0",
  1698. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  1699. },
  1700. "System.Reflection.TypeExtensions/4.3.0": {
  1701. "type": "package",
  1702. "serviceable": true,
  1703. "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  1704. "path": "system.reflection.typeextensions/4.3.0",
  1705. "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
  1706. },
  1707. "System.Resources.ResourceManager/4.3.0": {
  1708. "type": "package",
  1709. "serviceable": true,
  1710. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  1711. "path": "system.resources.resourcemanager/4.3.0",
  1712. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  1713. },
  1714. "System.Runtime/4.3.0": {
  1715. "type": "package",
  1716. "serviceable": true,
  1717. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  1718. "path": "system.runtime/4.3.0",
  1719. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  1720. },
  1721. "System.Runtime.Extensions/4.3.0": {
  1722. "type": "package",
  1723. "serviceable": true,
  1724. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  1725. "path": "system.runtime.extensions/4.3.0",
  1726. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  1727. },
  1728. "System.Runtime.Handles/4.3.0": {
  1729. "type": "package",
  1730. "serviceable": true,
  1731. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  1732. "path": "system.runtime.handles/4.3.0",
  1733. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  1734. },
  1735. "System.Runtime.InteropServices/4.3.0": {
  1736. "type": "package",
  1737. "serviceable": true,
  1738. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  1739. "path": "system.runtime.interopservices/4.3.0",
  1740. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  1741. },
  1742. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  1743. "type": "package",
  1744. "serviceable": true,
  1745. "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  1746. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  1747. "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
  1748. },
  1749. "System.Runtime.Numerics/4.3.0": {
  1750. "type": "package",
  1751. "serviceable": true,
  1752. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  1753. "path": "system.runtime.numerics/4.3.0",
  1754. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  1755. },
  1756. "System.Security.AccessControl/6.0.0": {
  1757. "type": "package",
  1758. "serviceable": true,
  1759. "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  1760. "path": "system.security.accesscontrol/6.0.0",
  1761. "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512"
  1762. },
  1763. "System.Security.Cryptography.Algorithms/4.3.0": {
  1764. "type": "package",
  1765. "serviceable": true,
  1766. "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  1767. "path": "system.security.cryptography.algorithms/4.3.0",
  1768. "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
  1769. },
  1770. "System.Security.Cryptography.Cng/4.3.0": {
  1771. "type": "package",
  1772. "serviceable": true,
  1773. "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  1774. "path": "system.security.cryptography.cng/4.3.0",
  1775. "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
  1776. },
  1777. "System.Security.Cryptography.Csp/4.3.0": {
  1778. "type": "package",
  1779. "serviceable": true,
  1780. "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  1781. "path": "system.security.cryptography.csp/4.3.0",
  1782. "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
  1783. },
  1784. "System.Security.Cryptography.Encoding/4.3.0": {
  1785. "type": "package",
  1786. "serviceable": true,
  1787. "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  1788. "path": "system.security.cryptography.encoding/4.3.0",
  1789. "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
  1790. },
  1791. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1792. "type": "package",
  1793. "serviceable": true,
  1794. "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  1795. "path": "system.security.cryptography.openssl/4.3.0",
  1796. "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1797. },
  1798. "System.Security.Cryptography.Primitives/4.3.0": {
  1799. "type": "package",
  1800. "serviceable": true,
  1801. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  1802. "path": "system.security.cryptography.primitives/4.3.0",
  1803. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  1804. },
  1805. "System.Security.Cryptography.ProtectedData/6.0.0": {
  1806. "type": "package",
  1807. "serviceable": true,
  1808. "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  1809. "path": "system.security.cryptography.protecteddata/6.0.0",
  1810. "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512"
  1811. },
  1812. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1813. "type": "package",
  1814. "serviceable": true,
  1815. "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  1816. "path": "system.security.cryptography.x509certificates/4.3.0",
  1817. "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
  1818. },
  1819. "System.Security.Permissions/6.0.0": {
  1820. "type": "package",
  1821. "serviceable": true,
  1822. "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  1823. "path": "system.security.permissions/6.0.0",
  1824. "hashPath": "system.security.permissions.6.0.0.nupkg.sha512"
  1825. },
  1826. "System.Text.Encoding/4.3.0": {
  1827. "type": "package",
  1828. "serviceable": true,
  1829. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  1830. "path": "system.text.encoding/4.3.0",
  1831. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  1832. },
  1833. "System.Text.Encoding.Extensions/4.3.0": {
  1834. "type": "package",
  1835. "serviceable": true,
  1836. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  1837. "path": "system.text.encoding.extensions/4.3.0",
  1838. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  1839. },
  1840. "System.Text.RegularExpressions/4.3.0": {
  1841. "type": "package",
  1842. "serviceable": true,
  1843. "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  1844. "path": "system.text.regularexpressions/4.3.0",
  1845. "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
  1846. },
  1847. "System.Threading/4.3.0": {
  1848. "type": "package",
  1849. "serviceable": true,
  1850. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  1851. "path": "system.threading/4.3.0",
  1852. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  1853. },
  1854. "System.Threading.Tasks/4.3.0": {
  1855. "type": "package",
  1856. "serviceable": true,
  1857. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  1858. "path": "system.threading.tasks/4.3.0",
  1859. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  1860. },
  1861. "System.Threading.Tasks.Extensions/4.3.0": {
  1862. "type": "package",
  1863. "serviceable": true,
  1864. "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  1865. "path": "system.threading.tasks.extensions/4.3.0",
  1866. "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
  1867. },
  1868. "System.Threading.Timer/4.3.0": {
  1869. "type": "package",
  1870. "serviceable": true,
  1871. "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  1872. "path": "system.threading.timer/4.3.0",
  1873. "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
  1874. },
  1875. "System.Windows.Extensions/6.0.0": {
  1876. "type": "package",
  1877. "serviceable": true,
  1878. "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  1879. "path": "system.windows.extensions/6.0.0",
  1880. "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512"
  1881. },
  1882. "System.Xml.ReaderWriter/4.3.0": {
  1883. "type": "package",
  1884. "serviceable": true,
  1885. "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  1886. "path": "system.xml.readerwriter/4.3.0",
  1887. "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
  1888. },
  1889. "System.Xml.XDocument/4.3.0": {
  1890. "type": "package",
  1891. "serviceable": true,
  1892. "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  1893. "path": "system.xml.xdocument/4.3.0",
  1894. "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
  1895. },
  1896. "FTP/1.0.0.7": {
  1897. "type": "reference",
  1898. "serviceable": false,
  1899. "sha512": ""
  1900. },
  1901. "HslCommunication/7.0.1.0": {
  1902. "type": "reference",
  1903. "serviceable": false,
  1904. "sha512": ""
  1905. },
  1906. "Renci.SshNet/2016.1.0.0": {
  1907. "type": "reference",
  1908. "serviceable": false,
  1909. "sha512": ""
  1910. },
  1911. "WinSCPnet/1.8.3.11933": {
  1912. "type": "reference",
  1913. "serviceable": false,
  1914. "sha512": ""
  1915. }
  1916. }
  1917. }