Ropin.Core.Extensions.deps.json 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v5.0",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v5.0": {
  9. "Ropin.Core.Extensions/1.0.0": {
  10. "dependencies": {
  11. "Autofac": "6.2.0",
  12. "Autofac.Extras.DynamicProxy": "6.0.0",
  13. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  14. "Ropin.Core.Common": "1.0.0",
  15. "Ropin.Inspection.Common": "1.0.0",
  16. "Ropin.Inspection.Service": "1.0.0",
  17. "Ropin.Inspection.Tasks": "1.0.0",
  18. "StackExchange.Redis": "1.2.4",
  19. "log4net": "2.0.17"
  20. },
  21. "runtime": {
  22. "Ropin.Core.Extensions.dll": {}
  23. }
  24. },
  25. "AdvancedStringBuilder/0.1.0": {
  26. "runtime": {
  27. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  28. "assemblyVersion": "0.1.0.0",
  29. "fileVersion": "0.1.0.0"
  30. }
  31. }
  32. },
  33. "Autofac/6.2.0": {
  34. "dependencies": {
  35. "System.Diagnostics.DiagnosticSource": "5.0.0"
  36. },
  37. "runtime": {
  38. "lib/net5.0/Autofac.dll": {
  39. "assemblyVersion": "6.2.0.0",
  40. "fileVersion": "6.2.0.0"
  41. }
  42. }
  43. },
  44. "Autofac.Extras.DynamicProxy/6.0.0": {
  45. "dependencies": {
  46. "Autofac": "6.2.0",
  47. "Castle.Core": "4.4.0"
  48. },
  49. "runtime": {
  50. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  51. "assemblyVersion": "6.0.0.0",
  52. "fileVersion": "6.0.0.0"
  53. }
  54. }
  55. },
  56. "AutoMapper/10.1.1": {
  57. "dependencies": {
  58. "Microsoft.CSharp": "4.7.0",
  59. "System.Reflection.Emit": "4.7.0"
  60. },
  61. "runtime": {
  62. "lib/netstandard2.0/AutoMapper.dll": {
  63. "assemblyVersion": "10.0.0.0",
  64. "fileVersion": "10.1.1.0"
  65. }
  66. }
  67. },
  68. "BouncyCastle.NetCore/1.8.5": {
  69. "runtime": {
  70. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  71. "assemblyVersion": "1.8.5.0",
  72. "fileVersion": "1.8.19031.1"
  73. }
  74. }
  75. },
  76. "Castle.Core/4.4.0": {
  77. "dependencies": {
  78. "NETStandard.Library": "1.6.1",
  79. "System.Collections.Specialized": "4.3.0",
  80. "System.ComponentModel": "4.3.0",
  81. "System.ComponentModel.TypeConverter": "4.3.0",
  82. "System.Diagnostics.TraceSource": "4.3.0",
  83. "System.Dynamic.Runtime": "4.3.0",
  84. "System.Reflection": "4.3.0",
  85. "System.Reflection.Emit": "4.7.0",
  86. "System.Reflection.TypeExtensions": "4.3.0",
  87. "System.Xml.XmlDocument": "4.3.0"
  88. },
  89. "runtime": {
  90. "lib/netstandard1.5/Castle.Core.dll": {
  91. "assemblyVersion": "4.0.0.0",
  92. "fileVersion": "4.4.0.0"
  93. }
  94. }
  95. },
  96. "Coravel/4.2.1": {
  97. "dependencies": {
  98. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  99. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  100. "Microsoft.Extensions.Logging.Abstractions": "5.0.0"
  101. },
  102. "runtime": {
  103. "lib/netstandard2.0/Coravel.dll": {
  104. "assemblyVersion": "4.2.1.0",
  105. "fileVersion": "4.2.1.0"
  106. }
  107. }
  108. },
  109. "FluentEmail.Core/3.0.2": {
  110. "dependencies": {
  111. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  112. },
  113. "runtime": {
  114. "lib/netstandard2.0/FluentEmail.Core.dll": {
  115. "assemblyVersion": "3.0.2.0",
  116. "fileVersion": "3.0.2.0"
  117. }
  118. }
  119. },
  120. "FluentEmail.Smtp/3.0.2": {
  121. "dependencies": {
  122. "FluentEmail.Core": "3.0.2"
  123. },
  124. "runtime": {
  125. "lib/netstandard2.0/FluentEmail.Smtp.dll": {
  126. "assemblyVersion": "3.0.2.0",
  127. "fileVersion": "3.0.2.0"
  128. }
  129. }
  130. },
  131. "Google.Protobuf/3.11.4": {
  132. "dependencies": {
  133. "System.Memory": "4.5.5"
  134. },
  135. "runtime": {
  136. "lib/netstandard2.0/Google.Protobuf.dll": {
  137. "assemblyVersion": "3.11.4.0",
  138. "fileVersion": "3.11.4.0"
  139. }
  140. }
  141. },
  142. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  143. "dependencies": {
  144. "AdvancedStringBuilder": "0.1.0",
  145. "JavaScriptEngineSwitcher.Core": "3.21.0"
  146. },
  147. "runtime": {
  148. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  149. "assemblyVersion": "3.21.0.0",
  150. "fileVersion": "3.21.0.0"
  151. }
  152. },
  153. "resources": {
  154. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  155. "locale": "ru-RU"
  156. }
  157. }
  158. },
  159. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  160. "runtimeTargets": {
  161. "runtimes/linux-x64/native/libChakraCore.so": {
  162. "rid": "linux-x64",
  163. "assetType": "native",
  164. "fileVersion": "0.0.0.0"
  165. }
  166. }
  167. },
  168. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  169. "runtimeTargets": {
  170. "runtimes/win-x64/native/ChakraCore.dll": {
  171. "rid": "win-x64",
  172. "assetType": "native",
  173. "fileVersion": "1.13.0.0"
  174. }
  175. }
  176. },
  177. "JavaScriptEngineSwitcher.Core/3.21.0": {
  178. "dependencies": {
  179. "AdvancedStringBuilder": "0.1.0"
  180. },
  181. "runtime": {
  182. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  183. "assemblyVersion": "3.21.0.0",
  184. "fileVersion": "3.21.0.0"
  185. }
  186. },
  187. "resources": {
  188. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  189. "locale": "ru-RU"
  190. }
  191. }
  192. },
  193. "K4os.Compression.LZ4/1.1.11": {
  194. "dependencies": {
  195. "System.Memory": "4.5.5"
  196. },
  197. "runtime": {
  198. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  199. "assemblyVersion": "1.1.11.0",
  200. "fileVersion": "1.1.11.0"
  201. }
  202. }
  203. },
  204. "K4os.Compression.LZ4.Streams/1.1.11": {
  205. "dependencies": {
  206. "K4os.Compression.LZ4": "1.1.11",
  207. "K4os.Hash.xxHash": "1.0.6"
  208. },
  209. "runtime": {
  210. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  211. "assemblyVersion": "1.1.11.0",
  212. "fileVersion": "1.1.11.0"
  213. }
  214. }
  215. },
  216. "K4os.Hash.xxHash/1.0.6": {
  217. "dependencies": {
  218. "System.Memory": "4.5.5"
  219. },
  220. "runtime": {
  221. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  222. "assemblyVersion": "1.0.6.0",
  223. "fileVersion": "1.0.6.0"
  224. }
  225. }
  226. },
  227. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  228. "dependencies": {
  229. "Microsoft.EntityFrameworkCore": "5.0.0"
  230. },
  231. "runtime": {
  232. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  233. "assemblyVersion": "5.0.24.0",
  234. "fileVersion": "5.0.24.0"
  235. }
  236. }
  237. },
  238. "log4net/2.0.17": {
  239. "dependencies": {
  240. "System.Configuration.ConfigurationManager": "4.7.0"
  241. },
  242. "runtime": {
  243. "lib/netstandard2.0/log4net.dll": {
  244. "assemblyVersion": "2.0.17.0",
  245. "fileVersion": "2.0.17.0"
  246. }
  247. }
  248. },
  249. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  250. "dependencies": {
  251. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  252. "System.Text.Encodings.Web": "4.5.0"
  253. }
  254. },
  255. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  256. "dependencies": {
  257. "Microsoft.Extensions.Primitives": "5.0.0",
  258. "System.IO.Pipelines": "5.0.0"
  259. }
  260. },
  261. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  262. "dependencies": {
  263. "Microsoft.Extensions.Logging.Console": "3.1.30",
  264. "Newtonsoft.Json": "13.0.1"
  265. },
  266. "runtime": {
  267. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {
  268. "assemblyVersion": "3.1.30.0",
  269. "fileVersion": "3.100.3022.47624"
  270. }
  271. }
  272. },
  273. "Microsoft.CSharp/4.7.0": {},
  274. "Microsoft.EntityFrameworkCore/5.0.0": {
  275. "dependencies": {
  276. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  277. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  278. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  279. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  280. "Microsoft.Extensions.Logging": "5.0.0",
  281. "System.Collections.Immutable": "5.0.0",
  282. "System.ComponentModel.Annotations": "5.0.0",
  283. "System.Diagnostics.DiagnosticSource": "5.0.0"
  284. },
  285. "runtime": {
  286. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  287. "assemblyVersion": "5.0.0.0",
  288. "fileVersion": "5.0.20.52303"
  289. }
  290. }
  291. },
  292. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  293. "runtime": {
  294. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  295. "assemblyVersion": "5.0.0.0",
  296. "fileVersion": "5.0.20.52303"
  297. }
  298. }
  299. },
  300. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {},
  301. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  302. "dependencies": {
  303. "Microsoft.EntityFrameworkCore": "5.0.0",
  304. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  305. },
  306. "runtime": {
  307. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  308. "assemblyVersion": "5.0.0.0",
  309. "fileVersion": "5.0.20.52303"
  310. }
  311. }
  312. },
  313. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  314. "dependencies": {
  315. "Microsoft.Extensions.Primitives": "5.0.0"
  316. }
  317. },
  318. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  319. "dependencies": {
  320. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  321. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  322. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  323. "Microsoft.Extensions.Options": "5.0.0",
  324. "Microsoft.Extensions.Primitives": "5.0.0"
  325. }
  326. },
  327. "Microsoft.Extensions.Configuration/5.0.0": {
  328. "dependencies": {
  329. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  330. "Microsoft.Extensions.Primitives": "5.0.0"
  331. }
  332. },
  333. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  334. "dependencies": {
  335. "Microsoft.Extensions.Primitives": "5.0.0"
  336. }
  337. },
  338. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  339. "dependencies": {
  340. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  341. }
  342. },
  343. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  344. "dependencies": {
  345. "Microsoft.Extensions.Configuration": "5.0.0",
  346. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  347. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  348. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  349. "Microsoft.Extensions.Primitives": "5.0.0"
  350. }
  351. },
  352. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  353. "dependencies": {
  354. "Microsoft.Extensions.Configuration": "5.0.0",
  355. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  356. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  357. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  358. }
  359. },
  360. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  361. "dependencies": {
  362. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  363. }
  364. },
  365. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {},
  366. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  367. "dependencies": {
  368. "Microsoft.Extensions.Primitives": "5.0.0"
  369. }
  370. },
  371. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  372. "dependencies": {
  373. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  374. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  375. "Microsoft.Extensions.Primitives": "5.0.0"
  376. }
  377. },
  378. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {},
  379. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  380. "dependencies": {
  381. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  382. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  383. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  384. "Microsoft.Extensions.Logging.Abstractions": "5.0.0"
  385. }
  386. },
  387. "Microsoft.Extensions.Http/5.0.0": {
  388. "dependencies": {
  389. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  390. "Microsoft.Extensions.Logging": "5.0.0",
  391. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  392. "Microsoft.Extensions.Options": "5.0.0"
  393. }
  394. },
  395. "Microsoft.Extensions.Logging/5.0.0": {
  396. "dependencies": {
  397. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  398. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  399. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  400. "Microsoft.Extensions.Options": "5.0.0"
  401. }
  402. },
  403. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {},
  404. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  405. "dependencies": {
  406. "Microsoft.Extensions.Logging": "5.0.0",
  407. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  408. }
  409. },
  410. "Microsoft.Extensions.Logging.Console/3.1.30": {
  411. "dependencies": {
  412. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  413. "Microsoft.Extensions.Logging": "5.0.0",
  414. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  415. }
  416. },
  417. "Microsoft.Extensions.Options/5.0.0": {
  418. "dependencies": {
  419. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  420. "Microsoft.Extensions.Primitives": "5.0.0"
  421. }
  422. },
  423. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  424. "dependencies": {
  425. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  426. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  427. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  428. "Microsoft.Extensions.Options": "5.0.0"
  429. }
  430. },
  431. "Microsoft.Extensions.Primitives/5.0.0": {},
  432. "Microsoft.NETCore.Platforms/5.0.0": {},
  433. "Microsoft.NETCore.Targets/1.1.0": {},
  434. "Microsoft.Win32.Primitives/4.3.0": {
  435. "dependencies": {
  436. "Microsoft.NETCore.Platforms": "5.0.0",
  437. "Microsoft.NETCore.Targets": "1.1.0",
  438. "System.Runtime": "4.3.0"
  439. }
  440. },
  441. "Microsoft.Win32.SystemEvents/5.0.0": {
  442. "dependencies": {
  443. "Microsoft.NETCore.Platforms": "5.0.0"
  444. }
  445. },
  446. "MySql.Data/8.0.23": {
  447. "dependencies": {
  448. "BouncyCastle.NetCore": "1.8.5",
  449. "Google.Protobuf": "3.11.4",
  450. "K4os.Compression.LZ4": "1.1.11",
  451. "K4os.Compression.LZ4.Streams": "1.1.11",
  452. "K4os.Hash.xxHash": "1.0.6",
  453. "SSH.NET": "2020.0.0-beta1",
  454. "System.Buffers": "4.5.1",
  455. "System.Configuration.ConfigurationManager": "4.7.0",
  456. "System.Security.Permissions": "4.7.0",
  457. "System.Text.Encoding.CodePages": "5.0.0"
  458. },
  459. "runtime": {
  460. "lib/net5.0/MySql.Data.dll": {
  461. "assemblyVersion": "8.0.23.0",
  462. "fileVersion": "8.0.23.0"
  463. },
  464. "lib/net5.0/Ubiety.Dns.Core.dll": {
  465. "assemblyVersion": "2.2.1.0",
  466. "fileVersion": "2.2.1.0"
  467. },
  468. "lib/net5.0/Zstandard.Net.dll": {
  469. "assemblyVersion": "1.1.7.0",
  470. "fileVersion": "1.1.7.0"
  471. }
  472. }
  473. },
  474. "MySqlConnector/1.1.0": {
  475. "runtime": {
  476. "lib/net5.0/MySqlConnector.dll": {
  477. "assemblyVersion": "1.0.0.0",
  478. "fileVersion": "1.1.0.0"
  479. }
  480. }
  481. },
  482. "NETStandard.Library/1.6.1": {
  483. "dependencies": {
  484. "Microsoft.NETCore.Platforms": "5.0.0",
  485. "Microsoft.Win32.Primitives": "4.3.0",
  486. "System.AppContext": "4.3.0",
  487. "System.Collections": "4.3.0",
  488. "System.Collections.Concurrent": "4.3.0",
  489. "System.Console": "4.3.0",
  490. "System.Diagnostics.Debug": "4.3.0",
  491. "System.Diagnostics.Tools": "4.3.0",
  492. "System.Diagnostics.Tracing": "4.3.0",
  493. "System.Globalization": "4.3.0",
  494. "System.Globalization.Calendars": "4.3.0",
  495. "System.IO": "4.3.0",
  496. "System.IO.Compression": "4.3.0",
  497. "System.IO.Compression.ZipFile": "4.3.0",
  498. "System.IO.FileSystem": "4.3.0",
  499. "System.IO.FileSystem.Primitives": "4.3.0",
  500. "System.Linq": "4.3.0",
  501. "System.Linq.Expressions": "4.3.0",
  502. "System.Net.Http": "4.3.0",
  503. "System.Net.Primitives": "4.3.0",
  504. "System.Net.Sockets": "4.3.0",
  505. "System.ObjectModel": "4.3.0",
  506. "System.Reflection": "4.3.0",
  507. "System.Reflection.Extensions": "4.3.0",
  508. "System.Reflection.Primitives": "4.3.0",
  509. "System.Resources.ResourceManager": "4.3.0",
  510. "System.Runtime": "4.3.0",
  511. "System.Runtime.Extensions": "4.3.0",
  512. "System.Runtime.Handles": "4.3.0",
  513. "System.Runtime.InteropServices": "4.3.0",
  514. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  515. "System.Runtime.Numerics": "4.3.0",
  516. "System.Security.Cryptography.Algorithms": "4.3.0",
  517. "System.Security.Cryptography.Encoding": "4.3.0",
  518. "System.Security.Cryptography.Primitives": "4.3.0",
  519. "System.Security.Cryptography.X509Certificates": "4.3.0",
  520. "System.Text.Encoding": "4.3.0",
  521. "System.Text.Encoding.Extensions": "4.3.0",
  522. "System.Text.RegularExpressions": "4.3.0",
  523. "System.Threading": "4.3.0",
  524. "System.Threading.Tasks": "4.3.0",
  525. "System.Threading.Timer": "4.3.0",
  526. "System.Xml.ReaderWriter": "4.3.0",
  527. "System.Xml.XDocument": "4.3.0"
  528. }
  529. },
  530. "Newtonsoft.Json/13.0.1": {
  531. "runtime": {
  532. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  533. "assemblyVersion": "13.0.0.0",
  534. "fileVersion": "13.0.1.25517"
  535. }
  536. }
  537. },
  538. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  539. "dependencies": {
  540. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  541. "MySqlConnector": "1.1.0"
  542. },
  543. "runtime": {
  544. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  545. "assemblyVersion": "5.0.0.0",
  546. "fileVersion": "5.0.0.0"
  547. }
  548. }
  549. },
  550. "QRCoder/1.4.3": {
  551. "dependencies": {
  552. "System.Drawing.Common": "5.0.3"
  553. },
  554. "runtime": {
  555. "lib/net5.0/QRCoder.dll": {
  556. "assemblyVersion": "1.4.3.0",
  557. "fileVersion": "1.4.3.0"
  558. }
  559. }
  560. },
  561. "Quartz/3.3.3": {
  562. "dependencies": {
  563. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  564. "System.Configuration.ConfigurationManager": "4.7.0",
  565. "System.Diagnostics.DiagnosticSource": "5.0.0"
  566. },
  567. "runtime": {
  568. "lib/netstandard2.0/Quartz.dll": {
  569. "assemblyVersion": "3.3.3.0",
  570. "fileVersion": "3.3.3.0"
  571. }
  572. }
  573. },
  574. "RabbitMQ.Client/6.8.1": {
  575. "dependencies": {
  576. "System.Memory": "4.5.5",
  577. "System.Threading.Channels": "7.0.0"
  578. },
  579. "runtime": {
  580. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  581. "assemblyVersion": "6.0.0.0",
  582. "fileVersion": "6.8.1.0"
  583. }
  584. }
  585. },
  586. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  587. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  588. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  589. "runtime.native.System/4.3.0": {
  590. "dependencies": {
  591. "Microsoft.NETCore.Platforms": "5.0.0",
  592. "Microsoft.NETCore.Targets": "1.1.0"
  593. }
  594. },
  595. "runtime.native.System.IO.Compression/4.3.0": {
  596. "dependencies": {
  597. "Microsoft.NETCore.Platforms": "5.0.0",
  598. "Microsoft.NETCore.Targets": "1.1.0"
  599. }
  600. },
  601. "runtime.native.System.Net.Http/4.3.0": {
  602. "dependencies": {
  603. "Microsoft.NETCore.Platforms": "5.0.0",
  604. "Microsoft.NETCore.Targets": "1.1.0"
  605. }
  606. },
  607. "runtime.native.System.Net.Security/4.3.0": {
  608. "dependencies": {
  609. "Microsoft.NETCore.Platforms": "5.0.0",
  610. "Microsoft.NETCore.Targets": "1.1.0"
  611. }
  612. },
  613. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  614. "dependencies": {
  615. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  616. }
  617. },
  618. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  619. "dependencies": {
  620. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  621. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  622. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  623. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  624. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  625. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  626. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  627. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  628. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  629. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  630. }
  631. },
  632. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  633. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  634. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
  635. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  636. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  637. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  638. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  639. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  640. "SixLabors.ImageSharp/2.1.6": {
  641. "dependencies": {
  642. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  643. "System.Text.Encoding.CodePages": "5.0.0"
  644. },
  645. "runtime": {
  646. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  647. "assemblyVersion": "2.0.0.0",
  648. "fileVersion": "2.1.6.0"
  649. }
  650. }
  651. },
  652. "SSH.NET/2020.0.0-beta1": {
  653. "dependencies": {
  654. "SshNet.Security.Cryptography": "1.3.0"
  655. },
  656. "runtime": {
  657. "lib/netstandard2.0/Renci.SshNet.dll": {
  658. "assemblyVersion": "2020.0.0.0",
  659. "fileVersion": "2020.0.0.0"
  660. }
  661. }
  662. },
  663. "SshNet.Security.Cryptography/1.3.0": {
  664. "runtime": {
  665. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  666. "assemblyVersion": "1.3.0.0",
  667. "fileVersion": "1.3.0.0"
  668. }
  669. }
  670. },
  671. "StackExchange.Redis/1.2.4": {
  672. "dependencies": {
  673. "NETStandard.Library": "1.6.1",
  674. "System.Collections": "4.3.0",
  675. "System.Collections.Concurrent": "4.3.0",
  676. "System.Collections.NonGeneric": "4.3.0",
  677. "System.Diagnostics.Tools": "4.3.0",
  678. "System.IO.Compression": "4.3.0",
  679. "System.IO.FileSystem": "4.3.0",
  680. "System.Linq": "4.3.0",
  681. "System.Net.NameResolution": "4.3.0",
  682. "System.Net.Security": "4.3.0",
  683. "System.Net.Sockets": "4.3.0",
  684. "System.Reflection.Emit": "4.7.0",
  685. "System.Reflection.Emit.Lightweight": "4.3.0",
  686. "System.Reflection.TypeExtensions": "4.3.0",
  687. "System.Runtime.Extensions": "4.3.0",
  688. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  689. "System.Security.Cryptography.Algorithms": "4.3.0",
  690. "System.Security.Cryptography.X509Certificates": "4.3.0",
  691. "System.Text.RegularExpressions": "4.3.0",
  692. "System.Threading": "4.3.0",
  693. "System.Threading.Thread": "4.3.0",
  694. "System.Threading.ThreadPool": "4.3.0",
  695. "System.Threading.Timer": "4.3.0"
  696. },
  697. "runtime": {
  698. "lib/netstandard1.5/StackExchange.Redis.dll": {
  699. "assemblyVersion": "1.2.4.0",
  700. "fileVersion": "1.2.4.0"
  701. }
  702. }
  703. },
  704. "System.AppContext/4.3.0": {
  705. "dependencies": {
  706. "System.Runtime": "4.3.0"
  707. }
  708. },
  709. "System.Buffers/4.5.1": {},
  710. "System.Collections/4.3.0": {
  711. "dependencies": {
  712. "Microsoft.NETCore.Platforms": "5.0.0",
  713. "Microsoft.NETCore.Targets": "1.1.0",
  714. "System.Runtime": "4.3.0"
  715. }
  716. },
  717. "System.Collections.Concurrent/4.3.0": {
  718. "dependencies": {
  719. "System.Collections": "4.3.0",
  720. "System.Diagnostics.Debug": "4.3.0",
  721. "System.Diagnostics.Tracing": "4.3.0",
  722. "System.Globalization": "4.3.0",
  723. "System.Reflection": "4.3.0",
  724. "System.Resources.ResourceManager": "4.3.0",
  725. "System.Runtime": "4.3.0",
  726. "System.Runtime.Extensions": "4.3.0",
  727. "System.Threading": "4.3.0",
  728. "System.Threading.Tasks": "4.3.0"
  729. }
  730. },
  731. "System.Collections.Immutable/5.0.0": {},
  732. "System.Collections.NonGeneric/4.3.0": {
  733. "dependencies": {
  734. "System.Diagnostics.Debug": "4.3.0",
  735. "System.Globalization": "4.3.0",
  736. "System.Resources.ResourceManager": "4.3.0",
  737. "System.Runtime": "4.3.0",
  738. "System.Runtime.Extensions": "4.3.0",
  739. "System.Threading": "4.3.0"
  740. }
  741. },
  742. "System.Collections.Specialized/4.3.0": {
  743. "dependencies": {
  744. "System.Collections.NonGeneric": "4.3.0",
  745. "System.Globalization": "4.3.0",
  746. "System.Globalization.Extensions": "4.3.0",
  747. "System.Resources.ResourceManager": "4.3.0",
  748. "System.Runtime": "4.3.0",
  749. "System.Runtime.Extensions": "4.3.0",
  750. "System.Threading": "4.3.0"
  751. }
  752. },
  753. "System.ComponentModel/4.3.0": {
  754. "dependencies": {
  755. "System.Runtime": "4.3.0"
  756. }
  757. },
  758. "System.ComponentModel.Annotations/5.0.0": {},
  759. "System.ComponentModel.Primitives/4.3.0": {
  760. "dependencies": {
  761. "System.ComponentModel": "4.3.0",
  762. "System.Resources.ResourceManager": "4.3.0",
  763. "System.Runtime": "4.3.0"
  764. }
  765. },
  766. "System.ComponentModel.TypeConverter/4.3.0": {
  767. "dependencies": {
  768. "System.Collections": "4.3.0",
  769. "System.Collections.NonGeneric": "4.3.0",
  770. "System.Collections.Specialized": "4.3.0",
  771. "System.ComponentModel": "4.3.0",
  772. "System.ComponentModel.Primitives": "4.3.0",
  773. "System.Globalization": "4.3.0",
  774. "System.Linq": "4.3.0",
  775. "System.Reflection": "4.3.0",
  776. "System.Reflection.Extensions": "4.3.0",
  777. "System.Reflection.Primitives": "4.3.0",
  778. "System.Reflection.TypeExtensions": "4.3.0",
  779. "System.Resources.ResourceManager": "4.3.0",
  780. "System.Runtime": "4.3.0",
  781. "System.Runtime.Extensions": "4.3.0",
  782. "System.Threading": "4.3.0"
  783. }
  784. },
  785. "System.Configuration.ConfigurationManager/4.7.0": {
  786. "dependencies": {
  787. "System.Security.Cryptography.ProtectedData": "4.7.0",
  788. "System.Security.Permissions": "4.7.0"
  789. },
  790. "runtime": {
  791. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  792. "assemblyVersion": "4.0.3.0",
  793. "fileVersion": "4.700.19.56404"
  794. }
  795. }
  796. },
  797. "System.Console/4.3.0": {
  798. "dependencies": {
  799. "Microsoft.NETCore.Platforms": "5.0.0",
  800. "Microsoft.NETCore.Targets": "1.1.0",
  801. "System.IO": "4.3.0",
  802. "System.Runtime": "4.3.0",
  803. "System.Text.Encoding": "4.3.0"
  804. }
  805. },
  806. "System.Diagnostics.Debug/4.3.0": {
  807. "dependencies": {
  808. "Microsoft.NETCore.Platforms": "5.0.0",
  809. "Microsoft.NETCore.Targets": "1.1.0",
  810. "System.Runtime": "4.3.0"
  811. }
  812. },
  813. "System.Diagnostics.DiagnosticSource/5.0.0": {},
  814. "System.Diagnostics.Tools/4.3.0": {
  815. "dependencies": {
  816. "Microsoft.NETCore.Platforms": "5.0.0",
  817. "Microsoft.NETCore.Targets": "1.1.0",
  818. "System.Runtime": "4.3.0"
  819. }
  820. },
  821. "System.Diagnostics.TraceSource/4.3.0": {
  822. "dependencies": {
  823. "Microsoft.NETCore.Platforms": "5.0.0",
  824. "System.Collections": "4.3.0",
  825. "System.Diagnostics.Debug": "4.3.0",
  826. "System.Globalization": "4.3.0",
  827. "System.Resources.ResourceManager": "4.3.0",
  828. "System.Runtime": "4.3.0",
  829. "System.Runtime.Extensions": "4.3.0",
  830. "System.Threading": "4.3.0",
  831. "runtime.native.System": "4.3.0"
  832. }
  833. },
  834. "System.Diagnostics.Tracing/4.3.0": {
  835. "dependencies": {
  836. "Microsoft.NETCore.Platforms": "5.0.0",
  837. "Microsoft.NETCore.Targets": "1.1.0",
  838. "System.Runtime": "4.3.0"
  839. }
  840. },
  841. "System.Drawing.Common/5.0.3": {
  842. "dependencies": {
  843. "Microsoft.Win32.SystemEvents": "5.0.0"
  844. },
  845. "runtime": {
  846. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  847. "assemblyVersion": "5.0.0.2",
  848. "fileVersion": "5.0.1221.52207"
  849. }
  850. },
  851. "runtimeTargets": {
  852. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  853. "rid": "unix",
  854. "assetType": "runtime",
  855. "assemblyVersion": "5.0.0.2",
  856. "fileVersion": "5.0.1221.52207"
  857. },
  858. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  859. "rid": "win",
  860. "assetType": "runtime",
  861. "assemblyVersion": "5.0.0.2",
  862. "fileVersion": "5.0.1221.52207"
  863. }
  864. }
  865. },
  866. "System.Dynamic.Runtime/4.3.0": {
  867. "dependencies": {
  868. "System.Collections": "4.3.0",
  869. "System.Diagnostics.Debug": "4.3.0",
  870. "System.Linq": "4.3.0",
  871. "System.Linq.Expressions": "4.3.0",
  872. "System.ObjectModel": "4.3.0",
  873. "System.Reflection": "4.3.0",
  874. "System.Reflection.Emit": "4.7.0",
  875. "System.Reflection.Emit.ILGeneration": "4.3.0",
  876. "System.Reflection.Primitives": "4.3.0",
  877. "System.Reflection.TypeExtensions": "4.3.0",
  878. "System.Resources.ResourceManager": "4.3.0",
  879. "System.Runtime": "4.3.0",
  880. "System.Runtime.Extensions": "4.3.0",
  881. "System.Threading": "4.3.0"
  882. }
  883. },
  884. "System.Globalization/4.3.0": {
  885. "dependencies": {
  886. "Microsoft.NETCore.Platforms": "5.0.0",
  887. "Microsoft.NETCore.Targets": "1.1.0",
  888. "System.Runtime": "4.3.0"
  889. }
  890. },
  891. "System.Globalization.Calendars/4.3.0": {
  892. "dependencies": {
  893. "Microsoft.NETCore.Platforms": "5.0.0",
  894. "Microsoft.NETCore.Targets": "1.1.0",
  895. "System.Globalization": "4.3.0",
  896. "System.Runtime": "4.3.0"
  897. }
  898. },
  899. "System.Globalization.Extensions/4.3.0": {
  900. "dependencies": {
  901. "Microsoft.NETCore.Platforms": "5.0.0",
  902. "System.Globalization": "4.3.0",
  903. "System.Resources.ResourceManager": "4.3.0",
  904. "System.Runtime": "4.3.0",
  905. "System.Runtime.Extensions": "4.3.0",
  906. "System.Runtime.InteropServices": "4.3.0"
  907. }
  908. },
  909. "System.IO/4.3.0": {
  910. "dependencies": {
  911. "Microsoft.NETCore.Platforms": "5.0.0",
  912. "Microsoft.NETCore.Targets": "1.1.0",
  913. "System.Runtime": "4.3.0",
  914. "System.Text.Encoding": "4.3.0",
  915. "System.Threading.Tasks": "4.3.0"
  916. }
  917. },
  918. "System.IO.Compression/4.3.0": {
  919. "dependencies": {
  920. "Microsoft.NETCore.Platforms": "5.0.0",
  921. "System.Buffers": "4.5.1",
  922. "System.Collections": "4.3.0",
  923. "System.Diagnostics.Debug": "4.3.0",
  924. "System.IO": "4.3.0",
  925. "System.Resources.ResourceManager": "4.3.0",
  926. "System.Runtime": "4.3.0",
  927. "System.Runtime.Extensions": "4.3.0",
  928. "System.Runtime.Handles": "4.3.0",
  929. "System.Runtime.InteropServices": "4.3.0",
  930. "System.Text.Encoding": "4.3.0",
  931. "System.Threading": "4.3.0",
  932. "System.Threading.Tasks": "4.3.0",
  933. "runtime.native.System": "4.3.0",
  934. "runtime.native.System.IO.Compression": "4.3.0"
  935. }
  936. },
  937. "System.IO.Compression.ZipFile/4.3.0": {
  938. "dependencies": {
  939. "System.Buffers": "4.5.1",
  940. "System.IO": "4.3.0",
  941. "System.IO.Compression": "4.3.0",
  942. "System.IO.FileSystem": "4.3.0",
  943. "System.IO.FileSystem.Primitives": "4.3.0",
  944. "System.Resources.ResourceManager": "4.3.0",
  945. "System.Runtime": "4.3.0",
  946. "System.Runtime.Extensions": "4.3.0",
  947. "System.Text.Encoding": "4.3.0"
  948. }
  949. },
  950. "System.IO.FileSystem/4.3.0": {
  951. "dependencies": {
  952. "Microsoft.NETCore.Platforms": "5.0.0",
  953. "Microsoft.NETCore.Targets": "1.1.0",
  954. "System.IO": "4.3.0",
  955. "System.IO.FileSystem.Primitives": "4.3.0",
  956. "System.Runtime": "4.3.0",
  957. "System.Runtime.Handles": "4.3.0",
  958. "System.Text.Encoding": "4.3.0",
  959. "System.Threading.Tasks": "4.3.0"
  960. }
  961. },
  962. "System.IO.FileSystem.Primitives/4.3.0": {
  963. "dependencies": {
  964. "System.Runtime": "4.3.0"
  965. }
  966. },
  967. "System.IO.Pipelines/5.0.0": {},
  968. "System.Linq/4.3.0": {
  969. "dependencies": {
  970. "System.Collections": "4.3.0",
  971. "System.Diagnostics.Debug": "4.3.0",
  972. "System.Resources.ResourceManager": "4.3.0",
  973. "System.Runtime": "4.3.0",
  974. "System.Runtime.Extensions": "4.3.0"
  975. }
  976. },
  977. "System.Linq.Expressions/4.3.0": {
  978. "dependencies": {
  979. "System.Collections": "4.3.0",
  980. "System.Diagnostics.Debug": "4.3.0",
  981. "System.Globalization": "4.3.0",
  982. "System.IO": "4.3.0",
  983. "System.Linq": "4.3.0",
  984. "System.ObjectModel": "4.3.0",
  985. "System.Reflection": "4.3.0",
  986. "System.Reflection.Emit": "4.7.0",
  987. "System.Reflection.Emit.ILGeneration": "4.3.0",
  988. "System.Reflection.Emit.Lightweight": "4.3.0",
  989. "System.Reflection.Extensions": "4.3.0",
  990. "System.Reflection.Primitives": "4.3.0",
  991. "System.Reflection.TypeExtensions": "4.3.0",
  992. "System.Resources.ResourceManager": "4.3.0",
  993. "System.Runtime": "4.3.0",
  994. "System.Runtime.Extensions": "4.3.0",
  995. "System.Threading": "4.3.0"
  996. }
  997. },
  998. "System.Memory/4.5.5": {},
  999. "System.Net.Http/4.3.0": {
  1000. "dependencies": {
  1001. "Microsoft.NETCore.Platforms": "5.0.0",
  1002. "System.Collections": "4.3.0",
  1003. "System.Diagnostics.Debug": "4.3.0",
  1004. "System.Diagnostics.DiagnosticSource": "5.0.0",
  1005. "System.Diagnostics.Tracing": "4.3.0",
  1006. "System.Globalization": "4.3.0",
  1007. "System.Globalization.Extensions": "4.3.0",
  1008. "System.IO": "4.3.0",
  1009. "System.IO.FileSystem": "4.3.0",
  1010. "System.Net.Primitives": "4.3.0",
  1011. "System.Resources.ResourceManager": "4.3.0",
  1012. "System.Runtime": "4.3.0",
  1013. "System.Runtime.Extensions": "4.3.0",
  1014. "System.Runtime.Handles": "4.3.0",
  1015. "System.Runtime.InteropServices": "4.3.0",
  1016. "System.Security.Cryptography.Algorithms": "4.3.0",
  1017. "System.Security.Cryptography.Encoding": "4.3.0",
  1018. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1019. "System.Security.Cryptography.Primitives": "4.3.0",
  1020. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1021. "System.Text.Encoding": "4.3.0",
  1022. "System.Threading": "4.3.0",
  1023. "System.Threading.Tasks": "4.3.0",
  1024. "runtime.native.System": "4.3.0",
  1025. "runtime.native.System.Net.Http": "4.3.0",
  1026. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1027. }
  1028. },
  1029. "System.Net.NameResolution/4.3.0": {
  1030. "dependencies": {
  1031. "Microsoft.NETCore.Platforms": "5.0.0",
  1032. "System.Collections": "4.3.0",
  1033. "System.Diagnostics.Tracing": "4.3.0",
  1034. "System.Globalization": "4.3.0",
  1035. "System.Net.Primitives": "4.3.0",
  1036. "System.Resources.ResourceManager": "4.3.0",
  1037. "System.Runtime": "4.3.0",
  1038. "System.Runtime.Extensions": "4.3.0",
  1039. "System.Runtime.Handles": "4.3.0",
  1040. "System.Runtime.InteropServices": "4.3.0",
  1041. "System.Security.Principal.Windows": "4.7.0",
  1042. "System.Threading": "4.3.0",
  1043. "System.Threading.Tasks": "4.3.0",
  1044. "runtime.native.System": "4.3.0"
  1045. }
  1046. },
  1047. "System.Net.Primitives/4.3.0": {
  1048. "dependencies": {
  1049. "Microsoft.NETCore.Platforms": "5.0.0",
  1050. "Microsoft.NETCore.Targets": "1.1.0",
  1051. "System.Runtime": "4.3.0",
  1052. "System.Runtime.Handles": "4.3.0"
  1053. }
  1054. },
  1055. "System.Net.Security/4.3.0": {
  1056. "dependencies": {
  1057. "Microsoft.NETCore.Platforms": "5.0.0",
  1058. "Microsoft.Win32.Primitives": "4.3.0",
  1059. "System.Collections": "4.3.0",
  1060. "System.Collections.Concurrent": "4.3.0",
  1061. "System.Diagnostics.Tracing": "4.3.0",
  1062. "System.Globalization": "4.3.0",
  1063. "System.Globalization.Extensions": "4.3.0",
  1064. "System.IO": "4.3.0",
  1065. "System.Net.Primitives": "4.3.0",
  1066. "System.Resources.ResourceManager": "4.3.0",
  1067. "System.Runtime": "4.3.0",
  1068. "System.Runtime.Extensions": "4.3.0",
  1069. "System.Runtime.Handles": "4.3.0",
  1070. "System.Runtime.InteropServices": "4.3.0",
  1071. "System.Security.Claims": "4.3.0",
  1072. "System.Security.Cryptography.Algorithms": "4.3.0",
  1073. "System.Security.Cryptography.Encoding": "4.3.0",
  1074. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1075. "System.Security.Cryptography.Primitives": "4.3.0",
  1076. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1077. "System.Security.Principal": "4.3.0",
  1078. "System.Text.Encoding": "4.3.0",
  1079. "System.Threading": "4.3.0",
  1080. "System.Threading.Tasks": "4.3.0",
  1081. "System.Threading.ThreadPool": "4.3.0",
  1082. "runtime.native.System": "4.3.0",
  1083. "runtime.native.System.Net.Security": "4.3.0",
  1084. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1085. }
  1086. },
  1087. "System.Net.Sockets/4.3.0": {
  1088. "dependencies": {
  1089. "Microsoft.NETCore.Platforms": "5.0.0",
  1090. "Microsoft.NETCore.Targets": "1.1.0",
  1091. "System.IO": "4.3.0",
  1092. "System.Net.Primitives": "4.3.0",
  1093. "System.Runtime": "4.3.0",
  1094. "System.Threading.Tasks": "4.3.0"
  1095. }
  1096. },
  1097. "System.ObjectModel/4.3.0": {
  1098. "dependencies": {
  1099. "System.Collections": "4.3.0",
  1100. "System.Diagnostics.Debug": "4.3.0",
  1101. "System.Resources.ResourceManager": "4.3.0",
  1102. "System.Runtime": "4.3.0",
  1103. "System.Threading": "4.3.0"
  1104. }
  1105. },
  1106. "System.Reflection/4.3.0": {
  1107. "dependencies": {
  1108. "Microsoft.NETCore.Platforms": "5.0.0",
  1109. "Microsoft.NETCore.Targets": "1.1.0",
  1110. "System.IO": "4.3.0",
  1111. "System.Reflection.Primitives": "4.3.0",
  1112. "System.Runtime": "4.3.0"
  1113. }
  1114. },
  1115. "System.Reflection.Emit/4.7.0": {},
  1116. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1117. "dependencies": {
  1118. "System.Reflection": "4.3.0",
  1119. "System.Reflection.Primitives": "4.3.0",
  1120. "System.Runtime": "4.3.0"
  1121. }
  1122. },
  1123. "System.Reflection.Emit.Lightweight/4.3.0": {
  1124. "dependencies": {
  1125. "System.Reflection": "4.3.0",
  1126. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1127. "System.Reflection.Primitives": "4.3.0",
  1128. "System.Runtime": "4.3.0"
  1129. }
  1130. },
  1131. "System.Reflection.Extensions/4.3.0": {
  1132. "dependencies": {
  1133. "Microsoft.NETCore.Platforms": "5.0.0",
  1134. "Microsoft.NETCore.Targets": "1.1.0",
  1135. "System.Reflection": "4.3.0",
  1136. "System.Runtime": "4.3.0"
  1137. }
  1138. },
  1139. "System.Reflection.Primitives/4.3.0": {
  1140. "dependencies": {
  1141. "Microsoft.NETCore.Platforms": "5.0.0",
  1142. "Microsoft.NETCore.Targets": "1.1.0",
  1143. "System.Runtime": "4.3.0"
  1144. }
  1145. },
  1146. "System.Reflection.TypeExtensions/4.3.0": {
  1147. "dependencies": {
  1148. "System.Reflection": "4.3.0",
  1149. "System.Runtime": "4.3.0"
  1150. }
  1151. },
  1152. "System.Resources.ResourceManager/4.3.0": {
  1153. "dependencies": {
  1154. "Microsoft.NETCore.Platforms": "5.0.0",
  1155. "Microsoft.NETCore.Targets": "1.1.0",
  1156. "System.Globalization": "4.3.0",
  1157. "System.Reflection": "4.3.0",
  1158. "System.Runtime": "4.3.0"
  1159. }
  1160. },
  1161. "System.Runtime/4.3.0": {
  1162. "dependencies": {
  1163. "Microsoft.NETCore.Platforms": "5.0.0",
  1164. "Microsoft.NETCore.Targets": "1.1.0"
  1165. }
  1166. },
  1167. "System.Runtime.CompilerServices.Unsafe/5.0.0": {},
  1168. "System.Runtime.Extensions/4.3.0": {
  1169. "dependencies": {
  1170. "Microsoft.NETCore.Platforms": "5.0.0",
  1171. "Microsoft.NETCore.Targets": "1.1.0",
  1172. "System.Runtime": "4.3.0"
  1173. }
  1174. },
  1175. "System.Runtime.Handles/4.3.0": {
  1176. "dependencies": {
  1177. "Microsoft.NETCore.Platforms": "5.0.0",
  1178. "Microsoft.NETCore.Targets": "1.1.0",
  1179. "System.Runtime": "4.3.0"
  1180. }
  1181. },
  1182. "System.Runtime.InteropServices/4.3.0": {
  1183. "dependencies": {
  1184. "Microsoft.NETCore.Platforms": "5.0.0",
  1185. "Microsoft.NETCore.Targets": "1.1.0",
  1186. "System.Reflection": "4.3.0",
  1187. "System.Reflection.Primitives": "4.3.0",
  1188. "System.Runtime": "4.3.0",
  1189. "System.Runtime.Handles": "4.3.0"
  1190. }
  1191. },
  1192. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  1193. "dependencies": {
  1194. "System.Reflection": "4.3.0",
  1195. "System.Reflection.Extensions": "4.3.0",
  1196. "System.Resources.ResourceManager": "4.3.0",
  1197. "System.Runtime": "4.3.0",
  1198. "System.Runtime.InteropServices": "4.3.0",
  1199. "System.Threading": "4.3.0",
  1200. "runtime.native.System": "4.3.0"
  1201. }
  1202. },
  1203. "System.Runtime.Numerics/4.3.0": {
  1204. "dependencies": {
  1205. "System.Globalization": "4.3.0",
  1206. "System.Resources.ResourceManager": "4.3.0",
  1207. "System.Runtime": "4.3.0",
  1208. "System.Runtime.Extensions": "4.3.0"
  1209. }
  1210. },
  1211. "System.Security.AccessControl/4.7.0": {
  1212. "dependencies": {
  1213. "Microsoft.NETCore.Platforms": "5.0.0",
  1214. "System.Security.Principal.Windows": "4.7.0"
  1215. }
  1216. },
  1217. "System.Security.Claims/4.3.0": {
  1218. "dependencies": {
  1219. "System.Collections": "4.3.0",
  1220. "System.Globalization": "4.3.0",
  1221. "System.IO": "4.3.0",
  1222. "System.Resources.ResourceManager": "4.3.0",
  1223. "System.Runtime": "4.3.0",
  1224. "System.Runtime.Extensions": "4.3.0",
  1225. "System.Security.Principal": "4.3.0"
  1226. }
  1227. },
  1228. "System.Security.Cryptography.Algorithms/4.3.0": {
  1229. "dependencies": {
  1230. "Microsoft.NETCore.Platforms": "5.0.0",
  1231. "System.Collections": "4.3.0",
  1232. "System.IO": "4.3.0",
  1233. "System.Resources.ResourceManager": "4.3.0",
  1234. "System.Runtime": "4.3.0",
  1235. "System.Runtime.Extensions": "4.3.0",
  1236. "System.Runtime.Handles": "4.3.0",
  1237. "System.Runtime.InteropServices": "4.3.0",
  1238. "System.Runtime.Numerics": "4.3.0",
  1239. "System.Security.Cryptography.Encoding": "4.3.0",
  1240. "System.Security.Cryptography.Primitives": "4.3.0",
  1241. "System.Text.Encoding": "4.3.0",
  1242. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  1243. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1244. }
  1245. },
  1246. "System.Security.Cryptography.Cng/4.3.0": {
  1247. "dependencies": {
  1248. "Microsoft.NETCore.Platforms": "5.0.0",
  1249. "System.IO": "4.3.0",
  1250. "System.Resources.ResourceManager": "4.3.0",
  1251. "System.Runtime": "4.3.0",
  1252. "System.Runtime.Extensions": "4.3.0",
  1253. "System.Runtime.Handles": "4.3.0",
  1254. "System.Runtime.InteropServices": "4.3.0",
  1255. "System.Security.Cryptography.Algorithms": "4.3.0",
  1256. "System.Security.Cryptography.Encoding": "4.3.0",
  1257. "System.Security.Cryptography.Primitives": "4.3.0",
  1258. "System.Text.Encoding": "4.3.0"
  1259. }
  1260. },
  1261. "System.Security.Cryptography.Csp/4.3.0": {
  1262. "dependencies": {
  1263. "Microsoft.NETCore.Platforms": "5.0.0",
  1264. "System.IO": "4.3.0",
  1265. "System.Reflection": "4.3.0",
  1266. "System.Resources.ResourceManager": "4.3.0",
  1267. "System.Runtime": "4.3.0",
  1268. "System.Runtime.Extensions": "4.3.0",
  1269. "System.Runtime.Handles": "4.3.0",
  1270. "System.Runtime.InteropServices": "4.3.0",
  1271. "System.Security.Cryptography.Algorithms": "4.3.0",
  1272. "System.Security.Cryptography.Encoding": "4.3.0",
  1273. "System.Security.Cryptography.Primitives": "4.3.0",
  1274. "System.Text.Encoding": "4.3.0",
  1275. "System.Threading": "4.3.0"
  1276. }
  1277. },
  1278. "System.Security.Cryptography.Encoding/4.3.0": {
  1279. "dependencies": {
  1280. "Microsoft.NETCore.Platforms": "5.0.0",
  1281. "System.Collections": "4.3.0",
  1282. "System.Collections.Concurrent": "4.3.0",
  1283. "System.Linq": "4.3.0",
  1284. "System.Resources.ResourceManager": "4.3.0",
  1285. "System.Runtime": "4.3.0",
  1286. "System.Runtime.Extensions": "4.3.0",
  1287. "System.Runtime.Handles": "4.3.0",
  1288. "System.Runtime.InteropServices": "4.3.0",
  1289. "System.Security.Cryptography.Primitives": "4.3.0",
  1290. "System.Text.Encoding": "4.3.0",
  1291. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1292. }
  1293. },
  1294. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1295. "dependencies": {
  1296. "System.Collections": "4.3.0",
  1297. "System.IO": "4.3.0",
  1298. "System.Resources.ResourceManager": "4.3.0",
  1299. "System.Runtime": "4.3.0",
  1300. "System.Runtime.Extensions": "4.3.0",
  1301. "System.Runtime.Handles": "4.3.0",
  1302. "System.Runtime.InteropServices": "4.3.0",
  1303. "System.Runtime.Numerics": "4.3.0",
  1304. "System.Security.Cryptography.Algorithms": "4.3.0",
  1305. "System.Security.Cryptography.Encoding": "4.3.0",
  1306. "System.Security.Cryptography.Primitives": "4.3.0",
  1307. "System.Text.Encoding": "4.3.0",
  1308. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1309. }
  1310. },
  1311. "System.Security.Cryptography.Primitives/4.3.0": {
  1312. "dependencies": {
  1313. "System.Diagnostics.Debug": "4.3.0",
  1314. "System.Globalization": "4.3.0",
  1315. "System.IO": "4.3.0",
  1316. "System.Resources.ResourceManager": "4.3.0",
  1317. "System.Runtime": "4.3.0",
  1318. "System.Threading": "4.3.0",
  1319. "System.Threading.Tasks": "4.3.0"
  1320. }
  1321. },
  1322. "System.Security.Cryptography.ProtectedData/4.7.0": {
  1323. "runtime": {
  1324. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1325. "assemblyVersion": "4.0.5.0",
  1326. "fileVersion": "4.700.19.56404"
  1327. }
  1328. },
  1329. "runtimeTargets": {
  1330. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1331. "rid": "win",
  1332. "assetType": "runtime",
  1333. "assemblyVersion": "4.0.5.0",
  1334. "fileVersion": "4.700.19.56404"
  1335. }
  1336. }
  1337. },
  1338. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1339. "dependencies": {
  1340. "Microsoft.NETCore.Platforms": "5.0.0",
  1341. "System.Collections": "4.3.0",
  1342. "System.Diagnostics.Debug": "4.3.0",
  1343. "System.Globalization": "4.3.0",
  1344. "System.Globalization.Calendars": "4.3.0",
  1345. "System.IO": "4.3.0",
  1346. "System.IO.FileSystem": "4.3.0",
  1347. "System.IO.FileSystem.Primitives": "4.3.0",
  1348. "System.Resources.ResourceManager": "4.3.0",
  1349. "System.Runtime": "4.3.0",
  1350. "System.Runtime.Extensions": "4.3.0",
  1351. "System.Runtime.Handles": "4.3.0",
  1352. "System.Runtime.InteropServices": "4.3.0",
  1353. "System.Runtime.Numerics": "4.3.0",
  1354. "System.Security.Cryptography.Algorithms": "4.3.0",
  1355. "System.Security.Cryptography.Cng": "4.3.0",
  1356. "System.Security.Cryptography.Csp": "4.3.0",
  1357. "System.Security.Cryptography.Encoding": "4.3.0",
  1358. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1359. "System.Security.Cryptography.Primitives": "4.3.0",
  1360. "System.Text.Encoding": "4.3.0",
  1361. "System.Threading": "4.3.0",
  1362. "runtime.native.System": "4.3.0",
  1363. "runtime.native.System.Net.Http": "4.3.0",
  1364. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1365. }
  1366. },
  1367. "System.Security.Permissions/4.7.0": {
  1368. "dependencies": {
  1369. "System.Security.AccessControl": "4.7.0",
  1370. "System.Windows.Extensions": "4.7.0"
  1371. }
  1372. },
  1373. "System.Security.Principal/4.3.0": {
  1374. "dependencies": {
  1375. "System.Runtime": "4.3.0"
  1376. }
  1377. },
  1378. "System.Security.Principal.Windows/4.7.0": {},
  1379. "System.Text.Encoding/4.3.0": {
  1380. "dependencies": {
  1381. "Microsoft.NETCore.Platforms": "5.0.0",
  1382. "Microsoft.NETCore.Targets": "1.1.0",
  1383. "System.Runtime": "4.3.0"
  1384. }
  1385. },
  1386. "System.Text.Encoding.CodePages/5.0.0": {
  1387. "dependencies": {
  1388. "Microsoft.NETCore.Platforms": "5.0.0"
  1389. }
  1390. },
  1391. "System.Text.Encoding.Extensions/4.3.0": {
  1392. "dependencies": {
  1393. "Microsoft.NETCore.Platforms": "5.0.0",
  1394. "Microsoft.NETCore.Targets": "1.1.0",
  1395. "System.Runtime": "4.3.0",
  1396. "System.Text.Encoding": "4.3.0"
  1397. }
  1398. },
  1399. "System.Text.Encodings.Web/4.5.0": {},
  1400. "System.Text.RegularExpressions/4.3.0": {
  1401. "dependencies": {
  1402. "System.Runtime": "4.3.0"
  1403. }
  1404. },
  1405. "System.Threading/4.3.0": {
  1406. "dependencies": {
  1407. "System.Runtime": "4.3.0",
  1408. "System.Threading.Tasks": "4.3.0"
  1409. }
  1410. },
  1411. "System.Threading.Channels/7.0.0": {
  1412. "runtime": {
  1413. "lib/netstandard2.1/System.Threading.Channels.dll": {
  1414. "assemblyVersion": "7.0.0.0",
  1415. "fileVersion": "7.0.22.51805"
  1416. }
  1417. }
  1418. },
  1419. "System.Threading.Tasks/4.3.0": {
  1420. "dependencies": {
  1421. "Microsoft.NETCore.Platforms": "5.0.0",
  1422. "Microsoft.NETCore.Targets": "1.1.0",
  1423. "System.Runtime": "4.3.0"
  1424. }
  1425. },
  1426. "System.Threading.Tasks.Extensions/4.3.0": {
  1427. "dependencies": {
  1428. "System.Collections": "4.3.0",
  1429. "System.Runtime": "4.3.0",
  1430. "System.Threading.Tasks": "4.3.0"
  1431. }
  1432. },
  1433. "System.Threading.Thread/4.3.0": {
  1434. "dependencies": {
  1435. "System.Runtime": "4.3.0"
  1436. }
  1437. },
  1438. "System.Threading.ThreadPool/4.3.0": {
  1439. "dependencies": {
  1440. "System.Runtime": "4.3.0",
  1441. "System.Runtime.Handles": "4.3.0"
  1442. }
  1443. },
  1444. "System.Threading.Timer/4.3.0": {
  1445. "dependencies": {
  1446. "Microsoft.NETCore.Platforms": "5.0.0",
  1447. "Microsoft.NETCore.Targets": "1.1.0",
  1448. "System.Runtime": "4.3.0"
  1449. }
  1450. },
  1451. "System.Windows.Extensions/4.7.0": {
  1452. "dependencies": {
  1453. "System.Drawing.Common": "5.0.3"
  1454. }
  1455. },
  1456. "System.Xml.ReaderWriter/4.3.0": {
  1457. "dependencies": {
  1458. "System.Collections": "4.3.0",
  1459. "System.Diagnostics.Debug": "4.3.0",
  1460. "System.Globalization": "4.3.0",
  1461. "System.IO": "4.3.0",
  1462. "System.IO.FileSystem": "4.3.0",
  1463. "System.IO.FileSystem.Primitives": "4.3.0",
  1464. "System.Resources.ResourceManager": "4.3.0",
  1465. "System.Runtime": "4.3.0",
  1466. "System.Runtime.Extensions": "4.3.0",
  1467. "System.Runtime.InteropServices": "4.3.0",
  1468. "System.Text.Encoding": "4.3.0",
  1469. "System.Text.Encoding.Extensions": "4.3.0",
  1470. "System.Text.RegularExpressions": "4.3.0",
  1471. "System.Threading.Tasks": "4.3.0",
  1472. "System.Threading.Tasks.Extensions": "4.3.0"
  1473. }
  1474. },
  1475. "System.Xml.XDocument/4.3.0": {
  1476. "dependencies": {
  1477. "System.Collections": "4.3.0",
  1478. "System.Diagnostics.Debug": "4.3.0",
  1479. "System.Diagnostics.Tools": "4.3.0",
  1480. "System.Globalization": "4.3.0",
  1481. "System.IO": "4.3.0",
  1482. "System.Reflection": "4.3.0",
  1483. "System.Resources.ResourceManager": "4.3.0",
  1484. "System.Runtime": "4.3.0",
  1485. "System.Runtime.Extensions": "4.3.0",
  1486. "System.Text.Encoding": "4.3.0",
  1487. "System.Threading": "4.3.0",
  1488. "System.Xml.ReaderWriter": "4.3.0"
  1489. }
  1490. },
  1491. "System.Xml.XmlDocument/4.3.0": {
  1492. "dependencies": {
  1493. "System.Collections": "4.3.0",
  1494. "System.Diagnostics.Debug": "4.3.0",
  1495. "System.Globalization": "4.3.0",
  1496. "System.IO": "4.3.0",
  1497. "System.Resources.ResourceManager": "4.3.0",
  1498. "System.Runtime": "4.3.0",
  1499. "System.Runtime.Extensions": "4.3.0",
  1500. "System.Text.Encoding": "4.3.0",
  1501. "System.Threading": "4.3.0",
  1502. "System.Xml.ReaderWriter": "4.3.0"
  1503. }
  1504. },
  1505. "ZXing.Net/0.16.9": {
  1506. "runtime": {
  1507. "lib/net5.0/zxing.dll": {
  1508. "assemblyVersion": "0.16.9.0",
  1509. "fileVersion": "0.16.9.0"
  1510. }
  1511. }
  1512. },
  1513. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  1514. "dependencies": {
  1515. "SixLabors.ImageSharp": "2.1.6",
  1516. "ZXing.Net": "0.16.9"
  1517. },
  1518. "runtime": {
  1519. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  1520. "assemblyVersion": "0.16.15.0",
  1521. "fileVersion": "0.16.15.0"
  1522. }
  1523. }
  1524. },
  1525. "Ropin.Core.Common/1.0.0": {
  1526. "dependencies": {
  1527. "Coravel": "4.2.1",
  1528. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  1529. "Newtonsoft.Json": "13.0.1",
  1530. "QRCoder": "1.4.3",
  1531. "SixLabors.ImageSharp": "2.1.6",
  1532. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  1533. },
  1534. "runtime": {
  1535. "Ropin.Core.Common.dll": {}
  1536. }
  1537. },
  1538. "Ropin.Inspection.Common/1.0.0": {
  1539. "dependencies": {
  1540. "FluentEmail.Smtp": "3.0.2",
  1541. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  1542. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  1543. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  1544. "JavaScriptEngineSwitcher.Core": "3.21.0",
  1545. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  1546. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  1547. "Microsoft.Extensions.Configuration": "5.0.0",
  1548. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  1549. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  1550. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  1551. "Microsoft.Extensions.Http": "5.0.0",
  1552. "Newtonsoft.Json": "13.0.1",
  1553. "RabbitMQ.Client": "6.8.1",
  1554. "log4net": "2.0.17"
  1555. },
  1556. "runtime": {
  1557. "Ropin.Inspection.Common.dll": {}
  1558. }
  1559. },
  1560. "Ropin.Inspection.Model/1.0.0": {
  1561. "dependencies": {
  1562. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  1563. "Microsoft.EntityFrameworkCore": "5.0.0",
  1564. "MySql.Data": "8.0.23",
  1565. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  1566. "Ropin.Inspection.Common": "1.0.0"
  1567. },
  1568. "runtime": {
  1569. "Ropin.Inspection.Model.dll": {}
  1570. }
  1571. },
  1572. "Ropin.Inspection.Repository/1.0.0": {
  1573. "dependencies": {
  1574. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  1575. "Microsoft.EntityFrameworkCore": "5.0.0",
  1576. "Ropin.Inspection.Model": "1.0.0"
  1577. },
  1578. "runtime": {
  1579. "Ropin.Inspection.Repository.dll": {}
  1580. }
  1581. },
  1582. "Ropin.Inspection.Service/1.0.0": {
  1583. "dependencies": {
  1584. "AutoMapper": "10.1.1",
  1585. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  1586. "Newtonsoft.Json": "13.0.1",
  1587. "Ropin.Core.Common": "1.0.0",
  1588. "Ropin.Inspection.Common": "1.0.0",
  1589. "Ropin.Inspection.Model": "1.0.0",
  1590. "Ropin.Inspection.Repository": "1.0.0",
  1591. "log4net": "2.0.17"
  1592. },
  1593. "runtime": {
  1594. "Ropin.Inspection.Service.dll": {}
  1595. }
  1596. },
  1597. "Ropin.Inspection.Tasks/1.0.0": {
  1598. "dependencies": {
  1599. "Quartz": "3.3.3",
  1600. "Ropin.Inspection.Common": "1.0.0",
  1601. "Ropin.Inspection.Model": "1.0.0",
  1602. "Ropin.Inspection.Service": "1.0.0"
  1603. },
  1604. "runtime": {
  1605. "Ropin.Inspection.Tasks.dll": {}
  1606. }
  1607. }
  1608. }
  1609. },
  1610. "libraries": {
  1611. "Ropin.Core.Extensions/1.0.0": {
  1612. "type": "project",
  1613. "serviceable": false,
  1614. "sha512": ""
  1615. },
  1616. "AdvancedStringBuilder/0.1.0": {
  1617. "type": "package",
  1618. "serviceable": true,
  1619. "sha512": "sha512-IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  1620. "path": "advancedstringbuilder/0.1.0",
  1621. "hashPath": "advancedstringbuilder.0.1.0.nupkg.sha512"
  1622. },
  1623. "Autofac/6.2.0": {
  1624. "type": "package",
  1625. "serviceable": true,
  1626. "sha512": "sha512-BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  1627. "path": "autofac/6.2.0",
  1628. "hashPath": "autofac.6.2.0.nupkg.sha512"
  1629. },
  1630. "Autofac.Extras.DynamicProxy/6.0.0": {
  1631. "type": "package",
  1632. "serviceable": true,
  1633. "sha512": "sha512-Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  1634. "path": "autofac.extras.dynamicproxy/6.0.0",
  1635. "hashPath": "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512"
  1636. },
  1637. "AutoMapper/10.1.1": {
  1638. "type": "package",
  1639. "serviceable": true,
  1640. "sha512": "sha512-uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  1641. "path": "automapper/10.1.1",
  1642. "hashPath": "automapper.10.1.1.nupkg.sha512"
  1643. },
  1644. "BouncyCastle.NetCore/1.8.5": {
  1645. "type": "package",
  1646. "serviceable": true,
  1647. "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  1648. "path": "bouncycastle.netcore/1.8.5",
  1649. "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512"
  1650. },
  1651. "Castle.Core/4.4.0": {
  1652. "type": "package",
  1653. "serviceable": true,
  1654. "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  1655. "path": "castle.core/4.4.0",
  1656. "hashPath": "castle.core.4.4.0.nupkg.sha512"
  1657. },
  1658. "Coravel/4.2.1": {
  1659. "type": "package",
  1660. "serviceable": true,
  1661. "sha512": "sha512-goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  1662. "path": "coravel/4.2.1",
  1663. "hashPath": "coravel.4.2.1.nupkg.sha512"
  1664. },
  1665. "FluentEmail.Core/3.0.2": {
  1666. "type": "package",
  1667. "serviceable": true,
  1668. "sha512": "sha512-uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  1669. "path": "fluentemail.core/3.0.2",
  1670. "hashPath": "fluentemail.core.3.0.2.nupkg.sha512"
  1671. },
  1672. "FluentEmail.Smtp/3.0.2": {
  1673. "type": "package",
  1674. "serviceable": true,
  1675. "sha512": "sha512-Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  1676. "path": "fluentemail.smtp/3.0.2",
  1677. "hashPath": "fluentemail.smtp.3.0.2.nupkg.sha512"
  1678. },
  1679. "Google.Protobuf/3.11.4": {
  1680. "type": "package",
  1681. "serviceable": true,
  1682. "sha512": "sha512-dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  1683. "path": "google.protobuf/3.11.4",
  1684. "hashPath": "google.protobuf.3.11.4.nupkg.sha512"
  1685. },
  1686. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  1687. "type": "package",
  1688. "serviceable": true,
  1689. "sha512": "sha512-rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  1690. "path": "javascriptengineswitcher.chakracore/3.21.0",
  1691. "hashPath": "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512"
  1692. },
  1693. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  1694. "type": "package",
  1695. "serviceable": true,
  1696. "sha512": "sha512-490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  1697. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  1698. "hashPath": "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512"
  1699. },
  1700. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  1701. "type": "package",
  1702. "serviceable": true,
  1703. "sha512": "sha512-RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  1704. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  1705. "hashPath": "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512"
  1706. },
  1707. "JavaScriptEngineSwitcher.Core/3.21.0": {
  1708. "type": "package",
  1709. "serviceable": true,
  1710. "sha512": "sha512-/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  1711. "path": "javascriptengineswitcher.core/3.21.0",
  1712. "hashPath": "javascriptengineswitcher.core.3.21.0.nupkg.sha512"
  1713. },
  1714. "K4os.Compression.LZ4/1.1.11": {
  1715. "type": "package",
  1716. "serviceable": true,
  1717. "sha512": "sha512-RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  1718. "path": "k4os.compression.lz4/1.1.11",
  1719. "hashPath": "k4os.compression.lz4.1.1.11.nupkg.sha512"
  1720. },
  1721. "K4os.Compression.LZ4.Streams/1.1.11": {
  1722. "type": "package",
  1723. "serviceable": true,
  1724. "sha512": "sha512-x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  1725. "path": "k4os.compression.lz4.streams/1.1.11",
  1726. "hashPath": "k4os.compression.lz4.streams.1.1.11.nupkg.sha512"
  1727. },
  1728. "K4os.Hash.xxHash/1.0.6": {
  1729. "type": "package",
  1730. "serviceable": true,
  1731. "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  1732. "path": "k4os.hash.xxhash/1.0.6",
  1733. "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512"
  1734. },
  1735. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  1736. "type": "package",
  1737. "serviceable": true,
  1738. "sha512": "sha512-PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  1739. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  1740. "hashPath": "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512"
  1741. },
  1742. "log4net/2.0.17": {
  1743. "type": "package",
  1744. "serviceable": true,
  1745. "sha512": "sha512-qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  1746. "path": "log4net/2.0.17",
  1747. "hashPath": "log4net.2.0.17.nupkg.sha512"
  1748. },
  1749. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  1750. "type": "package",
  1751. "serviceable": true,
  1752. "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  1753. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  1754. "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
  1755. },
  1756. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  1757. "type": "package",
  1758. "serviceable": true,
  1759. "sha512": "sha512-6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  1760. "path": "microsoft.aspnetcore.http.features/5.0.0",
  1761. "hashPath": "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512"
  1762. },
  1763. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  1764. "type": "package",
  1765. "serviceable": true,
  1766. "sha512": "sha512-hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  1767. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  1768. "hashPath": "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512"
  1769. },
  1770. "Microsoft.CSharp/4.7.0": {
  1771. "type": "package",
  1772. "serviceable": true,
  1773. "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  1774. "path": "microsoft.csharp/4.7.0",
  1775. "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
  1776. },
  1777. "Microsoft.EntityFrameworkCore/5.0.0": {
  1778. "type": "package",
  1779. "serviceable": true,
  1780. "sha512": "sha512-QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  1781. "path": "microsoft.entityframeworkcore/5.0.0",
  1782. "hashPath": "microsoft.entityframeworkcore.5.0.0.nupkg.sha512"
  1783. },
  1784. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  1785. "type": "package",
  1786. "serviceable": true,
  1787. "sha512": "sha512-PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  1788. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  1789. "hashPath": "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512"
  1790. },
  1791. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  1792. "type": "package",
  1793. "serviceable": true,
  1794. "sha512": "sha512-l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  1795. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  1796. "hashPath": "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512"
  1797. },
  1798. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  1799. "type": "package",
  1800. "serviceable": true,
  1801. "sha512": "sha512-UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  1802. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  1803. "hashPath": "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512"
  1804. },
  1805. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  1806. "type": "package",
  1807. "serviceable": true,
  1808. "sha512": "sha512-bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  1809. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  1810. "hashPath": "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512"
  1811. },
  1812. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  1813. "type": "package",
  1814. "serviceable": true,
  1815. "sha512": "sha512-/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  1816. "path": "microsoft.extensions.caching.memory/5.0.0",
  1817. "hashPath": "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512"
  1818. },
  1819. "Microsoft.Extensions.Configuration/5.0.0": {
  1820. "type": "package",
  1821. "serviceable": true,
  1822. "sha512": "sha512-LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  1823. "path": "microsoft.extensions.configuration/5.0.0",
  1824. "hashPath": "microsoft.extensions.configuration.5.0.0.nupkg.sha512"
  1825. },
  1826. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  1827. "type": "package",
  1828. "serviceable": true,
  1829. "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  1830. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  1831. "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512"
  1832. },
  1833. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  1834. "type": "package",
  1835. "serviceable": true,
  1836. "sha512": "sha512-Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  1837. "path": "microsoft.extensions.configuration.binder/5.0.0",
  1838. "hashPath": "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512"
  1839. },
  1840. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  1841. "type": "package",
  1842. "serviceable": true,
  1843. "sha512": "sha512-rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  1844. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  1845. "hashPath": "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512"
  1846. },
  1847. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  1848. "type": "package",
  1849. "serviceable": true,
  1850. "sha512": "sha512-Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  1851. "path": "microsoft.extensions.configuration.json/5.0.0",
  1852. "hashPath": "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512"
  1853. },
  1854. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  1855. "type": "package",
  1856. "serviceable": true,
  1857. "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  1858. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  1859. "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512"
  1860. },
  1861. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  1862. "type": "package",
  1863. "serviceable": true,
  1864. "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  1865. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  1866. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
  1867. },
  1868. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  1869. "type": "package",
  1870. "serviceable": true,
  1871. "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  1872. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  1873. "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512"
  1874. },
  1875. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  1876. "type": "package",
  1877. "serviceable": true,
  1878. "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  1879. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  1880. "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512"
  1881. },
  1882. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  1883. "type": "package",
  1884. "serviceable": true,
  1885. "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  1886. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  1887. "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512"
  1888. },
  1889. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  1890. "type": "package",
  1891. "serviceable": true,
  1892. "sha512": "sha512-LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  1893. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  1894. "hashPath": "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512"
  1895. },
  1896. "Microsoft.Extensions.Http/5.0.0": {
  1897. "type": "package",
  1898. "serviceable": true,
  1899. "sha512": "sha512-kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  1900. "path": "microsoft.extensions.http/5.0.0",
  1901. "hashPath": "microsoft.extensions.http.5.0.0.nupkg.sha512"
  1902. },
  1903. "Microsoft.Extensions.Logging/5.0.0": {
  1904. "type": "package",
  1905. "serviceable": true,
  1906. "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  1907. "path": "microsoft.extensions.logging/5.0.0",
  1908. "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
  1909. },
  1910. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  1911. "type": "package",
  1912. "serviceable": true,
  1913. "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  1914. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  1915. "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
  1916. },
  1917. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  1918. "type": "package",
  1919. "serviceable": true,
  1920. "sha512": "sha512-Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  1921. "path": "microsoft.extensions.logging.configuration/3.1.30",
  1922. "hashPath": "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512"
  1923. },
  1924. "Microsoft.Extensions.Logging.Console/3.1.30": {
  1925. "type": "package",
  1926. "serviceable": true,
  1927. "sha512": "sha512-eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  1928. "path": "microsoft.extensions.logging.console/3.1.30",
  1929. "hashPath": "microsoft.extensions.logging.console.3.1.30.nupkg.sha512"
  1930. },
  1931. "Microsoft.Extensions.Options/5.0.0": {
  1932. "type": "package",
  1933. "serviceable": true,
  1934. "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  1935. "path": "microsoft.extensions.options/5.0.0",
  1936. "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
  1937. },
  1938. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  1939. "type": "package",
  1940. "serviceable": true,
  1941. "sha512": "sha512-mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  1942. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  1943. "hashPath": "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512"
  1944. },
  1945. "Microsoft.Extensions.Primitives/5.0.0": {
  1946. "type": "package",
  1947. "serviceable": true,
  1948. "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  1949. "path": "microsoft.extensions.primitives/5.0.0",
  1950. "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512"
  1951. },
  1952. "Microsoft.NETCore.Platforms/5.0.0": {
  1953. "type": "package",
  1954. "serviceable": true,
  1955. "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  1956. "path": "microsoft.netcore.platforms/5.0.0",
  1957. "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
  1958. },
  1959. "Microsoft.NETCore.Targets/1.1.0": {
  1960. "type": "package",
  1961. "serviceable": true,
  1962. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  1963. "path": "microsoft.netcore.targets/1.1.0",
  1964. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  1965. },
  1966. "Microsoft.Win32.Primitives/4.3.0": {
  1967. "type": "package",
  1968. "serviceable": true,
  1969. "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  1970. "path": "microsoft.win32.primitives/4.3.0",
  1971. "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
  1972. },
  1973. "Microsoft.Win32.SystemEvents/5.0.0": {
  1974. "type": "package",
  1975. "serviceable": true,
  1976. "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  1977. "path": "microsoft.win32.systemevents/5.0.0",
  1978. "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512"
  1979. },
  1980. "MySql.Data/8.0.23": {
  1981. "type": "package",
  1982. "serviceable": true,
  1983. "sha512": "sha512-5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  1984. "path": "mysql.data/8.0.23",
  1985. "hashPath": "mysql.data.8.0.23.nupkg.sha512"
  1986. },
  1987. "MySqlConnector/1.1.0": {
  1988. "type": "package",
  1989. "serviceable": true,
  1990. "sha512": "sha512-RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  1991. "path": "mysqlconnector/1.1.0",
  1992. "hashPath": "mysqlconnector.1.1.0.nupkg.sha512"
  1993. },
  1994. "NETStandard.Library/1.6.1": {
  1995. "type": "package",
  1996. "serviceable": true,
  1997. "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  1998. "path": "netstandard.library/1.6.1",
  1999. "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
  2000. },
  2001. "Newtonsoft.Json/13.0.1": {
  2002. "type": "package",
  2003. "serviceable": true,
  2004. "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  2005. "path": "newtonsoft.json/13.0.1",
  2006. "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
  2007. },
  2008. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  2009. "type": "package",
  2010. "serviceable": true,
  2011. "sha512": "sha512-g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  2012. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  2013. "hashPath": "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512"
  2014. },
  2015. "QRCoder/1.4.3": {
  2016. "type": "package",
  2017. "serviceable": true,
  2018. "sha512": "sha512-fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  2019. "path": "qrcoder/1.4.3",
  2020. "hashPath": "qrcoder.1.4.3.nupkg.sha512"
  2021. },
  2022. "Quartz/3.3.3": {
  2023. "type": "package",
  2024. "serviceable": true,
  2025. "sha512": "sha512-waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  2026. "path": "quartz/3.3.3",
  2027. "hashPath": "quartz.3.3.3.nupkg.sha512"
  2028. },
  2029. "RabbitMQ.Client/6.8.1": {
  2030. "type": "package",
  2031. "serviceable": true,
  2032. "sha512": "sha512-jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  2033. "path": "rabbitmq.client/6.8.1",
  2034. "hashPath": "rabbitmq.client.6.8.1.nupkg.sha512"
  2035. },
  2036. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2037. "type": "package",
  2038. "serviceable": true,
  2039. "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  2040. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2041. "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2042. },
  2043. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2044. "type": "package",
  2045. "serviceable": true,
  2046. "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  2047. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2048. "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2049. },
  2050. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2051. "type": "package",
  2052. "serviceable": true,
  2053. "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  2054. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2055. "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2056. },
  2057. "runtime.native.System/4.3.0": {
  2058. "type": "package",
  2059. "serviceable": true,
  2060. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  2061. "path": "runtime.native.system/4.3.0",
  2062. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  2063. },
  2064. "runtime.native.System.IO.Compression/4.3.0": {
  2065. "type": "package",
  2066. "serviceable": true,
  2067. "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  2068. "path": "runtime.native.system.io.compression/4.3.0",
  2069. "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
  2070. },
  2071. "runtime.native.System.Net.Http/4.3.0": {
  2072. "type": "package",
  2073. "serviceable": true,
  2074. "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  2075. "path": "runtime.native.system.net.http/4.3.0",
  2076. "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
  2077. },
  2078. "runtime.native.System.Net.Security/4.3.0": {
  2079. "type": "package",
  2080. "serviceable": true,
  2081. "sha512": "sha512-M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  2082. "path": "runtime.native.system.net.security/4.3.0",
  2083. "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512"
  2084. },
  2085. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2086. "type": "package",
  2087. "serviceable": true,
  2088. "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  2089. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  2090. "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  2091. },
  2092. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2093. "type": "package",
  2094. "serviceable": true,
  2095. "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  2096. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  2097. "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2098. },
  2099. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2100. "type": "package",
  2101. "serviceable": true,
  2102. "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  2103. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2104. "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2105. },
  2106. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2107. "type": "package",
  2108. "serviceable": true,
  2109. "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  2110. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2111. "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2112. },
  2113. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2114. "type": "package",
  2115. "serviceable": true,
  2116. "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  2117. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  2118. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  2119. },
  2120. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2121. "type": "package",
  2122. "serviceable": true,
  2123. "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  2124. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2125. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2126. },
  2127. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2128. "type": "package",
  2129. "serviceable": true,
  2130. "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  2131. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2132. "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2133. },
  2134. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2135. "type": "package",
  2136. "serviceable": true,
  2137. "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  2138. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2139. "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2140. },
  2141. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2142. "type": "package",
  2143. "serviceable": true,
  2144. "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  2145. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2146. "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2147. },
  2148. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2149. "type": "package",
  2150. "serviceable": true,
  2151. "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  2152. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2153. "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2154. },
  2155. "SixLabors.ImageSharp/2.1.6": {
  2156. "type": "package",
  2157. "serviceable": true,
  2158. "sha512": "sha512-zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  2159. "path": "sixlabors.imagesharp/2.1.6",
  2160. "hashPath": "sixlabors.imagesharp.2.1.6.nupkg.sha512"
  2161. },
  2162. "SSH.NET/2020.0.0-beta1": {
  2163. "type": "package",
  2164. "serviceable": true,
  2165. "sha512": "sha512-GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  2166. "path": "ssh.net/2020.0.0-beta1",
  2167. "hashPath": "ssh.net.2020.0.0-beta1.nupkg.sha512"
  2168. },
  2169. "SshNet.Security.Cryptography/1.3.0": {
  2170. "type": "package",
  2171. "serviceable": true,
  2172. "sha512": "sha512-5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  2173. "path": "sshnet.security.cryptography/1.3.0",
  2174. "hashPath": "sshnet.security.cryptography.1.3.0.nupkg.sha512"
  2175. },
  2176. "StackExchange.Redis/1.2.4": {
  2177. "type": "package",
  2178. "serviceable": true,
  2179. "sha512": "sha512-xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  2180. "path": "stackexchange.redis/1.2.4",
  2181. "hashPath": "stackexchange.redis.1.2.4.nupkg.sha512"
  2182. },
  2183. "System.AppContext/4.3.0": {
  2184. "type": "package",
  2185. "serviceable": true,
  2186. "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  2187. "path": "system.appcontext/4.3.0",
  2188. "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
  2189. },
  2190. "System.Buffers/4.5.1": {
  2191. "type": "package",
  2192. "serviceable": true,
  2193. "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  2194. "path": "system.buffers/4.5.1",
  2195. "hashPath": "system.buffers.4.5.1.nupkg.sha512"
  2196. },
  2197. "System.Collections/4.3.0": {
  2198. "type": "package",
  2199. "serviceable": true,
  2200. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  2201. "path": "system.collections/4.3.0",
  2202. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  2203. },
  2204. "System.Collections.Concurrent/4.3.0": {
  2205. "type": "package",
  2206. "serviceable": true,
  2207. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  2208. "path": "system.collections.concurrent/4.3.0",
  2209. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  2210. },
  2211. "System.Collections.Immutable/5.0.0": {
  2212. "type": "package",
  2213. "serviceable": true,
  2214. "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  2215. "path": "system.collections.immutable/5.0.0",
  2216. "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512"
  2217. },
  2218. "System.Collections.NonGeneric/4.3.0": {
  2219. "type": "package",
  2220. "serviceable": true,
  2221. "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  2222. "path": "system.collections.nongeneric/4.3.0",
  2223. "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
  2224. },
  2225. "System.Collections.Specialized/4.3.0": {
  2226. "type": "package",
  2227. "serviceable": true,
  2228. "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  2229. "path": "system.collections.specialized/4.3.0",
  2230. "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
  2231. },
  2232. "System.ComponentModel/4.3.0": {
  2233. "type": "package",
  2234. "serviceable": true,
  2235. "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  2236. "path": "system.componentmodel/4.3.0",
  2237. "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
  2238. },
  2239. "System.ComponentModel.Annotations/5.0.0": {
  2240. "type": "package",
  2241. "serviceable": true,
  2242. "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  2243. "path": "system.componentmodel.annotations/5.0.0",
  2244. "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512"
  2245. },
  2246. "System.ComponentModel.Primitives/4.3.0": {
  2247. "type": "package",
  2248. "serviceable": true,
  2249. "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  2250. "path": "system.componentmodel.primitives/4.3.0",
  2251. "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
  2252. },
  2253. "System.ComponentModel.TypeConverter/4.3.0": {
  2254. "type": "package",
  2255. "serviceable": true,
  2256. "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  2257. "path": "system.componentmodel.typeconverter/4.3.0",
  2258. "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
  2259. },
  2260. "System.Configuration.ConfigurationManager/4.7.0": {
  2261. "type": "package",
  2262. "serviceable": true,
  2263. "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  2264. "path": "system.configuration.configurationmanager/4.7.0",
  2265. "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512"
  2266. },
  2267. "System.Console/4.3.0": {
  2268. "type": "package",
  2269. "serviceable": true,
  2270. "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  2271. "path": "system.console/4.3.0",
  2272. "hashPath": "system.console.4.3.0.nupkg.sha512"
  2273. },
  2274. "System.Diagnostics.Debug/4.3.0": {
  2275. "type": "package",
  2276. "serviceable": true,
  2277. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  2278. "path": "system.diagnostics.debug/4.3.0",
  2279. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  2280. },
  2281. "System.Diagnostics.DiagnosticSource/5.0.0": {
  2282. "type": "package",
  2283. "serviceable": true,
  2284. "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  2285. "path": "system.diagnostics.diagnosticsource/5.0.0",
  2286. "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512"
  2287. },
  2288. "System.Diagnostics.Tools/4.3.0": {
  2289. "type": "package",
  2290. "serviceable": true,
  2291. "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  2292. "path": "system.diagnostics.tools/4.3.0",
  2293. "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
  2294. },
  2295. "System.Diagnostics.TraceSource/4.3.0": {
  2296. "type": "package",
  2297. "serviceable": true,
  2298. "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  2299. "path": "system.diagnostics.tracesource/4.3.0",
  2300. "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512"
  2301. },
  2302. "System.Diagnostics.Tracing/4.3.0": {
  2303. "type": "package",
  2304. "serviceable": true,
  2305. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  2306. "path": "system.diagnostics.tracing/4.3.0",
  2307. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  2308. },
  2309. "System.Drawing.Common/5.0.3": {
  2310. "type": "package",
  2311. "serviceable": true,
  2312. "sha512": "sha512-rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  2313. "path": "system.drawing.common/5.0.3",
  2314. "hashPath": "system.drawing.common.5.0.3.nupkg.sha512"
  2315. },
  2316. "System.Dynamic.Runtime/4.3.0": {
  2317. "type": "package",
  2318. "serviceable": true,
  2319. "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  2320. "path": "system.dynamic.runtime/4.3.0",
  2321. "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
  2322. },
  2323. "System.Globalization/4.3.0": {
  2324. "type": "package",
  2325. "serviceable": true,
  2326. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  2327. "path": "system.globalization/4.3.0",
  2328. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  2329. },
  2330. "System.Globalization.Calendars/4.3.0": {
  2331. "type": "package",
  2332. "serviceable": true,
  2333. "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  2334. "path": "system.globalization.calendars/4.3.0",
  2335. "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
  2336. },
  2337. "System.Globalization.Extensions/4.3.0": {
  2338. "type": "package",
  2339. "serviceable": true,
  2340. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  2341. "path": "system.globalization.extensions/4.3.0",
  2342. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  2343. },
  2344. "System.IO/4.3.0": {
  2345. "type": "package",
  2346. "serviceable": true,
  2347. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  2348. "path": "system.io/4.3.0",
  2349. "hashPath": "system.io.4.3.0.nupkg.sha512"
  2350. },
  2351. "System.IO.Compression/4.3.0": {
  2352. "type": "package",
  2353. "serviceable": true,
  2354. "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  2355. "path": "system.io.compression/4.3.0",
  2356. "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
  2357. },
  2358. "System.IO.Compression.ZipFile/4.3.0": {
  2359. "type": "package",
  2360. "serviceable": true,
  2361. "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  2362. "path": "system.io.compression.zipfile/4.3.0",
  2363. "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
  2364. },
  2365. "System.IO.FileSystem/4.3.0": {
  2366. "type": "package",
  2367. "serviceable": true,
  2368. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  2369. "path": "system.io.filesystem/4.3.0",
  2370. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  2371. },
  2372. "System.IO.FileSystem.Primitives/4.3.0": {
  2373. "type": "package",
  2374. "serviceable": true,
  2375. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  2376. "path": "system.io.filesystem.primitives/4.3.0",
  2377. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  2378. },
  2379. "System.IO.Pipelines/5.0.0": {
  2380. "type": "package",
  2381. "serviceable": true,
  2382. "sha512": "sha512-irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  2383. "path": "system.io.pipelines/5.0.0",
  2384. "hashPath": "system.io.pipelines.5.0.0.nupkg.sha512"
  2385. },
  2386. "System.Linq/4.3.0": {
  2387. "type": "package",
  2388. "serviceable": true,
  2389. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  2390. "path": "system.linq/4.3.0",
  2391. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  2392. },
  2393. "System.Linq.Expressions/4.3.0": {
  2394. "type": "package",
  2395. "serviceable": true,
  2396. "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  2397. "path": "system.linq.expressions/4.3.0",
  2398. "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
  2399. },
  2400. "System.Memory/4.5.5": {
  2401. "type": "package",
  2402. "serviceable": true,
  2403. "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  2404. "path": "system.memory/4.5.5",
  2405. "hashPath": "system.memory.4.5.5.nupkg.sha512"
  2406. },
  2407. "System.Net.Http/4.3.0": {
  2408. "type": "package",
  2409. "serviceable": true,
  2410. "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  2411. "path": "system.net.http/4.3.0",
  2412. "hashPath": "system.net.http.4.3.0.nupkg.sha512"
  2413. },
  2414. "System.Net.NameResolution/4.3.0": {
  2415. "type": "package",
  2416. "serviceable": true,
  2417. "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  2418. "path": "system.net.nameresolution/4.3.0",
  2419. "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
  2420. },
  2421. "System.Net.Primitives/4.3.0": {
  2422. "type": "package",
  2423. "serviceable": true,
  2424. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  2425. "path": "system.net.primitives/4.3.0",
  2426. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  2427. },
  2428. "System.Net.Security/4.3.0": {
  2429. "type": "package",
  2430. "serviceable": true,
  2431. "sha512": "sha512-IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  2432. "path": "system.net.security/4.3.0",
  2433. "hashPath": "system.net.security.4.3.0.nupkg.sha512"
  2434. },
  2435. "System.Net.Sockets/4.3.0": {
  2436. "type": "package",
  2437. "serviceable": true,
  2438. "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  2439. "path": "system.net.sockets/4.3.0",
  2440. "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
  2441. },
  2442. "System.ObjectModel/4.3.0": {
  2443. "type": "package",
  2444. "serviceable": true,
  2445. "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  2446. "path": "system.objectmodel/4.3.0",
  2447. "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
  2448. },
  2449. "System.Reflection/4.3.0": {
  2450. "type": "package",
  2451. "serviceable": true,
  2452. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  2453. "path": "system.reflection/4.3.0",
  2454. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  2455. },
  2456. "System.Reflection.Emit/4.7.0": {
  2457. "type": "package",
  2458. "serviceable": true,
  2459. "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  2460. "path": "system.reflection.emit/4.7.0",
  2461. "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
  2462. },
  2463. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2464. "type": "package",
  2465. "serviceable": true,
  2466. "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  2467. "path": "system.reflection.emit.ilgeneration/4.3.0",
  2468. "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
  2469. },
  2470. "System.Reflection.Emit.Lightweight/4.3.0": {
  2471. "type": "package",
  2472. "serviceable": true,
  2473. "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  2474. "path": "system.reflection.emit.lightweight/4.3.0",
  2475. "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
  2476. },
  2477. "System.Reflection.Extensions/4.3.0": {
  2478. "type": "package",
  2479. "serviceable": true,
  2480. "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  2481. "path": "system.reflection.extensions/4.3.0",
  2482. "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
  2483. },
  2484. "System.Reflection.Primitives/4.3.0": {
  2485. "type": "package",
  2486. "serviceable": true,
  2487. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  2488. "path": "system.reflection.primitives/4.3.0",
  2489. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  2490. },
  2491. "System.Reflection.TypeExtensions/4.3.0": {
  2492. "type": "package",
  2493. "serviceable": true,
  2494. "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  2495. "path": "system.reflection.typeextensions/4.3.0",
  2496. "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
  2497. },
  2498. "System.Resources.ResourceManager/4.3.0": {
  2499. "type": "package",
  2500. "serviceable": true,
  2501. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  2502. "path": "system.resources.resourcemanager/4.3.0",
  2503. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  2504. },
  2505. "System.Runtime/4.3.0": {
  2506. "type": "package",
  2507. "serviceable": true,
  2508. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  2509. "path": "system.runtime/4.3.0",
  2510. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  2511. },
  2512. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  2513. "type": "package",
  2514. "serviceable": true,
  2515. "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  2516. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  2517. "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
  2518. },
  2519. "System.Runtime.Extensions/4.3.0": {
  2520. "type": "package",
  2521. "serviceable": true,
  2522. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  2523. "path": "system.runtime.extensions/4.3.0",
  2524. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  2525. },
  2526. "System.Runtime.Handles/4.3.0": {
  2527. "type": "package",
  2528. "serviceable": true,
  2529. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  2530. "path": "system.runtime.handles/4.3.0",
  2531. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  2532. },
  2533. "System.Runtime.InteropServices/4.3.0": {
  2534. "type": "package",
  2535. "serviceable": true,
  2536. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  2537. "path": "system.runtime.interopservices/4.3.0",
  2538. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  2539. },
  2540. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2541. "type": "package",
  2542. "serviceable": true,
  2543. "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  2544. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  2545. "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
  2546. },
  2547. "System.Runtime.Numerics/4.3.0": {
  2548. "type": "package",
  2549. "serviceable": true,
  2550. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  2551. "path": "system.runtime.numerics/4.3.0",
  2552. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  2553. },
  2554. "System.Security.AccessControl/4.7.0": {
  2555. "type": "package",
  2556. "serviceable": true,
  2557. "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  2558. "path": "system.security.accesscontrol/4.7.0",
  2559. "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
  2560. },
  2561. "System.Security.Claims/4.3.0": {
  2562. "type": "package",
  2563. "serviceable": true,
  2564. "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  2565. "path": "system.security.claims/4.3.0",
  2566. "hashPath": "system.security.claims.4.3.0.nupkg.sha512"
  2567. },
  2568. "System.Security.Cryptography.Algorithms/4.3.0": {
  2569. "type": "package",
  2570. "serviceable": true,
  2571. "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  2572. "path": "system.security.cryptography.algorithms/4.3.0",
  2573. "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
  2574. },
  2575. "System.Security.Cryptography.Cng/4.3.0": {
  2576. "type": "package",
  2577. "serviceable": true,
  2578. "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  2579. "path": "system.security.cryptography.cng/4.3.0",
  2580. "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
  2581. },
  2582. "System.Security.Cryptography.Csp/4.3.0": {
  2583. "type": "package",
  2584. "serviceable": true,
  2585. "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  2586. "path": "system.security.cryptography.csp/4.3.0",
  2587. "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
  2588. },
  2589. "System.Security.Cryptography.Encoding/4.3.0": {
  2590. "type": "package",
  2591. "serviceable": true,
  2592. "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  2593. "path": "system.security.cryptography.encoding/4.3.0",
  2594. "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
  2595. },
  2596. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2597. "type": "package",
  2598. "serviceable": true,
  2599. "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  2600. "path": "system.security.cryptography.openssl/4.3.0",
  2601. "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2602. },
  2603. "System.Security.Cryptography.Primitives/4.3.0": {
  2604. "type": "package",
  2605. "serviceable": true,
  2606. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  2607. "path": "system.security.cryptography.primitives/4.3.0",
  2608. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  2609. },
  2610. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2611. "type": "package",
  2612. "serviceable": true,
  2613. "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  2614. "path": "system.security.cryptography.protecteddata/4.7.0",
  2615. "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
  2616. },
  2617. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2618. "type": "package",
  2619. "serviceable": true,
  2620. "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  2621. "path": "system.security.cryptography.x509certificates/4.3.0",
  2622. "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
  2623. },
  2624. "System.Security.Permissions/4.7.0": {
  2625. "type": "package",
  2626. "serviceable": true,
  2627. "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  2628. "path": "system.security.permissions/4.7.0",
  2629. "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
  2630. },
  2631. "System.Security.Principal/4.3.0": {
  2632. "type": "package",
  2633. "serviceable": true,
  2634. "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  2635. "path": "system.security.principal/4.3.0",
  2636. "hashPath": "system.security.principal.4.3.0.nupkg.sha512"
  2637. },
  2638. "System.Security.Principal.Windows/4.7.0": {
  2639. "type": "package",
  2640. "serviceable": true,
  2641. "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  2642. "path": "system.security.principal.windows/4.7.0",
  2643. "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
  2644. },
  2645. "System.Text.Encoding/4.3.0": {
  2646. "type": "package",
  2647. "serviceable": true,
  2648. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  2649. "path": "system.text.encoding/4.3.0",
  2650. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  2651. },
  2652. "System.Text.Encoding.CodePages/5.0.0": {
  2653. "type": "package",
  2654. "serviceable": true,
  2655. "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  2656. "path": "system.text.encoding.codepages/5.0.0",
  2657. "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512"
  2658. },
  2659. "System.Text.Encoding.Extensions/4.3.0": {
  2660. "type": "package",
  2661. "serviceable": true,
  2662. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  2663. "path": "system.text.encoding.extensions/4.3.0",
  2664. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  2665. },
  2666. "System.Text.Encodings.Web/4.5.0": {
  2667. "type": "package",
  2668. "serviceable": true,
  2669. "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  2670. "path": "system.text.encodings.web/4.5.0",
  2671. "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
  2672. },
  2673. "System.Text.RegularExpressions/4.3.0": {
  2674. "type": "package",
  2675. "serviceable": true,
  2676. "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  2677. "path": "system.text.regularexpressions/4.3.0",
  2678. "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
  2679. },
  2680. "System.Threading/4.3.0": {
  2681. "type": "package",
  2682. "serviceable": true,
  2683. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  2684. "path": "system.threading/4.3.0",
  2685. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  2686. },
  2687. "System.Threading.Channels/7.0.0": {
  2688. "type": "package",
  2689. "serviceable": true,
  2690. "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  2691. "path": "system.threading.channels/7.0.0",
  2692. "hashPath": "system.threading.channels.7.0.0.nupkg.sha512"
  2693. },
  2694. "System.Threading.Tasks/4.3.0": {
  2695. "type": "package",
  2696. "serviceable": true,
  2697. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  2698. "path": "system.threading.tasks/4.3.0",
  2699. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  2700. },
  2701. "System.Threading.Tasks.Extensions/4.3.0": {
  2702. "type": "package",
  2703. "serviceable": true,
  2704. "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  2705. "path": "system.threading.tasks.extensions/4.3.0",
  2706. "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
  2707. },
  2708. "System.Threading.Thread/4.3.0": {
  2709. "type": "package",
  2710. "serviceable": true,
  2711. "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  2712. "path": "system.threading.thread/4.3.0",
  2713. "hashPath": "system.threading.thread.4.3.0.nupkg.sha512"
  2714. },
  2715. "System.Threading.ThreadPool/4.3.0": {
  2716. "type": "package",
  2717. "serviceable": true,
  2718. "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  2719. "path": "system.threading.threadpool/4.3.0",
  2720. "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
  2721. },
  2722. "System.Threading.Timer/4.3.0": {
  2723. "type": "package",
  2724. "serviceable": true,
  2725. "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  2726. "path": "system.threading.timer/4.3.0",
  2727. "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
  2728. },
  2729. "System.Windows.Extensions/4.7.0": {
  2730. "type": "package",
  2731. "serviceable": true,
  2732. "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  2733. "path": "system.windows.extensions/4.7.0",
  2734. "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
  2735. },
  2736. "System.Xml.ReaderWriter/4.3.0": {
  2737. "type": "package",
  2738. "serviceable": true,
  2739. "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  2740. "path": "system.xml.readerwriter/4.3.0",
  2741. "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
  2742. },
  2743. "System.Xml.XDocument/4.3.0": {
  2744. "type": "package",
  2745. "serviceable": true,
  2746. "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  2747. "path": "system.xml.xdocument/4.3.0",
  2748. "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
  2749. },
  2750. "System.Xml.XmlDocument/4.3.0": {
  2751. "type": "package",
  2752. "serviceable": true,
  2753. "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  2754. "path": "system.xml.xmldocument/4.3.0",
  2755. "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
  2756. },
  2757. "ZXing.Net/0.16.9": {
  2758. "type": "package",
  2759. "serviceable": true,
  2760. "sha512": "sha512-7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  2761. "path": "zxing.net/0.16.9",
  2762. "hashPath": "zxing.net.0.16.9.nupkg.sha512"
  2763. },
  2764. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  2765. "type": "package",
  2766. "serviceable": true,
  2767. "sha512": "sha512-f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  2768. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  2769. "hashPath": "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512"
  2770. },
  2771. "Ropin.Core.Common/1.0.0": {
  2772. "type": "project",
  2773. "serviceable": false,
  2774. "sha512": ""
  2775. },
  2776. "Ropin.Inspection.Common/1.0.0": {
  2777. "type": "project",
  2778. "serviceable": false,
  2779. "sha512": ""
  2780. },
  2781. "Ropin.Inspection.Model/1.0.0": {
  2782. "type": "project",
  2783. "serviceable": false,
  2784. "sha512": ""
  2785. },
  2786. "Ropin.Inspection.Repository/1.0.0": {
  2787. "type": "project",
  2788. "serviceable": false,
  2789. "sha512": ""
  2790. },
  2791. "Ropin.Inspection.Service/1.0.0": {
  2792. "type": "project",
  2793. "serviceable": false,
  2794. "sha512": ""
  2795. },
  2796. "Ropin.Inspection.Tasks/1.0.0": {
  2797. "type": "project",
  2798. "serviceable": false,
  2799. "sha512": ""
  2800. }
  2801. }
  2802. }