Kede.deps.json 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v5.0",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v5.0": {
  9. "Kede/1.0.0": {
  10. "dependencies": {
  11. "Newtonsoft.Json": "13.0.3",
  12. "OpcUaHelper": "2.1.3",
  13. "WinSCP": "6.3.4"
  14. },
  15. "runtime": {
  16. "Kede.dll": {}
  17. }
  18. },
  19. "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
  20. "dependencies": {
  21. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  22. "System.IO.Pipelines": "4.5.2"
  23. },
  24. "runtime": {
  25. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  26. "assemblyVersion": "2.2.0.0",
  27. "fileVersion": "2.2.0.18316"
  28. }
  29. }
  30. },
  31. "Microsoft.AspNetCore.Hosting/2.2.0": {
  32. "dependencies": {
  33. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  34. "Microsoft.AspNetCore.Http": "2.2.0",
  35. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  36. "Microsoft.Extensions.Configuration": "2.2.0",
  37. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0",
  38. "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
  39. "Microsoft.Extensions.DependencyInjection": "2.2.0",
  40. "Microsoft.Extensions.FileProviders.Physical": "2.2.0",
  41. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0",
  42. "Microsoft.Extensions.Logging": "2.2.0",
  43. "Microsoft.Extensions.Options": "2.2.0",
  44. "System.Diagnostics.DiagnosticSource": "4.5.0",
  45. "System.Reflection.Metadata": "1.6.0"
  46. },
  47. "runtime": {
  48. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {
  49. "assemblyVersion": "2.2.0.0",
  50. "fileVersion": "2.2.0.18316"
  51. }
  52. }
  53. },
  54. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  55. "dependencies": {
  56. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  57. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  58. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  59. },
  60. "runtime": {
  61. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  62. "assemblyVersion": "2.2.0.0",
  63. "fileVersion": "2.2.0.18316"
  64. }
  65. }
  66. },
  67. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  68. "dependencies": {
  69. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  70. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  71. },
  72. "runtime": {
  73. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  74. "assemblyVersion": "2.2.0.0",
  75. "fileVersion": "2.2.0.18316"
  76. }
  77. }
  78. },
  79. "Microsoft.AspNetCore.Http/2.2.0": {
  80. "dependencies": {
  81. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  82. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  83. "Microsoft.Extensions.ObjectPool": "2.2.0",
  84. "Microsoft.Extensions.Options": "2.2.0",
  85. "Microsoft.Net.Http.Headers": "2.2.0"
  86. },
  87. "runtime": {
  88. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  89. "assemblyVersion": "2.2.0.0",
  90. "fileVersion": "2.2.0.18316"
  91. }
  92. }
  93. },
  94. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  95. "dependencies": {
  96. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  97. "System.Text.Encodings.Web": "4.5.0"
  98. },
  99. "runtime": {
  100. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  101. "assemblyVersion": "2.2.0.0",
  102. "fileVersion": "2.2.0.18316"
  103. }
  104. }
  105. },
  106. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  107. "dependencies": {
  108. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  109. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  110. "Microsoft.Net.Http.Headers": "2.2.0",
  111. "System.Buffers": "4.5.0"
  112. },
  113. "runtime": {
  114. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  115. "assemblyVersion": "2.2.0.0",
  116. "fileVersion": "2.2.0.18316"
  117. }
  118. }
  119. },
  120. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  121. "dependencies": {
  122. "Microsoft.Extensions.Primitives": "2.2.0"
  123. },
  124. "runtime": {
  125. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  126. "assemblyVersion": "2.2.0.0",
  127. "fileVersion": "2.2.0.18316"
  128. }
  129. }
  130. },
  131. "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
  132. "dependencies": {
  133. "Microsoft.AspNetCore.Hosting": "2.2.0",
  134. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0",
  135. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0",
  136. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.1"
  137. },
  138. "runtime": {
  139. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {
  140. "assemblyVersion": "2.2.0.0",
  141. "fileVersion": "2.2.0.18316"
  142. }
  143. }
  144. },
  145. "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
  146. "dependencies": {
  147. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  148. "Microsoft.AspNetCore.Http": "2.2.0",
  149. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
  150. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  151. "Microsoft.Extensions.Configuration.Binder": "2.2.0",
  152. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  153. "Microsoft.Extensions.Options": "2.2.0",
  154. "Microsoft.Net.Http.Headers": "2.2.0",
  155. "System.Memory": "4.5.1",
  156. "System.Numerics.Vectors": "4.5.0",
  157. "System.Runtime.CompilerServices.Unsafe": "4.5.1",
  158. "System.Security.Cryptography.Cng": "4.7.0",
  159. "System.Threading.Tasks.Extensions": "4.5.1"
  160. },
  161. "runtime": {
  162. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {
  163. "assemblyVersion": "2.2.0.0",
  164. "fileVersion": "2.2.0.18316"
  165. }
  166. }
  167. },
  168. "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
  169. "dependencies": {
  170. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  171. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0"
  172. },
  173. "runtime": {
  174. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
  175. "assemblyVersion": "2.2.0.0",
  176. "fileVersion": "2.2.0.18316"
  177. }
  178. }
  179. },
  180. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
  181. "dependencies": {
  182. "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0"
  183. },
  184. "runtime": {
  185. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
  186. "assemblyVersion": "2.2.0.0",
  187. "fileVersion": "2.2.0.18316"
  188. }
  189. }
  190. },
  191. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.1": {
  192. "dependencies": {
  193. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  194. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
  195. "Microsoft.Extensions.Options": "2.2.0"
  196. },
  197. "runtime": {
  198. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {
  199. "assemblyVersion": "2.2.1.0",
  200. "fileVersion": "2.2.1.18346"
  201. }
  202. }
  203. },
  204. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  205. "dependencies": {
  206. "Microsoft.Net.Http.Headers": "2.2.0",
  207. "System.Text.Encodings.Web": "4.5.0"
  208. },
  209. "runtime": {
  210. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  211. "assemblyVersion": "2.2.0.0",
  212. "fileVersion": "2.2.0.18316"
  213. }
  214. }
  215. },
  216. "Microsoft.Extensions.Configuration/2.2.0": {
  217. "dependencies": {
  218. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  219. },
  220. "runtime": {
  221. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  222. "assemblyVersion": "2.2.0.0",
  223. "fileVersion": "2.2.0.18315"
  224. }
  225. }
  226. },
  227. "Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
  228. "dependencies": {
  229. "Microsoft.Extensions.Primitives": "2.2.0"
  230. },
  231. "runtime": {
  232. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  233. "assemblyVersion": "2.2.0.0",
  234. "fileVersion": "2.2.0.18315"
  235. }
  236. }
  237. },
  238. "Microsoft.Extensions.Configuration.Binder/2.2.0": {
  239. "dependencies": {
  240. "Microsoft.Extensions.Configuration": "2.2.0"
  241. },
  242. "runtime": {
  243. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  244. "assemblyVersion": "2.2.0.0",
  245. "fileVersion": "2.2.0.18315"
  246. }
  247. }
  248. },
  249. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
  250. "dependencies": {
  251. "Microsoft.Extensions.Configuration": "2.2.0"
  252. },
  253. "runtime": {
  254. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  255. "assemblyVersion": "2.2.0.0",
  256. "fileVersion": "2.2.0.18315"
  257. }
  258. }
  259. },
  260. "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
  261. "dependencies": {
  262. "Microsoft.Extensions.Configuration": "2.2.0",
  263. "Microsoft.Extensions.FileProviders.Physical": "2.2.0"
  264. },
  265. "runtime": {
  266. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  267. "assemblyVersion": "2.2.0.0",
  268. "fileVersion": "2.2.0.18315"
  269. }
  270. }
  271. },
  272. "Microsoft.Extensions.DependencyInjection/2.2.0": {
  273. "dependencies": {
  274. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0"
  275. },
  276. "runtime": {
  277. "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {
  278. "assemblyVersion": "2.2.0.0",
  279. "fileVersion": "2.2.0.18315"
  280. }
  281. }
  282. },
  283. "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": {
  284. "runtime": {
  285. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  286. "assemblyVersion": "2.2.0.0",
  287. "fileVersion": "2.2.0.18315"
  288. }
  289. }
  290. },
  291. "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
  292. "dependencies": {
  293. "Microsoft.Extensions.Primitives": "2.2.0"
  294. },
  295. "runtime": {
  296. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  297. "assemblyVersion": "2.2.0.0",
  298. "fileVersion": "2.2.0.18315"
  299. }
  300. }
  301. },
  302. "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
  303. "dependencies": {
  304. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  305. "Microsoft.Extensions.FileSystemGlobbing": "2.2.0"
  306. },
  307. "runtime": {
  308. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  309. "assemblyVersion": "2.2.0.0",
  310. "fileVersion": "2.2.0.18315"
  311. }
  312. }
  313. },
  314. "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
  315. "runtime": {
  316. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  317. "assemblyVersion": "2.2.0.0",
  318. "fileVersion": "2.2.0.18315"
  319. }
  320. }
  321. },
  322. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  323. "dependencies": {
  324. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  325. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  326. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  327. "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
  328. },
  329. "runtime": {
  330. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  331. "assemblyVersion": "2.2.0.0",
  332. "fileVersion": "2.2.0.18316"
  333. }
  334. }
  335. },
  336. "Microsoft.Extensions.Logging/2.2.0": {
  337. "dependencies": {
  338. "Microsoft.Extensions.Configuration.Binder": "2.2.0",
  339. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  340. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  341. "Microsoft.Extensions.Options": "2.2.0"
  342. },
  343. "runtime": {
  344. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
  345. "assemblyVersion": "2.2.0.0",
  346. "fileVersion": "2.2.0.18315"
  347. }
  348. }
  349. },
  350. "Microsoft.Extensions.Logging.Abstractions/2.2.0": {
  351. "runtime": {
  352. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  353. "assemblyVersion": "2.2.0.0",
  354. "fileVersion": "2.2.0.18315"
  355. }
  356. }
  357. },
  358. "Microsoft.Extensions.ObjectPool/2.2.0": {
  359. "runtime": {
  360. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  361. "assemblyVersion": "2.2.0.0",
  362. "fileVersion": "2.2.0.18315"
  363. }
  364. }
  365. },
  366. "Microsoft.Extensions.Options/2.2.0": {
  367. "dependencies": {
  368. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  369. "Microsoft.Extensions.Primitives": "2.2.0",
  370. "System.ComponentModel.Annotations": "4.5.0"
  371. },
  372. "runtime": {
  373. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
  374. "assemblyVersion": "2.2.0.0",
  375. "fileVersion": "2.2.0.18315"
  376. }
  377. }
  378. },
  379. "Microsoft.Extensions.Primitives/2.2.0": {
  380. "dependencies": {
  381. "System.Memory": "4.5.1",
  382. "System.Runtime.CompilerServices.Unsafe": "4.5.1"
  383. },
  384. "runtime": {
  385. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  386. "assemblyVersion": "2.2.0.0",
  387. "fileVersion": "2.2.0.18315"
  388. }
  389. }
  390. },
  391. "Microsoft.Net.Http.Headers/2.2.0": {
  392. "dependencies": {
  393. "Microsoft.Extensions.Primitives": "2.2.0",
  394. "System.Buffers": "4.5.0"
  395. },
  396. "runtime": {
  397. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  398. "assemblyVersion": "2.2.0.0",
  399. "fileVersion": "2.2.0.18316"
  400. }
  401. }
  402. },
  403. "Microsoft.NETCore.Platforms/3.1.0": {},
  404. "Microsoft.NETCore.Targets/1.1.0": {},
  405. "Microsoft.Win32.SystemEvents/4.7.0": {
  406. "dependencies": {
  407. "Microsoft.NETCore.Platforms": "3.1.0"
  408. }
  409. },
  410. "Newtonsoft.Json/13.0.3": {
  411. "runtime": {
  412. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  413. "assemblyVersion": "13.0.0.0",
  414. "fileVersion": "13.0.3.27908"
  415. }
  416. }
  417. },
  418. "OPCFoundation.NetStandard.Opc.Ua/1.4.365.23": {
  419. "dependencies": {
  420. "OPCFoundation.NetStandard.Opc.Ua.Bindings.Https": "1.4.365.23",
  421. "OPCFoundation.NetStandard.Opc.Ua.Client": "1.4.365.23",
  422. "OPCFoundation.NetStandard.Opc.Ua.Configuration": "1.4.365.23",
  423. "OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.365.23",
  424. "OPCFoundation.NetStandard.Opc.Ua.Gds.Client.Common": "1.4.365.23",
  425. "OPCFoundation.NetStandard.Opc.Ua.Gds.Server.Common": "1.4.365.23",
  426. "OPCFoundation.NetStandard.Opc.Ua.Server": "1.4.365.23"
  427. }
  428. },
  429. "OPCFoundation.NetStandard.Opc.Ua.Bindings.Https/1.4.365.23": {
  430. "dependencies": {
  431. "Microsoft.AspNetCore.Server.Kestrel": "2.2.0",
  432. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0",
  433. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.1",
  434. "OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.365.23",
  435. "System.Net.Http": "4.3.4"
  436. },
  437. "runtime": {
  438. "lib/netstandard2.1/Opc.Ua.Bindings.Https.dll": {
  439. "assemblyVersion": "1.4.365.0",
  440. "fileVersion": "1.4.365.23"
  441. }
  442. }
  443. },
  444. "OPCFoundation.NetStandard.Opc.Ua.Client/1.4.365.23": {
  445. "dependencies": {
  446. "OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.365.23"
  447. },
  448. "runtime": {
  449. "lib/netstandard2.1/Opc.Ua.Client.dll": {
  450. "assemblyVersion": "1.4.365.0",
  451. "fileVersion": "1.4.365.23"
  452. }
  453. }
  454. },
  455. "OPCFoundation.NetStandard.Opc.Ua.Configuration/1.4.365.23": {
  456. "dependencies": {
  457. "OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.365.23"
  458. },
  459. "runtime": {
  460. "lib/netstandard2.1/Opc.Ua.Configuration.dll": {
  461. "assemblyVersion": "1.4.365.0",
  462. "fileVersion": "1.4.365.23"
  463. }
  464. }
  465. },
  466. "OPCFoundation.NetStandard.Opc.Ua.Core/1.4.365.23": {
  467. "dependencies": {
  468. "Newtonsoft.Json": "13.0.3",
  469. "OPCFoundation.NetStandard.Opc.Ua.Security.Certificates": "1.4.365.23",
  470. "System.Data.Common": "4.3.0",
  471. "System.Net.NameResolution": "4.3.0",
  472. "System.ServiceModel.Primitives": "4.8.0"
  473. },
  474. "runtime": {
  475. "lib/netstandard2.1/Opc.Ua.Core.dll": {
  476. "assemblyVersion": "1.4.365.0",
  477. "fileVersion": "1.4.365.23"
  478. }
  479. }
  480. },
  481. "OPCFoundation.NetStandard.Opc.Ua.Gds.Client.Common/1.4.365.23": {
  482. "dependencies": {
  483. "OPCFoundation.NetStandard.Opc.Ua.Client": "1.4.365.23",
  484. "OPCFoundation.NetStandard.Opc.Ua.Configuration": "1.4.365.23",
  485. "OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.365.23"
  486. },
  487. "runtime": {
  488. "lib/netstandard2.1/Opc.Ua.Gds.Client.Common.dll": {
  489. "assemblyVersion": "1.4.365.0",
  490. "fileVersion": "1.4.365.23"
  491. }
  492. }
  493. },
  494. "OPCFoundation.NetStandard.Opc.Ua.Gds.Server.Common/1.4.365.23": {
  495. "dependencies": {
  496. "OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.365.23",
  497. "OPCFoundation.NetStandard.Opc.Ua.Server": "1.4.365.23",
  498. "Portable.BouncyCastle": "1.8.9"
  499. },
  500. "runtime": {
  501. "lib/netstandard2.1/Opc.Ua.Gds.Server.Common.dll": {
  502. "assemblyVersion": "1.4.365.0",
  503. "fileVersion": "1.4.365.23"
  504. }
  505. }
  506. },
  507. "OPCFoundation.NetStandard.Opc.Ua.Security.Certificates/1.4.365.23": {
  508. "dependencies": {
  509. "System.Formats.Asn1": "5.0.0"
  510. },
  511. "runtime": {
  512. "lib/netstandard2.1/Opc.Ua.Security.Certificates.dll": {
  513. "assemblyVersion": "1.4.365.0",
  514. "fileVersion": "1.4.365.23"
  515. }
  516. }
  517. },
  518. "OPCFoundation.NetStandard.Opc.Ua.Server/1.4.365.23": {
  519. "dependencies": {
  520. "OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.365.23"
  521. },
  522. "runtime": {
  523. "lib/netstandard2.1/Opc.Ua.Server.dll": {
  524. "assemblyVersion": "1.4.365.0",
  525. "fileVersion": "1.4.365.23"
  526. }
  527. }
  528. },
  529. "OpcUaHelper/2.1.3": {
  530. "dependencies": {
  531. "OPCFoundation.NetStandard.Opc.Ua": "1.4.365.23"
  532. },
  533. "runtime": {
  534. "lib/netstandard2.1/OpcUaHelper.dll": {
  535. "assemblyVersion": "2.1.3.0",
  536. "fileVersion": "2.1.3.0"
  537. }
  538. }
  539. },
  540. "Portable.BouncyCastle/1.8.9": {
  541. "runtime": {
  542. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  543. "assemblyVersion": "1.8.9.0",
  544. "fileVersion": "1.8.9.1"
  545. }
  546. }
  547. },
  548. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  549. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  550. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  551. "runtime.native.System/4.3.0": {
  552. "dependencies": {
  553. "Microsoft.NETCore.Platforms": "3.1.0",
  554. "Microsoft.NETCore.Targets": "1.1.0"
  555. }
  556. },
  557. "runtime.native.System.Net.Http/4.3.0": {
  558. "dependencies": {
  559. "Microsoft.NETCore.Platforms": "3.1.0",
  560. "Microsoft.NETCore.Targets": "1.1.0"
  561. }
  562. },
  563. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  564. "dependencies": {
  565. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  566. }
  567. },
  568. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  569. "dependencies": {
  570. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  571. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  572. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  573. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  574. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  575. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  576. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  577. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  578. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  579. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  580. }
  581. },
  582. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  583. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  584. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
  585. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  586. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  587. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  588. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  589. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  590. "System.Buffers/4.5.0": {},
  591. "System.Collections/4.3.0": {
  592. "dependencies": {
  593. "Microsoft.NETCore.Platforms": "3.1.0",
  594. "Microsoft.NETCore.Targets": "1.1.0",
  595. "System.Runtime": "4.3.0"
  596. }
  597. },
  598. "System.Collections.Concurrent/4.3.0": {
  599. "dependencies": {
  600. "System.Collections": "4.3.0",
  601. "System.Diagnostics.Debug": "4.3.0",
  602. "System.Diagnostics.Tracing": "4.3.0",
  603. "System.Globalization": "4.3.0",
  604. "System.Reflection": "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.Threading": "4.3.0",
  609. "System.Threading.Tasks": "4.3.0"
  610. }
  611. },
  612. "System.ComponentModel.Annotations/4.5.0": {},
  613. "System.Data.Common/4.3.0": {
  614. "dependencies": {
  615. "System.Collections": "4.3.0",
  616. "System.Globalization": "4.3.0",
  617. "System.IO": "4.3.0",
  618. "System.Resources.ResourceManager": "4.3.0",
  619. "System.Runtime": "4.3.0",
  620. "System.Runtime.Extensions": "4.3.0",
  621. "System.Text.RegularExpressions": "4.3.0",
  622. "System.Threading.Tasks": "4.3.0"
  623. }
  624. },
  625. "System.Diagnostics.Debug/4.3.0": {
  626. "dependencies": {
  627. "Microsoft.NETCore.Platforms": "3.1.0",
  628. "Microsoft.NETCore.Targets": "1.1.0",
  629. "System.Runtime": "4.3.0"
  630. }
  631. },
  632. "System.Diagnostics.DiagnosticSource/4.5.0": {},
  633. "System.Diagnostics.Tracing/4.3.0": {
  634. "dependencies": {
  635. "Microsoft.NETCore.Platforms": "3.1.0",
  636. "Microsoft.NETCore.Targets": "1.1.0",
  637. "System.Runtime": "4.3.0"
  638. }
  639. },
  640. "System.Drawing.Common/4.7.0": {
  641. "dependencies": {
  642. "Microsoft.NETCore.Platforms": "3.1.0",
  643. "Microsoft.Win32.SystemEvents": "4.7.0"
  644. }
  645. },
  646. "System.Formats.Asn1/5.0.0": {},
  647. "System.Globalization/4.3.0": {
  648. "dependencies": {
  649. "Microsoft.NETCore.Platforms": "3.1.0",
  650. "Microsoft.NETCore.Targets": "1.1.0",
  651. "System.Runtime": "4.3.0"
  652. }
  653. },
  654. "System.Globalization.Calendars/4.3.0": {
  655. "dependencies": {
  656. "Microsoft.NETCore.Platforms": "3.1.0",
  657. "Microsoft.NETCore.Targets": "1.1.0",
  658. "System.Globalization": "4.3.0",
  659. "System.Runtime": "4.3.0"
  660. }
  661. },
  662. "System.Globalization.Extensions/4.3.0": {
  663. "dependencies": {
  664. "Microsoft.NETCore.Platforms": "3.1.0",
  665. "System.Globalization": "4.3.0",
  666. "System.Resources.ResourceManager": "4.3.0",
  667. "System.Runtime": "4.3.0",
  668. "System.Runtime.Extensions": "4.3.0",
  669. "System.Runtime.InteropServices": "4.3.0"
  670. }
  671. },
  672. "System.IO/4.3.0": {
  673. "dependencies": {
  674. "Microsoft.NETCore.Platforms": "3.1.0",
  675. "Microsoft.NETCore.Targets": "1.1.0",
  676. "System.Runtime": "4.3.0",
  677. "System.Text.Encoding": "4.3.0",
  678. "System.Threading.Tasks": "4.3.0"
  679. }
  680. },
  681. "System.IO.FileSystem/4.3.0": {
  682. "dependencies": {
  683. "Microsoft.NETCore.Platforms": "3.1.0",
  684. "Microsoft.NETCore.Targets": "1.1.0",
  685. "System.IO": "4.3.0",
  686. "System.IO.FileSystem.Primitives": "4.3.0",
  687. "System.Runtime": "4.3.0",
  688. "System.Runtime.Handles": "4.3.0",
  689. "System.Text.Encoding": "4.3.0",
  690. "System.Threading.Tasks": "4.3.0"
  691. }
  692. },
  693. "System.IO.FileSystem.Primitives/4.3.0": {
  694. "dependencies": {
  695. "System.Runtime": "4.3.0"
  696. }
  697. },
  698. "System.IO.Pipelines/4.5.2": {
  699. "runtime": {
  700. "lib/netcoreapp2.1/System.IO.Pipelines.dll": {
  701. "assemblyVersion": "4.0.0.1",
  702. "fileVersion": "4.6.26919.2"
  703. }
  704. }
  705. },
  706. "System.Linq/4.3.0": {
  707. "dependencies": {
  708. "System.Collections": "4.3.0",
  709. "System.Diagnostics.Debug": "4.3.0",
  710. "System.Resources.ResourceManager": "4.3.0",
  711. "System.Runtime": "4.3.0",
  712. "System.Runtime.Extensions": "4.3.0"
  713. }
  714. },
  715. "System.Memory/4.5.1": {},
  716. "System.Net.Http/4.3.4": {
  717. "dependencies": {
  718. "Microsoft.NETCore.Platforms": "3.1.0",
  719. "System.Collections": "4.3.0",
  720. "System.Diagnostics.Debug": "4.3.0",
  721. "System.Diagnostics.DiagnosticSource": "4.5.0",
  722. "System.Diagnostics.Tracing": "4.3.0",
  723. "System.Globalization": "4.3.0",
  724. "System.Globalization.Extensions": "4.3.0",
  725. "System.IO": "4.3.0",
  726. "System.IO.FileSystem": "4.3.0",
  727. "System.Net.Primitives": "4.3.0",
  728. "System.Resources.ResourceManager": "4.3.0",
  729. "System.Runtime": "4.3.0",
  730. "System.Runtime.Extensions": "4.3.0",
  731. "System.Runtime.Handles": "4.3.0",
  732. "System.Runtime.InteropServices": "4.3.0",
  733. "System.Security.Cryptography.Algorithms": "4.3.0",
  734. "System.Security.Cryptography.Encoding": "4.3.0",
  735. "System.Security.Cryptography.OpenSsl": "4.3.0",
  736. "System.Security.Cryptography.Primitives": "4.3.0",
  737. "System.Security.Cryptography.X509Certificates": "4.3.0",
  738. "System.Text.Encoding": "4.3.0",
  739. "System.Threading": "4.3.0",
  740. "System.Threading.Tasks": "4.3.0",
  741. "runtime.native.System": "4.3.0",
  742. "runtime.native.System.Net.Http": "4.3.0",
  743. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  744. }
  745. },
  746. "System.Net.NameResolution/4.3.0": {
  747. "dependencies": {
  748. "Microsoft.NETCore.Platforms": "3.1.0",
  749. "System.Collections": "4.3.0",
  750. "System.Diagnostics.Tracing": "4.3.0",
  751. "System.Globalization": "4.3.0",
  752. "System.Net.Primitives": "4.3.0",
  753. "System.Resources.ResourceManager": "4.3.0",
  754. "System.Runtime": "4.3.0",
  755. "System.Runtime.Extensions": "4.3.0",
  756. "System.Runtime.Handles": "4.3.0",
  757. "System.Runtime.InteropServices": "4.3.0",
  758. "System.Security.Principal.Windows": "4.7.0",
  759. "System.Threading": "4.3.0",
  760. "System.Threading.Tasks": "4.3.0",
  761. "runtime.native.System": "4.3.0"
  762. }
  763. },
  764. "System.Net.Primitives/4.3.0": {
  765. "dependencies": {
  766. "Microsoft.NETCore.Platforms": "3.1.0",
  767. "Microsoft.NETCore.Targets": "1.1.0",
  768. "System.Runtime": "4.3.0",
  769. "System.Runtime.Handles": "4.3.0"
  770. }
  771. },
  772. "System.Numerics.Vectors/4.5.0": {},
  773. "System.Private.ServiceModel/4.8.0": {
  774. "dependencies": {
  775. "System.Numerics.Vectors": "4.5.0",
  776. "System.Reflection.DispatchProxy": "4.7.1",
  777. "System.Security.Cryptography.Xml": "4.7.0",
  778. "System.Security.Principal.Windows": "4.7.0"
  779. },
  780. "runtime": {
  781. "lib/netstandard2.0/System.Private.ServiceModel.dll": {
  782. "assemblyVersion": "4.8.0.0",
  783. "fileVersion": "4.800.20.51907"
  784. }
  785. }
  786. },
  787. "System.Reflection/4.3.0": {
  788. "dependencies": {
  789. "Microsoft.NETCore.Platforms": "3.1.0",
  790. "Microsoft.NETCore.Targets": "1.1.0",
  791. "System.IO": "4.3.0",
  792. "System.Reflection.Primitives": "4.3.0",
  793. "System.Runtime": "4.3.0"
  794. }
  795. },
  796. "System.Reflection.DispatchProxy/4.7.1": {},
  797. "System.Reflection.Metadata/1.6.0": {},
  798. "System.Reflection.Primitives/4.3.0": {
  799. "dependencies": {
  800. "Microsoft.NETCore.Platforms": "3.1.0",
  801. "Microsoft.NETCore.Targets": "1.1.0",
  802. "System.Runtime": "4.3.0"
  803. }
  804. },
  805. "System.Resources.ResourceManager/4.3.0": {
  806. "dependencies": {
  807. "Microsoft.NETCore.Platforms": "3.1.0",
  808. "Microsoft.NETCore.Targets": "1.1.0",
  809. "System.Globalization": "4.3.0",
  810. "System.Reflection": "4.3.0",
  811. "System.Runtime": "4.3.0"
  812. }
  813. },
  814. "System.Runtime/4.3.0": {
  815. "dependencies": {
  816. "Microsoft.NETCore.Platforms": "3.1.0",
  817. "Microsoft.NETCore.Targets": "1.1.0"
  818. }
  819. },
  820. "System.Runtime.CompilerServices.Unsafe/4.5.1": {},
  821. "System.Runtime.Extensions/4.3.0": {
  822. "dependencies": {
  823. "Microsoft.NETCore.Platforms": "3.1.0",
  824. "Microsoft.NETCore.Targets": "1.1.0",
  825. "System.Runtime": "4.3.0"
  826. }
  827. },
  828. "System.Runtime.Handles/4.3.0": {
  829. "dependencies": {
  830. "Microsoft.NETCore.Platforms": "3.1.0",
  831. "Microsoft.NETCore.Targets": "1.1.0",
  832. "System.Runtime": "4.3.0"
  833. }
  834. },
  835. "System.Runtime.InteropServices/4.3.0": {
  836. "dependencies": {
  837. "Microsoft.NETCore.Platforms": "3.1.0",
  838. "Microsoft.NETCore.Targets": "1.1.0",
  839. "System.Reflection": "4.3.0",
  840. "System.Reflection.Primitives": "4.3.0",
  841. "System.Runtime": "4.3.0",
  842. "System.Runtime.Handles": "4.3.0"
  843. }
  844. },
  845. "System.Runtime.Numerics/4.3.0": {
  846. "dependencies": {
  847. "System.Globalization": "4.3.0",
  848. "System.Resources.ResourceManager": "4.3.0",
  849. "System.Runtime": "4.3.0",
  850. "System.Runtime.Extensions": "4.3.0"
  851. }
  852. },
  853. "System.Security.AccessControl/4.7.0": {
  854. "dependencies": {
  855. "Microsoft.NETCore.Platforms": "3.1.0",
  856. "System.Security.Principal.Windows": "4.7.0"
  857. }
  858. },
  859. "System.Security.Cryptography.Algorithms/4.3.0": {
  860. "dependencies": {
  861. "Microsoft.NETCore.Platforms": "3.1.0",
  862. "System.Collections": "4.3.0",
  863. "System.IO": "4.3.0",
  864. "System.Resources.ResourceManager": "4.3.0",
  865. "System.Runtime": "4.3.0",
  866. "System.Runtime.Extensions": "4.3.0",
  867. "System.Runtime.Handles": "4.3.0",
  868. "System.Runtime.InteropServices": "4.3.0",
  869. "System.Runtime.Numerics": "4.3.0",
  870. "System.Security.Cryptography.Encoding": "4.3.0",
  871. "System.Security.Cryptography.Primitives": "4.3.0",
  872. "System.Text.Encoding": "4.3.0",
  873. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  874. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  875. }
  876. },
  877. "System.Security.Cryptography.Cng/4.7.0": {},
  878. "System.Security.Cryptography.Csp/4.3.0": {
  879. "dependencies": {
  880. "Microsoft.NETCore.Platforms": "3.1.0",
  881. "System.IO": "4.3.0",
  882. "System.Reflection": "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.Security.Cryptography.Algorithms": "4.3.0",
  889. "System.Security.Cryptography.Encoding": "4.3.0",
  890. "System.Security.Cryptography.Primitives": "4.3.0",
  891. "System.Text.Encoding": "4.3.0",
  892. "System.Threading": "4.3.0"
  893. }
  894. },
  895. "System.Security.Cryptography.Encoding/4.3.0": {
  896. "dependencies": {
  897. "Microsoft.NETCore.Platforms": "3.1.0",
  898. "System.Collections": "4.3.0",
  899. "System.Collections.Concurrent": "4.3.0",
  900. "System.Linq": "4.3.0",
  901. "System.Resources.ResourceManager": "4.3.0",
  902. "System.Runtime": "4.3.0",
  903. "System.Runtime.Extensions": "4.3.0",
  904. "System.Runtime.Handles": "4.3.0",
  905. "System.Runtime.InteropServices": "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.2"
  909. }
  910. },
  911. "System.Security.Cryptography.OpenSsl/4.3.0": {
  912. "dependencies": {
  913. "System.Collections": "4.3.0",
  914. "System.IO": "4.3.0",
  915. "System.Resources.ResourceManager": "4.3.0",
  916. "System.Runtime": "4.3.0",
  917. "System.Runtime.Extensions": "4.3.0",
  918. "System.Runtime.Handles": "4.3.0",
  919. "System.Runtime.InteropServices": "4.3.0",
  920. "System.Runtime.Numerics": "4.3.0",
  921. "System.Security.Cryptography.Algorithms": "4.3.0",
  922. "System.Security.Cryptography.Encoding": "4.3.0",
  923. "System.Security.Cryptography.Primitives": "4.3.0",
  924. "System.Text.Encoding": "4.3.0",
  925. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  926. }
  927. },
  928. "System.Security.Cryptography.Pkcs/4.7.0": {
  929. "dependencies": {
  930. "System.Security.Cryptography.Cng": "4.7.0"
  931. }
  932. },
  933. "System.Security.Cryptography.Primitives/4.3.0": {
  934. "dependencies": {
  935. "System.Diagnostics.Debug": "4.3.0",
  936. "System.Globalization": "4.3.0",
  937. "System.IO": "4.3.0",
  938. "System.Resources.ResourceManager": "4.3.0",
  939. "System.Runtime": "4.3.0",
  940. "System.Threading": "4.3.0",
  941. "System.Threading.Tasks": "4.3.0"
  942. }
  943. },
  944. "System.Security.Cryptography.X509Certificates/4.3.0": {
  945. "dependencies": {
  946. "Microsoft.NETCore.Platforms": "3.1.0",
  947. "System.Collections": "4.3.0",
  948. "System.Diagnostics.Debug": "4.3.0",
  949. "System.Globalization": "4.3.0",
  950. "System.Globalization.Calendars": "4.3.0",
  951. "System.IO": "4.3.0",
  952. "System.IO.FileSystem": "4.3.0",
  953. "System.IO.FileSystem.Primitives": "4.3.0",
  954. "System.Resources.ResourceManager": "4.3.0",
  955. "System.Runtime": "4.3.0",
  956. "System.Runtime.Extensions": "4.3.0",
  957. "System.Runtime.Handles": "4.3.0",
  958. "System.Runtime.InteropServices": "4.3.0",
  959. "System.Runtime.Numerics": "4.3.0",
  960. "System.Security.Cryptography.Algorithms": "4.3.0",
  961. "System.Security.Cryptography.Cng": "4.7.0",
  962. "System.Security.Cryptography.Csp": "4.3.0",
  963. "System.Security.Cryptography.Encoding": "4.3.0",
  964. "System.Security.Cryptography.OpenSsl": "4.3.0",
  965. "System.Security.Cryptography.Primitives": "4.3.0",
  966. "System.Text.Encoding": "4.3.0",
  967. "System.Threading": "4.3.0",
  968. "runtime.native.System": "4.3.0",
  969. "runtime.native.System.Net.Http": "4.3.0",
  970. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  971. }
  972. },
  973. "System.Security.Cryptography.Xml/4.7.0": {
  974. "dependencies": {
  975. "System.Security.Cryptography.Pkcs": "4.7.0",
  976. "System.Security.Permissions": "4.7.0"
  977. }
  978. },
  979. "System.Security.Permissions/4.7.0": {
  980. "dependencies": {
  981. "System.Security.AccessControl": "4.7.0",
  982. "System.Windows.Extensions": "4.7.0"
  983. }
  984. },
  985. "System.Security.Principal.Windows/4.7.0": {},
  986. "System.ServiceModel.Primitives/4.8.0": {
  987. "dependencies": {
  988. "System.Private.ServiceModel": "4.8.0"
  989. },
  990. "runtime": {
  991. "lib/netcoreapp2.1/System.ServiceModel.Primitives.dll": {
  992. "assemblyVersion": "4.8.0.0",
  993. "fileVersion": "4.800.20.51907"
  994. },
  995. "lib/netcoreapp2.1/System.ServiceModel.dll": {
  996. "assemblyVersion": "4.0.0.0",
  997. "fileVersion": "4.800.20.51907"
  998. }
  999. }
  1000. },
  1001. "System.Text.Encoding/4.3.0": {
  1002. "dependencies": {
  1003. "Microsoft.NETCore.Platforms": "3.1.0",
  1004. "Microsoft.NETCore.Targets": "1.1.0",
  1005. "System.Runtime": "4.3.0"
  1006. }
  1007. },
  1008. "System.Text.Encodings.Web/4.5.0": {},
  1009. "System.Text.RegularExpressions/4.3.0": {
  1010. "dependencies": {
  1011. "System.Runtime": "4.3.0"
  1012. }
  1013. },
  1014. "System.Threading/4.3.0": {
  1015. "dependencies": {
  1016. "System.Runtime": "4.3.0",
  1017. "System.Threading.Tasks": "4.3.0"
  1018. }
  1019. },
  1020. "System.Threading.Tasks/4.3.0": {
  1021. "dependencies": {
  1022. "Microsoft.NETCore.Platforms": "3.1.0",
  1023. "Microsoft.NETCore.Targets": "1.1.0",
  1024. "System.Runtime": "4.3.0"
  1025. }
  1026. },
  1027. "System.Threading.Tasks.Extensions/4.5.1": {},
  1028. "System.Windows.Extensions/4.7.0": {
  1029. "dependencies": {
  1030. "System.Drawing.Common": "4.7.0"
  1031. }
  1032. },
  1033. "WinSCP/6.3.4": {
  1034. "runtime": {
  1035. "lib/netstandard2.0/WinSCPnet.dll": {
  1036. "assemblyVersion": "1.15.0.14955",
  1037. "fileVersion": "1.15.0.14955"
  1038. }
  1039. }
  1040. }
  1041. }
  1042. },
  1043. "libraries": {
  1044. "Kede/1.0.0": {
  1045. "type": "project",
  1046. "serviceable": false,
  1047. "sha512": ""
  1048. },
  1049. "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
  1050. "type": "package",
  1051. "serviceable": true,
  1052. "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==",
  1053. "path": "microsoft.aspnetcore.connections.abstractions/2.2.0",
  1054. "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512"
  1055. },
  1056. "Microsoft.AspNetCore.Hosting/2.2.0": {
  1057. "type": "package",
  1058. "serviceable": true,
  1059. "sha512": "sha512-7t4RbUGugpHtQmzAkc9fpDdYJg6t/jcB2VVnjensVYbZFnLDU8pNrG0hrekk1DQG7P2UzpSqKLzDsFF0/lkkbw==",
  1060. "path": "microsoft.aspnetcore.hosting/2.2.0",
  1061. "hashPath": "microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512"
  1062. },
  1063. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  1064. "type": "package",
  1065. "serviceable": true,
  1066. "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  1067. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  1068. "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512"
  1069. },
  1070. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  1071. "type": "package",
  1072. "serviceable": true,
  1073. "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  1074. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  1075. "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512"
  1076. },
  1077. "Microsoft.AspNetCore.Http/2.2.0": {
  1078. "type": "package",
  1079. "serviceable": true,
  1080. "sha512": "sha512-YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==",
  1081. "path": "microsoft.aspnetcore.http/2.2.0",
  1082. "hashPath": "microsoft.aspnetcore.http.2.2.0.nupkg.sha512"
  1083. },
  1084. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  1085. "type": "package",
  1086. "serviceable": true,
  1087. "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  1088. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  1089. "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
  1090. },
  1091. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  1092. "type": "package",
  1093. "serviceable": true,
  1094. "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
  1095. "path": "microsoft.aspnetcore.http.extensions/2.2.0",
  1096. "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512"
  1097. },
  1098. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  1099. "type": "package",
  1100. "serviceable": true,
  1101. "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  1102. "path": "microsoft.aspnetcore.http.features/2.2.0",
  1103. "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
  1104. },
  1105. "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
  1106. "type": "package",
  1107. "serviceable": true,
  1108. "sha512": "sha512-D0vGB8Tp0UNMiAhT+pwAVeqDDx2OFrfpu/plwm0WhA+1DZvTLc99eDwGISL6LAY8x7a12lhl9w7/m+VdoyDu8Q==",
  1109. "path": "microsoft.aspnetcore.server.kestrel/2.2.0",
  1110. "hashPath": "microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512"
  1111. },
  1112. "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
  1113. "type": "package",
  1114. "serviceable": true,
  1115. "sha512": "sha512-F6/Vesd3ODq/ISbHfcvfRf7IzRtTvrNX8VA36Knm5e7bteJhoRA2GKQUVQ+neoO1njLvaQKnjcA3rdCZ6AF6cg==",
  1116. "path": "microsoft.aspnetcore.server.kestrel.core/2.2.0",
  1117. "hashPath": "microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512"
  1118. },
  1119. "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
  1120. "type": "package",
  1121. "serviceable": true,
  1122. "sha512": "sha512-nEH5mU6idUYS3/+9BKw2stMOM25ZdGwIH4P4kyj6PVkMPgQUTkBQ7l/ScPkepdhejcOlPa+g3+M4dYsSYPUJ8g==",
  1123. "path": "microsoft.aspnetcore.server.kestrel.https/2.2.0",
  1124. "hashPath": "microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512"
  1125. },
  1126. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
  1127. "type": "package",
  1128. "serviceable": true,
  1129. "sha512": "sha512-j1ai2CG8BGp4mYf2TWSFjjy1pRgW9XbqhdR4EOVvrlFVbcpEPfXNIPEdjkcgK+txWCupGzkFnFF8oZsASMtmyw==",
  1130. "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.2.0",
  1131. "hashPath": "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512"
  1132. },
  1133. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.1": {
  1134. "type": "package",
  1135. "serviceable": true,
  1136. "sha512": "sha512-tzRdyQ0qrMJ5YS0qsXfmhVd/kr25IzLpayoIAvU1yi27wqsqxXVPADDEv0S9PaS7xn6bpMFit8kZw92IICDSWg==",
  1137. "path": "microsoft.aspnetcore.server.kestrel.transport.sockets/2.2.1",
  1138. "hashPath": "microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.1.nupkg.sha512"
  1139. },
  1140. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  1141. "type": "package",
  1142. "serviceable": true,
  1143. "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==",
  1144. "path": "microsoft.aspnetcore.webutilities/2.2.0",
  1145. "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512"
  1146. },
  1147. "Microsoft.Extensions.Configuration/2.2.0": {
  1148. "type": "package",
  1149. "serviceable": true,
  1150. "sha512": "sha512-nOP8R1mVb/6mZtm2qgAJXn/LFm/2kMjHDAg/QJLFG6CuWYJtaD3p1BwQhufBVvRzL9ceJ/xF0SQ0qsI2GkDQAA==",
  1151. "path": "microsoft.extensions.configuration/2.2.0",
  1152. "hashPath": "microsoft.extensions.configuration.2.2.0.nupkg.sha512"
  1153. },
  1154. "Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
  1155. "type": "package",
  1156. "serviceable": true,
  1157. "sha512": "sha512-65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==",
  1158. "path": "microsoft.extensions.configuration.abstractions/2.2.0",
  1159. "hashPath": "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512"
  1160. },
  1161. "Microsoft.Extensions.Configuration.Binder/2.2.0": {
  1162. "type": "package",
  1163. "serviceable": true,
  1164. "sha512": "sha512-vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==",
  1165. "path": "microsoft.extensions.configuration.binder/2.2.0",
  1166. "hashPath": "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512"
  1167. },
  1168. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
  1169. "type": "package",
  1170. "serviceable": true,
  1171. "sha512": "sha512-gIqt9PkKO01hZ0zmHnWrZ1E45MDreZTVoyDbL1kMWKtDgxxWTJpYtESTEcgpvR1uB1iex1zKGYzJpOMgmuP5TQ==",
  1172. "path": "microsoft.extensions.configuration.environmentvariables/2.2.0",
  1173. "hashPath": "microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512"
  1174. },
  1175. "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
  1176. "type": "package",
  1177. "serviceable": true,
  1178. "sha512": "sha512-H1qCpWBC8Ed4tguTR/qYkbb3F6DI5Su3t8xyFo3/5MzAd8PwPpHzgX8X04KbBxKmk173Pb64x7xMHarczVFQUA==",
  1179. "path": "microsoft.extensions.configuration.fileextensions/2.2.0",
  1180. "hashPath": "microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512"
  1181. },
  1182. "Microsoft.Extensions.DependencyInjection/2.2.0": {
  1183. "type": "package",
  1184. "serviceable": true,
  1185. "sha512": "sha512-MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==",
  1186. "path": "microsoft.extensions.dependencyinjection/2.2.0",
  1187. "hashPath": "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512"
  1188. },
  1189. "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": {
  1190. "type": "package",
  1191. "serviceable": true,
  1192. "sha512": "sha512-f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==",
  1193. "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0",
  1194. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512"
  1195. },
  1196. "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
  1197. "type": "package",
  1198. "serviceable": true,
  1199. "sha512": "sha512-EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==",
  1200. "path": "microsoft.extensions.fileproviders.abstractions/2.2.0",
  1201. "hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512"
  1202. },
  1203. "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
  1204. "type": "package",
  1205. "serviceable": true,
  1206. "sha512": "sha512-tbDHZnBJkjYd9NjlRZ9ondDiv1Te3KYCTW2RWpR1B0e1Z8+EnFRo7qNnHkkSCixLdlPZzhjlX24d/PixQ7w2dA==",
  1207. "path": "microsoft.extensions.fileproviders.physical/2.2.0",
  1208. "hashPath": "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512"
  1209. },
  1210. "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
  1211. "type": "package",
  1212. "serviceable": true,
  1213. "sha512": "sha512-ZSsHZp3PyW6vk37tDEdypjgGlNtpJ0EixBMOfUod2Thx7GtwfFSAQXUQx8a8BN8vfWKGGMbp7jPWdoHx/At4wQ==",
  1214. "path": "microsoft.extensions.filesystemglobbing/2.2.0",
  1215. "hashPath": "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512"
  1216. },
  1217. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  1218. "type": "package",
  1219. "serviceable": true,
  1220. "sha512": "sha512-+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
  1221. "path": "microsoft.extensions.hosting.abstractions/2.2.0",
  1222. "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512"
  1223. },
  1224. "Microsoft.Extensions.Logging/2.2.0": {
  1225. "type": "package",
  1226. "serviceable": true,
  1227. "sha512": "sha512-Nxqhadc9FCmFHzU+fz3oc8sFlE6IadViYg8dfUdGzJZ2JUxnCsRghBhhOWdM4B2zSZqEc+0BjliBh/oNdRZuig==",
  1228. "path": "microsoft.extensions.logging/2.2.0",
  1229. "hashPath": "microsoft.extensions.logging.2.2.0.nupkg.sha512"
  1230. },
  1231. "Microsoft.Extensions.Logging.Abstractions/2.2.0": {
  1232. "type": "package",
  1233. "serviceable": true,
  1234. "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==",
  1235. "path": "microsoft.extensions.logging.abstractions/2.2.0",
  1236. "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512"
  1237. },
  1238. "Microsoft.Extensions.ObjectPool/2.2.0": {
  1239. "type": "package",
  1240. "serviceable": true,
  1241. "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
  1242. "path": "microsoft.extensions.objectpool/2.2.0",
  1243. "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512"
  1244. },
  1245. "Microsoft.Extensions.Options/2.2.0": {
  1246. "type": "package",
  1247. "serviceable": true,
  1248. "sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==",
  1249. "path": "microsoft.extensions.options/2.2.0",
  1250. "hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512"
  1251. },
  1252. "Microsoft.Extensions.Primitives/2.2.0": {
  1253. "type": "package",
  1254. "serviceable": true,
  1255. "sha512": "sha512-azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==",
  1256. "path": "microsoft.extensions.primitives/2.2.0",
  1257. "hashPath": "microsoft.extensions.primitives.2.2.0.nupkg.sha512"
  1258. },
  1259. "Microsoft.Net.Http.Headers/2.2.0": {
  1260. "type": "package",
  1261. "serviceable": true,
  1262. "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
  1263. "path": "microsoft.net.http.headers/2.2.0",
  1264. "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512"
  1265. },
  1266. "Microsoft.NETCore.Platforms/3.1.0": {
  1267. "type": "package",
  1268. "serviceable": true,
  1269. "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  1270. "path": "microsoft.netcore.platforms/3.1.0",
  1271. "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
  1272. },
  1273. "Microsoft.NETCore.Targets/1.1.0": {
  1274. "type": "package",
  1275. "serviceable": true,
  1276. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  1277. "path": "microsoft.netcore.targets/1.1.0",
  1278. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  1279. },
  1280. "Microsoft.Win32.SystemEvents/4.7.0": {
  1281. "type": "package",
  1282. "serviceable": true,
  1283. "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  1284. "path": "microsoft.win32.systemevents/4.7.0",
  1285. "hashPath": "microsoft.win32.systemevents.4.7.0.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. "OPCFoundation.NetStandard.Opc.Ua/1.4.365.23": {
  1295. "type": "package",
  1296. "serviceable": true,
  1297. "sha512": "sha512-u2S/kqNIHgNYEXPGiWBBK2uDCYFomD4/dK9c9foJfA/BdsQxb9TTdTOmY7XooX0oqCCVXuIx4a9O27l+cgloyA==",
  1298. "path": "opcfoundation.netstandard.opc.ua/1.4.365.23",
  1299. "hashPath": "opcfoundation.netstandard.opc.ua.1.4.365.23.nupkg.sha512"
  1300. },
  1301. "OPCFoundation.NetStandard.Opc.Ua.Bindings.Https/1.4.365.23": {
  1302. "type": "package",
  1303. "serviceable": true,
  1304. "sha512": "sha512-eCco3efhkljI6Jd9qUfZM4qR+JnbvKPZftO9pK52hCv4yaY6rKxw5EXOtYFB9b/i1BzPH9QLG2KaM/jlhfyCbA==",
  1305. "path": "opcfoundation.netstandard.opc.ua.bindings.https/1.4.365.23",
  1306. "hashPath": "opcfoundation.netstandard.opc.ua.bindings.https.1.4.365.23.nupkg.sha512"
  1307. },
  1308. "OPCFoundation.NetStandard.Opc.Ua.Client/1.4.365.23": {
  1309. "type": "package",
  1310. "serviceable": true,
  1311. "sha512": "sha512-tTN54ams2MoSMz9bPLU7OX5ntNkmAPk73yW4RNcreNo6YWI5XkbJ0GFwvqETkls0EiH9ApbP328qLdQ8t3iEwA==",
  1312. "path": "opcfoundation.netstandard.opc.ua.client/1.4.365.23",
  1313. "hashPath": "opcfoundation.netstandard.opc.ua.client.1.4.365.23.nupkg.sha512"
  1314. },
  1315. "OPCFoundation.NetStandard.Opc.Ua.Configuration/1.4.365.23": {
  1316. "type": "package",
  1317. "serviceable": true,
  1318. "sha512": "sha512-oEBnnCe1SVytFnXdGEx7P5aoeBj2Z1OwunV0CgpjNGawNL3InA2LZ06BUSC/DW/S0zC4khgLSSOmLe9e/xtUyQ==",
  1319. "path": "opcfoundation.netstandard.opc.ua.configuration/1.4.365.23",
  1320. "hashPath": "opcfoundation.netstandard.opc.ua.configuration.1.4.365.23.nupkg.sha512"
  1321. },
  1322. "OPCFoundation.NetStandard.Opc.Ua.Core/1.4.365.23": {
  1323. "type": "package",
  1324. "serviceable": true,
  1325. "sha512": "sha512-XYYxQfW7trMTO/BWzoanC7nF4sczbUJ58736Ju4g6kLttDf8utIGlYBLA56GE8H54tFOadJya4Y8RYUZHaSiWw==",
  1326. "path": "opcfoundation.netstandard.opc.ua.core/1.4.365.23",
  1327. "hashPath": "opcfoundation.netstandard.opc.ua.core.1.4.365.23.nupkg.sha512"
  1328. },
  1329. "OPCFoundation.NetStandard.Opc.Ua.Gds.Client.Common/1.4.365.23": {
  1330. "type": "package",
  1331. "serviceable": true,
  1332. "sha512": "sha512-YtIk+FuS2TmbSvLecf8X1jli7xEjmY3SsDo/TxkQ3I3PYDmpL23oiTf3XzEZ48SgjHRjUMUVYcDrqgxEFeF+dg==",
  1333. "path": "opcfoundation.netstandard.opc.ua.gds.client.common/1.4.365.23",
  1334. "hashPath": "opcfoundation.netstandard.opc.ua.gds.client.common.1.4.365.23.nupkg.sha512"
  1335. },
  1336. "OPCFoundation.NetStandard.Opc.Ua.Gds.Server.Common/1.4.365.23": {
  1337. "type": "package",
  1338. "serviceable": true,
  1339. "sha512": "sha512-zqk3xgl6PAXuduVHWfCvMpKiejc1zi0NYyVkXAX/cVfDh/8TLiomH81aI+HJZLVmcbzE/IT5CZrcFbdsXVrwzQ==",
  1340. "path": "opcfoundation.netstandard.opc.ua.gds.server.common/1.4.365.23",
  1341. "hashPath": "opcfoundation.netstandard.opc.ua.gds.server.common.1.4.365.23.nupkg.sha512"
  1342. },
  1343. "OPCFoundation.NetStandard.Opc.Ua.Security.Certificates/1.4.365.23": {
  1344. "type": "package",
  1345. "serviceable": true,
  1346. "sha512": "sha512-0Ojm89Lmm7as2XRB6dIQrLPdio7duhsz5gjc/Q/8qttifotEl6CtwX+jnzdqWqi81QLQAxSImiiHLDX5iMw9MQ==",
  1347. "path": "opcfoundation.netstandard.opc.ua.security.certificates/1.4.365.23",
  1348. "hashPath": "opcfoundation.netstandard.opc.ua.security.certificates.1.4.365.23.nupkg.sha512"
  1349. },
  1350. "OPCFoundation.NetStandard.Opc.Ua.Server/1.4.365.23": {
  1351. "type": "package",
  1352. "serviceable": true,
  1353. "sha512": "sha512-N7yYLi98apfXqEuQe66Y91RZ2IyGABHVgkHULy/DMPGruKUSS4HmcTX59XBLhXefJfpbx5c6R7slXqxcxrMtlQ==",
  1354. "path": "opcfoundation.netstandard.opc.ua.server/1.4.365.23",
  1355. "hashPath": "opcfoundation.netstandard.opc.ua.server.1.4.365.23.nupkg.sha512"
  1356. },
  1357. "OpcUaHelper/2.1.3": {
  1358. "type": "package",
  1359. "serviceable": true,
  1360. "sha512": "sha512-77ZLMMXRW+cjjoD6OeVQHPXEIwtUjYEcp2OlP6ND3VC6O2SmsQ2Al8wzqYe2fBZJqvT/wxicP6q/DRwvF8VKrw==",
  1361. "path": "opcuahelper/2.1.3",
  1362. "hashPath": "opcuahelper.2.1.3.nupkg.sha512"
  1363. },
  1364. "Portable.BouncyCastle/1.8.9": {
  1365. "type": "package",
  1366. "serviceable": true,
  1367. "sha512": "sha512-wlJo8aFoeyl+W93iFXTK5ShzDYk5WBqoUPjTNEM0Xv9kn1H+4hmuCjF0/n8HLm9Nnp1aY6KNndWqQTNk+NGgRQ==",
  1368. "path": "portable.bouncycastle/1.8.9",
  1369. "hashPath": "portable.bouncycastle.1.8.9.nupkg.sha512"
  1370. },
  1371. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1372. "type": "package",
  1373. "serviceable": true,
  1374. "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  1375. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  1376. "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  1377. },
  1378. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1379. "type": "package",
  1380. "serviceable": true,
  1381. "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  1382. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  1383. "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  1384. },
  1385. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1386. "type": "package",
  1387. "serviceable": true,
  1388. "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  1389. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  1390. "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  1391. },
  1392. "runtime.native.System/4.3.0": {
  1393. "type": "package",
  1394. "serviceable": true,
  1395. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  1396. "path": "runtime.native.system/4.3.0",
  1397. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  1398. },
  1399. "runtime.native.System.Net.Http/4.3.0": {
  1400. "type": "package",
  1401. "serviceable": true,
  1402. "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  1403. "path": "runtime.native.system.net.http/4.3.0",
  1404. "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
  1405. },
  1406. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1407. "type": "package",
  1408. "serviceable": true,
  1409. "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  1410. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  1411. "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  1412. },
  1413. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1414. "type": "package",
  1415. "serviceable": true,
  1416. "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  1417. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  1418. "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  1419. },
  1420. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1421. "type": "package",
  1422. "serviceable": true,
  1423. "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  1424. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  1425. "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  1426. },
  1427. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1428. "type": "package",
  1429. "serviceable": true,
  1430. "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  1431. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  1432. "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  1433. },
  1434. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1435. "type": "package",
  1436. "serviceable": true,
  1437. "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  1438. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  1439. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  1440. },
  1441. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1442. "type": "package",
  1443. "serviceable": true,
  1444. "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  1445. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  1446. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  1447. },
  1448. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1449. "type": "package",
  1450. "serviceable": true,
  1451. "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  1452. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  1453. "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  1454. },
  1455. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1456. "type": "package",
  1457. "serviceable": true,
  1458. "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  1459. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  1460. "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  1461. },
  1462. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1463. "type": "package",
  1464. "serviceable": true,
  1465. "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  1466. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  1467. "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  1468. },
  1469. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1470. "type": "package",
  1471. "serviceable": true,
  1472. "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  1473. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  1474. "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  1475. },
  1476. "System.Buffers/4.5.0": {
  1477. "type": "package",
  1478. "serviceable": true,
  1479. "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
  1480. "path": "system.buffers/4.5.0",
  1481. "hashPath": "system.buffers.4.5.0.nupkg.sha512"
  1482. },
  1483. "System.Collections/4.3.0": {
  1484. "type": "package",
  1485. "serviceable": true,
  1486. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  1487. "path": "system.collections/4.3.0",
  1488. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  1489. },
  1490. "System.Collections.Concurrent/4.3.0": {
  1491. "type": "package",
  1492. "serviceable": true,
  1493. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  1494. "path": "system.collections.concurrent/4.3.0",
  1495. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  1496. },
  1497. "System.ComponentModel.Annotations/4.5.0": {
  1498. "type": "package",
  1499. "serviceable": true,
  1500. "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
  1501. "path": "system.componentmodel.annotations/4.5.0",
  1502. "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512"
  1503. },
  1504. "System.Data.Common/4.3.0": {
  1505. "type": "package",
  1506. "serviceable": true,
  1507. "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  1508. "path": "system.data.common/4.3.0",
  1509. "hashPath": "system.data.common.4.3.0.nupkg.sha512"
  1510. },
  1511. "System.Diagnostics.Debug/4.3.0": {
  1512. "type": "package",
  1513. "serviceable": true,
  1514. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  1515. "path": "system.diagnostics.debug/4.3.0",
  1516. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  1517. },
  1518. "System.Diagnostics.DiagnosticSource/4.5.0": {
  1519. "type": "package",
  1520. "serviceable": true,
  1521. "sha512": "sha512-eIHRELiYDQvsMToML81QFkXEEYXUSUT2F28t1SGrevWqP+epFdw80SyAXIKTXOHrIEXReFOEnEr7XlGiC2GgOg==",
  1522. "path": "system.diagnostics.diagnosticsource/4.5.0",
  1523. "hashPath": "system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512"
  1524. },
  1525. "System.Diagnostics.Tracing/4.3.0": {
  1526. "type": "package",
  1527. "serviceable": true,
  1528. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  1529. "path": "system.diagnostics.tracing/4.3.0",
  1530. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  1531. },
  1532. "System.Drawing.Common/4.7.0": {
  1533. "type": "package",
  1534. "serviceable": true,
  1535. "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  1536. "path": "system.drawing.common/4.7.0",
  1537. "hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
  1538. },
  1539. "System.Formats.Asn1/5.0.0": {
  1540. "type": "package",
  1541. "serviceable": true,
  1542. "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
  1543. "path": "system.formats.asn1/5.0.0",
  1544. "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512"
  1545. },
  1546. "System.Globalization/4.3.0": {
  1547. "type": "package",
  1548. "serviceable": true,
  1549. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  1550. "path": "system.globalization/4.3.0",
  1551. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  1552. },
  1553. "System.Globalization.Calendars/4.3.0": {
  1554. "type": "package",
  1555. "serviceable": true,
  1556. "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  1557. "path": "system.globalization.calendars/4.3.0",
  1558. "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
  1559. },
  1560. "System.Globalization.Extensions/4.3.0": {
  1561. "type": "package",
  1562. "serviceable": true,
  1563. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  1564. "path": "system.globalization.extensions/4.3.0",
  1565. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  1566. },
  1567. "System.IO/4.3.0": {
  1568. "type": "package",
  1569. "serviceable": true,
  1570. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  1571. "path": "system.io/4.3.0",
  1572. "hashPath": "system.io.4.3.0.nupkg.sha512"
  1573. },
  1574. "System.IO.FileSystem/4.3.0": {
  1575. "type": "package",
  1576. "serviceable": true,
  1577. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  1578. "path": "system.io.filesystem/4.3.0",
  1579. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  1580. },
  1581. "System.IO.FileSystem.Primitives/4.3.0": {
  1582. "type": "package",
  1583. "serviceable": true,
  1584. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  1585. "path": "system.io.filesystem.primitives/4.3.0",
  1586. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  1587. },
  1588. "System.IO.Pipelines/4.5.2": {
  1589. "type": "package",
  1590. "serviceable": true,
  1591. "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==",
  1592. "path": "system.io.pipelines/4.5.2",
  1593. "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512"
  1594. },
  1595. "System.Linq/4.3.0": {
  1596. "type": "package",
  1597. "serviceable": true,
  1598. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  1599. "path": "system.linq/4.3.0",
  1600. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  1601. },
  1602. "System.Memory/4.5.1": {
  1603. "type": "package",
  1604. "serviceable": true,
  1605. "sha512": "sha512-sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==",
  1606. "path": "system.memory/4.5.1",
  1607. "hashPath": "system.memory.4.5.1.nupkg.sha512"
  1608. },
  1609. "System.Net.Http/4.3.4": {
  1610. "type": "package",
  1611. "serviceable": true,
  1612. "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
  1613. "path": "system.net.http/4.3.4",
  1614. "hashPath": "system.net.http.4.3.4.nupkg.sha512"
  1615. },
  1616. "System.Net.NameResolution/4.3.0": {
  1617. "type": "package",
  1618. "serviceable": true,
  1619. "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  1620. "path": "system.net.nameresolution/4.3.0",
  1621. "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
  1622. },
  1623. "System.Net.Primitives/4.3.0": {
  1624. "type": "package",
  1625. "serviceable": true,
  1626. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  1627. "path": "system.net.primitives/4.3.0",
  1628. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  1629. },
  1630. "System.Numerics.Vectors/4.5.0": {
  1631. "type": "package",
  1632. "serviceable": true,
  1633. "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  1634. "path": "system.numerics.vectors/4.5.0",
  1635. "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
  1636. },
  1637. "System.Private.ServiceModel/4.8.0": {
  1638. "type": "package",
  1639. "serviceable": true,
  1640. "sha512": "sha512-V21eCo3u2GOzq/BOSD3hxlJQCOp71RHXI0TxzbFp8k5Gtnu/X2bBYETpiRFUsUojJz5MwUNjtW8BdwdUnwP05g==",
  1641. "path": "system.private.servicemodel/4.8.0",
  1642. "hashPath": "system.private.servicemodel.4.8.0.nupkg.sha512"
  1643. },
  1644. "System.Reflection/4.3.0": {
  1645. "type": "package",
  1646. "serviceable": true,
  1647. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  1648. "path": "system.reflection/4.3.0",
  1649. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  1650. },
  1651. "System.Reflection.DispatchProxy/4.7.1": {
  1652. "type": "package",
  1653. "serviceable": true,
  1654. "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==",
  1655. "path": "system.reflection.dispatchproxy/4.7.1",
  1656. "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512"
  1657. },
  1658. "System.Reflection.Metadata/1.6.0": {
  1659. "type": "package",
  1660. "serviceable": true,
  1661. "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  1662. "path": "system.reflection.metadata/1.6.0",
  1663. "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
  1664. },
  1665. "System.Reflection.Primitives/4.3.0": {
  1666. "type": "package",
  1667. "serviceable": true,
  1668. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  1669. "path": "system.reflection.primitives/4.3.0",
  1670. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  1671. },
  1672. "System.Resources.ResourceManager/4.3.0": {
  1673. "type": "package",
  1674. "serviceable": true,
  1675. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  1676. "path": "system.resources.resourcemanager/4.3.0",
  1677. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  1678. },
  1679. "System.Runtime/4.3.0": {
  1680. "type": "package",
  1681. "serviceable": true,
  1682. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  1683. "path": "system.runtime/4.3.0",
  1684. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  1685. },
  1686. "System.Runtime.CompilerServices.Unsafe/4.5.1": {
  1687. "type": "package",
  1688. "serviceable": true,
  1689. "sha512": "sha512-Zh8t8oqolRaFa9vmOZfdQm/qKejdqz0J9kr7o2Fu0vPeoH3BL1EOXipKWwkWtLT1JPzjByrF19fGuFlNbmPpiw==",
  1690. "path": "system.runtime.compilerservices.unsafe/4.5.1",
  1691. "hashPath": "system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512"
  1692. },
  1693. "System.Runtime.Extensions/4.3.0": {
  1694. "type": "package",
  1695. "serviceable": true,
  1696. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  1697. "path": "system.runtime.extensions/4.3.0",
  1698. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  1699. },
  1700. "System.Runtime.Handles/4.3.0": {
  1701. "type": "package",
  1702. "serviceable": true,
  1703. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  1704. "path": "system.runtime.handles/4.3.0",
  1705. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  1706. },
  1707. "System.Runtime.InteropServices/4.3.0": {
  1708. "type": "package",
  1709. "serviceable": true,
  1710. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  1711. "path": "system.runtime.interopservices/4.3.0",
  1712. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  1713. },
  1714. "System.Runtime.Numerics/4.3.0": {
  1715. "type": "package",
  1716. "serviceable": true,
  1717. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  1718. "path": "system.runtime.numerics/4.3.0",
  1719. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  1720. },
  1721. "System.Security.AccessControl/4.7.0": {
  1722. "type": "package",
  1723. "serviceable": true,
  1724. "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  1725. "path": "system.security.accesscontrol/4.7.0",
  1726. "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
  1727. },
  1728. "System.Security.Cryptography.Algorithms/4.3.0": {
  1729. "type": "package",
  1730. "serviceable": true,
  1731. "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  1732. "path": "system.security.cryptography.algorithms/4.3.0",
  1733. "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
  1734. },
  1735. "System.Security.Cryptography.Cng/4.7.0": {
  1736. "type": "package",
  1737. "serviceable": true,
  1738. "sha512": "sha512-4WQjFuypWtxb/bl/YwEE7LYGn4fgpsikFfBU6xwEm4YBYiRAhXAEJ62lILBu2JJSFbClIAntFTGfDZafn8yZTg==",
  1739. "path": "system.security.cryptography.cng/4.7.0",
  1740. "hashPath": "system.security.cryptography.cng.4.7.0.nupkg.sha512"
  1741. },
  1742. "System.Security.Cryptography.Csp/4.3.0": {
  1743. "type": "package",
  1744. "serviceable": true,
  1745. "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  1746. "path": "system.security.cryptography.csp/4.3.0",
  1747. "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
  1748. },
  1749. "System.Security.Cryptography.Encoding/4.3.0": {
  1750. "type": "package",
  1751. "serviceable": true,
  1752. "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  1753. "path": "system.security.cryptography.encoding/4.3.0",
  1754. "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
  1755. },
  1756. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1757. "type": "package",
  1758. "serviceable": true,
  1759. "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  1760. "path": "system.security.cryptography.openssl/4.3.0",
  1761. "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1762. },
  1763. "System.Security.Cryptography.Pkcs/4.7.0": {
  1764. "type": "package",
  1765. "serviceable": true,
  1766. "sha512": "sha512-0Srzh6YlhjuMxaqMyeCCdZs22cucaUAG6SKDd3gNHBJmre0VZ71ekzWu9rvLD4YXPetyNdPvV6Qst+8C++9v3Q==",
  1767. "path": "system.security.cryptography.pkcs/4.7.0",
  1768. "hashPath": "system.security.cryptography.pkcs.4.7.0.nupkg.sha512"
  1769. },
  1770. "System.Security.Cryptography.Primitives/4.3.0": {
  1771. "type": "package",
  1772. "serviceable": true,
  1773. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  1774. "path": "system.security.cryptography.primitives/4.3.0",
  1775. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  1776. },
  1777. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1778. "type": "package",
  1779. "serviceable": true,
  1780. "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  1781. "path": "system.security.cryptography.x509certificates/4.3.0",
  1782. "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
  1783. },
  1784. "System.Security.Cryptography.Xml/4.7.0": {
  1785. "type": "package",
  1786. "serviceable": true,
  1787. "sha512": "sha512-B6pAyxMvXGbZemb+ER877KSr6OKis+qAdxhhKKK36I6sgj2js8mbcEVviZEHYV8XRTWjbKsAq8Z/zoaegA30dA==",
  1788. "path": "system.security.cryptography.xml/4.7.0",
  1789. "hashPath": "system.security.cryptography.xml.4.7.0.nupkg.sha512"
  1790. },
  1791. "System.Security.Permissions/4.7.0": {
  1792. "type": "package",
  1793. "serviceable": true,
  1794. "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  1795. "path": "system.security.permissions/4.7.0",
  1796. "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
  1797. },
  1798. "System.Security.Principal.Windows/4.7.0": {
  1799. "type": "package",
  1800. "serviceable": true,
  1801. "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  1802. "path": "system.security.principal.windows/4.7.0",
  1803. "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
  1804. },
  1805. "System.ServiceModel.Primitives/4.8.0": {
  1806. "type": "package",
  1807. "serviceable": true,
  1808. "sha512": "sha512-akJiBb0EcWTXQ/dgp1a27O7UynZbqQ84M17OY/ssxfb32x5wtQ5zRw6ExsQaPOUQgia4Wl2jy4FWZddQRLLnaA==",
  1809. "path": "system.servicemodel.primitives/4.8.0",
  1810. "hashPath": "system.servicemodel.primitives.4.8.0.nupkg.sha512"
  1811. },
  1812. "System.Text.Encoding/4.3.0": {
  1813. "type": "package",
  1814. "serviceable": true,
  1815. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  1816. "path": "system.text.encoding/4.3.0",
  1817. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  1818. },
  1819. "System.Text.Encodings.Web/4.5.0": {
  1820. "type": "package",
  1821. "serviceable": true,
  1822. "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  1823. "path": "system.text.encodings.web/4.5.0",
  1824. "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
  1825. },
  1826. "System.Text.RegularExpressions/4.3.0": {
  1827. "type": "package",
  1828. "serviceable": true,
  1829. "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  1830. "path": "system.text.regularexpressions/4.3.0",
  1831. "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
  1832. },
  1833. "System.Threading/4.3.0": {
  1834. "type": "package",
  1835. "serviceable": true,
  1836. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  1837. "path": "system.threading/4.3.0",
  1838. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  1839. },
  1840. "System.Threading.Tasks/4.3.0": {
  1841. "type": "package",
  1842. "serviceable": true,
  1843. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  1844. "path": "system.threading.tasks/4.3.0",
  1845. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  1846. },
  1847. "System.Threading.Tasks.Extensions/4.5.1": {
  1848. "type": "package",
  1849. "serviceable": true,
  1850. "sha512": "sha512-WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==",
  1851. "path": "system.threading.tasks.extensions/4.5.1",
  1852. "hashPath": "system.threading.tasks.extensions.4.5.1.nupkg.sha512"
  1853. },
  1854. "System.Windows.Extensions/4.7.0": {
  1855. "type": "package",
  1856. "serviceable": true,
  1857. "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  1858. "path": "system.windows.extensions/4.7.0",
  1859. "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
  1860. },
  1861. "WinSCP/6.3.4": {
  1862. "type": "package",
  1863. "serviceable": true,
  1864. "sha512": "sha512-QruTYLecwjwjzz+txdszwfWTT42Yue7XC091DVgN1GkFyNEqtqUBlygX2FYctw0q3ICvFhXFCIBIpXLO1mMLEg==",
  1865. "path": "winscp/6.3.4",
  1866. "hashPath": "winscp.6.3.4.nupkg.sha512"
  1867. }
  1868. }
  1869. }