Luban.Server.deps.json 73 KB

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