WebAPIBase.Service.deps.json 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETStandard,Version=v2.1/",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETStandard,Version=v2.1": {},
  9. ".NETStandard,Version=v2.1/": {
  10. "WebAPIBase.Service/1.0.0": {
  11. "dependencies": {
  12. "Newtonsoft.Json": "12.0.3",
  13. "WebAPIBase.Data": "1.0.0",
  14. "WebAPIBase.Model": "1.0.0",
  15. "WebAPIBase.Utils": "1.0.0"
  16. },
  17. "runtime": {
  18. "WebAPIBase.Service.dll": {}
  19. }
  20. },
  21. "BouncyCastle.NetCore/1.8.3": {
  22. "dependencies": {
  23. "NETStandard.Library": "1.6.1",
  24. "System.Reflection": "4.3.0",
  25. "System.Reflection.TypeExtensions": "4.3.0"
  26. },
  27. "runtime": {
  28. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  29. "assemblyVersion": "1.8.2.0",
  30. "fileVersion": "1.8.18099.1"
  31. }
  32. }
  33. },
  34. "Dapper/2.0.30": {
  35. "dependencies": {
  36. "System.Reflection.Emit.Lightweight": "4.6.0"
  37. },
  38. "runtime": {
  39. "lib/netstandard2.0/Dapper.dll": {
  40. "assemblyVersion": "2.0.0.0",
  41. "fileVersion": "2.0.30.32292"
  42. }
  43. }
  44. },
  45. "Google.Protobuf/3.6.1": {
  46. "dependencies": {
  47. "NETStandard.Library": "1.6.1"
  48. },
  49. "runtime": {
  50. "lib/netstandard1.0/Google.Protobuf.dll": {
  51. "assemblyVersion": "3.6.1.0",
  52. "fileVersion": "3.6.1.0"
  53. }
  54. }
  55. },
  56. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  57. "dependencies": {
  58. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  59. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  60. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  61. },
  62. "runtime": {
  63. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  64. "assemblyVersion": "2.2.0.0",
  65. "fileVersion": "2.2.0.18316"
  66. }
  67. }
  68. },
  69. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  70. "dependencies": {
  71. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  72. "Microsoft.Extensions.Configuration.Abstractions": "3.1.9"
  73. },
  74. "runtime": {
  75. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  76. "assemblyVersion": "2.2.0.0",
  77. "fileVersion": "2.2.0.18316"
  78. }
  79. }
  80. },
  81. "Microsoft.AspNetCore.Http/2.1.0": {
  82. "dependencies": {
  83. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  84. "Microsoft.AspNetCore.WebUtilities": "2.1.0",
  85. "Microsoft.Extensions.ObjectPool": "2.1.0",
  86. "Microsoft.Extensions.Options": "3.1.2",
  87. "Microsoft.Net.Http.Headers": "2.1.0"
  88. },
  89. "runtime": {
  90. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  91. "assemblyVersion": "2.1.0.0",
  92. "fileVersion": "2.1.0.18136"
  93. }
  94. }
  95. },
  96. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  97. "dependencies": {
  98. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  99. "System.Text.Encodings.Web": "4.7.0"
  100. },
  101. "runtime": {
  102. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  103. "assemblyVersion": "2.2.0.0",
  104. "fileVersion": "2.2.0.18316"
  105. }
  106. }
  107. },
  108. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  109. "dependencies": {
  110. "Microsoft.Extensions.Primitives": "3.1.9"
  111. },
  112. "runtime": {
  113. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  114. "assemblyVersion": "2.2.0.0",
  115. "fileVersion": "2.2.0.18316"
  116. }
  117. }
  118. },
  119. "Microsoft.AspNetCore.Routing.Abstractions/2.1.0": {
  120. "dependencies": {
  121. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
  122. },
  123. "runtime": {
  124. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  125. "assemblyVersion": "2.1.0.0",
  126. "fileVersion": "2.1.0.18136"
  127. }
  128. }
  129. },
  130. "Microsoft.AspNetCore.WebUtilities/2.1.0": {
  131. "dependencies": {
  132. "Microsoft.Net.Http.Headers": "2.1.0",
  133. "System.Text.Encodings.Web": "4.7.0"
  134. },
  135. "runtime": {
  136. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  137. "assemblyVersion": "2.1.0.0",
  138. "fileVersion": "2.1.0.18136"
  139. }
  140. }
  141. },
  142. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  143. "dependencies": {
  144. "System.Threading.Tasks.Extensions": "4.5.2"
  145. },
  146. "runtime": {
  147. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  148. "assemblyVersion": "1.0.0.0",
  149. "fileVersion": "4.700.19.56404"
  150. }
  151. }
  152. },
  153. "Microsoft.CSharp/4.0.1": {
  154. "dependencies": {
  155. "System.Collections": "4.3.0",
  156. "System.Diagnostics.Debug": "4.3.0",
  157. "System.Dynamic.Runtime": "4.0.11",
  158. "System.Globalization": "4.3.0",
  159. "System.Linq": "4.3.0",
  160. "System.Linq.Expressions": "4.3.0",
  161. "System.ObjectModel": "4.3.0",
  162. "System.Reflection": "4.3.0",
  163. "System.Reflection.Extensions": "4.3.0",
  164. "System.Reflection.Primitives": "4.3.0",
  165. "System.Reflection.TypeExtensions": "4.3.0",
  166. "System.Resources.ResourceManager": "4.3.0",
  167. "System.Runtime": "4.3.0",
  168. "System.Runtime.Extensions": "4.3.0",
  169. "System.Runtime.InteropServices": "4.3.0",
  170. "System.Threading": "4.3.0"
  171. },
  172. "runtime": {
  173. "lib/netstandard1.3/Microsoft.CSharp.dll": {
  174. "assemblyVersion": "4.0.1.0",
  175. "fileVersion": "1.0.24212.1"
  176. }
  177. }
  178. },
  179. "Microsoft.Data.Sqlite/2.2.4": {
  180. "dependencies": {
  181. "Microsoft.Data.Sqlite.Core": "2.2.4",
  182. "SQLitePCLRaw.bundle_green": "1.1.12"
  183. }
  184. },
  185. "Microsoft.Data.Sqlite.Core/2.2.4": {
  186. "dependencies": {
  187. "SQLitePCLRaw.core": "1.1.12"
  188. },
  189. "runtime": {
  190. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
  191. "assemblyVersion": "2.2.4.0",
  192. "fileVersion": "2.2.4.19081"
  193. }
  194. }
  195. },
  196. "Microsoft.Extensions.Caching.Abstractions/3.1.2": {
  197. "dependencies": {
  198. "Microsoft.Extensions.Primitives": "3.1.9"
  199. },
  200. "runtime": {
  201. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  202. "assemblyVersion": "3.1.2.0",
  203. "fileVersion": "3.100.220.6706"
  204. }
  205. }
  206. },
  207. "Microsoft.Extensions.Caching.Memory/3.1.2": {
  208. "dependencies": {
  209. "Microsoft.Extensions.Caching.Abstractions": "3.1.2",
  210. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
  211. "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
  212. "Microsoft.Extensions.Options": "3.1.2"
  213. },
  214. "runtime": {
  215. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  216. "assemblyVersion": "3.1.2.0",
  217. "fileVersion": "3.100.220.6706"
  218. }
  219. }
  220. },
  221. "Microsoft.Extensions.Configuration/3.1.9": {
  222. "dependencies": {
  223. "Microsoft.Extensions.Configuration.Abstractions": "3.1.9"
  224. },
  225. "runtime": {
  226. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  227. "assemblyVersion": "3.1.9.0",
  228. "fileVersion": "3.100.920.47302"
  229. }
  230. }
  231. },
  232. "Microsoft.Extensions.Configuration.Abstractions/3.1.9": {
  233. "dependencies": {
  234. "Microsoft.Extensions.Primitives": "3.1.9"
  235. },
  236. "runtime": {
  237. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  238. "assemblyVersion": "3.1.9.0",
  239. "fileVersion": "3.100.920.47302"
  240. }
  241. }
  242. },
  243. "Microsoft.Extensions.Configuration.Binder/3.1.2": {
  244. "dependencies": {
  245. "Microsoft.Extensions.Configuration": "3.1.9"
  246. },
  247. "runtime": {
  248. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  249. "assemblyVersion": "3.1.2.0",
  250. "fileVersion": "3.100.220.6706"
  251. }
  252. }
  253. },
  254. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  255. "dependencies": {
  256. "Microsoft.Extensions.Configuration": "3.1.9",
  257. "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
  258. },
  259. "runtime": {
  260. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  261. "assemblyVersion": "3.1.2.0",
  262. "fileVersion": "3.100.220.6706"
  263. }
  264. }
  265. },
  266. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  267. "dependencies": {
  268. "Microsoft.Extensions.Configuration": "3.1.9",
  269. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
  270. "System.Text.Json": "4.7.1",
  271. "System.Threading.Tasks.Extensions": "4.5.2"
  272. },
  273. "runtime": {
  274. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
  275. "assemblyVersion": "3.1.2.0",
  276. "fileVersion": "3.100.220.6706"
  277. }
  278. }
  279. },
  280. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
  281. "runtime": {
  282. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  283. "assemblyVersion": "3.1.2.0",
  284. "fileVersion": "3.100.220.6706"
  285. }
  286. }
  287. },
  288. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  289. "dependencies": {
  290. "Microsoft.Extensions.Primitives": "3.1.9"
  291. },
  292. "runtime": {
  293. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  294. "assemblyVersion": "3.1.2.0",
  295. "fileVersion": "3.100.220.6706"
  296. }
  297. }
  298. },
  299. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  300. "dependencies": {
  301. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
  302. "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
  303. },
  304. "runtime": {
  305. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  306. "assemblyVersion": "3.1.2.0",
  307. "fileVersion": "3.100.220.6706"
  308. }
  309. }
  310. },
  311. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  312. "runtime": {
  313. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  314. "assemblyVersion": "3.1.2.0",
  315. "fileVersion": "3.100.220.6706"
  316. }
  317. }
  318. },
  319. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  320. "dependencies": {
  321. "Microsoft.Extensions.Configuration.Abstractions": "3.1.9",
  322. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
  323. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
  324. "Microsoft.Extensions.Logging.Abstractions": "3.1.2"
  325. },
  326. "runtime": {
  327. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  328. "assemblyVersion": "2.2.0.0",
  329. "fileVersion": "2.2.0.18316"
  330. }
  331. }
  332. },
  333. "Microsoft.Extensions.Logging/2.1.0": {
  334. "dependencies": {
  335. "Microsoft.Extensions.Configuration.Binder": "3.1.2",
  336. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
  337. "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
  338. "Microsoft.Extensions.Options": "3.1.2"
  339. },
  340. "runtime": {
  341. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
  342. "assemblyVersion": "2.1.0.0",
  343. "fileVersion": "2.1.0.18136"
  344. }
  345. }
  346. },
  347. "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
  348. "runtime": {
  349. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  350. "assemblyVersion": "3.1.2.0",
  351. "fileVersion": "3.100.220.6706"
  352. }
  353. }
  354. },
  355. "Microsoft.Extensions.ObjectPool/2.1.0": {
  356. "runtime": {
  357. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  358. "assemblyVersion": "2.1.0.0",
  359. "fileVersion": "2.1.0.18136"
  360. }
  361. }
  362. },
  363. "Microsoft.Extensions.Options/3.1.2": {
  364. "dependencies": {
  365. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
  366. "Microsoft.Extensions.Primitives": "3.1.9",
  367. "System.ComponentModel.Annotations": "4.7.0"
  368. },
  369. "runtime": {
  370. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
  371. "assemblyVersion": "3.1.2.0",
  372. "fileVersion": "3.100.220.6706"
  373. }
  374. }
  375. },
  376. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
  377. "dependencies": {
  378. "Microsoft.Extensions.Configuration.Abstractions": "3.1.9",
  379. "Microsoft.Extensions.Configuration.Binder": "3.1.2",
  380. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
  381. "Microsoft.Extensions.Options": "3.1.2"
  382. },
  383. "runtime": {
  384. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  385. "assemblyVersion": "3.1.2.0",
  386. "fileVersion": "3.100.220.6706"
  387. }
  388. }
  389. },
  390. "Microsoft.Extensions.Primitives/3.1.9": {
  391. "dependencies": {
  392. "System.Memory": "4.5.3",
  393. "System.Runtime.CompilerServices.Unsafe": "4.7.1"
  394. },
  395. "runtime": {
  396. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  397. "assemblyVersion": "3.1.9.0",
  398. "fileVersion": "3.100.920.47302"
  399. }
  400. }
  401. },
  402. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  403. "dependencies": {
  404. "Microsoft.IdentityModel.Tokens": "5.6.0",
  405. "Newtonsoft.Json": "12.0.3"
  406. },
  407. "runtime": {
  408. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  409. "assemblyVersion": "5.6.0.0",
  410. "fileVersion": "5.6.0.61018"
  411. }
  412. }
  413. },
  414. "Microsoft.IdentityModel.Logging/5.6.0": {
  415. "runtime": {
  416. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  417. "assemblyVersion": "5.6.0.0",
  418. "fileVersion": "5.6.0.61018"
  419. }
  420. }
  421. },
  422. "Microsoft.IdentityModel.Tokens/5.6.0": {
  423. "dependencies": {
  424. "Microsoft.IdentityModel.Logging": "5.6.0",
  425. "Newtonsoft.Json": "12.0.3",
  426. "System.Security.Cryptography.Cng": "4.5.0"
  427. },
  428. "runtime": {
  429. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  430. "assemblyVersion": "5.6.0.0",
  431. "fileVersion": "5.6.0.61018"
  432. }
  433. }
  434. },
  435. "Microsoft.Net.Http.Headers/2.1.0": {
  436. "dependencies": {
  437. "Microsoft.Extensions.Primitives": "3.1.9",
  438. "System.Buffers": "4.5.0"
  439. },
  440. "runtime": {
  441. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  442. "assemblyVersion": "2.1.0.0",
  443. "fileVersion": "2.1.0.18136"
  444. }
  445. }
  446. },
  447. "Microsoft.NETCore.Jit/2.0.8": {},
  448. "Microsoft.NETCore.Platforms/1.1.0": {},
  449. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  450. "dependencies": {
  451. "Microsoft.NETCore.Jit": "2.0.8"
  452. }
  453. },
  454. "Microsoft.NETCore.Targets/1.1.0": {},
  455. "Microsoft.Win32.Primitives/4.3.0": {
  456. "dependencies": {
  457. "Microsoft.NETCore.Platforms": "1.1.0",
  458. "Microsoft.NETCore.Targets": "1.1.0",
  459. "System.Runtime": "4.3.0"
  460. }
  461. },
  462. "Microsoft.Win32.Registry/4.4.0": {
  463. "dependencies": {
  464. "System.Security.AccessControl": "4.6.0",
  465. "System.Security.Principal.Windows": "4.6.0"
  466. },
  467. "runtime": {
  468. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  469. "assemblyVersion": "4.1.0.0",
  470. "fileVersion": "4.6.25519.3"
  471. }
  472. }
  473. },
  474. "MySql.Data/8.0.19": {
  475. "dependencies": {
  476. "BouncyCastle.NetCore": "1.8.3",
  477. "Google.Protobuf": "3.6.1",
  478. "SSH.NET": "2016.1.0",
  479. "System.Configuration.ConfigurationManager": "4.4.1",
  480. "System.Security.Permissions": "4.6.0",
  481. "System.Text.Encoding.CodePages": "4.4.0"
  482. },
  483. "runtime": {
  484. "lib/netstandard2.1/MySql.Data.dll": {
  485. "assemblyVersion": "8.0.19.0",
  486. "fileVersion": "8.0.19.0"
  487. },
  488. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {
  489. "assemblyVersion": "2.2.1.0",
  490. "fileVersion": "2.2.1.0"
  491. }
  492. }
  493. },
  494. "NETStandard.Library/1.6.1": {
  495. "dependencies": {
  496. "Microsoft.NETCore.Platforms": "1.1.0",
  497. "Microsoft.Win32.Primitives": "4.3.0",
  498. "System.AppContext": "4.3.0",
  499. "System.Collections": "4.3.0",
  500. "System.Collections.Concurrent": "4.3.0",
  501. "System.Console": "4.3.0",
  502. "System.Diagnostics.Debug": "4.3.0",
  503. "System.Diagnostics.Tools": "4.3.0",
  504. "System.Diagnostics.Tracing": "4.3.0",
  505. "System.Globalization": "4.3.0",
  506. "System.Globalization.Calendars": "4.3.0",
  507. "System.IO": "4.3.0",
  508. "System.IO.Compression": "4.3.0",
  509. "System.IO.Compression.ZipFile": "4.3.0",
  510. "System.IO.FileSystem": "4.3.0",
  511. "System.IO.FileSystem.Primitives": "4.3.0",
  512. "System.Linq": "4.3.0",
  513. "System.Linq.Expressions": "4.3.0",
  514. "System.Net.Http": "4.3.0",
  515. "System.Net.Primitives": "4.3.0",
  516. "System.Net.Sockets": "4.3.0",
  517. "System.ObjectModel": "4.3.0",
  518. "System.Reflection": "4.3.0",
  519. "System.Reflection.Extensions": "4.3.0",
  520. "System.Reflection.Primitives": "4.3.0",
  521. "System.Resources.ResourceManager": "4.3.0",
  522. "System.Runtime": "4.3.0",
  523. "System.Runtime.Extensions": "4.3.0",
  524. "System.Runtime.Handles": "4.3.0",
  525. "System.Runtime.InteropServices": "4.3.0",
  526. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  527. "System.Runtime.Numerics": "4.3.0",
  528. "System.Security.Cryptography.Algorithms": "4.3.0",
  529. "System.Security.Cryptography.Encoding": "4.3.0",
  530. "System.Security.Cryptography.Primitives": "4.3.0",
  531. "System.Security.Cryptography.X509Certificates": "4.3.0",
  532. "System.Text.Encoding": "4.3.0",
  533. "System.Text.Encoding.Extensions": "4.3.0",
  534. "System.Text.RegularExpressions": "4.3.0",
  535. "System.Threading": "4.3.0",
  536. "System.Threading.Tasks": "4.3.0",
  537. "System.Threading.Timer": "4.3.0",
  538. "System.Xml.ReaderWriter": "4.3.0",
  539. "System.Xml.XDocument": "4.3.0"
  540. }
  541. },
  542. "Newtonsoft.Json/12.0.3": {
  543. "runtime": {
  544. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  545. "assemblyVersion": "12.0.0.0",
  546. "fileVersion": "12.0.3.23909"
  547. }
  548. }
  549. },
  550. "NLog/4.7.5": {
  551. "runtime": {
  552. "lib/netstandard2.0/NLog.dll": {
  553. "assemblyVersion": "4.0.0.0",
  554. "fileVersion": "4.7.5.12092"
  555. }
  556. }
  557. },
  558. "NLog.Extensions.Logging/1.6.4": {
  559. "dependencies": {
  560. "Microsoft.Extensions.Logging": "2.1.0",
  561. "NLog": "4.7.5"
  562. },
  563. "runtime": {
  564. "lib/netstandard2.0/NLog.Extensions.Logging.dll": {
  565. "assemblyVersion": "1.0.0.0",
  566. "fileVersion": "1.6.4.1366"
  567. }
  568. }
  569. },
  570. "NLog.Web.AspNetCore/4.9.3": {
  571. "dependencies": {
  572. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  573. "Microsoft.AspNetCore.Http": "2.1.0",
  574. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.0",
  575. "NLog.Extensions.Logging": "1.6.4"
  576. },
  577. "runtime": {
  578. "lib/netstandard2.0/NLog.Web.AspNetCore.dll": {
  579. "assemblyVersion": "4.0.0.0",
  580. "fileVersion": "4.9.3.1751"
  581. }
  582. }
  583. },
  584. "Npgsql/3.2.7": {
  585. "dependencies": {
  586. "System.Threading.Tasks.Extensions": "4.5.2"
  587. },
  588. "runtime": {
  589. "lib/netstandard2.0/Npgsql.dll": {
  590. "assemblyVersion": "3.2.7.0",
  591. "fileVersion": "3.2.7.0"
  592. }
  593. }
  594. },
  595. "Oracle.ManagedDataAccess.Core/2.18.3": {
  596. "runtime": {
  597. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {
  598. "assemblyVersion": "2.0.18.3",
  599. "fileVersion": "2.0.18.3"
  600. }
  601. }
  602. },
  603. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  604. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  605. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  606. "runtime.native.System/4.3.0": {
  607. "dependencies": {
  608. "Microsoft.NETCore.Platforms": "1.1.0",
  609. "Microsoft.NETCore.Targets": "1.1.0"
  610. }
  611. },
  612. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  613. "dependencies": {
  614. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  615. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  616. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  617. }
  618. },
  619. "runtime.native.System.IO.Compression/4.3.0": {
  620. "dependencies": {
  621. "Microsoft.NETCore.Platforms": "1.1.0",
  622. "Microsoft.NETCore.Targets": "1.1.0"
  623. }
  624. },
  625. "runtime.native.System.Net.Http/4.3.0": {
  626. "dependencies": {
  627. "Microsoft.NETCore.Platforms": "1.1.0",
  628. "Microsoft.NETCore.Targets": "1.1.0"
  629. }
  630. },
  631. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  632. "dependencies": {
  633. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  634. }
  635. },
  636. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  637. "dependencies": {
  638. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  639. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  640. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  641. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  642. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  643. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  644. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  645. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  646. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  647. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  648. }
  649. },
  650. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  651. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  652. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
  653. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  654. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  655. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  656. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  657. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  658. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {},
  659. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {},
  660. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {},
  661. "SQLitePCLRaw.bundle_green/1.1.12": {
  662. "dependencies": {
  663. "NETStandard.Library": "1.6.1",
  664. "SQLitePCLRaw.core": "1.1.12"
  665. },
  666. "runtime": {
  667. "lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll": {
  668. "assemblyVersion": "1.1.12.351",
  669. "fileVersion": "1.0.0.0"
  670. },
  671. "lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll": {
  672. "assemblyVersion": "1.1.12.351",
  673. "fileVersion": "1.0.0.0"
  674. }
  675. }
  676. },
  677. "SQLitePCLRaw.core/1.1.12": {
  678. "dependencies": {
  679. "NETStandard.Library": "1.6.1"
  680. },
  681. "runtime": {
  682. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {
  683. "assemblyVersion": "1.1.12.351",
  684. "fileVersion": "1.0.0.0"
  685. }
  686. }
  687. },
  688. "sqlSugarCore/5.0.0.18": {
  689. "dependencies": {
  690. "Microsoft.Data.Sqlite": "2.2.4",
  691. "MySql.Data": "8.0.19",
  692. "Newtonsoft.Json": "12.0.3",
  693. "Npgsql": "3.2.7",
  694. "Oracle.ManagedDataAccess.Core": "2.18.3",
  695. "System.Data.Common": "4.3.0",
  696. "System.Data.SqlClient": "4.4.0",
  697. "System.Reflection.Emit.Lightweight": "4.6.0"
  698. },
  699. "runtime": {
  700. "lib/netstandard2.0/SqlSugar.dll": {
  701. "assemblyVersion": "5.0.0.18",
  702. "fileVersion": "5.0.0.18"
  703. }
  704. }
  705. },
  706. "SSH.NET/2016.1.0": {
  707. "dependencies": {
  708. "Microsoft.CSharp": "4.0.1",
  709. "SshNet.Security.Cryptography": "1.2.0",
  710. "System.Diagnostics.Debug": "4.3.0",
  711. "System.Diagnostics.Tools": "4.3.0",
  712. "System.Diagnostics.TraceSource": "4.0.0",
  713. "System.Globalization": "4.3.0",
  714. "System.IO": "4.3.0",
  715. "System.IO.FileSystem": "4.3.0",
  716. "System.IO.FileSystem.Primitives": "4.3.0",
  717. "System.Linq": "4.3.0",
  718. "System.Net.NameResolution": "4.0.0",
  719. "System.Net.Sockets": "4.3.0",
  720. "System.Reflection.Extensions": "4.3.0",
  721. "System.Runtime.Extensions": "4.3.0",
  722. "System.Security.Cryptography.Algorithms": "4.3.0",
  723. "System.Text.RegularExpressions": "4.3.0",
  724. "System.Threading": "4.3.0",
  725. "System.Threading.Thread": "4.0.0",
  726. "System.Threading.ThreadPool": "4.0.10",
  727. "System.Threading.Timer": "4.3.0",
  728. "System.Xml.XPath.XmlDocument": "4.0.1",
  729. "System.Xml.XmlDocument": "4.0.1"
  730. },
  731. "runtime": {
  732. "lib/netstandard1.3/Renci.SshNet.dll": {
  733. "assemblyVersion": "2016.1.0.0",
  734. "fileVersion": "2016.1.0.0"
  735. }
  736. }
  737. },
  738. "SshNet.Security.Cryptography/1.2.0": {
  739. "dependencies": {
  740. "System.IO": "4.3.0",
  741. "System.Security.Cryptography.Primitives": "4.3.0"
  742. },
  743. "runtime": {
  744. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {
  745. "assemblyVersion": "1.2.0.0",
  746. "fileVersion": "1.2.0.0"
  747. }
  748. }
  749. },
  750. "System.AppContext/4.3.0": {
  751. "dependencies": {
  752. "System.Runtime": "4.3.0"
  753. },
  754. "runtime": {
  755. "lib/netstandard1.6/System.AppContext.dll": {
  756. "assemblyVersion": "4.1.1.0",
  757. "fileVersion": "4.6.24705.1"
  758. }
  759. }
  760. },
  761. "System.Buffers/4.5.0": {
  762. "runtime": {
  763. "lib/netstandard2.0/System.Buffers.dll": {
  764. "assemblyVersion": "4.0.3.0",
  765. "fileVersion": "4.6.26515.6"
  766. }
  767. }
  768. },
  769. "System.Collections/4.3.0": {
  770. "dependencies": {
  771. "Microsoft.NETCore.Platforms": "1.1.0",
  772. "Microsoft.NETCore.Targets": "1.1.0",
  773. "System.Runtime": "4.3.0"
  774. }
  775. },
  776. "System.Collections.Concurrent/4.3.0": {
  777. "dependencies": {
  778. "System.Collections": "4.3.0",
  779. "System.Diagnostics.Debug": "4.3.0",
  780. "System.Diagnostics.Tracing": "4.3.0",
  781. "System.Globalization": "4.3.0",
  782. "System.Reflection": "4.3.0",
  783. "System.Resources.ResourceManager": "4.3.0",
  784. "System.Runtime": "4.3.0",
  785. "System.Runtime.Extensions": "4.3.0",
  786. "System.Threading": "4.3.0",
  787. "System.Threading.Tasks": "4.3.0"
  788. },
  789. "runtime": {
  790. "lib/netstandard1.3/System.Collections.Concurrent.dll": {
  791. "assemblyVersion": "4.0.13.0",
  792. "fileVersion": "4.6.24705.1"
  793. }
  794. }
  795. },
  796. "System.ComponentModel.Annotations/4.7.0": {
  797. "runtime": {
  798. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  799. "assemblyVersion": "4.3.1.0",
  800. "fileVersion": "4.700.19.56404"
  801. }
  802. }
  803. },
  804. "System.Configuration.ConfigurationManager/4.4.1": {
  805. "dependencies": {
  806. "System.Security.Cryptography.ProtectedData": "4.4.0"
  807. },
  808. "runtime": {
  809. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  810. "assemblyVersion": "4.0.0.0",
  811. "fileVersion": "4.6.25921.2"
  812. }
  813. }
  814. },
  815. "System.Console/4.3.0": {
  816. "dependencies": {
  817. "Microsoft.NETCore.Platforms": "1.1.0",
  818. "Microsoft.NETCore.Targets": "1.1.0",
  819. "System.IO": "4.3.0",
  820. "System.Runtime": "4.3.0",
  821. "System.Text.Encoding": "4.3.0"
  822. }
  823. },
  824. "System.Data.Common/4.3.0": {
  825. "dependencies": {
  826. "System.Collections": "4.3.0",
  827. "System.Globalization": "4.3.0",
  828. "System.IO": "4.3.0",
  829. "System.Resources.ResourceManager": "4.3.0",
  830. "System.Runtime": "4.3.0",
  831. "System.Runtime.Extensions": "4.3.0",
  832. "System.Text.RegularExpressions": "4.3.0",
  833. "System.Threading.Tasks": "4.3.0"
  834. },
  835. "runtime": {
  836. "lib/netstandard1.2/System.Data.Common.dll": {
  837. "assemblyVersion": "4.1.1.0",
  838. "fileVersion": "4.6.24705.1"
  839. }
  840. }
  841. },
  842. "System.Data.SqlClient/4.4.0": {
  843. "dependencies": {
  844. "Microsoft.Win32.Registry": "4.4.0",
  845. "System.Diagnostics.DiagnosticSource": "4.4.1",
  846. "System.Security.Principal.Windows": "4.6.0",
  847. "System.Text.Encoding.CodePages": "4.4.0",
  848. "runtime.native.System.Data.SqlClient.sni": "4.4.0"
  849. },
  850. "runtime": {
  851. "lib/netstandard2.0/System.Data.SqlClient.dll": {
  852. "assemblyVersion": "4.2.0.0",
  853. "fileVersion": "4.6.25519.3"
  854. }
  855. }
  856. },
  857. "System.Diagnostics.Debug/4.3.0": {
  858. "dependencies": {
  859. "Microsoft.NETCore.Platforms": "1.1.0",
  860. "Microsoft.NETCore.Targets": "1.1.0",
  861. "System.Runtime": "4.3.0"
  862. }
  863. },
  864. "System.Diagnostics.DiagnosticSource/4.4.1": {
  865. "dependencies": {
  866. "System.Collections": "4.3.0",
  867. "System.Diagnostics.Debug": "4.3.0",
  868. "System.Diagnostics.Tracing": "4.3.0",
  869. "System.Reflection": "4.3.0",
  870. "System.Runtime": "4.3.0",
  871. "System.Runtime.Extensions": "4.3.0",
  872. "System.Threading": "4.3.0"
  873. },
  874. "runtime": {
  875. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  876. "assemblyVersion": "4.0.2.1",
  877. "fileVersion": "4.6.25519.3"
  878. }
  879. }
  880. },
  881. "System.Diagnostics.Tools/4.3.0": {
  882. "dependencies": {
  883. "Microsoft.NETCore.Platforms": "1.1.0",
  884. "Microsoft.NETCore.Targets": "1.1.0",
  885. "System.Runtime": "4.3.0"
  886. }
  887. },
  888. "System.Diagnostics.TraceSource/4.0.0": {
  889. "dependencies": {
  890. "Microsoft.NETCore.Platforms": "1.1.0",
  891. "System.Collections": "4.3.0",
  892. "System.Diagnostics.Debug": "4.3.0",
  893. "System.Globalization": "4.3.0",
  894. "System.Resources.ResourceManager": "4.3.0",
  895. "System.Runtime": "4.3.0",
  896. "System.Runtime.Extensions": "4.3.0",
  897. "System.Threading": "4.3.0",
  898. "runtime.native.System": "4.3.0"
  899. }
  900. },
  901. "System.Diagnostics.Tracing/4.3.0": {
  902. "dependencies": {
  903. "Microsoft.NETCore.Platforms": "1.1.0",
  904. "Microsoft.NETCore.Targets": "1.1.0",
  905. "System.Runtime": "4.3.0"
  906. }
  907. },
  908. "System.Drawing.Common/4.7.0": {
  909. "runtime": {
  910. "lib/netstandard2.0/System.Drawing.Common.dll": {
  911. "assemblyVersion": "4.0.0.1",
  912. "fileVersion": "4.6.26919.2"
  913. }
  914. }
  915. },
  916. "System.Dynamic.Runtime/4.0.11": {
  917. "dependencies": {
  918. "System.Collections": "4.3.0",
  919. "System.Diagnostics.Debug": "4.3.0",
  920. "System.Globalization": "4.3.0",
  921. "System.Linq": "4.3.0",
  922. "System.Linq.Expressions": "4.3.0",
  923. "System.ObjectModel": "4.3.0",
  924. "System.Reflection": "4.3.0",
  925. "System.Reflection.Emit": "4.3.0",
  926. "System.Reflection.Emit.ILGeneration": "4.3.0",
  927. "System.Reflection.Primitives": "4.3.0",
  928. "System.Reflection.TypeExtensions": "4.3.0",
  929. "System.Resources.ResourceManager": "4.3.0",
  930. "System.Runtime": "4.3.0",
  931. "System.Runtime.Extensions": "4.3.0",
  932. "System.Threading": "4.3.0"
  933. },
  934. "runtime": {
  935. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {
  936. "assemblyVersion": "4.0.11.0",
  937. "fileVersion": "1.0.24212.1"
  938. }
  939. }
  940. },
  941. "System.Globalization/4.3.0": {
  942. "dependencies": {
  943. "Microsoft.NETCore.Platforms": "1.1.0",
  944. "Microsoft.NETCore.Targets": "1.1.0",
  945. "System.Runtime": "4.3.0"
  946. }
  947. },
  948. "System.Globalization.Calendars/4.3.0": {
  949. "dependencies": {
  950. "Microsoft.NETCore.Platforms": "1.1.0",
  951. "Microsoft.NETCore.Targets": "1.1.0",
  952. "System.Globalization": "4.3.0",
  953. "System.Runtime": "4.3.0"
  954. }
  955. },
  956. "System.Globalization.Extensions/4.3.0": {
  957. "dependencies": {
  958. "Microsoft.NETCore.Platforms": "1.1.0",
  959. "System.Globalization": "4.3.0",
  960. "System.Resources.ResourceManager": "4.3.0",
  961. "System.Runtime": "4.3.0",
  962. "System.Runtime.Extensions": "4.3.0",
  963. "System.Runtime.InteropServices": "4.3.0"
  964. }
  965. },
  966. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  967. "dependencies": {
  968. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  969. "Microsoft.IdentityModel.Tokens": "5.6.0",
  970. "Newtonsoft.Json": "12.0.3"
  971. },
  972. "runtime": {
  973. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  974. "assemblyVersion": "5.6.0.0",
  975. "fileVersion": "5.6.0.61018"
  976. }
  977. }
  978. },
  979. "System.IO/4.3.0": {
  980. "dependencies": {
  981. "Microsoft.NETCore.Platforms": "1.1.0",
  982. "Microsoft.NETCore.Targets": "1.1.0",
  983. "System.Runtime": "4.3.0",
  984. "System.Text.Encoding": "4.3.0",
  985. "System.Threading.Tasks": "4.3.0"
  986. }
  987. },
  988. "System.IO.Compression/4.3.0": {
  989. "dependencies": {
  990. "Microsoft.NETCore.Platforms": "1.1.0",
  991. "System.Buffers": "4.5.0",
  992. "System.Collections": "4.3.0",
  993. "System.Diagnostics.Debug": "4.3.0",
  994. "System.IO": "4.3.0",
  995. "System.Resources.ResourceManager": "4.3.0",
  996. "System.Runtime": "4.3.0",
  997. "System.Runtime.Extensions": "4.3.0",
  998. "System.Runtime.Handles": "4.3.0",
  999. "System.Runtime.InteropServices": "4.3.0",
  1000. "System.Text.Encoding": "4.3.0",
  1001. "System.Threading": "4.3.0",
  1002. "System.Threading.Tasks": "4.3.0",
  1003. "runtime.native.System": "4.3.0",
  1004. "runtime.native.System.IO.Compression": "4.3.0"
  1005. }
  1006. },
  1007. "System.IO.Compression.ZipFile/4.3.0": {
  1008. "dependencies": {
  1009. "System.Buffers": "4.5.0",
  1010. "System.IO": "4.3.0",
  1011. "System.IO.Compression": "4.3.0",
  1012. "System.IO.FileSystem": "4.3.0",
  1013. "System.IO.FileSystem.Primitives": "4.3.0",
  1014. "System.Resources.ResourceManager": "4.3.0",
  1015. "System.Runtime": "4.3.0",
  1016. "System.Runtime.Extensions": "4.3.0",
  1017. "System.Text.Encoding": "4.3.0"
  1018. },
  1019. "runtime": {
  1020. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1021. "assemblyVersion": "4.0.2.0",
  1022. "fileVersion": "4.6.24705.1"
  1023. }
  1024. }
  1025. },
  1026. "System.IO.FileSystem/4.3.0": {
  1027. "dependencies": {
  1028. "Microsoft.NETCore.Platforms": "1.1.0",
  1029. "Microsoft.NETCore.Targets": "1.1.0",
  1030. "System.IO": "4.3.0",
  1031. "System.IO.FileSystem.Primitives": "4.3.0",
  1032. "System.Runtime": "4.3.0",
  1033. "System.Runtime.Handles": "4.3.0",
  1034. "System.Text.Encoding": "4.3.0",
  1035. "System.Threading.Tasks": "4.3.0"
  1036. }
  1037. },
  1038. "System.IO.FileSystem.Primitives/4.3.0": {
  1039. "dependencies": {
  1040. "System.Runtime": "4.3.0"
  1041. },
  1042. "runtime": {
  1043. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1044. "assemblyVersion": "4.0.2.0",
  1045. "fileVersion": "4.6.24705.1"
  1046. }
  1047. }
  1048. },
  1049. "System.Linq/4.3.0": {
  1050. "dependencies": {
  1051. "System.Collections": "4.3.0",
  1052. "System.Diagnostics.Debug": "4.3.0",
  1053. "System.Resources.ResourceManager": "4.3.0",
  1054. "System.Runtime": "4.3.0",
  1055. "System.Runtime.Extensions": "4.3.0"
  1056. },
  1057. "runtime": {
  1058. "lib/netstandard1.6/System.Linq.dll": {
  1059. "assemblyVersion": "4.1.1.0",
  1060. "fileVersion": "4.6.24705.1"
  1061. }
  1062. }
  1063. },
  1064. "System.Linq.Expressions/4.3.0": {
  1065. "dependencies": {
  1066. "System.Collections": "4.3.0",
  1067. "System.Diagnostics.Debug": "4.3.0",
  1068. "System.Globalization": "4.3.0",
  1069. "System.IO": "4.3.0",
  1070. "System.Linq": "4.3.0",
  1071. "System.ObjectModel": "4.3.0",
  1072. "System.Reflection": "4.3.0",
  1073. "System.Reflection.Emit": "4.3.0",
  1074. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1075. "System.Reflection.Emit.Lightweight": "4.6.0",
  1076. "System.Reflection.Extensions": "4.3.0",
  1077. "System.Reflection.Primitives": "4.3.0",
  1078. "System.Reflection.TypeExtensions": "4.3.0",
  1079. "System.Resources.ResourceManager": "4.3.0",
  1080. "System.Runtime": "4.3.0",
  1081. "System.Runtime.Extensions": "4.3.0",
  1082. "System.Threading": "4.3.0"
  1083. },
  1084. "runtime": {
  1085. "lib/netstandard1.6/System.Linq.Expressions.dll": {
  1086. "assemblyVersion": "4.1.1.0",
  1087. "fileVersion": "4.6.24705.1"
  1088. }
  1089. }
  1090. },
  1091. "System.Memory/4.5.3": {
  1092. "dependencies": {
  1093. "System.Buffers": "4.5.0",
  1094. "System.Numerics.Vectors": "4.5.0",
  1095. "System.Runtime.CompilerServices.Unsafe": "4.7.1"
  1096. },
  1097. "runtime": {
  1098. "lib/netstandard2.0/System.Memory.dll": {
  1099. "assemblyVersion": "4.0.1.1",
  1100. "fileVersion": "4.6.27617.2"
  1101. }
  1102. }
  1103. },
  1104. "System.Net.Http/4.3.0": {
  1105. "dependencies": {
  1106. "Microsoft.NETCore.Platforms": "1.1.0",
  1107. "System.Collections": "4.3.0",
  1108. "System.Diagnostics.Debug": "4.3.0",
  1109. "System.Diagnostics.DiagnosticSource": "4.4.1",
  1110. "System.Diagnostics.Tracing": "4.3.0",
  1111. "System.Globalization": "4.3.0",
  1112. "System.Globalization.Extensions": "4.3.0",
  1113. "System.IO": "4.3.0",
  1114. "System.IO.FileSystem": "4.3.0",
  1115. "System.Net.Primitives": "4.3.0",
  1116. "System.Resources.ResourceManager": "4.3.0",
  1117. "System.Runtime": "4.3.0",
  1118. "System.Runtime.Extensions": "4.3.0",
  1119. "System.Runtime.Handles": "4.3.0",
  1120. "System.Runtime.InteropServices": "4.3.0",
  1121. "System.Security.Cryptography.Algorithms": "4.3.0",
  1122. "System.Security.Cryptography.Encoding": "4.3.0",
  1123. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1124. "System.Security.Cryptography.Primitives": "4.3.0",
  1125. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1126. "System.Text.Encoding": "4.3.0",
  1127. "System.Threading": "4.3.0",
  1128. "System.Threading.Tasks": "4.3.0",
  1129. "runtime.native.System": "4.3.0",
  1130. "runtime.native.System.Net.Http": "4.3.0",
  1131. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1132. }
  1133. },
  1134. "System.Net.NameResolution/4.0.0": {
  1135. "dependencies": {
  1136. "Microsoft.NETCore.Platforms": "1.1.0",
  1137. "System.Collections": "4.3.0",
  1138. "System.Diagnostics.Tracing": "4.3.0",
  1139. "System.Globalization": "4.3.0",
  1140. "System.Net.Primitives": "4.3.0",
  1141. "System.Resources.ResourceManager": "4.3.0",
  1142. "System.Runtime": "4.3.0",
  1143. "System.Runtime.Extensions": "4.3.0",
  1144. "System.Runtime.Handles": "4.3.0",
  1145. "System.Runtime.InteropServices": "4.3.0",
  1146. "System.Security.Principal.Windows": "4.6.0",
  1147. "System.Threading": "4.3.0",
  1148. "System.Threading.Tasks": "4.3.0",
  1149. "runtime.native.System": "4.3.0"
  1150. }
  1151. },
  1152. "System.Net.Primitives/4.3.0": {
  1153. "dependencies": {
  1154. "Microsoft.NETCore.Platforms": "1.1.0",
  1155. "Microsoft.NETCore.Targets": "1.1.0",
  1156. "System.Runtime": "4.3.0",
  1157. "System.Runtime.Handles": "4.3.0"
  1158. }
  1159. },
  1160. "System.Net.Sockets/4.3.0": {
  1161. "dependencies": {
  1162. "Microsoft.NETCore.Platforms": "1.1.0",
  1163. "Microsoft.NETCore.Targets": "1.1.0",
  1164. "System.IO": "4.3.0",
  1165. "System.Net.Primitives": "4.3.0",
  1166. "System.Runtime": "4.3.0",
  1167. "System.Threading.Tasks": "4.3.0"
  1168. }
  1169. },
  1170. "System.Numerics.Vectors/4.5.0": {
  1171. "runtime": {
  1172. "lib/netstandard2.0/System.Numerics.Vectors.dll": {
  1173. "assemblyVersion": "4.1.4.0",
  1174. "fileVersion": "4.6.26515.6"
  1175. }
  1176. }
  1177. },
  1178. "System.ObjectModel/4.3.0": {
  1179. "dependencies": {
  1180. "System.Collections": "4.3.0",
  1181. "System.Diagnostics.Debug": "4.3.0",
  1182. "System.Resources.ResourceManager": "4.3.0",
  1183. "System.Runtime": "4.3.0",
  1184. "System.Threading": "4.3.0"
  1185. },
  1186. "runtime": {
  1187. "lib/netstandard1.3/System.ObjectModel.dll": {
  1188. "assemblyVersion": "4.0.13.0",
  1189. "fileVersion": "4.6.24705.1"
  1190. }
  1191. }
  1192. },
  1193. "System.Reflection/4.3.0": {
  1194. "dependencies": {
  1195. "Microsoft.NETCore.Platforms": "1.1.0",
  1196. "Microsoft.NETCore.Targets": "1.1.0",
  1197. "System.IO": "4.3.0",
  1198. "System.Reflection.Primitives": "4.3.0",
  1199. "System.Runtime": "4.3.0"
  1200. }
  1201. },
  1202. "System.Reflection.Emit/4.3.0": {
  1203. "dependencies": {
  1204. "System.IO": "4.3.0",
  1205. "System.Reflection": "4.3.0",
  1206. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1207. "System.Reflection.Primitives": "4.3.0",
  1208. "System.Runtime": "4.3.0"
  1209. },
  1210. "runtime": {
  1211. "lib/netstandard1.3/System.Reflection.Emit.dll": {
  1212. "assemblyVersion": "4.0.2.0",
  1213. "fileVersion": "4.6.24705.1"
  1214. }
  1215. }
  1216. },
  1217. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1218. "dependencies": {
  1219. "System.Reflection": "4.3.0",
  1220. "System.Reflection.Primitives": "4.3.0",
  1221. "System.Runtime": "4.3.0"
  1222. },
  1223. "runtime": {
  1224. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
  1225. "assemblyVersion": "4.0.2.0",
  1226. "fileVersion": "4.6.24705.1"
  1227. }
  1228. }
  1229. },
  1230. "System.Reflection.Emit.Lightweight/4.6.0": {},
  1231. "System.Reflection.Extensions/4.3.0": {
  1232. "dependencies": {
  1233. "Microsoft.NETCore.Platforms": "1.1.0",
  1234. "Microsoft.NETCore.Targets": "1.1.0",
  1235. "System.Reflection": "4.3.0",
  1236. "System.Runtime": "4.3.0"
  1237. }
  1238. },
  1239. "System.Reflection.Primitives/4.3.0": {
  1240. "dependencies": {
  1241. "Microsoft.NETCore.Platforms": "1.1.0",
  1242. "Microsoft.NETCore.Targets": "1.1.0",
  1243. "System.Runtime": "4.3.0"
  1244. }
  1245. },
  1246. "System.Reflection.TypeExtensions/4.3.0": {
  1247. "dependencies": {
  1248. "System.Reflection": "4.3.0",
  1249. "System.Runtime": "4.3.0"
  1250. },
  1251. "runtime": {
  1252. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  1253. "assemblyVersion": "4.1.1.0",
  1254. "fileVersion": "4.6.24705.1"
  1255. }
  1256. }
  1257. },
  1258. "System.Resources.ResourceManager/4.3.0": {
  1259. "dependencies": {
  1260. "Microsoft.NETCore.Platforms": "1.1.0",
  1261. "Microsoft.NETCore.Targets": "1.1.0",
  1262. "System.Globalization": "4.3.0",
  1263. "System.Reflection": "4.3.0",
  1264. "System.Runtime": "4.3.0"
  1265. }
  1266. },
  1267. "System.Runtime/4.3.0": {
  1268. "dependencies": {
  1269. "Microsoft.NETCore.Platforms": "1.1.0",
  1270. "Microsoft.NETCore.Targets": "1.1.0"
  1271. }
  1272. },
  1273. "System.Runtime.CompilerServices.Unsafe/4.7.1": {
  1274. "runtime": {
  1275. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1276. "assemblyVersion": "4.0.6.0",
  1277. "fileVersion": "4.700.20.12001"
  1278. }
  1279. }
  1280. },
  1281. "System.Runtime.Extensions/4.3.0": {
  1282. "dependencies": {
  1283. "Microsoft.NETCore.Platforms": "1.1.0",
  1284. "Microsoft.NETCore.Targets": "1.1.0",
  1285. "System.Runtime": "4.3.0"
  1286. }
  1287. },
  1288. "System.Runtime.Handles/4.3.0": {
  1289. "dependencies": {
  1290. "Microsoft.NETCore.Platforms": "1.1.0",
  1291. "Microsoft.NETCore.Targets": "1.1.0",
  1292. "System.Runtime": "4.3.0"
  1293. }
  1294. },
  1295. "System.Runtime.InteropServices/4.3.0": {
  1296. "dependencies": {
  1297. "Microsoft.NETCore.Platforms": "1.1.0",
  1298. "Microsoft.NETCore.Targets": "1.1.0",
  1299. "System.Reflection": "4.3.0",
  1300. "System.Reflection.Primitives": "4.3.0",
  1301. "System.Runtime": "4.3.0",
  1302. "System.Runtime.Handles": "4.3.0"
  1303. }
  1304. },
  1305. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  1306. "dependencies": {
  1307. "System.Reflection": "4.3.0",
  1308. "System.Reflection.Extensions": "4.3.0",
  1309. "System.Resources.ResourceManager": "4.3.0",
  1310. "System.Runtime": "4.3.0",
  1311. "System.Runtime.InteropServices": "4.3.0",
  1312. "System.Threading": "4.3.0",
  1313. "runtime.native.System": "4.3.0"
  1314. },
  1315. "runtime": {
  1316. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1317. "assemblyVersion": "4.0.1.0",
  1318. "fileVersion": "4.6.24705.1"
  1319. }
  1320. }
  1321. },
  1322. "System.Runtime.Numerics/4.3.0": {
  1323. "dependencies": {
  1324. "System.Globalization": "4.3.0",
  1325. "System.Resources.ResourceManager": "4.3.0",
  1326. "System.Runtime": "4.3.0",
  1327. "System.Runtime.Extensions": "4.3.0"
  1328. },
  1329. "runtime": {
  1330. "lib/netstandard1.3/System.Runtime.Numerics.dll": {
  1331. "assemblyVersion": "4.0.2.0",
  1332. "fileVersion": "4.6.24705.1"
  1333. }
  1334. }
  1335. },
  1336. "System.Security.AccessControl/4.6.0": {
  1337. "dependencies": {
  1338. "System.Security.Principal.Windows": "4.6.0"
  1339. },
  1340. "runtime": {
  1341. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  1342. "assemblyVersion": "4.1.2.0",
  1343. "fileVersion": "4.700.19.46214"
  1344. }
  1345. }
  1346. },
  1347. "System.Security.Cryptography.Algorithms/4.3.0": {
  1348. "dependencies": {
  1349. "Microsoft.NETCore.Platforms": "1.1.0",
  1350. "System.Collections": "4.3.0",
  1351. "System.IO": "4.3.0",
  1352. "System.Resources.ResourceManager": "4.3.0",
  1353. "System.Runtime": "4.3.0",
  1354. "System.Runtime.Extensions": "4.3.0",
  1355. "System.Runtime.Handles": "4.3.0",
  1356. "System.Runtime.InteropServices": "4.3.0",
  1357. "System.Runtime.Numerics": "4.3.0",
  1358. "System.Security.Cryptography.Encoding": "4.3.0",
  1359. "System.Security.Cryptography.Primitives": "4.3.0",
  1360. "System.Text.Encoding": "4.3.0",
  1361. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  1362. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1363. }
  1364. },
  1365. "System.Security.Cryptography.Cng/4.5.0": {
  1366. "runtime": {
  1367. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll": {
  1368. "assemblyVersion": "4.3.0.0",
  1369. "fileVersion": "4.6.26515.6"
  1370. }
  1371. }
  1372. },
  1373. "System.Security.Cryptography.Csp/4.3.0": {
  1374. "dependencies": {
  1375. "Microsoft.NETCore.Platforms": "1.1.0",
  1376. "System.IO": "4.3.0",
  1377. "System.Reflection": "4.3.0",
  1378. "System.Resources.ResourceManager": "4.3.0",
  1379. "System.Runtime": "4.3.0",
  1380. "System.Runtime.Extensions": "4.3.0",
  1381. "System.Runtime.Handles": "4.3.0",
  1382. "System.Runtime.InteropServices": "4.3.0",
  1383. "System.Security.Cryptography.Algorithms": "4.3.0",
  1384. "System.Security.Cryptography.Encoding": "4.3.0",
  1385. "System.Security.Cryptography.Primitives": "4.3.0",
  1386. "System.Text.Encoding": "4.3.0",
  1387. "System.Threading": "4.3.0"
  1388. }
  1389. },
  1390. "System.Security.Cryptography.Encoding/4.3.0": {
  1391. "dependencies": {
  1392. "Microsoft.NETCore.Platforms": "1.1.0",
  1393. "System.Collections": "4.3.0",
  1394. "System.Collections.Concurrent": "4.3.0",
  1395. "System.Linq": "4.3.0",
  1396. "System.Resources.ResourceManager": "4.3.0",
  1397. "System.Runtime": "4.3.0",
  1398. "System.Runtime.Extensions": "4.3.0",
  1399. "System.Runtime.Handles": "4.3.0",
  1400. "System.Runtime.InteropServices": "4.3.0",
  1401. "System.Security.Cryptography.Primitives": "4.3.0",
  1402. "System.Text.Encoding": "4.3.0",
  1403. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1404. }
  1405. },
  1406. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1407. "dependencies": {
  1408. "System.Collections": "4.3.0",
  1409. "System.IO": "4.3.0",
  1410. "System.Resources.ResourceManager": "4.3.0",
  1411. "System.Runtime": "4.3.0",
  1412. "System.Runtime.Extensions": "4.3.0",
  1413. "System.Runtime.Handles": "4.3.0",
  1414. "System.Runtime.InteropServices": "4.3.0",
  1415. "System.Runtime.Numerics": "4.3.0",
  1416. "System.Security.Cryptography.Algorithms": "4.3.0",
  1417. "System.Security.Cryptography.Encoding": "4.3.0",
  1418. "System.Security.Cryptography.Primitives": "4.3.0",
  1419. "System.Text.Encoding": "4.3.0",
  1420. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1421. },
  1422. "runtime": {
  1423. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  1424. "assemblyVersion": "4.0.0.0",
  1425. "fileVersion": "1.0.24212.1"
  1426. }
  1427. }
  1428. },
  1429. "System.Security.Cryptography.Primitives/4.3.0": {
  1430. "dependencies": {
  1431. "System.Diagnostics.Debug": "4.3.0",
  1432. "System.Globalization": "4.3.0",
  1433. "System.IO": "4.3.0",
  1434. "System.Resources.ResourceManager": "4.3.0",
  1435. "System.Runtime": "4.3.0",
  1436. "System.Threading": "4.3.0",
  1437. "System.Threading.Tasks": "4.3.0"
  1438. },
  1439. "runtime": {
  1440. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {
  1441. "assemblyVersion": "4.0.1.0",
  1442. "fileVersion": "4.6.24705.1"
  1443. }
  1444. }
  1445. },
  1446. "System.Security.Cryptography.ProtectedData/4.4.0": {
  1447. "runtime": {
  1448. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1449. "assemblyVersion": "4.0.2.0",
  1450. "fileVersion": "4.6.25519.3"
  1451. }
  1452. }
  1453. },
  1454. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1455. "dependencies": {
  1456. "Microsoft.NETCore.Platforms": "1.1.0",
  1457. "System.Collections": "4.3.0",
  1458. "System.Diagnostics.Debug": "4.3.0",
  1459. "System.Globalization": "4.3.0",
  1460. "System.Globalization.Calendars": "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.Handles": "4.3.0",
  1468. "System.Runtime.InteropServices": "4.3.0",
  1469. "System.Runtime.Numerics": "4.3.0",
  1470. "System.Security.Cryptography.Algorithms": "4.3.0",
  1471. "System.Security.Cryptography.Cng": "4.5.0",
  1472. "System.Security.Cryptography.Csp": "4.3.0",
  1473. "System.Security.Cryptography.Encoding": "4.3.0",
  1474. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1475. "System.Security.Cryptography.Primitives": "4.3.0",
  1476. "System.Text.Encoding": "4.3.0",
  1477. "System.Threading": "4.3.0",
  1478. "runtime.native.System": "4.3.0",
  1479. "runtime.native.System.Net.Http": "4.3.0",
  1480. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1481. }
  1482. },
  1483. "System.Security.Permissions/4.6.0": {
  1484. "dependencies": {
  1485. "System.Security.AccessControl": "4.6.0"
  1486. },
  1487. "runtime": {
  1488. "lib/netstandard2.0/System.Security.Permissions.dll": {
  1489. "assemblyVersion": "4.0.2.0",
  1490. "fileVersion": "4.700.19.46214"
  1491. }
  1492. }
  1493. },
  1494. "System.Security.Principal.Windows/4.6.0": {
  1495. "runtime": {
  1496. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  1497. "assemblyVersion": "4.1.2.0",
  1498. "fileVersion": "4.700.19.46214"
  1499. }
  1500. }
  1501. },
  1502. "System.Text.Encoding/4.3.0": {
  1503. "dependencies": {
  1504. "Microsoft.NETCore.Platforms": "1.1.0",
  1505. "Microsoft.NETCore.Targets": "1.1.0",
  1506. "System.Runtime": "4.3.0"
  1507. }
  1508. },
  1509. "System.Text.Encoding.CodePages/4.4.0": {
  1510. "runtime": {
  1511. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  1512. "assemblyVersion": "4.1.0.0",
  1513. "fileVersion": "4.6.25519.3"
  1514. }
  1515. }
  1516. },
  1517. "System.Text.Encoding.Extensions/4.3.0": {
  1518. "dependencies": {
  1519. "Microsoft.NETCore.Platforms": "1.1.0",
  1520. "Microsoft.NETCore.Targets": "1.1.0",
  1521. "System.Runtime": "4.3.0",
  1522. "System.Text.Encoding": "4.3.0"
  1523. }
  1524. },
  1525. "System.Text.Encodings.Web/4.7.0": {
  1526. "runtime": {
  1527. "lib/netstandard2.1/System.Text.Encodings.Web.dll": {
  1528. "assemblyVersion": "4.0.5.0",
  1529. "fileVersion": "4.700.19.56404"
  1530. }
  1531. }
  1532. },
  1533. "System.Text.Json/4.7.1": {
  1534. "dependencies": {
  1535. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  1536. "System.Buffers": "4.5.0",
  1537. "System.Memory": "4.5.3",
  1538. "System.Numerics.Vectors": "4.5.0",
  1539. "System.Runtime.CompilerServices.Unsafe": "4.7.1",
  1540. "System.Text.Encodings.Web": "4.7.0",
  1541. "System.Threading.Tasks.Extensions": "4.5.2"
  1542. },
  1543. "runtime": {
  1544. "lib/netstandard2.0/System.Text.Json.dll": {
  1545. "assemblyVersion": "4.0.1.1",
  1546. "fileVersion": "4.700.20.6702"
  1547. }
  1548. }
  1549. },
  1550. "System.Text.RegularExpressions/4.3.0": {
  1551. "dependencies": {
  1552. "System.Collections": "4.3.0",
  1553. "System.Globalization": "4.3.0",
  1554. "System.Resources.ResourceManager": "4.3.0",
  1555. "System.Runtime": "4.3.0",
  1556. "System.Runtime.Extensions": "4.3.0",
  1557. "System.Threading": "4.3.0"
  1558. },
  1559. "runtime": {
  1560. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {
  1561. "assemblyVersion": "4.1.1.0",
  1562. "fileVersion": "4.6.24705.1"
  1563. }
  1564. }
  1565. },
  1566. "System.Threading/4.3.0": {
  1567. "dependencies": {
  1568. "System.Runtime": "4.3.0",
  1569. "System.Threading.Tasks": "4.3.0"
  1570. },
  1571. "runtime": {
  1572. "lib/netstandard1.3/System.Threading.dll": {
  1573. "assemblyVersion": "4.0.12.0",
  1574. "fileVersion": "4.6.24705.1"
  1575. }
  1576. }
  1577. },
  1578. "System.Threading.Tasks/4.3.0": {
  1579. "dependencies": {
  1580. "Microsoft.NETCore.Platforms": "1.1.0",
  1581. "Microsoft.NETCore.Targets": "1.1.0",
  1582. "System.Runtime": "4.3.0"
  1583. }
  1584. },
  1585. "System.Threading.Tasks.Extensions/4.5.2": {
  1586. "dependencies": {
  1587. "System.Runtime.CompilerServices.Unsafe": "4.7.1"
  1588. },
  1589. "runtime": {
  1590. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
  1591. "assemblyVersion": "4.2.0.0",
  1592. "fileVersion": "4.6.27129.4"
  1593. }
  1594. }
  1595. },
  1596. "System.Threading.Thread/4.0.0": {
  1597. "dependencies": {
  1598. "System.Runtime": "4.3.0"
  1599. },
  1600. "runtime": {
  1601. "lib/netstandard1.3/System.Threading.Thread.dll": {
  1602. "assemblyVersion": "4.0.0.0",
  1603. "fileVersion": "1.0.24212.1"
  1604. }
  1605. }
  1606. },
  1607. "System.Threading.ThreadPool/4.0.10": {
  1608. "dependencies": {
  1609. "System.Runtime": "4.3.0",
  1610. "System.Runtime.Handles": "4.3.0"
  1611. },
  1612. "runtime": {
  1613. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {
  1614. "assemblyVersion": "4.0.10.0",
  1615. "fileVersion": "1.0.24212.1"
  1616. }
  1617. }
  1618. },
  1619. "System.Threading.Timer/4.3.0": {
  1620. "dependencies": {
  1621. "Microsoft.NETCore.Platforms": "1.1.0",
  1622. "Microsoft.NETCore.Targets": "1.1.0",
  1623. "System.Runtime": "4.3.0"
  1624. }
  1625. },
  1626. "System.Xml.ReaderWriter/4.3.0": {
  1627. "dependencies": {
  1628. "System.Collections": "4.3.0",
  1629. "System.Diagnostics.Debug": "4.3.0",
  1630. "System.Globalization": "4.3.0",
  1631. "System.IO": "4.3.0",
  1632. "System.IO.FileSystem": "4.3.0",
  1633. "System.IO.FileSystem.Primitives": "4.3.0",
  1634. "System.Resources.ResourceManager": "4.3.0",
  1635. "System.Runtime": "4.3.0",
  1636. "System.Runtime.Extensions": "4.3.0",
  1637. "System.Runtime.InteropServices": "4.3.0",
  1638. "System.Text.Encoding": "4.3.0",
  1639. "System.Text.Encoding.Extensions": "4.3.0",
  1640. "System.Text.RegularExpressions": "4.3.0",
  1641. "System.Threading.Tasks": "4.3.0",
  1642. "System.Threading.Tasks.Extensions": "4.5.2"
  1643. },
  1644. "runtime": {
  1645. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {
  1646. "assemblyVersion": "4.1.0.0",
  1647. "fileVersion": "4.6.24705.1"
  1648. }
  1649. }
  1650. },
  1651. "System.Xml.XDocument/4.3.0": {
  1652. "dependencies": {
  1653. "System.Collections": "4.3.0",
  1654. "System.Diagnostics.Debug": "4.3.0",
  1655. "System.Diagnostics.Tools": "4.3.0",
  1656. "System.Globalization": "4.3.0",
  1657. "System.IO": "4.3.0",
  1658. "System.Reflection": "4.3.0",
  1659. "System.Resources.ResourceManager": "4.3.0",
  1660. "System.Runtime": "4.3.0",
  1661. "System.Runtime.Extensions": "4.3.0",
  1662. "System.Text.Encoding": "4.3.0",
  1663. "System.Threading": "4.3.0",
  1664. "System.Xml.ReaderWriter": "4.3.0"
  1665. },
  1666. "runtime": {
  1667. "lib/netstandard1.3/System.Xml.XDocument.dll": {
  1668. "assemblyVersion": "4.0.12.0",
  1669. "fileVersion": "4.6.24705.1"
  1670. }
  1671. }
  1672. },
  1673. "System.Xml.XmlDocument/4.0.1": {
  1674. "dependencies": {
  1675. "System.Collections": "4.3.0",
  1676. "System.Diagnostics.Debug": "4.3.0",
  1677. "System.Globalization": "4.3.0",
  1678. "System.IO": "4.3.0",
  1679. "System.Resources.ResourceManager": "4.3.0",
  1680. "System.Runtime": "4.3.0",
  1681. "System.Runtime.Extensions": "4.3.0",
  1682. "System.Text.Encoding": "4.3.0",
  1683. "System.Threading": "4.3.0",
  1684. "System.Xml.ReaderWriter": "4.3.0"
  1685. },
  1686. "runtime": {
  1687. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {
  1688. "assemblyVersion": "4.0.1.0",
  1689. "fileVersion": "1.0.24212.1"
  1690. }
  1691. }
  1692. },
  1693. "System.Xml.XPath/4.0.1": {
  1694. "dependencies": {
  1695. "System.Collections": "4.3.0",
  1696. "System.Diagnostics.Debug": "4.3.0",
  1697. "System.Globalization": "4.3.0",
  1698. "System.IO": "4.3.0",
  1699. "System.Resources.ResourceManager": "4.3.0",
  1700. "System.Runtime": "4.3.0",
  1701. "System.Runtime.Extensions": "4.3.0",
  1702. "System.Threading": "4.3.0",
  1703. "System.Xml.ReaderWriter": "4.3.0"
  1704. },
  1705. "runtime": {
  1706. "lib/netstandard1.3/System.Xml.XPath.dll": {
  1707. "assemblyVersion": "4.0.1.0",
  1708. "fileVersion": "1.0.24212.1"
  1709. }
  1710. }
  1711. },
  1712. "System.Xml.XPath.XmlDocument/4.0.1": {
  1713. "dependencies": {
  1714. "System.Collections": "4.3.0",
  1715. "System.Globalization": "4.3.0",
  1716. "System.IO": "4.3.0",
  1717. "System.Resources.ResourceManager": "4.3.0",
  1718. "System.Runtime": "4.3.0",
  1719. "System.Runtime.Extensions": "4.3.0",
  1720. "System.Threading": "4.3.0",
  1721. "System.Xml.ReaderWriter": "4.3.0",
  1722. "System.Xml.XPath": "4.0.1",
  1723. "System.Xml.XmlDocument": "4.0.1"
  1724. },
  1725. "runtime": {
  1726. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
  1727. "assemblyVersion": "4.0.1.0",
  1728. "fileVersion": "1.0.24212.1"
  1729. }
  1730. }
  1731. },
  1732. "WebAPIBase.Data/1.0.0": {
  1733. "dependencies": {
  1734. "Dapper": "2.0.30",
  1735. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
  1736. "Microsoft.Extensions.Configuration.Json": "3.1.2",
  1737. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.2",
  1738. "MySql.Data": "8.0.19",
  1739. "WebAPIBase.Model": "1.0.0",
  1740. "sqlSugarCore": "5.0.0.18"
  1741. },
  1742. "runtime": {
  1743. "WebAPIBase.Data.dll": {}
  1744. }
  1745. },
  1746. "WebAPIBase.Model/1.0.0": {
  1747. "runtime": {
  1748. "WebAPIBase.Model.dll": {}
  1749. }
  1750. },
  1751. "WebAPIBase.Utils/1.0.0": {
  1752. "dependencies": {
  1753. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  1754. "Microsoft.Extensions.Caching.Memory": "3.1.2",
  1755. "Microsoft.Extensions.Configuration": "3.1.9",
  1756. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
  1757. "Microsoft.Extensions.Configuration.Json": "3.1.2",
  1758. "Microsoft.NETCore.Runtime.CoreCLR": "2.0.8",
  1759. "NLog": "4.7.5",
  1760. "NLog.Web.AspNetCore": "4.9.3",
  1761. "System.Drawing.Common": "4.7.0",
  1762. "System.IdentityModel.Tokens.Jwt": "5.6.0"
  1763. },
  1764. "runtime": {
  1765. "WebAPIBase.Utils.dll": {}
  1766. }
  1767. }
  1768. }
  1769. },
  1770. "libraries": {
  1771. "WebAPIBase.Service/1.0.0": {
  1772. "type": "project",
  1773. "serviceable": false,
  1774. "sha512": ""
  1775. },
  1776. "BouncyCastle.NetCore/1.8.3": {
  1777. "type": "package",
  1778. "serviceable": true,
  1779. "sha512": "sha512-jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  1780. "path": "bouncycastle.netcore/1.8.3",
  1781. "hashPath": "bouncycastle.netcore.1.8.3.nupkg.sha512"
  1782. },
  1783. "Dapper/2.0.30": {
  1784. "type": "package",
  1785. "serviceable": true,
  1786. "sha512": "sha512-nL0VEpvunjIQ3jTI1x27b7BS3BnRnn5b2vhxsU2pWEd9SljF5WUQLoV/83qXTm0yaHmejRV/ndI3EApGlrgPqw==",
  1787. "path": "dapper/2.0.30",
  1788. "hashPath": "dapper.2.0.30.nupkg.sha512"
  1789. },
  1790. "Google.Protobuf/3.6.1": {
  1791. "type": "package",
  1792. "serviceable": true,
  1793. "sha512": "sha512-741fGeDQjixBJaU2j+0CbrmZXsNJkTn/hWbOh4fLVXndHsCclJmWznCPWrJmPoZKvajBvAz3e8ECJOUvRtwjNQ==",
  1794. "path": "google.protobuf/3.6.1",
  1795. "hashPath": "google.protobuf.3.6.1.nupkg.sha512"
  1796. },
  1797. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  1798. "type": "package",
  1799. "serviceable": true,
  1800. "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  1801. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  1802. "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512"
  1803. },
  1804. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  1805. "type": "package",
  1806. "serviceable": true,
  1807. "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  1808. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  1809. "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512"
  1810. },
  1811. "Microsoft.AspNetCore.Http/2.1.0": {
  1812. "type": "package",
  1813. "serviceable": true,
  1814. "sha512": "sha512-eAPryjDRH41EYY2sOMHCu+tHXLI6PUN1AsOPKst6GbiIoMi8wJCiPcE4h9418tKje1oUzmMc2Iz8fFPPVamfaw==",
  1815. "path": "microsoft.aspnetcore.http/2.1.0",
  1816. "hashPath": "microsoft.aspnetcore.http.2.1.0.nupkg.sha512"
  1817. },
  1818. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  1819. "type": "package",
  1820. "serviceable": true,
  1821. "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  1822. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  1823. "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
  1824. },
  1825. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  1826. "type": "package",
  1827. "serviceable": true,
  1828. "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  1829. "path": "microsoft.aspnetcore.http.features/2.2.0",
  1830. "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
  1831. },
  1832. "Microsoft.AspNetCore.Routing.Abstractions/2.1.0": {
  1833. "type": "package",
  1834. "serviceable": true,
  1835. "sha512": "sha512-LXmnHeb3v+HTfn74M46s+4wLaMkplj1Yl2pRf+2mfDDsQ7PN0+h8AFtgip5jpvBvFHQ/Pei7S+cSVsSTHE67fQ==",
  1836. "path": "microsoft.aspnetcore.routing.abstractions/2.1.0",
  1837. "hashPath": "microsoft.aspnetcore.routing.abstractions.2.1.0.nupkg.sha512"
  1838. },
  1839. "Microsoft.AspNetCore.WebUtilities/2.1.0": {
  1840. "type": "package",
  1841. "serviceable": true,
  1842. "sha512": "sha512-xBy8JGXQ3tVSYzLl/LtN3c9EeB75khFSB2Kw2HWmF+McU0Ltva7R4JBRH0Rb4LgkcjYyyJdf+09PZalQFwsT+Q==",
  1843. "path": "microsoft.aspnetcore.webutilities/2.1.0",
  1844. "hashPath": "microsoft.aspnetcore.webutilities.2.1.0.nupkg.sha512"
  1845. },
  1846. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  1847. "type": "package",
  1848. "serviceable": true,
  1849. "sha512": "sha512-1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
  1850. "path": "microsoft.bcl.asyncinterfaces/1.1.0",
  1851. "hashPath": "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512"
  1852. },
  1853. "Microsoft.CSharp/4.0.1": {
  1854. "type": "package",
  1855. "serviceable": true,
  1856. "sha512": "sha512-17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
  1857. "path": "microsoft.csharp/4.0.1",
  1858. "hashPath": "microsoft.csharp.4.0.1.nupkg.sha512"
  1859. },
  1860. "Microsoft.Data.Sqlite/2.2.4": {
  1861. "type": "package",
  1862. "serviceable": true,
  1863. "sha512": "sha512-QgYDdW07QZUyZPwisIU3Db62FnK6Yfcuru7KAsHusLGstJ0kBIXFnG185PcWmm2ba4AN0ab1iwrhXZr/9Yxj0w==",
  1864. "path": "microsoft.data.sqlite/2.2.4",
  1865. "hashPath": "microsoft.data.sqlite.2.2.4.nupkg.sha512"
  1866. },
  1867. "Microsoft.Data.Sqlite.Core/2.2.4": {
  1868. "type": "package",
  1869. "serviceable": true,
  1870. "sha512": "sha512-69DJj8bUJpXPfWpmJ/Sh165GWjLjlL516l0GnJDImabfR+leXb61HaQF97THWvyx5yY7MvpO94QW5nyiXMVOAA==",
  1871. "path": "microsoft.data.sqlite.core/2.2.4",
  1872. "hashPath": "microsoft.data.sqlite.core.2.2.4.nupkg.sha512"
  1873. },
  1874. "Microsoft.Extensions.Caching.Abstractions/3.1.2": {
  1875. "type": "package",
  1876. "serviceable": true,
  1877. "sha512": "sha512-UfMC7L+8ha05PUAfVpmMS0kb7C1BoOrWxN70706D50qWohXLYgkUsu22oS7zkd9amCPTCmhRm2z/LisN8SESgg==",
  1878. "path": "microsoft.extensions.caching.abstractions/3.1.2",
  1879. "hashPath": "microsoft.extensions.caching.abstractions.3.1.2.nupkg.sha512"
  1880. },
  1881. "Microsoft.Extensions.Caching.Memory/3.1.2": {
  1882. "type": "package",
  1883. "serviceable": true,
  1884. "sha512": "sha512-4O/YgpVhK/ZIYteGy9LyJv+YRcTxLOe7AnMUHBj1m1U40Er1/dbMymFTH1HrRS/fkVB90un24JhG+c1qSWjjjA==",
  1885. "path": "microsoft.extensions.caching.memory/3.1.2",
  1886. "hashPath": "microsoft.extensions.caching.memory.3.1.2.nupkg.sha512"
  1887. },
  1888. "Microsoft.Extensions.Configuration/3.1.9": {
  1889. "type": "package",
  1890. "serviceable": true,
  1891. "sha512": "sha512-lqdkOGNeTMKG981Q7yWGlRiFbIlsRwTlMMiybT+WOzUCFBS/wc25tZgh7Wm/uRoBbWefgvokzmnea7ZjmFedmA==",
  1892. "path": "microsoft.extensions.configuration/3.1.9",
  1893. "hashPath": "microsoft.extensions.configuration.3.1.9.nupkg.sha512"
  1894. },
  1895. "Microsoft.Extensions.Configuration.Abstractions/3.1.9": {
  1896. "type": "package",
  1897. "serviceable": true,
  1898. "sha512": "sha512-vOJxPKczaHpXeZFrxARxYwsEulhEouXc5aZGgMdkhV/iEXX9/pfjqKk76rTG+4CsJjHV+G/4eMhvOIaQMHENNA==",
  1899. "path": "microsoft.extensions.configuration.abstractions/3.1.9",
  1900. "hashPath": "microsoft.extensions.configuration.abstractions.3.1.9.nupkg.sha512"
  1901. },
  1902. "Microsoft.Extensions.Configuration.Binder/3.1.2": {
  1903. "type": "package",
  1904. "serviceable": true,
  1905. "sha512": "sha512-IWrc9/voGki2pc5g8bRXIqs+P50tXOjNf47qgFKSu/pL50InRuXxh/nj5AG9Po8YRpvT/bYIUk3XQqHH7yUg5w==",
  1906. "path": "microsoft.extensions.configuration.binder/3.1.2",
  1907. "hashPath": "microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512"
  1908. },
  1909. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  1910. "type": "package",
  1911. "serviceable": true,
  1912. "sha512": "sha512-itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
  1913. "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
  1914. "hashPath": "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512"
  1915. },
  1916. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  1917. "type": "package",
  1918. "serviceable": true,
  1919. "sha512": "sha512-AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
  1920. "path": "microsoft.extensions.configuration.json/3.1.2",
  1921. "hashPath": "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512"
  1922. },
  1923. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
  1924. "type": "package",
  1925. "serviceable": true,
  1926. "sha512": "sha512-/CZzCSCIm/3FFoXHfUpsfov/Elo268dcvlz/MMINT0vPgphqg2pAgdEn/EjCDyoAT3NAmsRmjfGwBumC1uYJtA==",
  1927. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.2",
  1928. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512"
  1929. },
  1930. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  1931. "type": "package",
  1932. "serviceable": true,
  1933. "sha512": "sha512-O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
  1934. "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
  1935. "hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512"
  1936. },
  1937. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  1938. "type": "package",
  1939. "serviceable": true,
  1940. "sha512": "sha512-lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
  1941. "path": "microsoft.extensions.fileproviders.physical/3.1.2",
  1942. "hashPath": "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512"
  1943. },
  1944. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  1945. "type": "package",
  1946. "serviceable": true,
  1947. "sha512": "sha512-/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
  1948. "path": "microsoft.extensions.filesystemglobbing/3.1.2",
  1949. "hashPath": "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512"
  1950. },
  1951. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  1952. "type": "package",
  1953. "serviceable": true,
  1954. "sha512": "sha512-+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
  1955. "path": "microsoft.extensions.hosting.abstractions/2.2.0",
  1956. "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512"
  1957. },
  1958. "Microsoft.Extensions.Logging/2.1.0": {
  1959. "type": "package",
  1960. "serviceable": true,
  1961. "sha512": "sha512-kuZbZMMHb7ibzhLdn9/R1+PAAFKntlF10tOw4loB8VuQkHvSrBE6IzW1rhBLsEdmLXOgi2zFbwcXFrxzSM6ybA==",
  1962. "path": "microsoft.extensions.logging/2.1.0",
  1963. "hashPath": "microsoft.extensions.logging.2.1.0.nupkg.sha512"
  1964. },
  1965. "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
  1966. "type": "package",
  1967. "serviceable": true,
  1968. "sha512": "sha512-cIXPw7VVX3fON4uuHwJFmCi0qDl8uY75xZMKB2oM3In0ZDEB1Ee+p9Ti1DSw92AwRtJ2Zh+QG1joTBednJMzvA==",
  1969. "path": "microsoft.extensions.logging.abstractions/3.1.2",
  1970. "hashPath": "microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512"
  1971. },
  1972. "Microsoft.Extensions.ObjectPool/2.1.0": {
  1973. "type": "package",
  1974. "serviceable": true,
  1975. "sha512": "sha512-tIbO45cohqexTJPXBubpwluycDT+6OWy2m7PukG37XMrtQ6Zv4AnoLrgUTaCmpWihSs5RZHKvThiAJFcBlR3AA==",
  1976. "path": "microsoft.extensions.objectpool/2.1.0",
  1977. "hashPath": "microsoft.extensions.objectpool.2.1.0.nupkg.sha512"
  1978. },
  1979. "Microsoft.Extensions.Options/3.1.2": {
  1980. "type": "package",
  1981. "serviceable": true,
  1982. "sha512": "sha512-6F4anwt9yMlnQckac2etjrasRFyqZNIp46p+i9qVps0DXNsOLZIKRkqq4AY4FlxXxKeGkEJC7M77RQEkvd3p8Q==",
  1983. "path": "microsoft.extensions.options/3.1.2",
  1984. "hashPath": "microsoft.extensions.options.3.1.2.nupkg.sha512"
  1985. },
  1986. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.2": {
  1987. "type": "package",
  1988. "serviceable": true,
  1989. "sha512": "sha512-NJRuISEgTUh3/ehm0mwGx1FhepKQuUxfMm0BKJ0b8UNABuDaXFLtlV/5Bd9hT5vmeZTGGB4hvM02uRaCiSACNw==",
  1990. "path": "microsoft.extensions.options.configurationextensions/3.1.2",
  1991. "hashPath": "microsoft.extensions.options.configurationextensions.3.1.2.nupkg.sha512"
  1992. },
  1993. "Microsoft.Extensions.Primitives/3.1.9": {
  1994. "type": "package",
  1995. "serviceable": true,
  1996. "sha512": "sha512-IrHecH0eGG7/XoeEtv++oLg/sJHRNyeCqlA9RhAo6ig4GpOTjtDr32sBMYuuLtUq8ALahneWkrOzoBAwJ4L4iA==",
  1997. "path": "microsoft.extensions.primitives/3.1.9",
  1998. "hashPath": "microsoft.extensions.primitives.3.1.9.nupkg.sha512"
  1999. },
  2000. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  2001. "type": "package",
  2002. "serviceable": true,
  2003. "sha512": "sha512-0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
  2004. "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
  2005. "hashPath": "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512"
  2006. },
  2007. "Microsoft.IdentityModel.Logging/5.6.0": {
  2008. "type": "package",
  2009. "serviceable": true,
  2010. "sha512": "sha512-zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
  2011. "path": "microsoft.identitymodel.logging/5.6.0",
  2012. "hashPath": "microsoft.identitymodel.logging.5.6.0.nupkg.sha512"
  2013. },
  2014. "Microsoft.IdentityModel.Tokens/5.6.0": {
  2015. "type": "package",
  2016. "serviceable": true,
  2017. "sha512": "sha512-C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
  2018. "path": "microsoft.identitymodel.tokens/5.6.0",
  2019. "hashPath": "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512"
  2020. },
  2021. "Microsoft.Net.Http.Headers/2.1.0": {
  2022. "type": "package",
  2023. "serviceable": true,
  2024. "sha512": "sha512-c08F7C7BGgmjrq9cr7382pBRhcimBx24YOv4M4gtzMIuVKmxGoRr5r9A2Hke9v7Nx7zKKCysk6XpuZasZX4oeg==",
  2025. "path": "microsoft.net.http.headers/2.1.0",
  2026. "hashPath": "microsoft.net.http.headers.2.1.0.nupkg.sha512"
  2027. },
  2028. "Microsoft.NETCore.Jit/2.0.8": {
  2029. "type": "package",
  2030. "serviceable": true,
  2031. "sha512": "sha512-webbzOhpGlR6qnCeb4m2OWHixBK0IgoyISVIhPVlLH8bY9yZtjnK4XQKkEkh/a9l5K26ddus7l+QpNh3EtnyYQ==",
  2032. "path": "microsoft.netcore.jit/2.0.8",
  2033. "hashPath": "microsoft.netcore.jit.2.0.8.nupkg.sha512"
  2034. },
  2035. "Microsoft.NETCore.Platforms/1.1.0": {
  2036. "type": "package",
  2037. "serviceable": true,
  2038. "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  2039. "path": "microsoft.netcore.platforms/1.1.0",
  2040. "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
  2041. },
  2042. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  2043. "type": "package",
  2044. "serviceable": true,
  2045. "sha512": "sha512-F0t5KmilC9zaZY3JZYMfWSo+r+5PeZCXLP8uFToHTKL5kL2pTu4YPyxgweYfzTh4tb7OfZL32xnKdkzbWBP0aw==",
  2046. "path": "microsoft.netcore.runtime.coreclr/2.0.8",
  2047. "hashPath": "microsoft.netcore.runtime.coreclr.2.0.8.nupkg.sha512"
  2048. },
  2049. "Microsoft.NETCore.Targets/1.1.0": {
  2050. "type": "package",
  2051. "serviceable": true,
  2052. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  2053. "path": "microsoft.netcore.targets/1.1.0",
  2054. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  2055. },
  2056. "Microsoft.Win32.Primitives/4.3.0": {
  2057. "type": "package",
  2058. "serviceable": true,
  2059. "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  2060. "path": "microsoft.win32.primitives/4.3.0",
  2061. "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
  2062. },
  2063. "Microsoft.Win32.Registry/4.4.0": {
  2064. "type": "package",
  2065. "serviceable": true,
  2066. "sha512": "sha512-dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
  2067. "path": "microsoft.win32.registry/4.4.0",
  2068. "hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512"
  2069. },
  2070. "MySql.Data/8.0.19": {
  2071. "type": "package",
  2072. "serviceable": true,
  2073. "sha512": "sha512-zPFSg8rW3PcFIn27d0lEHQ/XWQhBzGIgKYQYFZN8aHLlpen5D6nz3/wb54V9ZRH3zkWlIWQ7FfxqbQdl3vizjQ==",
  2074. "path": "mysql.data/8.0.19",
  2075. "hashPath": "mysql.data.8.0.19.nupkg.sha512"
  2076. },
  2077. "NETStandard.Library/1.6.1": {
  2078. "type": "package",
  2079. "serviceable": true,
  2080. "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  2081. "path": "netstandard.library/1.6.1",
  2082. "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
  2083. },
  2084. "Newtonsoft.Json/12.0.3": {
  2085. "type": "package",
  2086. "serviceable": true,
  2087. "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
  2088. "path": "newtonsoft.json/12.0.3",
  2089. "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
  2090. },
  2091. "NLog/4.7.5": {
  2092. "type": "package",
  2093. "serviceable": true,
  2094. "sha512": "sha512-1Udzim+UwoAGk0vW6T2rEBXJq1COvqTuE+4NFj2zHytuX1WOu+1Yes1qABG1IJOA5V3OMilIufUU1Ha9T0rrzQ==",
  2095. "path": "nlog/4.7.5",
  2096. "hashPath": "nlog.4.7.5.nupkg.sha512"
  2097. },
  2098. "NLog.Extensions.Logging/1.6.4": {
  2099. "type": "package",
  2100. "serviceable": true,
  2101. "sha512": "sha512-ESOBd/bzxFacwpWTdTXaAaItJz/0Mzibyw65YB0uQT4pf2hXtwHp2626qEiVOmaacIQbJH5wGpBLNcVpbQLpKA==",
  2102. "path": "nlog.extensions.logging/1.6.4",
  2103. "hashPath": "nlog.extensions.logging.1.6.4.nupkg.sha512"
  2104. },
  2105. "NLog.Web.AspNetCore/4.9.3": {
  2106. "type": "package",
  2107. "serviceable": true,
  2108. "sha512": "sha512-v3TiGaFXENM3/fVCFJJaien7A44EcGwceySh5rFNkp5RC3PZvsbDjEXoOeqsDz8+i5iuYQDMjTFuD2JReNdj9g==",
  2109. "path": "nlog.web.aspnetcore/4.9.3",
  2110. "hashPath": "nlog.web.aspnetcore.4.9.3.nupkg.sha512"
  2111. },
  2112. "Npgsql/3.2.7": {
  2113. "type": "package",
  2114. "serviceable": true,
  2115. "sha512": "sha512-CxSXzWn/MNbHX8L1xfQSzrZfJEA2Yt5cvT27Az5abmvbqtUY1ab6xAkmBj5FfLyKCIYEnmSrxn1IY1+Jy13oFA==",
  2116. "path": "npgsql/3.2.7",
  2117. "hashPath": "npgsql.3.2.7.nupkg.sha512"
  2118. },
  2119. "Oracle.ManagedDataAccess.Core/2.18.3": {
  2120. "type": "package",
  2121. "serviceable": true,
  2122. "sha512": "sha512-YaN+rm9wgFQAuWxrrR7lUxEQI4WJnNkMTlZb+gbv2W4D/ML2kkgz4N8Z76W9Polx6BU+kK3Vx2R8RD9u7sea7g==",
  2123. "path": "oracle.manageddataaccess.core/2.18.3",
  2124. "hashPath": "oracle.manageddataaccess.core.2.18.3.nupkg.sha512"
  2125. },
  2126. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2127. "type": "package",
  2128. "serviceable": true,
  2129. "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  2130. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2131. "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2132. },
  2133. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2134. "type": "package",
  2135. "serviceable": true,
  2136. "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  2137. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2138. "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2139. },
  2140. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2141. "type": "package",
  2142. "serviceable": true,
  2143. "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  2144. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2145. "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2146. },
  2147. "runtime.native.System/4.3.0": {
  2148. "type": "package",
  2149. "serviceable": true,
  2150. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  2151. "path": "runtime.native.system/4.3.0",
  2152. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  2153. },
  2154. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2155. "type": "package",
  2156. "serviceable": true,
  2157. "sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
  2158. "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
  2159. "hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
  2160. },
  2161. "runtime.native.System.IO.Compression/4.3.0": {
  2162. "type": "package",
  2163. "serviceable": true,
  2164. "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  2165. "path": "runtime.native.system.io.compression/4.3.0",
  2166. "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
  2167. },
  2168. "runtime.native.System.Net.Http/4.3.0": {
  2169. "type": "package",
  2170. "serviceable": true,
  2171. "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  2172. "path": "runtime.native.system.net.http/4.3.0",
  2173. "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
  2174. },
  2175. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2176. "type": "package",
  2177. "serviceable": true,
  2178. "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  2179. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  2180. "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  2181. },
  2182. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2183. "type": "package",
  2184. "serviceable": true,
  2185. "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  2186. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  2187. "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2188. },
  2189. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2190. "type": "package",
  2191. "serviceable": true,
  2192. "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  2193. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2194. "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2195. },
  2196. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2197. "type": "package",
  2198. "serviceable": true,
  2199. "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  2200. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2201. "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2202. },
  2203. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2204. "type": "package",
  2205. "serviceable": true,
  2206. "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  2207. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  2208. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  2209. },
  2210. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2211. "type": "package",
  2212. "serviceable": true,
  2213. "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  2214. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2215. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2216. },
  2217. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2218. "type": "package",
  2219. "serviceable": true,
  2220. "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  2221. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2222. "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2223. },
  2224. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2225. "type": "package",
  2226. "serviceable": true,
  2227. "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  2228. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2229. "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2230. },
  2231. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2232. "type": "package",
  2233. "serviceable": true,
  2234. "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  2235. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2236. "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2237. },
  2238. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2239. "type": "package",
  2240. "serviceable": true,
  2241. "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  2242. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2243. "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2244. },
  2245. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2246. "type": "package",
  2247. "serviceable": true,
  2248. "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  2249. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  2250. "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
  2251. },
  2252. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2253. "type": "package",
  2254. "serviceable": true,
  2255. "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  2256. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  2257. "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
  2258. },
  2259. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2260. "type": "package",
  2261. "serviceable": true,
  2262. "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  2263. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  2264. "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
  2265. },
  2266. "SQLitePCLRaw.bundle_green/1.1.12": {
  2267. "type": "package",
  2268. "serviceable": true,
  2269. "sha512": "sha512-U5lZv+E0JBCG5uQngaRgyIAlbzIwRczb0m46XJfLGXovtfVOaMNRY/oGyKAJjdexVrfqLRd+JyopGMySpAZRGQ==",
  2270. "path": "sqlitepclraw.bundle_green/1.1.12",
  2271. "hashPath": "sqlitepclraw.bundle_green.1.1.12.nupkg.sha512"
  2272. },
  2273. "SQLitePCLRaw.core/1.1.12": {
  2274. "type": "package",
  2275. "serviceable": true,
  2276. "sha512": "sha512-S4hr+tE275ran5jyKFW/FYPG6Bz6nsHUp9H8chqKxzk21PxJadLd9LnvLe6LMRP/IqY5+LOIIDQF3m/2iDlZ7Q==",
  2277. "path": "sqlitepclraw.core/1.1.12",
  2278. "hashPath": "sqlitepclraw.core.1.1.12.nupkg.sha512"
  2279. },
  2280. "sqlSugarCore/5.0.0.18": {
  2281. "type": "package",
  2282. "serviceable": true,
  2283. "sha512": "sha512-AtNXN+yg50fIZuOHBggWvxY/sBH0nqTFEVM6CDmmc06WxUJ0MA8N7kBbKxVYVWbhpD8/INWZrGJ4tko3ZKD88A==",
  2284. "path": "sqlsugarcore/5.0.0.18",
  2285. "hashPath": "sqlsugarcore.5.0.0.18.nupkg.sha512"
  2286. },
  2287. "SSH.NET/2016.1.0": {
  2288. "type": "package",
  2289. "serviceable": true,
  2290. "sha512": "sha512-b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  2291. "path": "ssh.net/2016.1.0",
  2292. "hashPath": "ssh.net.2016.1.0.nupkg.sha512"
  2293. },
  2294. "SshNet.Security.Cryptography/1.2.0": {
  2295. "type": "package",
  2296. "serviceable": true,
  2297. "sha512": "sha512-EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  2298. "path": "sshnet.security.cryptography/1.2.0",
  2299. "hashPath": "sshnet.security.cryptography.1.2.0.nupkg.sha512"
  2300. },
  2301. "System.AppContext/4.3.0": {
  2302. "type": "package",
  2303. "serviceable": true,
  2304. "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  2305. "path": "system.appcontext/4.3.0",
  2306. "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
  2307. },
  2308. "System.Buffers/4.5.0": {
  2309. "type": "package",
  2310. "serviceable": true,
  2311. "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
  2312. "path": "system.buffers/4.5.0",
  2313. "hashPath": "system.buffers.4.5.0.nupkg.sha512"
  2314. },
  2315. "System.Collections/4.3.0": {
  2316. "type": "package",
  2317. "serviceable": true,
  2318. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  2319. "path": "system.collections/4.3.0",
  2320. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  2321. },
  2322. "System.Collections.Concurrent/4.3.0": {
  2323. "type": "package",
  2324. "serviceable": true,
  2325. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  2326. "path": "system.collections.concurrent/4.3.0",
  2327. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  2328. },
  2329. "System.ComponentModel.Annotations/4.7.0": {
  2330. "type": "package",
  2331. "serviceable": true,
  2332. "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  2333. "path": "system.componentmodel.annotations/4.7.0",
  2334. "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
  2335. },
  2336. "System.Configuration.ConfigurationManager/4.4.1": {
  2337. "type": "package",
  2338. "serviceable": true,
  2339. "sha512": "sha512-jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
  2340. "path": "system.configuration.configurationmanager/4.4.1",
  2341. "hashPath": "system.configuration.configurationmanager.4.4.1.nupkg.sha512"
  2342. },
  2343. "System.Console/4.3.0": {
  2344. "type": "package",
  2345. "serviceable": true,
  2346. "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  2347. "path": "system.console/4.3.0",
  2348. "hashPath": "system.console.4.3.0.nupkg.sha512"
  2349. },
  2350. "System.Data.Common/4.3.0": {
  2351. "type": "package",
  2352. "serviceable": true,
  2353. "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  2354. "path": "system.data.common/4.3.0",
  2355. "hashPath": "system.data.common.4.3.0.nupkg.sha512"
  2356. },
  2357. "System.Data.SqlClient/4.4.0": {
  2358. "type": "package",
  2359. "serviceable": true,
  2360. "sha512": "sha512-fxb9ghn1k1Ua7FFdlvtiBOD4/PsQvD/fk2KnhS+FK7VC6OggEx6P+lP1P0+KMb5V2dqS1+FbR7HCenoqzJMNIA==",
  2361. "path": "system.data.sqlclient/4.4.0",
  2362. "hashPath": "system.data.sqlclient.4.4.0.nupkg.sha512"
  2363. },
  2364. "System.Diagnostics.Debug/4.3.0": {
  2365. "type": "package",
  2366. "serviceable": true,
  2367. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  2368. "path": "system.diagnostics.debug/4.3.0",
  2369. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  2370. },
  2371. "System.Diagnostics.DiagnosticSource/4.4.1": {
  2372. "type": "package",
  2373. "serviceable": true,
  2374. "sha512": "sha512-U/KcC19fyLsPN1GLmeU2zQq15MMVcPwMOYPADVo1+WIoJpvMHxrzvl+BLLZwTEZSneGwaPFZ0aWr0nJ7B7LSdA==",
  2375. "path": "system.diagnostics.diagnosticsource/4.4.1",
  2376. "hashPath": "system.diagnostics.diagnosticsource.4.4.1.nupkg.sha512"
  2377. },
  2378. "System.Diagnostics.Tools/4.3.0": {
  2379. "type": "package",
  2380. "serviceable": true,
  2381. "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  2382. "path": "system.diagnostics.tools/4.3.0",
  2383. "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
  2384. },
  2385. "System.Diagnostics.TraceSource/4.0.0": {
  2386. "type": "package",
  2387. "serviceable": true,
  2388. "sha512": "sha512-6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  2389. "path": "system.diagnostics.tracesource/4.0.0",
  2390. "hashPath": "system.diagnostics.tracesource.4.0.0.nupkg.sha512"
  2391. },
  2392. "System.Diagnostics.Tracing/4.3.0": {
  2393. "type": "package",
  2394. "serviceable": true,
  2395. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  2396. "path": "system.diagnostics.tracing/4.3.0",
  2397. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  2398. },
  2399. "System.Drawing.Common/4.7.0": {
  2400. "type": "package",
  2401. "serviceable": true,
  2402. "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  2403. "path": "system.drawing.common/4.7.0",
  2404. "hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
  2405. },
  2406. "System.Dynamic.Runtime/4.0.11": {
  2407. "type": "package",
  2408. "serviceable": true,
  2409. "sha512": "sha512-db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
  2410. "path": "system.dynamic.runtime/4.0.11",
  2411. "hashPath": "system.dynamic.runtime.4.0.11.nupkg.sha512"
  2412. },
  2413. "System.Globalization/4.3.0": {
  2414. "type": "package",
  2415. "serviceable": true,
  2416. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  2417. "path": "system.globalization/4.3.0",
  2418. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  2419. },
  2420. "System.Globalization.Calendars/4.3.0": {
  2421. "type": "package",
  2422. "serviceable": true,
  2423. "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  2424. "path": "system.globalization.calendars/4.3.0",
  2425. "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
  2426. },
  2427. "System.Globalization.Extensions/4.3.0": {
  2428. "type": "package",
  2429. "serviceable": true,
  2430. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  2431. "path": "system.globalization.extensions/4.3.0",
  2432. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  2433. },
  2434. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  2435. "type": "package",
  2436. "serviceable": true,
  2437. "sha512": "sha512-KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
  2438. "path": "system.identitymodel.tokens.jwt/5.6.0",
  2439. "hashPath": "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512"
  2440. },
  2441. "System.IO/4.3.0": {
  2442. "type": "package",
  2443. "serviceable": true,
  2444. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  2445. "path": "system.io/4.3.0",
  2446. "hashPath": "system.io.4.3.0.nupkg.sha512"
  2447. },
  2448. "System.IO.Compression/4.3.0": {
  2449. "type": "package",
  2450. "serviceable": true,
  2451. "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  2452. "path": "system.io.compression/4.3.0",
  2453. "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
  2454. },
  2455. "System.IO.Compression.ZipFile/4.3.0": {
  2456. "type": "package",
  2457. "serviceable": true,
  2458. "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  2459. "path": "system.io.compression.zipfile/4.3.0",
  2460. "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
  2461. },
  2462. "System.IO.FileSystem/4.3.0": {
  2463. "type": "package",
  2464. "serviceable": true,
  2465. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  2466. "path": "system.io.filesystem/4.3.0",
  2467. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  2468. },
  2469. "System.IO.FileSystem.Primitives/4.3.0": {
  2470. "type": "package",
  2471. "serviceable": true,
  2472. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  2473. "path": "system.io.filesystem.primitives/4.3.0",
  2474. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  2475. },
  2476. "System.Linq/4.3.0": {
  2477. "type": "package",
  2478. "serviceable": true,
  2479. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  2480. "path": "system.linq/4.3.0",
  2481. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  2482. },
  2483. "System.Linq.Expressions/4.3.0": {
  2484. "type": "package",
  2485. "serviceable": true,
  2486. "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  2487. "path": "system.linq.expressions/4.3.0",
  2488. "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
  2489. },
  2490. "System.Memory/4.5.3": {
  2491. "type": "package",
  2492. "serviceable": true,
  2493. "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  2494. "path": "system.memory/4.5.3",
  2495. "hashPath": "system.memory.4.5.3.nupkg.sha512"
  2496. },
  2497. "System.Net.Http/4.3.0": {
  2498. "type": "package",
  2499. "serviceable": true,
  2500. "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  2501. "path": "system.net.http/4.3.0",
  2502. "hashPath": "system.net.http.4.3.0.nupkg.sha512"
  2503. },
  2504. "System.Net.NameResolution/4.0.0": {
  2505. "type": "package",
  2506. "serviceable": true,
  2507. "sha512": "sha512-JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  2508. "path": "system.net.nameresolution/4.0.0",
  2509. "hashPath": "system.net.nameresolution.4.0.0.nupkg.sha512"
  2510. },
  2511. "System.Net.Primitives/4.3.0": {
  2512. "type": "package",
  2513. "serviceable": true,
  2514. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  2515. "path": "system.net.primitives/4.3.0",
  2516. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  2517. },
  2518. "System.Net.Sockets/4.3.0": {
  2519. "type": "package",
  2520. "serviceable": true,
  2521. "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  2522. "path": "system.net.sockets/4.3.0",
  2523. "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
  2524. },
  2525. "System.Numerics.Vectors/4.5.0": {
  2526. "type": "package",
  2527. "serviceable": true,
  2528. "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  2529. "path": "system.numerics.vectors/4.5.0",
  2530. "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
  2531. },
  2532. "System.ObjectModel/4.3.0": {
  2533. "type": "package",
  2534. "serviceable": true,
  2535. "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  2536. "path": "system.objectmodel/4.3.0",
  2537. "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
  2538. },
  2539. "System.Reflection/4.3.0": {
  2540. "type": "package",
  2541. "serviceable": true,
  2542. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  2543. "path": "system.reflection/4.3.0",
  2544. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  2545. },
  2546. "System.Reflection.Emit/4.3.0": {
  2547. "type": "package",
  2548. "serviceable": true,
  2549. "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  2550. "path": "system.reflection.emit/4.3.0",
  2551. "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
  2552. },
  2553. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2554. "type": "package",
  2555. "serviceable": true,
  2556. "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  2557. "path": "system.reflection.emit.ilgeneration/4.3.0",
  2558. "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
  2559. },
  2560. "System.Reflection.Emit.Lightweight/4.6.0": {
  2561. "type": "package",
  2562. "serviceable": true,
  2563. "sha512": "sha512-j/V5HVvxvBQ7uubYD0PptQW2KGsi1Pc2kZ9yfwLixv3ADdjL/4M78KyC5e+ymW612DY8ZE4PFoZmWpoNmN2mqg==",
  2564. "path": "system.reflection.emit.lightweight/4.6.0",
  2565. "hashPath": "system.reflection.emit.lightweight.4.6.0.nupkg.sha512"
  2566. },
  2567. "System.Reflection.Extensions/4.3.0": {
  2568. "type": "package",
  2569. "serviceable": true,
  2570. "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  2571. "path": "system.reflection.extensions/4.3.0",
  2572. "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
  2573. },
  2574. "System.Reflection.Primitives/4.3.0": {
  2575. "type": "package",
  2576. "serviceable": true,
  2577. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  2578. "path": "system.reflection.primitives/4.3.0",
  2579. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  2580. },
  2581. "System.Reflection.TypeExtensions/4.3.0": {
  2582. "type": "package",
  2583. "serviceable": true,
  2584. "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  2585. "path": "system.reflection.typeextensions/4.3.0",
  2586. "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
  2587. },
  2588. "System.Resources.ResourceManager/4.3.0": {
  2589. "type": "package",
  2590. "serviceable": true,
  2591. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  2592. "path": "system.resources.resourcemanager/4.3.0",
  2593. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  2594. },
  2595. "System.Runtime/4.3.0": {
  2596. "type": "package",
  2597. "serviceable": true,
  2598. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  2599. "path": "system.runtime/4.3.0",
  2600. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  2601. },
  2602. "System.Runtime.CompilerServices.Unsafe/4.7.1": {
  2603. "type": "package",
  2604. "serviceable": true,
  2605. "sha512": "sha512-zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
  2606. "path": "system.runtime.compilerservices.unsafe/4.7.1",
  2607. "hashPath": "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512"
  2608. },
  2609. "System.Runtime.Extensions/4.3.0": {
  2610. "type": "package",
  2611. "serviceable": true,
  2612. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  2613. "path": "system.runtime.extensions/4.3.0",
  2614. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  2615. },
  2616. "System.Runtime.Handles/4.3.0": {
  2617. "type": "package",
  2618. "serviceable": true,
  2619. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  2620. "path": "system.runtime.handles/4.3.0",
  2621. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  2622. },
  2623. "System.Runtime.InteropServices/4.3.0": {
  2624. "type": "package",
  2625. "serviceable": true,
  2626. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  2627. "path": "system.runtime.interopservices/4.3.0",
  2628. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  2629. },
  2630. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2631. "type": "package",
  2632. "serviceable": true,
  2633. "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  2634. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  2635. "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
  2636. },
  2637. "System.Runtime.Numerics/4.3.0": {
  2638. "type": "package",
  2639. "serviceable": true,
  2640. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  2641. "path": "system.runtime.numerics/4.3.0",
  2642. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  2643. },
  2644. "System.Security.AccessControl/4.6.0": {
  2645. "type": "package",
  2646. "serviceable": true,
  2647. "sha512": "sha512-gmlk6khICtVhiUnVBBtlsH0H/5QFDqhTZgtpp3AX14wWE6OIE+BX95NLD+X4AolXnIy/oXpNNmXYnsNfW1KuDQ==",
  2648. "path": "system.security.accesscontrol/4.6.0",
  2649. "hashPath": "system.security.accesscontrol.4.6.0.nupkg.sha512"
  2650. },
  2651. "System.Security.Cryptography.Algorithms/4.3.0": {
  2652. "type": "package",
  2653. "serviceable": true,
  2654. "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  2655. "path": "system.security.cryptography.algorithms/4.3.0",
  2656. "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
  2657. },
  2658. "System.Security.Cryptography.Cng/4.5.0": {
  2659. "type": "package",
  2660. "serviceable": true,
  2661. "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  2662. "path": "system.security.cryptography.cng/4.5.0",
  2663. "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
  2664. },
  2665. "System.Security.Cryptography.Csp/4.3.0": {
  2666. "type": "package",
  2667. "serviceable": true,
  2668. "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  2669. "path": "system.security.cryptography.csp/4.3.0",
  2670. "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
  2671. },
  2672. "System.Security.Cryptography.Encoding/4.3.0": {
  2673. "type": "package",
  2674. "serviceable": true,
  2675. "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  2676. "path": "system.security.cryptography.encoding/4.3.0",
  2677. "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
  2678. },
  2679. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2680. "type": "package",
  2681. "serviceable": true,
  2682. "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  2683. "path": "system.security.cryptography.openssl/4.3.0",
  2684. "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2685. },
  2686. "System.Security.Cryptography.Primitives/4.3.0": {
  2687. "type": "package",
  2688. "serviceable": true,
  2689. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  2690. "path": "system.security.cryptography.primitives/4.3.0",
  2691. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  2692. },
  2693. "System.Security.Cryptography.ProtectedData/4.4.0": {
  2694. "type": "package",
  2695. "serviceable": true,
  2696. "sha512": "sha512-cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
  2697. "path": "system.security.cryptography.protecteddata/4.4.0",
  2698. "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512"
  2699. },
  2700. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2701. "type": "package",
  2702. "serviceable": true,
  2703. "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  2704. "path": "system.security.cryptography.x509certificates/4.3.0",
  2705. "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
  2706. },
  2707. "System.Security.Permissions/4.6.0": {
  2708. "type": "package",
  2709. "serviceable": true,
  2710. "sha512": "sha512-W3Uxog9KCZAmGYsOFHgJnb7L2q+SDbxS3vGnFHmErUnXuIjWYpIh1KVTlua7qmPdrlRCkAcTF9dImv+jciBPOQ==",
  2711. "path": "system.security.permissions/4.6.0",
  2712. "hashPath": "system.security.permissions.4.6.0.nupkg.sha512"
  2713. },
  2714. "System.Security.Principal.Windows/4.6.0": {
  2715. "type": "package",
  2716. "serviceable": true,
  2717. "sha512": "sha512-Mdukseovp0YIGaz16FMH6nbfgZkrCFOJbtXQptv0aeBO9h775Ilb9+TDwLVTKikoW7y7CY7lpoXl9zmZ5G3ndA==",
  2718. "path": "system.security.principal.windows/4.6.0",
  2719. "hashPath": "system.security.principal.windows.4.6.0.nupkg.sha512"
  2720. },
  2721. "System.Text.Encoding/4.3.0": {
  2722. "type": "package",
  2723. "serviceable": true,
  2724. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  2725. "path": "system.text.encoding/4.3.0",
  2726. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  2727. },
  2728. "System.Text.Encoding.CodePages/4.4.0": {
  2729. "type": "package",
  2730. "serviceable": true,
  2731. "sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
  2732. "path": "system.text.encoding.codepages/4.4.0",
  2733. "hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512"
  2734. },
  2735. "System.Text.Encoding.Extensions/4.3.0": {
  2736. "type": "package",
  2737. "serviceable": true,
  2738. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  2739. "path": "system.text.encoding.extensions/4.3.0",
  2740. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  2741. },
  2742. "System.Text.Encodings.Web/4.7.0": {
  2743. "type": "package",
  2744. "serviceable": true,
  2745. "sha512": "sha512-IJanJWPQvya2sbGStt3Fkdy4IaomUBSadAfYWeJDQw0zclMk9ixSvMeei6cSmTTQ6ZkGIIAbhHZVCoLR7GgX7Q==",
  2746. "path": "system.text.encodings.web/4.7.0",
  2747. "hashPath": "system.text.encodings.web.4.7.0.nupkg.sha512"
  2748. },
  2749. "System.Text.Json/4.7.1": {
  2750. "type": "package",
  2751. "serviceable": true,
  2752. "sha512": "sha512-XwzMbct3iNepJaFylN1+l8weWlFburEzXidqleSsLvSXdHSIJHEKtRVKHPlpWcFmJX6k3goPFfVgUfp40RR+bg==",
  2753. "path": "system.text.json/4.7.1",
  2754. "hashPath": "system.text.json.4.7.1.nupkg.sha512"
  2755. },
  2756. "System.Text.RegularExpressions/4.3.0": {
  2757. "type": "package",
  2758. "serviceable": true,
  2759. "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  2760. "path": "system.text.regularexpressions/4.3.0",
  2761. "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
  2762. },
  2763. "System.Threading/4.3.0": {
  2764. "type": "package",
  2765. "serviceable": true,
  2766. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  2767. "path": "system.threading/4.3.0",
  2768. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  2769. },
  2770. "System.Threading.Tasks/4.3.0": {
  2771. "type": "package",
  2772. "serviceable": true,
  2773. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  2774. "path": "system.threading.tasks/4.3.0",
  2775. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  2776. },
  2777. "System.Threading.Tasks.Extensions/4.5.2": {
  2778. "type": "package",
  2779. "serviceable": true,
  2780. "sha512": "sha512-BG/TNxDFv0svAzx8OiMXDlsHfGw623BZ8tCXw4YLhDFDvDhNUEV58jKYMGRnkbJNm7c3JNNJDiN7JBMzxRBR2w==",
  2781. "path": "system.threading.tasks.extensions/4.5.2",
  2782. "hashPath": "system.threading.tasks.extensions.4.5.2.nupkg.sha512"
  2783. },
  2784. "System.Threading.Thread/4.0.0": {
  2785. "type": "package",
  2786. "serviceable": true,
  2787. "sha512": "sha512-gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  2788. "path": "system.threading.thread/4.0.0",
  2789. "hashPath": "system.threading.thread.4.0.0.nupkg.sha512"
  2790. },
  2791. "System.Threading.ThreadPool/4.0.10": {
  2792. "type": "package",
  2793. "serviceable": true,
  2794. "sha512": "sha512-IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  2795. "path": "system.threading.threadpool/4.0.10",
  2796. "hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512"
  2797. },
  2798. "System.Threading.Timer/4.3.0": {
  2799. "type": "package",
  2800. "serviceable": true,
  2801. "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  2802. "path": "system.threading.timer/4.3.0",
  2803. "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
  2804. },
  2805. "System.Xml.ReaderWriter/4.3.0": {
  2806. "type": "package",
  2807. "serviceable": true,
  2808. "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  2809. "path": "system.xml.readerwriter/4.3.0",
  2810. "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
  2811. },
  2812. "System.Xml.XDocument/4.3.0": {
  2813. "type": "package",
  2814. "serviceable": true,
  2815. "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  2816. "path": "system.xml.xdocument/4.3.0",
  2817. "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
  2818. },
  2819. "System.Xml.XmlDocument/4.0.1": {
  2820. "type": "package",
  2821. "serviceable": true,
  2822. "sha512": "sha512-2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  2823. "path": "system.xml.xmldocument/4.0.1",
  2824. "hashPath": "system.xml.xmldocument.4.0.1.nupkg.sha512"
  2825. },
  2826. "System.Xml.XPath/4.0.1": {
  2827. "type": "package",
  2828. "serviceable": true,
  2829. "sha512": "sha512-UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  2830. "path": "system.xml.xpath/4.0.1",
  2831. "hashPath": "system.xml.xpath.4.0.1.nupkg.sha512"
  2832. },
  2833. "System.Xml.XPath.XmlDocument/4.0.1": {
  2834. "type": "package",
  2835. "serviceable": true,
  2836. "sha512": "sha512-Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  2837. "path": "system.xml.xpath.xmldocument/4.0.1",
  2838. "hashPath": "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512"
  2839. },
  2840. "WebAPIBase.Data/1.0.0": {
  2841. "type": "project",
  2842. "serviceable": false,
  2843. "sha512": ""
  2844. },
  2845. "WebAPIBase.Model/1.0.0": {
  2846. "type": "project",
  2847. "serviceable": false,
  2848. "sha512": ""
  2849. },
  2850. "WebAPIBase.Utils/1.0.0": {
  2851. "type": "project",
  2852. "serviceable": false,
  2853. "sha512": ""
  2854. }
  2855. }
  2856. }