Bowin.Common.deps.json 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v3.1",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v3.1": {
  9. "Bowin.Common/1.0.0": {
  10. "dependencies": {
  11. "MailKit": "2.6.0",
  12. "Microsoft.AspNetCore.Authentication.JwtBearer": "3.1.4",
  13. "Microsoft.CodeAnalysis": "3.6.0",
  14. "Microsoft.EntityFrameworkCore": "2.2.6",
  15. "Microsoft.EntityFrameworkCore.SqlServer": "2.2.6",
  16. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.4",
  17. "Microsoft.Extensions.Configuration.Json": "3.1.4",
  18. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  19. "NETStandard.Library": "2.0.3",
  20. "NLog": "4.7.2",
  21. "NPOI": "2.5.1",
  22. "Newtonsoft.Json": "12.0.3",
  23. "PdfRpt.Core": "1.4.2",
  24. "Quartz": "3.1.0",
  25. "SSH.NET": "2020.0.1",
  26. "System.Drawing.Common": "4.7.0",
  27. "System.Security.Cryptography.Encoding": "4.3.0",
  28. "ZKWeb.System.Drawing": "4.0.1",
  29. "Aspose.Cells": "18.4.0.0"
  30. },
  31. "runtime": {
  32. "Bowin.Common.dll": {}
  33. }
  34. },
  35. "EPPlus/4.5.3.3": {
  36. "dependencies": {
  37. "Microsoft.Extensions.Configuration.Json": "3.1.4",
  38. "System.ComponentModel.TypeConverter": "4.3.0",
  39. "System.Data.Common": "4.3.0",
  40. "System.Drawing.Common": "4.7.0",
  41. "System.Reflection": "4.3.0",
  42. "System.Security.Claims": "4.3.0",
  43. "System.Security.Cryptography.Pkcs": "4.7.0",
  44. "System.Security.Cryptography.X509Certificates": "4.3.2",
  45. "System.Text.Encoding.CodePages": "4.7.0",
  46. "System.Xml.XPath.XmlDocument": "4.3.0",
  47. "System.Xml.XmlDocument": "4.3.0"
  48. },
  49. "runtime": {
  50. "lib/netstandard2.1/EPPlus.dll": {
  51. "assemblyVersion": "4.5.3.3",
  52. "fileVersion": "4.5.3.3"
  53. }
  54. }
  55. },
  56. "Humanizer.Core/2.2.0": {
  57. "dependencies": {
  58. "NETStandard.Library": "2.0.3"
  59. },
  60. "runtime": {
  61. "lib/netstandard1.0/Humanizer.dll": {
  62. "assemblyVersion": "2.2.0.0",
  63. "fileVersion": "2.2.0.0"
  64. }
  65. }
  66. },
  67. "iTextSharp.LGPLv2.Core/1.6.2": {
  68. "dependencies": {
  69. "Portable.BouncyCastle": "1.8.6",
  70. "System.Collections.NonGeneric": "4.3.0",
  71. "System.Drawing.Common": "4.7.0",
  72. "System.Net.Requests": "4.3.0",
  73. "System.Reflection.TypeExtensions": "4.7.0",
  74. "System.Runtime.Loader": "4.3.0",
  75. "System.Security.Cryptography.Algorithms": "4.3.1",
  76. "System.Text.Encoding.CodePages": "4.7.0",
  77. "System.Xml.ReaderWriter": "4.3.1",
  78. "System.Xml.XmlDocument": "4.3.0"
  79. },
  80. "runtime": {
  81. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll": {
  82. "assemblyVersion": "1.6.2.0",
  83. "fileVersion": "1.6.2.0"
  84. }
  85. }
  86. },
  87. "MailKit/2.6.0": {
  88. "dependencies": {
  89. "MimeKit": "2.6.0",
  90. "System.Net.NameResolution": "4.3.0",
  91. "System.Net.Security": "4.3.2",
  92. "System.Runtime.Serialization.Primitives": "4.3.0"
  93. },
  94. "runtime": {
  95. "lib/netstandard2.0/MailKit.dll": {
  96. "assemblyVersion": "2.5.0.0",
  97. "fileVersion": "2.6.0.0"
  98. }
  99. }
  100. },
  101. "Microsoft.AspNetCore.Authentication.JwtBearer/3.1.4": {
  102. "dependencies": {
  103. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.6.0"
  104. },
  105. "runtime": {
  106. "lib/netcoreapp3.1/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  107. "assemblyVersion": "3.1.4.0",
  108. "fileVersion": "3.100.420.21604"
  109. }
  110. }
  111. },
  112. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  113. "runtime": {
  114. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  115. "assemblyVersion": "1.0.0.0",
  116. "fileVersion": "4.700.19.56404"
  117. }
  118. }
  119. },
  120. "Microsoft.CodeAnalysis/3.6.0": {
  121. "dependencies": {
  122. "Microsoft.CodeAnalysis.CSharp.Workspaces": "3.6.0",
  123. "Microsoft.CodeAnalysis.VisualBasic.Workspaces": "3.6.0"
  124. }
  125. },
  126. "Microsoft.CodeAnalysis.Analyzers/3.0.0": {},
  127. "Microsoft.CodeAnalysis.Common/3.6.0": {
  128. "dependencies": {
  129. "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
  130. "System.Collections.Immutable": "1.5.0",
  131. "System.Memory": "4.5.3",
  132. "System.Reflection.Metadata": "1.6.0",
  133. "System.Runtime.CompilerServices.Unsafe": "4.7.0",
  134. "System.Text.Encoding.CodePages": "4.7.0",
  135. "System.Threading.Tasks.Extensions": "4.5.3"
  136. },
  137. "runtime": {
  138. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  139. "assemblyVersion": "3.6.0.0",
  140. "fileVersion": "3.600.20.26904"
  141. }
  142. },
  143. "resources": {
  144. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  145. "locale": "cs"
  146. },
  147. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  148. "locale": "de"
  149. },
  150. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  151. "locale": "es"
  152. },
  153. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  154. "locale": "fr"
  155. },
  156. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  157. "locale": "it"
  158. },
  159. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  160. "locale": "ja"
  161. },
  162. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  163. "locale": "ko"
  164. },
  165. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  166. "locale": "pl"
  167. },
  168. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  169. "locale": "pt-BR"
  170. },
  171. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  172. "locale": "ru"
  173. },
  174. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  175. "locale": "tr"
  176. },
  177. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  178. "locale": "zh-Hans"
  179. },
  180. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  181. "locale": "zh-Hant"
  182. }
  183. }
  184. },
  185. "Microsoft.CodeAnalysis.CSharp/3.6.0": {
  186. "dependencies": {
  187. "Microsoft.CodeAnalysis.Common": "3.6.0"
  188. },
  189. "runtime": {
  190. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  191. "assemblyVersion": "3.6.0.0",
  192. "fileVersion": "3.600.20.26904"
  193. }
  194. },
  195. "resources": {
  196. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  197. "locale": "cs"
  198. },
  199. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  200. "locale": "de"
  201. },
  202. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  203. "locale": "es"
  204. },
  205. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  206. "locale": "fr"
  207. },
  208. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  209. "locale": "it"
  210. },
  211. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  212. "locale": "ja"
  213. },
  214. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  215. "locale": "ko"
  216. },
  217. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  218. "locale": "pl"
  219. },
  220. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  221. "locale": "pt-BR"
  222. },
  223. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  224. "locale": "ru"
  225. },
  226. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  227. "locale": "tr"
  228. },
  229. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  230. "locale": "zh-Hans"
  231. },
  232. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  233. "locale": "zh-Hant"
  234. }
  235. }
  236. },
  237. "Microsoft.CodeAnalysis.CSharp.Workspaces/3.6.0": {
  238. "dependencies": {
  239. "Humanizer.Core": "2.2.0",
  240. "Microsoft.CodeAnalysis.CSharp": "3.6.0",
  241. "Microsoft.CodeAnalysis.Common": "3.6.0",
  242. "Microsoft.CodeAnalysis.Workspaces.Common": "3.6.0"
  243. },
  244. "runtime": {
  245. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
  246. "assemblyVersion": "3.6.0.0",
  247. "fileVersion": "3.600.20.26904"
  248. }
  249. },
  250. "resources": {
  251. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  252. "locale": "cs"
  253. },
  254. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  255. "locale": "de"
  256. },
  257. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  258. "locale": "es"
  259. },
  260. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  261. "locale": "fr"
  262. },
  263. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  264. "locale": "it"
  265. },
  266. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  267. "locale": "ja"
  268. },
  269. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  270. "locale": "ko"
  271. },
  272. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  273. "locale": "pl"
  274. },
  275. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  276. "locale": "pt-BR"
  277. },
  278. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  279. "locale": "ru"
  280. },
  281. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  282. "locale": "tr"
  283. },
  284. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  285. "locale": "zh-Hans"
  286. },
  287. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  288. "locale": "zh-Hant"
  289. }
  290. }
  291. },
  292. "Microsoft.CodeAnalysis.VisualBasic/3.6.0": {
  293. "dependencies": {
  294. "Microsoft.CodeAnalysis.Common": "3.6.0"
  295. },
  296. "runtime": {
  297. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll": {
  298. "assemblyVersion": "3.6.0.0",
  299. "fileVersion": "3.600.20.26904"
  300. }
  301. },
  302. "resources": {
  303. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  304. "locale": "cs"
  305. },
  306. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  307. "locale": "de"
  308. },
  309. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  310. "locale": "es"
  311. },
  312. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  313. "locale": "fr"
  314. },
  315. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  316. "locale": "it"
  317. },
  318. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  319. "locale": "ja"
  320. },
  321. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  322. "locale": "ko"
  323. },
  324. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  325. "locale": "pl"
  326. },
  327. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  328. "locale": "pt-BR"
  329. },
  330. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  331. "locale": "ru"
  332. },
  333. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  334. "locale": "tr"
  335. },
  336. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  337. "locale": "zh-Hans"
  338. },
  339. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  340. "locale": "zh-Hant"
  341. }
  342. }
  343. },
  344. "Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.6.0": {
  345. "dependencies": {
  346. "Microsoft.CodeAnalysis.Common": "3.6.0",
  347. "Microsoft.CodeAnalysis.VisualBasic": "3.6.0",
  348. "Microsoft.CodeAnalysis.Workspaces.Common": "3.6.0"
  349. },
  350. "runtime": {
  351. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": {
  352. "assemblyVersion": "3.6.0.0",
  353. "fileVersion": "3.600.20.26904"
  354. }
  355. },
  356. "resources": {
  357. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  358. "locale": "cs"
  359. },
  360. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  361. "locale": "de"
  362. },
  363. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  364. "locale": "es"
  365. },
  366. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  367. "locale": "fr"
  368. },
  369. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  370. "locale": "it"
  371. },
  372. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  373. "locale": "ja"
  374. },
  375. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  376. "locale": "ko"
  377. },
  378. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  379. "locale": "pl"
  380. },
  381. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  382. "locale": "pt-BR"
  383. },
  384. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  385. "locale": "ru"
  386. },
  387. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  388. "locale": "tr"
  389. },
  390. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  391. "locale": "zh-Hans"
  392. },
  393. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  394. "locale": "zh-Hant"
  395. }
  396. }
  397. },
  398. "Microsoft.CodeAnalysis.Workspaces.Common/3.6.0": {
  399. "dependencies": {
  400. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  401. "Microsoft.CodeAnalysis.Common": "3.6.0",
  402. "System.Composition": "1.0.31"
  403. },
  404. "runtime": {
  405. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
  406. "assemblyVersion": "3.6.0.0",
  407. "fileVersion": "3.600.20.26904"
  408. }
  409. },
  410. "resources": {
  411. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  412. "locale": "cs"
  413. },
  414. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  415. "locale": "de"
  416. },
  417. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  418. "locale": "es"
  419. },
  420. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  421. "locale": "fr"
  422. },
  423. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  424. "locale": "it"
  425. },
  426. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  427. "locale": "ja"
  428. },
  429. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  430. "locale": "ko"
  431. },
  432. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  433. "locale": "pl"
  434. },
  435. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  436. "locale": "pt-BR"
  437. },
  438. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  439. "locale": "ru"
  440. },
  441. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  442. "locale": "tr"
  443. },
  444. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  445. "locale": "zh-Hans"
  446. },
  447. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  448. "locale": "zh-Hant"
  449. }
  450. }
  451. },
  452. "Microsoft.CSharp/4.5.0": {},
  453. "Microsoft.Data.SqlClient/2.0.0": {
  454. "dependencies": {
  455. "Microsoft.Data.SqlClient.SNI.runtime": "2.0.0",
  456. "Microsoft.Identity.Client": "4.14.0",
  457. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  458. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.6.0",
  459. "Microsoft.Win32.Registry": "4.7.0",
  460. "System.Configuration.ConfigurationManager": "4.7.0",
  461. "System.Diagnostics.DiagnosticSource": "4.7.1",
  462. "System.Runtime.Caching": "4.7.0",
  463. "System.Security.Principal.Windows": "4.7.0",
  464. "System.Text.Encoding.CodePages": "4.7.0"
  465. },
  466. "runtime": {
  467. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  468. "assemblyVersion": "2.0.20168.4",
  469. "fileVersion": "2.0.20168.4"
  470. }
  471. },
  472. "runtimeTargets": {
  473. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  474. "rid": "unix",
  475. "assetType": "runtime",
  476. "assemblyVersion": "2.0.20168.4",
  477. "fileVersion": "2.0.20168.4"
  478. },
  479. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  480. "rid": "win",
  481. "assetType": "runtime",
  482. "assemblyVersion": "2.0.20168.4",
  483. "fileVersion": "2.0.20168.4"
  484. }
  485. }
  486. },
  487. "Microsoft.Data.SqlClient.SNI.runtime/2.0.0": {
  488. "runtimeTargets": {
  489. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  490. "rid": "win-arm",
  491. "assetType": "native",
  492. "fileVersion": "2.0.0.0"
  493. },
  494. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb": {
  495. "rid": "win-arm",
  496. "assetType": "native",
  497. "fileVersion": "0.0.0.0"
  498. },
  499. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  500. "rid": "win-arm64",
  501. "assetType": "native",
  502. "fileVersion": "2.0.0.0"
  503. },
  504. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb": {
  505. "rid": "win-arm64",
  506. "assetType": "native",
  507. "fileVersion": "0.0.0.0"
  508. },
  509. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  510. "rid": "win-x64",
  511. "assetType": "native",
  512. "fileVersion": "2.0.0.0"
  513. },
  514. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb": {
  515. "rid": "win-x64",
  516. "assetType": "native",
  517. "fileVersion": "0.0.0.0"
  518. },
  519. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  520. "rid": "win-x86",
  521. "assetType": "native",
  522. "fileVersion": "2.0.0.0"
  523. },
  524. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb": {
  525. "rid": "win-x86",
  526. "assetType": "native",
  527. "fileVersion": "0.0.0.0"
  528. }
  529. }
  530. },
  531. "Microsoft.EntityFrameworkCore/2.2.6": {
  532. "dependencies": {
  533. "Microsoft.EntityFrameworkCore.Abstractions": "2.2.6",
  534. "Microsoft.EntityFrameworkCore.Analyzers": "2.2.6",
  535. "Microsoft.Extensions.Caching.Memory": "2.2.0",
  536. "Microsoft.Extensions.DependencyInjection": "2.2.0",
  537. "Microsoft.Extensions.Logging": "2.2.0",
  538. "Remotion.Linq": "2.2.0",
  539. "System.Collections.Immutable": "1.5.0",
  540. "System.ComponentModel.Annotations": "4.7.0",
  541. "System.Diagnostics.DiagnosticSource": "4.7.1",
  542. "System.Interactive.Async": "3.2.0"
  543. },
  544. "runtime": {
  545. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
  546. "assemblyVersion": "2.2.6.0",
  547. "fileVersion": "2.2.6.19169"
  548. }
  549. }
  550. },
  551. "Microsoft.EntityFrameworkCore.Abstractions/2.2.6": {
  552. "runtime": {
  553. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  554. "assemblyVersion": "2.2.6.0",
  555. "fileVersion": "2.2.6.19169"
  556. }
  557. }
  558. },
  559. "Microsoft.EntityFrameworkCore.Analyzers/2.2.6": {},
  560. "Microsoft.EntityFrameworkCore.Relational/2.2.6": {
  561. "dependencies": {
  562. "Microsoft.EntityFrameworkCore": "2.2.6"
  563. },
  564. "runtime": {
  565. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  566. "assemblyVersion": "2.2.6.0",
  567. "fileVersion": "2.2.6.19169"
  568. }
  569. }
  570. },
  571. "Microsoft.EntityFrameworkCore.SqlServer/2.2.6": {
  572. "dependencies": {
  573. "Microsoft.EntityFrameworkCore.Relational": "2.2.6",
  574. "System.Data.SqlClient": "4.8.0"
  575. },
  576. "runtime": {
  577. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  578. "assemblyVersion": "2.2.6.0",
  579. "fileVersion": "2.2.6.19169"
  580. }
  581. }
  582. },
  583. "Microsoft.Extensions.Caching.Abstractions/2.2.0": {
  584. "dependencies": {
  585. "Microsoft.Extensions.Primitives": "3.1.4"
  586. }
  587. },
  588. "Microsoft.Extensions.Caching.Memory/2.2.0": {
  589. "dependencies": {
  590. "Microsoft.Extensions.Caching.Abstractions": "2.2.0",
  591. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  592. "Microsoft.Extensions.Options": "2.2.0"
  593. }
  594. },
  595. "Microsoft.Extensions.Configuration/3.1.4": {
  596. "dependencies": {
  597. "Microsoft.Extensions.Configuration.Abstractions": "3.1.4"
  598. },
  599. "runtime": {
  600. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {
  601. "assemblyVersion": "3.1.4.0",
  602. "fileVersion": "3.100.420.21409"
  603. }
  604. }
  605. },
  606. "Microsoft.Extensions.Configuration.Abstractions/3.1.4": {
  607. "dependencies": {
  608. "Microsoft.Extensions.Primitives": "3.1.4"
  609. },
  610. "runtime": {
  611. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {
  612. "assemblyVersion": "3.1.4.0",
  613. "fileVersion": "3.100.420.21409"
  614. }
  615. }
  616. },
  617. "Microsoft.Extensions.Configuration.Binder/2.2.0": {
  618. "dependencies": {
  619. "Microsoft.Extensions.Configuration": "3.1.4"
  620. }
  621. },
  622. "Microsoft.Extensions.Configuration.FileExtensions/3.1.4": {
  623. "dependencies": {
  624. "Microsoft.Extensions.Configuration": "3.1.4",
  625. "Microsoft.Extensions.FileProviders.Physical": "3.1.4"
  626. },
  627. "runtime": {
  628. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  629. "assemblyVersion": "3.1.4.0",
  630. "fileVersion": "3.100.420.21409"
  631. }
  632. }
  633. },
  634. "Microsoft.Extensions.Configuration.Json/3.1.4": {
  635. "dependencies": {
  636. "Microsoft.Extensions.Configuration": "3.1.4",
  637. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.4"
  638. },
  639. "runtime": {
  640. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {
  641. "assemblyVersion": "3.1.4.0",
  642. "fileVersion": "3.100.420.21409"
  643. }
  644. }
  645. },
  646. "Microsoft.Extensions.DependencyInjection/2.2.0": {
  647. "dependencies": {
  648. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0"
  649. }
  650. },
  651. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.0": {},
  652. "Microsoft.Extensions.FileProviders.Abstractions/3.1.4": {
  653. "dependencies": {
  654. "Microsoft.Extensions.Primitives": "3.1.4"
  655. },
  656. "runtime": {
  657. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  658. "assemblyVersion": "3.1.4.0",
  659. "fileVersion": "3.100.420.21409"
  660. }
  661. }
  662. },
  663. "Microsoft.Extensions.FileProviders.Physical/3.1.4": {
  664. "dependencies": {
  665. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.4",
  666. "Microsoft.Extensions.FileSystemGlobbing": "3.1.4"
  667. },
  668. "runtime": {
  669. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {
  670. "assemblyVersion": "3.1.4.0",
  671. "fileVersion": "3.100.420.21409"
  672. }
  673. }
  674. },
  675. "Microsoft.Extensions.FileSystemGlobbing/3.1.4": {
  676. "runtime": {
  677. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  678. "assemblyVersion": "3.1.4.0",
  679. "fileVersion": "3.100.420.21409"
  680. }
  681. }
  682. },
  683. "Microsoft.Extensions.Logging/2.2.0": {
  684. "dependencies": {
  685. "Microsoft.Extensions.Configuration.Binder": "2.2.0",
  686. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  687. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  688. "Microsoft.Extensions.Options": "2.2.0"
  689. }
  690. },
  691. "Microsoft.Extensions.Logging.Abstractions/3.1.6": {
  692. "runtime": {
  693. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  694. "assemblyVersion": "3.1.6.0",
  695. "fileVersion": "3.100.620.31605"
  696. }
  697. }
  698. },
  699. "Microsoft.Extensions.Options/2.2.0": {
  700. "dependencies": {
  701. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.0",
  702. "Microsoft.Extensions.Primitives": "3.1.4",
  703. "System.ComponentModel.Annotations": "4.7.0"
  704. }
  705. },
  706. "Microsoft.Extensions.Primitives/3.1.4": {
  707. "runtime": {
  708. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
  709. "assemblyVersion": "3.1.4.0",
  710. "fileVersion": "3.100.420.21409"
  711. }
  712. }
  713. },
  714. "Microsoft.Identity.Client/4.14.0": {
  715. "dependencies": {
  716. "Microsoft.CSharp": "4.5.0",
  717. "System.ComponentModel.TypeConverter": "4.3.0",
  718. "System.Net.NameResolution": "4.3.0",
  719. "System.Private.Uri": "4.3.2",
  720. "System.Runtime.Serialization.Formatters": "4.3.0",
  721. "System.Runtime.Serialization.Json": "4.3.0",
  722. "System.Runtime.Serialization.Primitives": "4.3.0",
  723. "System.Security.SecureString": "4.3.0",
  724. "System.Xml.XDocument": "4.3.0"
  725. },
  726. "runtime": {
  727. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  728. "assemblyVersion": "4.14.0.0",
  729. "fileVersion": "4.14.0.0"
  730. }
  731. }
  732. },
  733. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  734. "dependencies": {
  735. "Microsoft.IdentityModel.Tokens": "5.6.0",
  736. "Newtonsoft.Json": "12.0.3"
  737. },
  738. "runtime": {
  739. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  740. "assemblyVersion": "5.6.0.0",
  741. "fileVersion": "5.6.0.61018"
  742. }
  743. }
  744. },
  745. "Microsoft.IdentityModel.Logging/5.6.0": {
  746. "runtime": {
  747. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  748. "assemblyVersion": "5.6.0.0",
  749. "fileVersion": "5.6.0.61018"
  750. }
  751. }
  752. },
  753. "Microsoft.IdentityModel.Protocols/5.6.0": {
  754. "dependencies": {
  755. "Microsoft.IdentityModel.Logging": "5.6.0",
  756. "Microsoft.IdentityModel.Tokens": "5.6.0"
  757. },
  758. "runtime": {
  759. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  760. "assemblyVersion": "5.6.0.0",
  761. "fileVersion": "5.6.0.61018"
  762. }
  763. }
  764. },
  765. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.6.0": {
  766. "dependencies": {
  767. "Microsoft.IdentityModel.Protocols": "5.6.0",
  768. "Newtonsoft.Json": "12.0.3",
  769. "System.IdentityModel.Tokens.Jwt": "5.6.0"
  770. },
  771. "runtime": {
  772. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  773. "assemblyVersion": "5.6.0.0",
  774. "fileVersion": "5.6.0.61018"
  775. }
  776. }
  777. },
  778. "Microsoft.IdentityModel.Tokens/5.6.0": {
  779. "dependencies": {
  780. "Microsoft.IdentityModel.Logging": "5.6.0",
  781. "Newtonsoft.Json": "12.0.3",
  782. "System.Security.Cryptography.Cng": "4.7.0"
  783. },
  784. "runtime": {
  785. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  786. "assemblyVersion": "5.6.0.0",
  787. "fileVersion": "5.6.0.61018"
  788. }
  789. }
  790. },
  791. "Microsoft.NETCore.Platforms/3.1.0": {},
  792. "Microsoft.NETCore.Targets/1.1.3": {},
  793. "Microsoft.Win32.Primitives/4.3.0": {
  794. "dependencies": {
  795. "Microsoft.NETCore.Platforms": "3.1.0",
  796. "Microsoft.NETCore.Targets": "1.1.3",
  797. "System.Runtime": "4.3.0"
  798. }
  799. },
  800. "Microsoft.Win32.Registry/4.7.0": {
  801. "dependencies": {
  802. "System.Security.AccessControl": "4.7.0",
  803. "System.Security.Principal.Windows": "4.7.0"
  804. }
  805. },
  806. "Microsoft.Win32.SystemEvents/4.7.0": {
  807. "dependencies": {
  808. "Microsoft.NETCore.Platforms": "3.1.0"
  809. }
  810. },
  811. "MimeKit/2.6.0": {
  812. "dependencies": {
  813. "Portable.BouncyCastle": "1.8.6",
  814. "System.Data.Common": "4.3.0",
  815. "System.Globalization.Extensions": "4.3.0",
  816. "System.Reflection.TypeExtensions": "4.7.0",
  817. "System.Text.Encoding.CodePages": "4.7.0"
  818. },
  819. "runtime": {
  820. "lib/netstandard2.0/MimeKit.dll": {
  821. "assemblyVersion": "2.6.0.0",
  822. "fileVersion": "2.6.0.0"
  823. }
  824. }
  825. },
  826. "NETStandard.Library/2.0.3": {
  827. "dependencies": {
  828. "Microsoft.NETCore.Platforms": "3.1.0"
  829. }
  830. },
  831. "Newtonsoft.Json/12.0.3": {
  832. "runtime": {
  833. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  834. "assemblyVersion": "12.0.0.0",
  835. "fileVersion": "12.0.3.23909"
  836. }
  837. }
  838. },
  839. "NLog/4.7.2": {
  840. "runtime": {
  841. "lib/netstandard2.0/NLog.dll": {
  842. "assemblyVersion": "4.0.0.0",
  843. "fileVersion": "4.7.2.11786"
  844. }
  845. }
  846. },
  847. "NPOI/2.5.1": {
  848. "dependencies": {
  849. "Portable.BouncyCastle": "1.8.6",
  850. "SharpZipLib": "1.2.0",
  851. "System.Configuration.ConfigurationManager": "4.7.0",
  852. "System.Drawing.Common": "4.7.0"
  853. },
  854. "runtime": {
  855. "lib/netstandard2.0/NPOI.OOXML.dll": {
  856. "assemblyVersion": "2.5.1.0",
  857. "fileVersion": "2.5.1.0"
  858. },
  859. "lib/netstandard2.0/NPOI.OpenXml4Net.dll": {
  860. "assemblyVersion": "2.5.1.0",
  861. "fileVersion": "2.5.1.0"
  862. },
  863. "lib/netstandard2.0/NPOI.OpenXmlFormats.dll": {
  864. "assemblyVersion": "2.5.1.0",
  865. "fileVersion": "2.5.1.0"
  866. },
  867. "lib/netstandard2.0/NPOI.dll": {
  868. "assemblyVersion": "2.5.1.0",
  869. "fileVersion": "2.5.1.0"
  870. }
  871. }
  872. },
  873. "PdfRpt.Core/1.4.2": {
  874. "dependencies": {
  875. "EPPlus": "4.5.3.3",
  876. "Portable.BouncyCastle": "1.8.6",
  877. "System.ComponentModel.Annotations": "4.7.0",
  878. "System.Data.SqlClient": "4.8.0",
  879. "System.Xml.XPath.XDocument": "4.3.0",
  880. "iTextSharp.LGPLv2.Core": "1.6.2"
  881. },
  882. "runtime": {
  883. "lib/netstandard2.0/PdfRpt.Core.dll": {
  884. "assemblyVersion": "1.4.2.0",
  885. "fileVersion": "1.4.2.0"
  886. }
  887. }
  888. },
  889. "Portable.BouncyCastle/1.8.6": {
  890. "runtime": {
  891. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  892. "assemblyVersion": "1.8.6.0",
  893. "fileVersion": "1.8.6.1"
  894. }
  895. }
  896. },
  897. "Quartz/3.1.0": {
  898. "dependencies": {
  899. "Microsoft.Data.SqlClient": "2.0.0",
  900. "Microsoft.Extensions.Logging.Abstractions": "3.1.6",
  901. "System.Configuration.ConfigurationManager": "4.7.0",
  902. "System.Diagnostics.DiagnosticSource": "4.7.1"
  903. },
  904. "runtime": {
  905. "lib/netstandard2.0/Quartz.dll": {
  906. "assemblyVersion": "3.1.0.0",
  907. "fileVersion": "3.1.0.0"
  908. }
  909. }
  910. },
  911. "Remotion.Linq/2.2.0": {
  912. "dependencies": {
  913. "System.Collections": "4.3.0",
  914. "System.Diagnostics.Debug": "4.3.0",
  915. "System.Linq": "4.3.0",
  916. "System.Linq.Expressions": "4.3.0",
  917. "System.Linq.Queryable": "4.0.1",
  918. "System.ObjectModel": "4.3.0",
  919. "System.Reflection": "4.3.0",
  920. "System.Reflection.Extensions": "4.3.0",
  921. "System.Runtime": "4.3.0",
  922. "System.Runtime.Extensions": "4.3.0",
  923. "System.Threading": "4.3.0"
  924. },
  925. "runtime": {
  926. "lib/netstandard1.0/Remotion.Linq.dll": {
  927. "assemblyVersion": "2.2.0.0",
  928. "fileVersion": "2.2.0.30000"
  929. }
  930. }
  931. },
  932. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  933. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  934. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  935. "runtime.native.System/4.3.0": {
  936. "dependencies": {
  937. "Microsoft.NETCore.Platforms": "3.1.0",
  938. "Microsoft.NETCore.Targets": "1.1.3"
  939. }
  940. },
  941. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  942. "dependencies": {
  943. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  944. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  945. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  946. }
  947. },
  948. "runtime.native.System.Net.Http/4.3.0": {
  949. "dependencies": {
  950. "Microsoft.NETCore.Platforms": "3.1.0",
  951. "Microsoft.NETCore.Targets": "1.1.3"
  952. }
  953. },
  954. "runtime.native.System.Net.Security/4.3.0": {
  955. "dependencies": {
  956. "Microsoft.NETCore.Platforms": "3.1.0",
  957. "Microsoft.NETCore.Targets": "1.1.3"
  958. }
  959. },
  960. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  961. "dependencies": {
  962. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.1"
  963. }
  964. },
  965. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  966. "dependencies": {
  967. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  968. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  969. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  970. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  971. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  972. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  973. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  974. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  975. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  976. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  977. }
  978. },
  979. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  980. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  981. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {},
  982. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  983. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  984. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  985. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  986. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  987. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  988. "runtimeTargets": {
  989. "runtimes/win-arm64/native/sni.dll": {
  990. "rid": "win-arm64",
  991. "assetType": "native",
  992. "fileVersion": "4.6.25512.1"
  993. }
  994. }
  995. },
  996. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  997. "runtimeTargets": {
  998. "runtimes/win-x64/native/sni.dll": {
  999. "rid": "win-x64",
  1000. "assetType": "native",
  1001. "fileVersion": "4.6.25512.1"
  1002. }
  1003. }
  1004. },
  1005. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1006. "runtimeTargets": {
  1007. "runtimes/win-x86/native/sni.dll": {
  1008. "rid": "win-x86",
  1009. "assetType": "native",
  1010. "fileVersion": "4.6.25512.1"
  1011. }
  1012. }
  1013. },
  1014. "SharpZipLib/1.2.0": {
  1015. "runtime": {
  1016. "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {
  1017. "assemblyVersion": "1.2.0.246",
  1018. "fileVersion": "1.2.0.246"
  1019. }
  1020. }
  1021. },
  1022. "SSH.NET/2020.0.1": {
  1023. "dependencies": {
  1024. "SshNet.Security.Cryptography": "1.3.0"
  1025. },
  1026. "runtime": {
  1027. "lib/netstandard2.0/Renci.SshNet.dll": {
  1028. "assemblyVersion": "2020.0.1.0",
  1029. "fileVersion": "2020.0.1.0"
  1030. }
  1031. }
  1032. },
  1033. "SshNet.Security.Cryptography/1.3.0": {
  1034. "runtime": {
  1035. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1036. "assemblyVersion": "1.3.0.0",
  1037. "fileVersion": "1.3.0.0"
  1038. }
  1039. }
  1040. },
  1041. "System.Collections/4.3.0": {
  1042. "dependencies": {
  1043. "Microsoft.NETCore.Platforms": "3.1.0",
  1044. "Microsoft.NETCore.Targets": "1.1.3",
  1045. "System.Runtime": "4.3.0"
  1046. }
  1047. },
  1048. "System.Collections.Concurrent/4.3.0": {
  1049. "dependencies": {
  1050. "System.Collections": "4.3.0",
  1051. "System.Diagnostics.Debug": "4.3.0",
  1052. "System.Diagnostics.Tracing": "4.3.0",
  1053. "System.Globalization": "4.3.0",
  1054. "System.Reflection": "4.3.0",
  1055. "System.Resources.ResourceManager": "4.3.0",
  1056. "System.Runtime": "4.3.0",
  1057. "System.Runtime.Extensions": "4.3.0",
  1058. "System.Threading": "4.3.0",
  1059. "System.Threading.Tasks": "4.3.0"
  1060. }
  1061. },
  1062. "System.Collections.Immutable/1.5.0": {},
  1063. "System.Collections.NonGeneric/4.3.0": {
  1064. "dependencies": {
  1065. "System.Diagnostics.Debug": "4.3.0",
  1066. "System.Globalization": "4.3.0",
  1067. "System.Resources.ResourceManager": "4.3.0",
  1068. "System.Runtime": "4.3.0",
  1069. "System.Runtime.Extensions": "4.3.0",
  1070. "System.Threading": "4.3.0"
  1071. }
  1072. },
  1073. "System.Collections.Specialized/4.3.0": {
  1074. "dependencies": {
  1075. "System.Collections.NonGeneric": "4.3.0",
  1076. "System.Globalization": "4.3.0",
  1077. "System.Globalization.Extensions": "4.3.0",
  1078. "System.Resources.ResourceManager": "4.3.0",
  1079. "System.Runtime": "4.3.0",
  1080. "System.Runtime.Extensions": "4.3.0",
  1081. "System.Threading": "4.3.0"
  1082. }
  1083. },
  1084. "System.ComponentModel/4.3.0": {
  1085. "dependencies": {
  1086. "System.Runtime": "4.3.0"
  1087. }
  1088. },
  1089. "System.ComponentModel.Annotations/4.7.0": {},
  1090. "System.ComponentModel.Primitives/4.3.0": {
  1091. "dependencies": {
  1092. "System.ComponentModel": "4.3.0",
  1093. "System.Resources.ResourceManager": "4.3.0",
  1094. "System.Runtime": "4.3.0"
  1095. }
  1096. },
  1097. "System.ComponentModel.TypeConverter/4.3.0": {
  1098. "dependencies": {
  1099. "System.Collections": "4.3.0",
  1100. "System.Collections.NonGeneric": "4.3.0",
  1101. "System.Collections.Specialized": "4.3.0",
  1102. "System.ComponentModel": "4.3.0",
  1103. "System.ComponentModel.Primitives": "4.3.0",
  1104. "System.Globalization": "4.3.0",
  1105. "System.Linq": "4.3.0",
  1106. "System.Reflection": "4.3.0",
  1107. "System.Reflection.Extensions": "4.3.0",
  1108. "System.Reflection.Primitives": "4.3.0",
  1109. "System.Reflection.TypeExtensions": "4.7.0",
  1110. "System.Resources.ResourceManager": "4.3.0",
  1111. "System.Runtime": "4.3.0",
  1112. "System.Runtime.Extensions": "4.3.0",
  1113. "System.Threading": "4.3.0"
  1114. }
  1115. },
  1116. "System.Composition/1.0.31": {
  1117. "dependencies": {
  1118. "System.Composition.AttributedModel": "1.0.31",
  1119. "System.Composition.Convention": "1.0.31",
  1120. "System.Composition.Hosting": "1.0.31",
  1121. "System.Composition.Runtime": "1.0.31",
  1122. "System.Composition.TypedParts": "1.0.31"
  1123. }
  1124. },
  1125. "System.Composition.AttributedModel/1.0.31": {
  1126. "dependencies": {
  1127. "System.Reflection": "4.3.0",
  1128. "System.Runtime": "4.3.0"
  1129. },
  1130. "runtime": {
  1131. "lib/netstandard1.0/System.Composition.AttributedModel.dll": {
  1132. "assemblyVersion": "1.0.31.0",
  1133. "fileVersion": "4.6.24705.1"
  1134. }
  1135. }
  1136. },
  1137. "System.Composition.Convention/1.0.31": {
  1138. "dependencies": {
  1139. "System.Collections": "4.3.0",
  1140. "System.Composition.AttributedModel": "1.0.31",
  1141. "System.Diagnostics.Debug": "4.3.0",
  1142. "System.Diagnostics.Tools": "4.3.0",
  1143. "System.Globalization": "4.3.0",
  1144. "System.Linq": "4.3.0",
  1145. "System.Linq.Expressions": "4.3.0",
  1146. "System.Reflection": "4.3.0",
  1147. "System.Reflection.Extensions": "4.3.0",
  1148. "System.Resources.ResourceManager": "4.3.0",
  1149. "System.Runtime": "4.3.0",
  1150. "System.Threading": "4.3.0"
  1151. },
  1152. "runtime": {
  1153. "lib/netstandard1.0/System.Composition.Convention.dll": {
  1154. "assemblyVersion": "1.0.31.0",
  1155. "fileVersion": "4.6.24705.1"
  1156. }
  1157. }
  1158. },
  1159. "System.Composition.Hosting/1.0.31": {
  1160. "dependencies": {
  1161. "System.Collections": "4.3.0",
  1162. "System.Composition.Runtime": "1.0.31",
  1163. "System.Diagnostics.Debug": "4.3.0",
  1164. "System.Diagnostics.Tools": "4.3.0",
  1165. "System.Globalization": "4.3.0",
  1166. "System.Linq": "4.3.0",
  1167. "System.Linq.Expressions": "4.3.0",
  1168. "System.ObjectModel": "4.3.0",
  1169. "System.Reflection": "4.3.0",
  1170. "System.Reflection.Extensions": "4.3.0",
  1171. "System.Resources.ResourceManager": "4.3.0",
  1172. "System.Runtime": "4.3.0",
  1173. "System.Threading": "4.3.0"
  1174. },
  1175. "runtime": {
  1176. "lib/netstandard1.0/System.Composition.Hosting.dll": {
  1177. "assemblyVersion": "1.0.31.0",
  1178. "fileVersion": "4.6.24705.1"
  1179. }
  1180. }
  1181. },
  1182. "System.Composition.Runtime/1.0.31": {
  1183. "dependencies": {
  1184. "System.Collections": "4.3.0",
  1185. "System.Diagnostics.Debug": "4.3.0",
  1186. "System.Diagnostics.Tools": "4.3.0",
  1187. "System.Globalization": "4.3.0",
  1188. "System.Linq": "4.3.0",
  1189. "System.Reflection": "4.3.0",
  1190. "System.Resources.ResourceManager": "4.3.0",
  1191. "System.Runtime": "4.3.0"
  1192. },
  1193. "runtime": {
  1194. "lib/netstandard1.0/System.Composition.Runtime.dll": {
  1195. "assemblyVersion": "1.0.31.0",
  1196. "fileVersion": "4.6.24705.1"
  1197. }
  1198. }
  1199. },
  1200. "System.Composition.TypedParts/1.0.31": {
  1201. "dependencies": {
  1202. "System.Collections": "4.3.0",
  1203. "System.Composition.AttributedModel": "1.0.31",
  1204. "System.Composition.Hosting": "1.0.31",
  1205. "System.Composition.Runtime": "1.0.31",
  1206. "System.Diagnostics.Debug": "4.3.0",
  1207. "System.Diagnostics.Tools": "4.3.0",
  1208. "System.Globalization": "4.3.0",
  1209. "System.Linq": "4.3.0",
  1210. "System.Linq.Expressions": "4.3.0",
  1211. "System.Reflection": "4.3.0",
  1212. "System.Reflection.Extensions": "4.3.0",
  1213. "System.Resources.ResourceManager": "4.3.0",
  1214. "System.Runtime": "4.3.0",
  1215. "System.Runtime.Extensions": "4.3.0"
  1216. },
  1217. "runtime": {
  1218. "lib/netstandard1.0/System.Composition.TypedParts.dll": {
  1219. "assemblyVersion": "1.0.31.0",
  1220. "fileVersion": "4.6.24705.1"
  1221. }
  1222. }
  1223. },
  1224. "System.Configuration.ConfigurationManager/4.7.0": {
  1225. "dependencies": {
  1226. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1227. "System.Security.Permissions": "4.7.0"
  1228. },
  1229. "runtime": {
  1230. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1231. "assemblyVersion": "4.0.3.0",
  1232. "fileVersion": "4.700.19.56404"
  1233. }
  1234. }
  1235. },
  1236. "System.Data.Common/4.3.0": {
  1237. "dependencies": {
  1238. "System.Collections": "4.3.0",
  1239. "System.Globalization": "4.3.0",
  1240. "System.IO": "4.3.0",
  1241. "System.Resources.ResourceManager": "4.3.0",
  1242. "System.Runtime": "4.3.0",
  1243. "System.Runtime.Extensions": "4.3.0",
  1244. "System.Text.RegularExpressions": "4.3.0",
  1245. "System.Threading.Tasks": "4.3.0"
  1246. }
  1247. },
  1248. "System.Data.SqlClient/4.8.0": {
  1249. "dependencies": {
  1250. "Microsoft.Win32.Registry": "4.7.0",
  1251. "System.Security.Principal.Windows": "4.7.0",
  1252. "runtime.native.System.Data.SqlClient.sni": "4.7.0"
  1253. },
  1254. "runtime": {
  1255. "lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1256. "assemblyVersion": "4.6.1.0",
  1257. "fileVersion": "4.700.19.56404"
  1258. }
  1259. },
  1260. "runtimeTargets": {
  1261. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1262. "rid": "unix",
  1263. "assetType": "runtime",
  1264. "assemblyVersion": "4.6.1.0",
  1265. "fileVersion": "4.700.19.56404"
  1266. },
  1267. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1268. "rid": "win",
  1269. "assetType": "runtime",
  1270. "assemblyVersion": "4.6.1.0",
  1271. "fileVersion": "4.700.19.56404"
  1272. }
  1273. }
  1274. },
  1275. "System.Diagnostics.Debug/4.3.0": {
  1276. "dependencies": {
  1277. "Microsoft.NETCore.Platforms": "3.1.0",
  1278. "Microsoft.NETCore.Targets": "1.1.3",
  1279. "System.Runtime": "4.3.0"
  1280. }
  1281. },
  1282. "System.Diagnostics.DiagnosticSource/4.7.1": {
  1283. "runtime": {
  1284. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  1285. "assemblyVersion": "4.0.5.0",
  1286. "fileVersion": "4.700.20.21406"
  1287. }
  1288. }
  1289. },
  1290. "System.Diagnostics.Tools/4.3.0": {
  1291. "dependencies": {
  1292. "Microsoft.NETCore.Platforms": "3.1.0",
  1293. "Microsoft.NETCore.Targets": "1.1.3",
  1294. "System.Runtime": "4.3.0"
  1295. }
  1296. },
  1297. "System.Diagnostics.Tracing/4.3.0": {
  1298. "dependencies": {
  1299. "Microsoft.NETCore.Platforms": "3.1.0",
  1300. "Microsoft.NETCore.Targets": "1.1.3",
  1301. "System.Runtime": "4.3.0"
  1302. }
  1303. },
  1304. "System.Drawing.Common/4.7.0": {
  1305. "dependencies": {
  1306. "Microsoft.NETCore.Platforms": "3.1.0",
  1307. "Microsoft.Win32.SystemEvents": "4.7.0"
  1308. }
  1309. },
  1310. "System.Globalization/4.3.0": {
  1311. "dependencies": {
  1312. "Microsoft.NETCore.Platforms": "3.1.0",
  1313. "Microsoft.NETCore.Targets": "1.1.3",
  1314. "System.Runtime": "4.3.0"
  1315. }
  1316. },
  1317. "System.Globalization.Calendars/4.3.0": {
  1318. "dependencies": {
  1319. "Microsoft.NETCore.Platforms": "3.1.0",
  1320. "Microsoft.NETCore.Targets": "1.1.3",
  1321. "System.Globalization": "4.3.0",
  1322. "System.Runtime": "4.3.0"
  1323. }
  1324. },
  1325. "System.Globalization.Extensions/4.3.0": {
  1326. "dependencies": {
  1327. "Microsoft.NETCore.Platforms": "3.1.0",
  1328. "System.Globalization": "4.3.0",
  1329. "System.Resources.ResourceManager": "4.3.0",
  1330. "System.Runtime": "4.3.0",
  1331. "System.Runtime.Extensions": "4.3.0",
  1332. "System.Runtime.InteropServices": "4.3.0"
  1333. }
  1334. },
  1335. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  1336. "dependencies": {
  1337. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  1338. "Microsoft.IdentityModel.Tokens": "5.6.0",
  1339. "Newtonsoft.Json": "12.0.3"
  1340. },
  1341. "runtime": {
  1342. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1343. "assemblyVersion": "5.6.0.0",
  1344. "fileVersion": "5.6.0.61018"
  1345. }
  1346. }
  1347. },
  1348. "System.Interactive.Async/3.2.0": {
  1349. "runtime": {
  1350. "lib/netstandard2.0/System.Interactive.Async.dll": {
  1351. "assemblyVersion": "3.2.0.0",
  1352. "fileVersion": "3.2.0.702"
  1353. }
  1354. }
  1355. },
  1356. "System.IO/4.3.0": {
  1357. "dependencies": {
  1358. "Microsoft.NETCore.Platforms": "3.1.0",
  1359. "Microsoft.NETCore.Targets": "1.1.3",
  1360. "System.Runtime": "4.3.0",
  1361. "System.Text.Encoding": "4.3.0",
  1362. "System.Threading.Tasks": "4.3.0"
  1363. }
  1364. },
  1365. "System.IO.FileSystem/4.3.0": {
  1366. "dependencies": {
  1367. "Microsoft.NETCore.Platforms": "3.1.0",
  1368. "Microsoft.NETCore.Targets": "1.1.3",
  1369. "System.IO": "4.3.0",
  1370. "System.IO.FileSystem.Primitives": "4.3.0",
  1371. "System.Runtime": "4.3.0",
  1372. "System.Runtime.Handles": "4.3.0",
  1373. "System.Text.Encoding": "4.3.0",
  1374. "System.Threading.Tasks": "4.3.0"
  1375. }
  1376. },
  1377. "System.IO.FileSystem.Primitives/4.3.0": {
  1378. "dependencies": {
  1379. "System.Runtime": "4.3.0"
  1380. }
  1381. },
  1382. "System.Linq/4.3.0": {
  1383. "dependencies": {
  1384. "System.Collections": "4.3.0",
  1385. "System.Diagnostics.Debug": "4.3.0",
  1386. "System.Resources.ResourceManager": "4.3.0",
  1387. "System.Runtime": "4.3.0",
  1388. "System.Runtime.Extensions": "4.3.0"
  1389. }
  1390. },
  1391. "System.Linq.Expressions/4.3.0": {
  1392. "dependencies": {
  1393. "System.Collections": "4.3.0",
  1394. "System.Diagnostics.Debug": "4.3.0",
  1395. "System.Globalization": "4.3.0",
  1396. "System.IO": "4.3.0",
  1397. "System.Linq": "4.3.0",
  1398. "System.ObjectModel": "4.3.0",
  1399. "System.Reflection": "4.3.0",
  1400. "System.Reflection.Emit": "4.3.0",
  1401. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1402. "System.Reflection.Emit.Lightweight": "4.3.0",
  1403. "System.Reflection.Extensions": "4.3.0",
  1404. "System.Reflection.Primitives": "4.3.0",
  1405. "System.Reflection.TypeExtensions": "4.7.0",
  1406. "System.Resources.ResourceManager": "4.3.0",
  1407. "System.Runtime": "4.3.0",
  1408. "System.Runtime.Extensions": "4.3.0",
  1409. "System.Threading": "4.3.0"
  1410. }
  1411. },
  1412. "System.Linq.Queryable/4.0.1": {
  1413. "dependencies": {
  1414. "System.Collections": "4.3.0",
  1415. "System.Diagnostics.Debug": "4.3.0",
  1416. "System.Linq": "4.3.0",
  1417. "System.Linq.Expressions": "4.3.0",
  1418. "System.Reflection": "4.3.0",
  1419. "System.Reflection.Extensions": "4.3.0",
  1420. "System.Resources.ResourceManager": "4.3.0",
  1421. "System.Runtime": "4.3.0"
  1422. }
  1423. },
  1424. "System.Memory/4.5.3": {},
  1425. "System.Net.Http/4.3.0": {
  1426. "dependencies": {
  1427. "Microsoft.NETCore.Platforms": "3.1.0",
  1428. "System.Collections": "4.3.0",
  1429. "System.Diagnostics.Debug": "4.3.0",
  1430. "System.Diagnostics.DiagnosticSource": "4.7.1",
  1431. "System.Diagnostics.Tracing": "4.3.0",
  1432. "System.Globalization": "4.3.0",
  1433. "System.Globalization.Extensions": "4.3.0",
  1434. "System.IO": "4.3.0",
  1435. "System.IO.FileSystem": "4.3.0",
  1436. "System.Net.Primitives": "4.3.0",
  1437. "System.Resources.ResourceManager": "4.3.0",
  1438. "System.Runtime": "4.3.0",
  1439. "System.Runtime.Extensions": "4.3.0",
  1440. "System.Runtime.Handles": "4.3.0",
  1441. "System.Runtime.InteropServices": "4.3.0",
  1442. "System.Security.Cryptography.Algorithms": "4.3.1",
  1443. "System.Security.Cryptography.Encoding": "4.3.0",
  1444. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1445. "System.Security.Cryptography.Primitives": "4.3.0",
  1446. "System.Security.Cryptography.X509Certificates": "4.3.2",
  1447. "System.Text.Encoding": "4.3.0",
  1448. "System.Threading": "4.3.0",
  1449. "System.Threading.Tasks": "4.3.0",
  1450. "runtime.native.System": "4.3.0",
  1451. "runtime.native.System.Net.Http": "4.3.0",
  1452. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1453. }
  1454. },
  1455. "System.Net.NameResolution/4.3.0": {
  1456. "dependencies": {
  1457. "Microsoft.NETCore.Platforms": "3.1.0",
  1458. "System.Collections": "4.3.0",
  1459. "System.Diagnostics.Tracing": "4.3.0",
  1460. "System.Globalization": "4.3.0",
  1461. "System.Net.Primitives": "4.3.0",
  1462. "System.Resources.ResourceManager": "4.3.0",
  1463. "System.Runtime": "4.3.0",
  1464. "System.Runtime.Extensions": "4.3.0",
  1465. "System.Runtime.Handles": "4.3.0",
  1466. "System.Runtime.InteropServices": "4.3.0",
  1467. "System.Security.Principal.Windows": "4.7.0",
  1468. "System.Threading": "4.3.0",
  1469. "System.Threading.Tasks": "4.3.0",
  1470. "runtime.native.System": "4.3.0"
  1471. }
  1472. },
  1473. "System.Net.Primitives/4.3.0": {
  1474. "dependencies": {
  1475. "Microsoft.NETCore.Platforms": "3.1.0",
  1476. "Microsoft.NETCore.Targets": "1.1.3",
  1477. "System.Runtime": "4.3.0",
  1478. "System.Runtime.Handles": "4.3.0"
  1479. }
  1480. },
  1481. "System.Net.Requests/4.3.0": {
  1482. "dependencies": {
  1483. "Microsoft.NETCore.Platforms": "3.1.0",
  1484. "System.Collections": "4.3.0",
  1485. "System.Diagnostics.Debug": "4.3.0",
  1486. "System.Diagnostics.Tracing": "4.3.0",
  1487. "System.Globalization": "4.3.0",
  1488. "System.IO": "4.3.0",
  1489. "System.Net.Http": "4.3.0",
  1490. "System.Net.Primitives": "4.3.0",
  1491. "System.Net.WebHeaderCollection": "4.3.0",
  1492. "System.Resources.ResourceManager": "4.3.0",
  1493. "System.Runtime": "4.3.0",
  1494. "System.Threading": "4.3.0",
  1495. "System.Threading.Tasks": "4.3.0"
  1496. }
  1497. },
  1498. "System.Net.Security/4.3.2": {
  1499. "dependencies": {
  1500. "Microsoft.NETCore.Platforms": "3.1.0",
  1501. "Microsoft.Win32.Primitives": "4.3.0",
  1502. "System.Collections": "4.3.0",
  1503. "System.Collections.Concurrent": "4.3.0",
  1504. "System.Diagnostics.Tracing": "4.3.0",
  1505. "System.Globalization": "4.3.0",
  1506. "System.Globalization.Extensions": "4.3.0",
  1507. "System.IO": "4.3.0",
  1508. "System.Net.Primitives": "4.3.0",
  1509. "System.Resources.ResourceManager": "4.3.0",
  1510. "System.Runtime": "4.3.0",
  1511. "System.Runtime.Extensions": "4.3.0",
  1512. "System.Runtime.Handles": "4.3.0",
  1513. "System.Runtime.InteropServices": "4.3.0",
  1514. "System.Security.Claims": "4.3.0",
  1515. "System.Security.Cryptography.Algorithms": "4.3.1",
  1516. "System.Security.Cryptography.Encoding": "4.3.0",
  1517. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1518. "System.Security.Cryptography.Primitives": "4.3.0",
  1519. "System.Security.Cryptography.X509Certificates": "4.3.2",
  1520. "System.Security.Principal": "4.3.0",
  1521. "System.Text.Encoding": "4.3.0",
  1522. "System.Threading": "4.3.0",
  1523. "System.Threading.Tasks": "4.3.0",
  1524. "System.Threading.ThreadPool": "4.3.0",
  1525. "runtime.native.System": "4.3.0",
  1526. "runtime.native.System.Net.Security": "4.3.0",
  1527. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1528. }
  1529. },
  1530. "System.Net.WebHeaderCollection/4.3.0": {
  1531. "dependencies": {
  1532. "System.Collections": "4.3.0",
  1533. "System.Resources.ResourceManager": "4.3.0",
  1534. "System.Runtime": "4.3.0",
  1535. "System.Runtime.Extensions": "4.3.0"
  1536. }
  1537. },
  1538. "System.ObjectModel/4.3.0": {
  1539. "dependencies": {
  1540. "System.Collections": "4.3.0",
  1541. "System.Diagnostics.Debug": "4.3.0",
  1542. "System.Resources.ResourceManager": "4.3.0",
  1543. "System.Runtime": "4.3.0",
  1544. "System.Threading": "4.3.0"
  1545. }
  1546. },
  1547. "System.Private.DataContractSerialization/4.3.0": {
  1548. "dependencies": {
  1549. "System.Collections": "4.3.0",
  1550. "System.Collections.Concurrent": "4.3.0",
  1551. "System.Diagnostics.Debug": "4.3.0",
  1552. "System.Globalization": "4.3.0",
  1553. "System.IO": "4.3.0",
  1554. "System.Linq": "4.3.0",
  1555. "System.Reflection": "4.3.0",
  1556. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1557. "System.Reflection.Emit.Lightweight": "4.3.0",
  1558. "System.Reflection.Extensions": "4.3.0",
  1559. "System.Reflection.Primitives": "4.3.0",
  1560. "System.Reflection.TypeExtensions": "4.7.0",
  1561. "System.Resources.ResourceManager": "4.3.0",
  1562. "System.Runtime": "4.3.0",
  1563. "System.Runtime.Extensions": "4.3.0",
  1564. "System.Runtime.Serialization.Primitives": "4.3.0",
  1565. "System.Text.Encoding": "4.3.0",
  1566. "System.Text.Encoding.Extensions": "4.3.0",
  1567. "System.Text.RegularExpressions": "4.3.0",
  1568. "System.Threading": "4.3.0",
  1569. "System.Threading.Tasks": "4.3.0",
  1570. "System.Xml.ReaderWriter": "4.3.1",
  1571. "System.Xml.XDocument": "4.3.0",
  1572. "System.Xml.XmlDocument": "4.3.0",
  1573. "System.Xml.XmlSerializer": "4.3.0"
  1574. }
  1575. },
  1576. "System.Private.Uri/4.3.2": {
  1577. "dependencies": {
  1578. "Microsoft.NETCore.Platforms": "3.1.0",
  1579. "Microsoft.NETCore.Targets": "1.1.3"
  1580. }
  1581. },
  1582. "System.Reflection/4.3.0": {
  1583. "dependencies": {
  1584. "Microsoft.NETCore.Platforms": "3.1.0",
  1585. "Microsoft.NETCore.Targets": "1.1.3",
  1586. "System.IO": "4.3.0",
  1587. "System.Reflection.Primitives": "4.3.0",
  1588. "System.Runtime": "4.3.0"
  1589. }
  1590. },
  1591. "System.Reflection.Emit/4.3.0": {
  1592. "dependencies": {
  1593. "System.IO": "4.3.0",
  1594. "System.Reflection": "4.3.0",
  1595. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1596. "System.Reflection.Primitives": "4.3.0",
  1597. "System.Runtime": "4.3.0"
  1598. }
  1599. },
  1600. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1601. "dependencies": {
  1602. "System.Reflection": "4.3.0",
  1603. "System.Reflection.Primitives": "4.3.0",
  1604. "System.Runtime": "4.3.0"
  1605. }
  1606. },
  1607. "System.Reflection.Emit.Lightweight/4.3.0": {
  1608. "dependencies": {
  1609. "System.Reflection": "4.3.0",
  1610. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1611. "System.Reflection.Primitives": "4.3.0",
  1612. "System.Runtime": "4.3.0"
  1613. }
  1614. },
  1615. "System.Reflection.Extensions/4.3.0": {
  1616. "dependencies": {
  1617. "Microsoft.NETCore.Platforms": "3.1.0",
  1618. "Microsoft.NETCore.Targets": "1.1.3",
  1619. "System.Reflection": "4.3.0",
  1620. "System.Runtime": "4.3.0"
  1621. }
  1622. },
  1623. "System.Reflection.Metadata/1.6.0": {},
  1624. "System.Reflection.Primitives/4.3.0": {
  1625. "dependencies": {
  1626. "Microsoft.NETCore.Platforms": "3.1.0",
  1627. "Microsoft.NETCore.Targets": "1.1.3",
  1628. "System.Runtime": "4.3.0"
  1629. }
  1630. },
  1631. "System.Reflection.TypeExtensions/4.7.0": {},
  1632. "System.Resources.ResourceManager/4.3.0": {
  1633. "dependencies": {
  1634. "Microsoft.NETCore.Platforms": "3.1.0",
  1635. "Microsoft.NETCore.Targets": "1.1.3",
  1636. "System.Globalization": "4.3.0",
  1637. "System.Reflection": "4.3.0",
  1638. "System.Runtime": "4.3.0"
  1639. }
  1640. },
  1641. "System.Runtime/4.3.0": {
  1642. "dependencies": {
  1643. "Microsoft.NETCore.Platforms": "3.1.0",
  1644. "Microsoft.NETCore.Targets": "1.1.3"
  1645. }
  1646. },
  1647. "System.Runtime.Caching/4.7.0": {
  1648. "dependencies": {
  1649. "System.Configuration.ConfigurationManager": "4.7.0"
  1650. },
  1651. "runtime": {
  1652. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  1653. "assemblyVersion": "4.0.1.0",
  1654. "fileVersion": "4.700.19.56404"
  1655. }
  1656. },
  1657. "runtimeTargets": {
  1658. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  1659. "rid": "win",
  1660. "assetType": "runtime",
  1661. "assemblyVersion": "4.0.1.0",
  1662. "fileVersion": "4.700.19.56404"
  1663. }
  1664. }
  1665. },
  1666. "System.Runtime.CompilerServices.Unsafe/4.7.0": {},
  1667. "System.Runtime.Extensions/4.3.0": {
  1668. "dependencies": {
  1669. "Microsoft.NETCore.Platforms": "3.1.0",
  1670. "Microsoft.NETCore.Targets": "1.1.3",
  1671. "System.Runtime": "4.3.0"
  1672. }
  1673. },
  1674. "System.Runtime.Handles/4.3.0": {
  1675. "dependencies": {
  1676. "Microsoft.NETCore.Platforms": "3.1.0",
  1677. "Microsoft.NETCore.Targets": "1.1.3",
  1678. "System.Runtime": "4.3.0"
  1679. }
  1680. },
  1681. "System.Runtime.InteropServices/4.3.0": {
  1682. "dependencies": {
  1683. "Microsoft.NETCore.Platforms": "3.1.0",
  1684. "Microsoft.NETCore.Targets": "1.1.3",
  1685. "System.Reflection": "4.3.0",
  1686. "System.Reflection.Primitives": "4.3.0",
  1687. "System.Runtime": "4.3.0",
  1688. "System.Runtime.Handles": "4.3.0"
  1689. }
  1690. },
  1691. "System.Runtime.Loader/4.3.0": {
  1692. "dependencies": {
  1693. "System.IO": "4.3.0",
  1694. "System.Reflection": "4.3.0",
  1695. "System.Runtime": "4.3.0"
  1696. }
  1697. },
  1698. "System.Runtime.Numerics/4.3.0": {
  1699. "dependencies": {
  1700. "System.Globalization": "4.3.0",
  1701. "System.Resources.ResourceManager": "4.3.0",
  1702. "System.Runtime": "4.3.0",
  1703. "System.Runtime.Extensions": "4.3.0"
  1704. }
  1705. },
  1706. "System.Runtime.Serialization.Formatters/4.3.0": {
  1707. "dependencies": {
  1708. "System.Collections": "4.3.0",
  1709. "System.Reflection": "4.3.0",
  1710. "System.Resources.ResourceManager": "4.3.0",
  1711. "System.Runtime": "4.3.0",
  1712. "System.Runtime.Serialization.Primitives": "4.3.0"
  1713. }
  1714. },
  1715. "System.Runtime.Serialization.Json/4.3.0": {
  1716. "dependencies": {
  1717. "System.IO": "4.3.0",
  1718. "System.Private.DataContractSerialization": "4.3.0",
  1719. "System.Runtime": "4.3.0"
  1720. }
  1721. },
  1722. "System.Runtime.Serialization.Primitives/4.3.0": {
  1723. "dependencies": {
  1724. "System.Resources.ResourceManager": "4.3.0",
  1725. "System.Runtime": "4.3.0"
  1726. }
  1727. },
  1728. "System.Security.AccessControl/4.7.0": {
  1729. "dependencies": {
  1730. "Microsoft.NETCore.Platforms": "3.1.0",
  1731. "System.Security.Principal.Windows": "4.7.0"
  1732. }
  1733. },
  1734. "System.Security.Claims/4.3.0": {
  1735. "dependencies": {
  1736. "System.Collections": "4.3.0",
  1737. "System.Globalization": "4.3.0",
  1738. "System.IO": "4.3.0",
  1739. "System.Resources.ResourceManager": "4.3.0",
  1740. "System.Runtime": "4.3.0",
  1741. "System.Runtime.Extensions": "4.3.0",
  1742. "System.Security.Principal": "4.3.0"
  1743. }
  1744. },
  1745. "System.Security.Cryptography.Algorithms/4.3.1": {
  1746. "dependencies": {
  1747. "Microsoft.NETCore.Platforms": "3.1.0",
  1748. "System.Collections": "4.3.0",
  1749. "System.IO": "4.3.0",
  1750. "System.Resources.ResourceManager": "4.3.0",
  1751. "System.Runtime": "4.3.0",
  1752. "System.Runtime.Extensions": "4.3.0",
  1753. "System.Runtime.Handles": "4.3.0",
  1754. "System.Runtime.InteropServices": "4.3.0",
  1755. "System.Runtime.Numerics": "4.3.0",
  1756. "System.Security.Cryptography.Encoding": "4.3.0",
  1757. "System.Security.Cryptography.Primitives": "4.3.0",
  1758. "System.Text.Encoding": "4.3.0",
  1759. "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
  1760. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1761. }
  1762. },
  1763. "System.Security.Cryptography.Cng/4.7.0": {},
  1764. "System.Security.Cryptography.Csp/4.3.0": {
  1765. "dependencies": {
  1766. "Microsoft.NETCore.Platforms": "3.1.0",
  1767. "System.IO": "4.3.0",
  1768. "System.Reflection": "4.3.0",
  1769. "System.Resources.ResourceManager": "4.3.0",
  1770. "System.Runtime": "4.3.0",
  1771. "System.Runtime.Extensions": "4.3.0",
  1772. "System.Runtime.Handles": "4.3.0",
  1773. "System.Runtime.InteropServices": "4.3.0",
  1774. "System.Security.Cryptography.Algorithms": "4.3.1",
  1775. "System.Security.Cryptography.Encoding": "4.3.0",
  1776. "System.Security.Cryptography.Primitives": "4.3.0",
  1777. "System.Text.Encoding": "4.3.0",
  1778. "System.Threading": "4.3.0"
  1779. }
  1780. },
  1781. "System.Security.Cryptography.Encoding/4.3.0": {
  1782. "dependencies": {
  1783. "Microsoft.NETCore.Platforms": "3.1.0",
  1784. "System.Collections": "4.3.0",
  1785. "System.Collections.Concurrent": "4.3.0",
  1786. "System.Linq": "4.3.0",
  1787. "System.Resources.ResourceManager": "4.3.0",
  1788. "System.Runtime": "4.3.0",
  1789. "System.Runtime.Extensions": "4.3.0",
  1790. "System.Runtime.Handles": "4.3.0",
  1791. "System.Runtime.InteropServices": "4.3.0",
  1792. "System.Security.Cryptography.Primitives": "4.3.0",
  1793. "System.Text.Encoding": "4.3.0",
  1794. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1795. }
  1796. },
  1797. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1798. "dependencies": {
  1799. "System.Collections": "4.3.0",
  1800. "System.IO": "4.3.0",
  1801. "System.Resources.ResourceManager": "4.3.0",
  1802. "System.Runtime": "4.3.0",
  1803. "System.Runtime.Extensions": "4.3.0",
  1804. "System.Runtime.Handles": "4.3.0",
  1805. "System.Runtime.InteropServices": "4.3.0",
  1806. "System.Runtime.Numerics": "4.3.0",
  1807. "System.Security.Cryptography.Algorithms": "4.3.1",
  1808. "System.Security.Cryptography.Encoding": "4.3.0",
  1809. "System.Security.Cryptography.Primitives": "4.3.0",
  1810. "System.Text.Encoding": "4.3.0",
  1811. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1812. }
  1813. },
  1814. "System.Security.Cryptography.Pkcs/4.7.0": {
  1815. "dependencies": {
  1816. "System.Security.Cryptography.Cng": "4.7.0"
  1817. }
  1818. },
  1819. "System.Security.Cryptography.Primitives/4.3.0": {
  1820. "dependencies": {
  1821. "System.Diagnostics.Debug": "4.3.0",
  1822. "System.Globalization": "4.3.0",
  1823. "System.IO": "4.3.0",
  1824. "System.Resources.ResourceManager": "4.3.0",
  1825. "System.Runtime": "4.3.0",
  1826. "System.Threading": "4.3.0",
  1827. "System.Threading.Tasks": "4.3.0"
  1828. }
  1829. },
  1830. "System.Security.Cryptography.ProtectedData/4.7.0": {
  1831. "runtime": {
  1832. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1833. "assemblyVersion": "4.0.5.0",
  1834. "fileVersion": "4.700.19.56404"
  1835. }
  1836. },
  1837. "runtimeTargets": {
  1838. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1839. "rid": "win",
  1840. "assetType": "runtime",
  1841. "assemblyVersion": "4.0.5.0",
  1842. "fileVersion": "4.700.19.56404"
  1843. }
  1844. }
  1845. },
  1846. "System.Security.Cryptography.X509Certificates/4.3.2": {
  1847. "dependencies": {
  1848. "Microsoft.NETCore.Platforms": "3.1.0",
  1849. "System.Collections": "4.3.0",
  1850. "System.Diagnostics.Debug": "4.3.0",
  1851. "System.Globalization": "4.3.0",
  1852. "System.Globalization.Calendars": "4.3.0",
  1853. "System.IO": "4.3.0",
  1854. "System.IO.FileSystem": "4.3.0",
  1855. "System.IO.FileSystem.Primitives": "4.3.0",
  1856. "System.Resources.ResourceManager": "4.3.0",
  1857. "System.Runtime": "4.3.0",
  1858. "System.Runtime.Extensions": "4.3.0",
  1859. "System.Runtime.Handles": "4.3.0",
  1860. "System.Runtime.InteropServices": "4.3.0",
  1861. "System.Runtime.Numerics": "4.3.0",
  1862. "System.Security.Cryptography.Algorithms": "4.3.1",
  1863. "System.Security.Cryptography.Cng": "4.7.0",
  1864. "System.Security.Cryptography.Csp": "4.3.0",
  1865. "System.Security.Cryptography.Encoding": "4.3.0",
  1866. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1867. "System.Security.Cryptography.Primitives": "4.3.0",
  1868. "System.Text.Encoding": "4.3.0",
  1869. "System.Threading": "4.3.0",
  1870. "runtime.native.System": "4.3.0",
  1871. "runtime.native.System.Net.Http": "4.3.0",
  1872. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1873. }
  1874. },
  1875. "System.Security.Permissions/4.7.0": {
  1876. "dependencies": {
  1877. "System.Security.AccessControl": "4.7.0",
  1878. "System.Windows.Extensions": "4.7.0"
  1879. }
  1880. },
  1881. "System.Security.Principal/4.3.0": {
  1882. "dependencies": {
  1883. "System.Runtime": "4.3.0"
  1884. }
  1885. },
  1886. "System.Security.Principal.Windows/4.7.0": {},
  1887. "System.Security.SecureString/4.3.0": {
  1888. "dependencies": {
  1889. "Microsoft.NETCore.Platforms": "3.1.0",
  1890. "System.Resources.ResourceManager": "4.3.0",
  1891. "System.Runtime": "4.3.0",
  1892. "System.Runtime.Handles": "4.3.0",
  1893. "System.Runtime.InteropServices": "4.3.0",
  1894. "System.Security.Cryptography.Primitives": "4.3.0",
  1895. "System.Text.Encoding": "4.3.0",
  1896. "System.Threading": "4.3.0"
  1897. }
  1898. },
  1899. "System.Text.Encoding/4.3.0": {
  1900. "dependencies": {
  1901. "Microsoft.NETCore.Platforms": "3.1.0",
  1902. "Microsoft.NETCore.Targets": "1.1.3",
  1903. "System.Runtime": "4.3.0"
  1904. }
  1905. },
  1906. "System.Text.Encoding.CodePages/4.7.0": {
  1907. "dependencies": {
  1908. "Microsoft.NETCore.Platforms": "3.1.0"
  1909. }
  1910. },
  1911. "System.Text.Encoding.Extensions/4.3.0": {
  1912. "dependencies": {
  1913. "Microsoft.NETCore.Platforms": "3.1.0",
  1914. "Microsoft.NETCore.Targets": "1.1.3",
  1915. "System.Runtime": "4.3.0",
  1916. "System.Text.Encoding": "4.3.0"
  1917. }
  1918. },
  1919. "System.Text.RegularExpressions/4.3.0": {
  1920. "dependencies": {
  1921. "System.Runtime": "4.3.0"
  1922. }
  1923. },
  1924. "System.Threading/4.3.0": {
  1925. "dependencies": {
  1926. "System.Runtime": "4.3.0",
  1927. "System.Threading.Tasks": "4.3.0"
  1928. }
  1929. },
  1930. "System.Threading.Tasks/4.3.0": {
  1931. "dependencies": {
  1932. "Microsoft.NETCore.Platforms": "3.1.0",
  1933. "Microsoft.NETCore.Targets": "1.1.3",
  1934. "System.Runtime": "4.3.0"
  1935. }
  1936. },
  1937. "System.Threading.Tasks.Extensions/4.5.3": {},
  1938. "System.Threading.Thread/4.3.0": {
  1939. "dependencies": {
  1940. "System.Runtime": "4.3.0"
  1941. }
  1942. },
  1943. "System.Threading.ThreadPool/4.3.0": {
  1944. "dependencies": {
  1945. "System.Runtime": "4.3.0",
  1946. "System.Runtime.Handles": "4.3.0"
  1947. }
  1948. },
  1949. "System.Windows.Extensions/4.7.0": {
  1950. "dependencies": {
  1951. "System.Drawing.Common": "4.7.0"
  1952. }
  1953. },
  1954. "System.Xml.ReaderWriter/4.3.1": {
  1955. "dependencies": {
  1956. "System.Collections": "4.3.0",
  1957. "System.Diagnostics.Debug": "4.3.0",
  1958. "System.Globalization": "4.3.0",
  1959. "System.IO": "4.3.0",
  1960. "System.IO.FileSystem": "4.3.0",
  1961. "System.IO.FileSystem.Primitives": "4.3.0",
  1962. "System.Resources.ResourceManager": "4.3.0",
  1963. "System.Runtime": "4.3.0",
  1964. "System.Runtime.Extensions": "4.3.0",
  1965. "System.Runtime.InteropServices": "4.3.0",
  1966. "System.Text.Encoding": "4.3.0",
  1967. "System.Text.Encoding.Extensions": "4.3.0",
  1968. "System.Text.RegularExpressions": "4.3.0",
  1969. "System.Threading.Tasks": "4.3.0",
  1970. "System.Threading.Tasks.Extensions": "4.5.3"
  1971. }
  1972. },
  1973. "System.Xml.XDocument/4.3.0": {
  1974. "dependencies": {
  1975. "System.Collections": "4.3.0",
  1976. "System.Diagnostics.Debug": "4.3.0",
  1977. "System.Diagnostics.Tools": "4.3.0",
  1978. "System.Globalization": "4.3.0",
  1979. "System.IO": "4.3.0",
  1980. "System.Reflection": "4.3.0",
  1981. "System.Resources.ResourceManager": "4.3.0",
  1982. "System.Runtime": "4.3.0",
  1983. "System.Runtime.Extensions": "4.3.0",
  1984. "System.Text.Encoding": "4.3.0",
  1985. "System.Threading": "4.3.0",
  1986. "System.Xml.ReaderWriter": "4.3.1"
  1987. }
  1988. },
  1989. "System.Xml.XmlDocument/4.3.0": {
  1990. "dependencies": {
  1991. "System.Collections": "4.3.0",
  1992. "System.Diagnostics.Debug": "4.3.0",
  1993. "System.Globalization": "4.3.0",
  1994. "System.IO": "4.3.0",
  1995. "System.Resources.ResourceManager": "4.3.0",
  1996. "System.Runtime": "4.3.0",
  1997. "System.Runtime.Extensions": "4.3.0",
  1998. "System.Text.Encoding": "4.3.0",
  1999. "System.Threading": "4.3.0",
  2000. "System.Xml.ReaderWriter": "4.3.1"
  2001. }
  2002. },
  2003. "System.Xml.XmlSerializer/4.3.0": {
  2004. "dependencies": {
  2005. "System.Collections": "4.3.0",
  2006. "System.Globalization": "4.3.0",
  2007. "System.IO": "4.3.0",
  2008. "System.Linq": "4.3.0",
  2009. "System.Reflection": "4.3.0",
  2010. "System.Reflection.Emit": "4.3.0",
  2011. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2012. "System.Reflection.Extensions": "4.3.0",
  2013. "System.Reflection.Primitives": "4.3.0",
  2014. "System.Reflection.TypeExtensions": "4.7.0",
  2015. "System.Resources.ResourceManager": "4.3.0",
  2016. "System.Runtime": "4.3.0",
  2017. "System.Runtime.Extensions": "4.3.0",
  2018. "System.Text.RegularExpressions": "4.3.0",
  2019. "System.Threading": "4.3.0",
  2020. "System.Xml.ReaderWriter": "4.3.1",
  2021. "System.Xml.XmlDocument": "4.3.0"
  2022. }
  2023. },
  2024. "System.Xml.XPath/4.3.0": {
  2025. "dependencies": {
  2026. "System.Collections": "4.3.0",
  2027. "System.Diagnostics.Debug": "4.3.0",
  2028. "System.Globalization": "4.3.0",
  2029. "System.IO": "4.3.0",
  2030. "System.Resources.ResourceManager": "4.3.0",
  2031. "System.Runtime": "4.3.0",
  2032. "System.Runtime.Extensions": "4.3.0",
  2033. "System.Threading": "4.3.0",
  2034. "System.Xml.ReaderWriter": "4.3.1"
  2035. }
  2036. },
  2037. "System.Xml.XPath.XDocument/4.3.0": {
  2038. "dependencies": {
  2039. "System.Diagnostics.Debug": "4.3.0",
  2040. "System.Linq": "4.3.0",
  2041. "System.Resources.ResourceManager": "4.3.0",
  2042. "System.Runtime": "4.3.0",
  2043. "System.Runtime.Extensions": "4.3.0",
  2044. "System.Threading": "4.3.0",
  2045. "System.Xml.ReaderWriter": "4.3.1",
  2046. "System.Xml.XDocument": "4.3.0",
  2047. "System.Xml.XPath": "4.3.0"
  2048. }
  2049. },
  2050. "System.Xml.XPath.XmlDocument/4.3.0": {
  2051. "dependencies": {
  2052. "System.Collections": "4.3.0",
  2053. "System.Globalization": "4.3.0",
  2054. "System.IO": "4.3.0",
  2055. "System.Resources.ResourceManager": "4.3.0",
  2056. "System.Runtime": "4.3.0",
  2057. "System.Runtime.Extensions": "4.3.0",
  2058. "System.Threading": "4.3.0",
  2059. "System.Xml.ReaderWriter": "4.3.1",
  2060. "System.Xml.XPath": "4.3.0",
  2061. "System.Xml.XmlDocument": "4.3.0"
  2062. },
  2063. "runtime": {
  2064. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
  2065. "assemblyVersion": "4.0.2.0",
  2066. "fileVersion": "4.6.24705.1"
  2067. }
  2068. }
  2069. },
  2070. "ZKWeb.System.Drawing/4.0.1": {
  2071. "dependencies": {
  2072. "System.Collections.NonGeneric": "4.3.0",
  2073. "System.Collections.Specialized": "4.3.0",
  2074. "System.ComponentModel.TypeConverter": "4.3.0",
  2075. "System.Runtime.InteropServices": "4.3.0",
  2076. "System.Runtime.Serialization.Primitives": "4.3.0",
  2077. "System.Threading.Thread": "4.3.0"
  2078. },
  2079. "runtime": {
  2080. "lib/netstandard2.0/ZKWeb.System.Drawing.dll": {
  2081. "assemblyVersion": "1.0.0.0",
  2082. "fileVersion": "1.0.0.0"
  2083. }
  2084. }
  2085. },
  2086. "Aspose.Cells/18.4.0.0": {
  2087. "runtime": {
  2088. "Aspose.Cells.dll": {
  2089. "assemblyVersion": "18.4.0.0",
  2090. "fileVersion": "18.4.0.0"
  2091. }
  2092. }
  2093. }
  2094. }
  2095. },
  2096. "libraries": {
  2097. "Bowin.Common/1.0.0": {
  2098. "type": "project",
  2099. "serviceable": false,
  2100. "sha512": ""
  2101. },
  2102. "EPPlus/4.5.3.3": {
  2103. "type": "package",
  2104. "serviceable": true,
  2105. "sha512": "sha512-aZnWmrQNRQuV/2Kwu+pTv1HVX1ZBvoGKw2GuzUOmBRpOD09sYJFGHww8NVQd3IIeb1vqosPDFZgND/1nxTzFKQ==",
  2106. "path": "epplus/4.5.3.3",
  2107. "hashPath": "epplus.4.5.3.3.nupkg.sha512"
  2108. },
  2109. "Humanizer.Core/2.2.0": {
  2110. "type": "package",
  2111. "serviceable": true,
  2112. "sha512": "sha512-rsYXB7+iUPP8AHgQ8JP2UZI2xK2KhjcdGr9E6zX3CsZaTLCaw8M35vaAJRo1rfxeaZEVMuXeaquLVCkZ7JcZ5Q==",
  2113. "path": "humanizer.core/2.2.0",
  2114. "hashPath": "humanizer.core.2.2.0.nupkg.sha512"
  2115. },
  2116. "iTextSharp.LGPLv2.Core/1.6.2": {
  2117. "type": "package",
  2118. "serviceable": true,
  2119. "sha512": "sha512-otX4WMJbG5mZrxzY73Tc3G719mRvjXlh8VTz9/wdGUHcGucyfDSjgF5cEqqjOrElORXvOr8salmP9KdAfpUwyA==",
  2120. "path": "itextsharp.lgplv2.core/1.6.2",
  2121. "hashPath": "itextsharp.lgplv2.core.1.6.2.nupkg.sha512"
  2122. },
  2123. "MailKit/2.6.0": {
  2124. "type": "package",
  2125. "serviceable": true,
  2126. "sha512": "sha512-fY2ulWfn5xzulQfqTW66pLOrL26Puzmhl+VsXuqrVBhv5dWFwwKerxQM4HmMwr5Pd/ak9/5xSiFhIeXeD+HC2w==",
  2127. "path": "mailkit/2.6.0",
  2128. "hashPath": "mailkit.2.6.0.nupkg.sha512"
  2129. },
  2130. "Microsoft.AspNetCore.Authentication.JwtBearer/3.1.4": {
  2131. "type": "package",
  2132. "serviceable": true,
  2133. "sha512": "sha512-8mVR4JzGoiJzrDr9/nEkrGP46nVZNGHMF2jCY4zhZctOyzT9Y7ugtrsnDGtrFShi8k83O6cpykAEWKcypYnDTA==",
  2134. "path": "microsoft.aspnetcore.authentication.jwtbearer/3.1.4",
  2135. "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.3.1.4.nupkg.sha512"
  2136. },
  2137. "Microsoft.Bcl.AsyncInterfaces/1.1.0": {
  2138. "type": "package",
  2139. "serviceable": true,
  2140. "sha512": "sha512-1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==",
  2141. "path": "microsoft.bcl.asyncinterfaces/1.1.0",
  2142. "hashPath": "microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512"
  2143. },
  2144. "Microsoft.CodeAnalysis/3.6.0": {
  2145. "type": "package",
  2146. "serviceable": true,
  2147. "sha512": "sha512-SZos6yDzFdsyMLY+7yMw1vmm7as3D6ocUJDRneSEg6LMQ8GY4UGNlcAEHLuJsgt5AwCqIMKvlU7TPm8RUcRl+Q==",
  2148. "path": "microsoft.codeanalysis/3.6.0",
  2149. "hashPath": "microsoft.codeanalysis.3.6.0.nupkg.sha512"
  2150. },
  2151. "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
  2152. "type": "package",
  2153. "serviceable": true,
  2154. "sha512": "sha512-ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
  2155. "path": "microsoft.codeanalysis.analyzers/3.0.0",
  2156. "hashPath": "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512"
  2157. },
  2158. "Microsoft.CodeAnalysis.Common/3.6.0": {
  2159. "type": "package",
  2160. "serviceable": true,
  2161. "sha512": "sha512-jQxDeYyQbNZwx/9O8hiyApTqZ7+KR3xVA6Ogbb50qsODfjAKRWuH7z3lGkU/62PYUz4yiDtgXlRtntWNdhFPfQ==",
  2162. "path": "microsoft.codeanalysis.common/3.6.0",
  2163. "hashPath": "microsoft.codeanalysis.common.3.6.0.nupkg.sha512"
  2164. },
  2165. "Microsoft.CodeAnalysis.CSharp/3.6.0": {
  2166. "type": "package",
  2167. "serviceable": true,
  2168. "sha512": "sha512-kflVAdezWxqIfKNvEi4cmWZchX0Cgm3bRk1asYSnAQWQPTMddecrHzb9D8+ZDfYUeyYKkF4DETwjmONeSChCqA==",
  2169. "path": "microsoft.codeanalysis.csharp/3.6.0",
  2170. "hashPath": "microsoft.codeanalysis.csharp.3.6.0.nupkg.sha512"
  2171. },
  2172. "Microsoft.CodeAnalysis.CSharp.Workspaces/3.6.0": {
  2173. "type": "package",
  2174. "serviceable": true,
  2175. "sha512": "sha512-HpMIxUIaHOJ5Vmy5RFnq/itS563FXZdXlsSf8bHU3urrKnOdVkQZ5fktCIxGD5RG6kG/WbPEi0eW18jE2J5/zw==",
  2176. "path": "microsoft.codeanalysis.csharp.workspaces/3.6.0",
  2177. "hashPath": "microsoft.codeanalysis.csharp.workspaces.3.6.0.nupkg.sha512"
  2178. },
  2179. "Microsoft.CodeAnalysis.VisualBasic/3.6.0": {
  2180. "type": "package",
  2181. "serviceable": true,
  2182. "sha512": "sha512-ZS9FhxIut643uKyf9gOjTdwJNENa4pqcbUSS4herYjp8lvYsXOa7QgazySHcNCAut4/SlYgvydpGZgwoasD7vw==",
  2183. "path": "microsoft.codeanalysis.visualbasic/3.6.0",
  2184. "hashPath": "microsoft.codeanalysis.visualbasic.3.6.0.nupkg.sha512"
  2185. },
  2186. "Microsoft.CodeAnalysis.VisualBasic.Workspaces/3.6.0": {
  2187. "type": "package",
  2188. "serviceable": true,
  2189. "sha512": "sha512-Evddkuon+vbcjApMg8+xt96/67nw/YSwg4c1tx4r7YYWzthz+IfgIamSdRi4P+3Du3LnIlsGo2MFxo36hIWFhg==",
  2190. "path": "microsoft.codeanalysis.visualbasic.workspaces/3.6.0",
  2191. "hashPath": "microsoft.codeanalysis.visualbasic.workspaces.3.6.0.nupkg.sha512"
  2192. },
  2193. "Microsoft.CodeAnalysis.Workspaces.Common/3.6.0": {
  2194. "type": "package",
  2195. "serviceable": true,
  2196. "sha512": "sha512-DmaIzcx9cpZMY97SH0IDfEsq/QujuvnC0nNDAskOO8zFKxKTaZJw8/jKV/nPUk3OgpOAP1ypaz9VborDfnSf+g==",
  2197. "path": "microsoft.codeanalysis.workspaces.common/3.6.0",
  2198. "hashPath": "microsoft.codeanalysis.workspaces.common.3.6.0.nupkg.sha512"
  2199. },
  2200. "Microsoft.CSharp/4.5.0": {
  2201. "type": "package",
  2202. "serviceable": true,
  2203. "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  2204. "path": "microsoft.csharp/4.5.0",
  2205. "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
  2206. },
  2207. "Microsoft.Data.SqlClient/2.0.0": {
  2208. "type": "package",
  2209. "serviceable": true,
  2210. "sha512": "sha512-VjiEHD6trNW5nedq/nKhV7vFSPZrAUdT8pF3hHCyv8ATGBAOSu0XKZIAIEYomguO0+B4LTZnJ6ifPqlkC2fEKw==",
  2211. "path": "microsoft.data.sqlclient/2.0.0",
  2212. "hashPath": "microsoft.data.sqlclient.2.0.0.nupkg.sha512"
  2213. },
  2214. "Microsoft.Data.SqlClient.SNI.runtime/2.0.0": {
  2215. "type": "package",
  2216. "serviceable": true,
  2217. "sha512": "sha512-ct81NLX9s8L1cSNrs2ex25ZcKYd9gsp/idsmsuseL/4a/lc0AJcZpbaXBIB6eOaOWEK/qhTmNXpl+Cmhm6V03g==",
  2218. "path": "microsoft.data.sqlclient.sni.runtime/2.0.0",
  2219. "hashPath": "microsoft.data.sqlclient.sni.runtime.2.0.0.nupkg.sha512"
  2220. },
  2221. "Microsoft.EntityFrameworkCore/2.2.6": {
  2222. "type": "package",
  2223. "serviceable": true,
  2224. "sha512": "sha512-vmrMrjiCO7FkuFJwt/MHl6pk6cSXPtB1miPMtn0KTO7WqwaQ2WQ4gWpC/m753PzVriH2X2kIadWrd9SJb7KVww==",
  2225. "path": "microsoft.entityframeworkcore/2.2.6",
  2226. "hashPath": "microsoft.entityframeworkcore.2.2.6.nupkg.sha512"
  2227. },
  2228. "Microsoft.EntityFrameworkCore.Abstractions/2.2.6": {
  2229. "type": "package",
  2230. "serviceable": true,
  2231. "sha512": "sha512-4CrelpMMLszWqi0gFEYPhbsinXCQ2Vw6rA190IIwKY7THge/ckOwj6QIQKOu3Lmxj4khpzs+b6QADbpRRnOIaQ==",
  2232. "path": "microsoft.entityframeworkcore.abstractions/2.2.6",
  2233. "hashPath": "microsoft.entityframeworkcore.abstractions.2.2.6.nupkg.sha512"
  2234. },
  2235. "Microsoft.EntityFrameworkCore.Analyzers/2.2.6": {
  2236. "type": "package",
  2237. "serviceable": true,
  2238. "sha512": "sha512-BpNllkfZABCvMAaIL/pSLxTYYZQqiVesSG6xQpvelrlEfC0s9PS217Sq5Apn/zYW8ALtGoVEY12TblHrZ4SRRA==",
  2239. "path": "microsoft.entityframeworkcore.analyzers/2.2.6",
  2240. "hashPath": "microsoft.entityframeworkcore.analyzers.2.2.6.nupkg.sha512"
  2241. },
  2242. "Microsoft.EntityFrameworkCore.Relational/2.2.6": {
  2243. "type": "package",
  2244. "serviceable": true,
  2245. "sha512": "sha512-AlB4Gg1nplg6fwieCLixphmYkhwM1SSHecE43oDizAjFUSs7vlL5mlwf620X4SB037pVg+naxhBEtF53TGa6yQ==",
  2246. "path": "microsoft.entityframeworkcore.relational/2.2.6",
  2247. "hashPath": "microsoft.entityframeworkcore.relational.2.2.6.nupkg.sha512"
  2248. },
  2249. "Microsoft.EntityFrameworkCore.SqlServer/2.2.6": {
  2250. "type": "package",
  2251. "serviceable": true,
  2252. "sha512": "sha512-rNnCA7ntlpITeYl1p3lAeS0kyHhETlanTghfpoDgyGIoxyUm2VsI2eyzL6EMYrqWnhAOwx3HzP0/50XRM/0CHw==",
  2253. "path": "microsoft.entityframeworkcore.sqlserver/2.2.6",
  2254. "hashPath": "microsoft.entityframeworkcore.sqlserver.2.2.6.nupkg.sha512"
  2255. },
  2256. "Microsoft.Extensions.Caching.Abstractions/2.2.0": {
  2257. "type": "package",
  2258. "serviceable": true,
  2259. "sha512": "sha512-spsJkYo8gGJapaxTSQFN/wqA+ghpJMLwB4ZyTB+fSdpd7AmMFP/YSpIcGmczcw4KggpxLGhLk7lCkSIlgvHaqQ==",
  2260. "path": "microsoft.extensions.caching.abstractions/2.2.0",
  2261. "hashPath": "microsoft.extensions.caching.abstractions.2.2.0.nupkg.sha512"
  2262. },
  2263. "Microsoft.Extensions.Caching.Memory/2.2.0": {
  2264. "type": "package",
  2265. "serviceable": true,
  2266. "sha512": "sha512-yFs44RzB2Pzfoj4uk+mEz3MTTQKyeWb8gDhv5GyVPfHnLv0eQhGwzbw/5WpxAcVyOgG/H3/0ULY6g0/7/B+r7w==",
  2267. "path": "microsoft.extensions.caching.memory/2.2.0",
  2268. "hashPath": "microsoft.extensions.caching.memory.2.2.0.nupkg.sha512"
  2269. },
  2270. "Microsoft.Extensions.Configuration/3.1.4": {
  2271. "type": "package",
  2272. "serviceable": true,
  2273. "sha512": "sha512-+NsYvQ00h+9kSp4/60iCAhPUp9S6joS2rsEmfCVrUmVATCveTewcHdrMB+9pJDYkWzCEqPQoJuMfsxe/299Z0w==",
  2274. "path": "microsoft.extensions.configuration/3.1.4",
  2275. "hashPath": "microsoft.extensions.configuration.3.1.4.nupkg.sha512"
  2276. },
  2277. "Microsoft.Extensions.Configuration.Abstractions/3.1.4": {
  2278. "type": "package",
  2279. "serviceable": true,
  2280. "sha512": "sha512-k7IJME4US5S5JFOGYaei5TLwutp8IqUvcBWtliKXETGn/JScmCgfej21xq5+ttxi0qZhiyJY06y9dw+cLh3kiQ==",
  2281. "path": "microsoft.extensions.configuration.abstractions/3.1.4",
  2282. "hashPath": "microsoft.extensions.configuration.abstractions.3.1.4.nupkg.sha512"
  2283. },
  2284. "Microsoft.Extensions.Configuration.Binder/2.2.0": {
  2285. "type": "package",
  2286. "serviceable": true,
  2287. "sha512": "sha512-vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==",
  2288. "path": "microsoft.extensions.configuration.binder/2.2.0",
  2289. "hashPath": "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512"
  2290. },
  2291. "Microsoft.Extensions.Configuration.FileExtensions/3.1.4": {
  2292. "type": "package",
  2293. "serviceable": true,
  2294. "sha512": "sha512-wgYJ6AxEuk7HkhUaiDwzX9LLVaeum5p8BS94xtMqgiCJ9Fxncy6z+jVHrkih+Ww6gBGbuPn5buu56MPWYlwBdg==",
  2295. "path": "microsoft.extensions.configuration.fileextensions/3.1.4",
  2296. "hashPath": "microsoft.extensions.configuration.fileextensions.3.1.4.nupkg.sha512"
  2297. },
  2298. "Microsoft.Extensions.Configuration.Json/3.1.4": {
  2299. "type": "package",
  2300. "serviceable": true,
  2301. "sha512": "sha512-PYSg1spPvu5V+qk3gpLdIKa0VHURlIAv1uInxkmIXUYbb3AlBk6wywlbFFUWf+CRWA62eD/LJnfpePODlbQ5CA==",
  2302. "path": "microsoft.extensions.configuration.json/3.1.4",
  2303. "hashPath": "microsoft.extensions.configuration.json.3.1.4.nupkg.sha512"
  2304. },
  2305. "Microsoft.Extensions.DependencyInjection/2.2.0": {
  2306. "type": "package",
  2307. "serviceable": true,
  2308. "sha512": "sha512-MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==",
  2309. "path": "microsoft.extensions.dependencyinjection/2.2.0",
  2310. "hashPath": "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512"
  2311. },
  2312. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.0": {
  2313. "type": "package",
  2314. "serviceable": true,
  2315. "sha512": "sha512-44rDtOf1JXXAFpNT2EXMExaDm/4OJ2RXOL9i9lE4bK427nzC7Exphv+beB6IgluyE2GIoo8zezTStMXI7MQ8WA==",
  2316. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.0",
  2317. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.0.nupkg.sha512"
  2318. },
  2319. "Microsoft.Extensions.FileProviders.Abstractions/3.1.4": {
  2320. "type": "package",
  2321. "serviceable": true,
  2322. "sha512": "sha512-NNJA8JAoIaxlnb/bdQ8N0kA4T9ZaBAaUFM79pnT7j/x61Wne6K4lznU9u+NDgSAB3wrSx94mz169jNtle7KrSA==",
  2323. "path": "microsoft.extensions.fileproviders.abstractions/3.1.4",
  2324. "hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.4.nupkg.sha512"
  2325. },
  2326. "Microsoft.Extensions.FileProviders.Physical/3.1.4": {
  2327. "type": "package",
  2328. "serviceable": true,
  2329. "sha512": "sha512-vxBVwWxczp+5dnZ6FoulhxCLYzRjp5tu64iAlGMJtN0w7XLBZoY+6FvAnCRZDdwCbhVbz5VUPsbYVlL+l3sDxQ==",
  2330. "path": "microsoft.extensions.fileproviders.physical/3.1.4",
  2331. "hashPath": "microsoft.extensions.fileproviders.physical.3.1.4.nupkg.sha512"
  2332. },
  2333. "Microsoft.Extensions.FileSystemGlobbing/3.1.4": {
  2334. "type": "package",
  2335. "serviceable": true,
  2336. "sha512": "sha512-PGbPg8h8cUYXEovoeNvpHgdFhKnx/539E14zF1vxFz2V6cc1QmQGONbfVHEJcjbuyGyyiNyqgpPInymsVup7ow==",
  2337. "path": "microsoft.extensions.filesystemglobbing/3.1.4",
  2338. "hashPath": "microsoft.extensions.filesystemglobbing.3.1.4.nupkg.sha512"
  2339. },
  2340. "Microsoft.Extensions.Logging/2.2.0": {
  2341. "type": "package",
  2342. "serviceable": true,
  2343. "sha512": "sha512-Nxqhadc9FCmFHzU+fz3oc8sFlE6IadViYg8dfUdGzJZ2JUxnCsRghBhhOWdM4B2zSZqEc+0BjliBh/oNdRZuig==",
  2344. "path": "microsoft.extensions.logging/2.2.0",
  2345. "hashPath": "microsoft.extensions.logging.2.2.0.nupkg.sha512"
  2346. },
  2347. "Microsoft.Extensions.Logging.Abstractions/3.1.6": {
  2348. "type": "package",
  2349. "serviceable": true,
  2350. "sha512": "sha512-o2XYIjF9UugupEPvFsc9N8SjevixoRznS0V6EtjUZcGV4EjXXWKUXlKKsIWmD3i4dSiGo82aNcyqfQTsF/8h8g==",
  2351. "path": "microsoft.extensions.logging.abstractions/3.1.6",
  2352. "hashPath": "microsoft.extensions.logging.abstractions.3.1.6.nupkg.sha512"
  2353. },
  2354. "Microsoft.Extensions.Options/2.2.0": {
  2355. "type": "package",
  2356. "serviceable": true,
  2357. "sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==",
  2358. "path": "microsoft.extensions.options/2.2.0",
  2359. "hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512"
  2360. },
  2361. "Microsoft.Extensions.Primitives/3.1.4": {
  2362. "type": "package",
  2363. "serviceable": true,
  2364. "sha512": "sha512-tLR9n5ltwA56nr1t5M6q5IBfGLXtMS+XgumtqVENmtPQOWUD+m0Kgo1U6GWr06Y875WUN3sOGnmqkvW4an7fYA==",
  2365. "path": "microsoft.extensions.primitives/3.1.4",
  2366. "hashPath": "microsoft.extensions.primitives.3.1.4.nupkg.sha512"
  2367. },
  2368. "Microsoft.Identity.Client/4.14.0": {
  2369. "type": "package",
  2370. "serviceable": true,
  2371. "sha512": "sha512-Etqux6Zuuv1yEN4UwKbAn6EZv0Rooc+vM4N9z7gxmeT7dyoKlXIRN44DQPzD9LV1CW0KsTVqH+2B42p1NKqPlQ==",
  2372. "path": "microsoft.identity.client/4.14.0",
  2373. "hashPath": "microsoft.identity.client.4.14.0.nupkg.sha512"
  2374. },
  2375. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  2376. "type": "package",
  2377. "serviceable": true,
  2378. "sha512": "sha512-0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
  2379. "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
  2380. "hashPath": "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512"
  2381. },
  2382. "Microsoft.IdentityModel.Logging/5.6.0": {
  2383. "type": "package",
  2384. "serviceable": true,
  2385. "sha512": "sha512-zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
  2386. "path": "microsoft.identitymodel.logging/5.6.0",
  2387. "hashPath": "microsoft.identitymodel.logging.5.6.0.nupkg.sha512"
  2388. },
  2389. "Microsoft.IdentityModel.Protocols/5.6.0": {
  2390. "type": "package",
  2391. "serviceable": true,
  2392. "sha512": "sha512-ei7YqYx0pIFL6JjK8ZnPK0MXZRWUNHtJPUl3KqSvj9+2f5CMa6GRSEC+BMDHr17tP6yujYUg0IQOcKzmC7qN5g==",
  2393. "path": "microsoft.identitymodel.protocols/5.6.0",
  2394. "hashPath": "microsoft.identitymodel.protocols.5.6.0.nupkg.sha512"
  2395. },
  2396. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.6.0": {
  2397. "type": "package",
  2398. "serviceable": true,
  2399. "sha512": "sha512-yh3n+uXiwpBy/5+t67tYcmRxb9kwQdaKRyG/DNipRMF37bg5Jr0vENOo1BQz6OySMl5WIK544SzPjtr7/KkucA==",
  2400. "path": "microsoft.identitymodel.protocols.openidconnect/5.6.0",
  2401. "hashPath": "microsoft.identitymodel.protocols.openidconnect.5.6.0.nupkg.sha512"
  2402. },
  2403. "Microsoft.IdentityModel.Tokens/5.6.0": {
  2404. "type": "package",
  2405. "serviceable": true,
  2406. "sha512": "sha512-C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
  2407. "path": "microsoft.identitymodel.tokens/5.6.0",
  2408. "hashPath": "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512"
  2409. },
  2410. "Microsoft.NETCore.Platforms/3.1.0": {
  2411. "type": "package",
  2412. "serviceable": true,
  2413. "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  2414. "path": "microsoft.netcore.platforms/3.1.0",
  2415. "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
  2416. },
  2417. "Microsoft.NETCore.Targets/1.1.3": {
  2418. "type": "package",
  2419. "serviceable": true,
  2420. "sha512": "sha512-3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
  2421. "path": "microsoft.netcore.targets/1.1.3",
  2422. "hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512"
  2423. },
  2424. "Microsoft.Win32.Primitives/4.3.0": {
  2425. "type": "package",
  2426. "serviceable": true,
  2427. "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  2428. "path": "microsoft.win32.primitives/4.3.0",
  2429. "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
  2430. },
  2431. "Microsoft.Win32.Registry/4.7.0": {
  2432. "type": "package",
  2433. "serviceable": true,
  2434. "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  2435. "path": "microsoft.win32.registry/4.7.0",
  2436. "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
  2437. },
  2438. "Microsoft.Win32.SystemEvents/4.7.0": {
  2439. "type": "package",
  2440. "serviceable": true,
  2441. "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  2442. "path": "microsoft.win32.systemevents/4.7.0",
  2443. "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512"
  2444. },
  2445. "MimeKit/2.6.0": {
  2446. "type": "package",
  2447. "serviceable": true,
  2448. "sha512": "sha512-254R07ICLw0mIEhXEcYsALGF7Tgt8mAOfD7lcui1XXBdQGbpj5WFOzx9TojSMPBt2ZRBfolWhoSC9tnTVY7wRw==",
  2449. "path": "mimekit/2.6.0",
  2450. "hashPath": "mimekit.2.6.0.nupkg.sha512"
  2451. },
  2452. "NETStandard.Library/2.0.3": {
  2453. "type": "package",
  2454. "serviceable": true,
  2455. "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
  2456. "path": "netstandard.library/2.0.3",
  2457. "hashPath": "netstandard.library.2.0.3.nupkg.sha512"
  2458. },
  2459. "Newtonsoft.Json/12.0.3": {
  2460. "type": "package",
  2461. "serviceable": true,
  2462. "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
  2463. "path": "newtonsoft.json/12.0.3",
  2464. "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
  2465. },
  2466. "NLog/4.7.2": {
  2467. "type": "package",
  2468. "serviceable": true,
  2469. "sha512": "sha512-tfZNTOYr0TwvJNrXsJsVdZPSgIpYN1rXHnAZAadeaIbz+v18agNCCxgZXnXQqNKNizkogJ68zYTNKavyQFWwrg==",
  2470. "path": "nlog/4.7.2",
  2471. "hashPath": "nlog.4.7.2.nupkg.sha512"
  2472. },
  2473. "NPOI/2.5.1": {
  2474. "type": "package",
  2475. "serviceable": true,
  2476. "sha512": "sha512-2RkrIi+h6hDcrdR8EIxMpBb7vSz5Lgsr1HKgrA7Q+9/zQ17ky5b+3eHuJeuautFhRSrUTRxUfOpF5l9Vooy8/A==",
  2477. "path": "npoi/2.5.1",
  2478. "hashPath": "npoi.2.5.1.nupkg.sha512"
  2479. },
  2480. "PdfRpt.Core/1.4.2": {
  2481. "type": "package",
  2482. "serviceable": true,
  2483. "sha512": "sha512-uwIg97iJVyi02Lwrokja0T6YziQpBGh6I5GWlc4kG/HYhNrUMc8Zxu/DpuwRi4Z78wS8ky+CJFSdOZY5sxGr6Q==",
  2484. "path": "pdfrpt.core/1.4.2",
  2485. "hashPath": "pdfrpt.core.1.4.2.nupkg.sha512"
  2486. },
  2487. "Portable.BouncyCastle/1.8.6": {
  2488. "type": "package",
  2489. "serviceable": true,
  2490. "sha512": "sha512-y+GvZomzhY+Lwu5mMeNmFFYLHiEr2xFDOANhABn/wgg64/QpTzfgpNGPct+pXgQHjmutd363ZCur/91DLaBxOw==",
  2491. "path": "portable.bouncycastle/1.8.6",
  2492. "hashPath": "portable.bouncycastle.1.8.6.nupkg.sha512"
  2493. },
  2494. "Quartz/3.1.0": {
  2495. "type": "package",
  2496. "serviceable": true,
  2497. "sha512": "sha512-Lp/jRVSvR2PXfifyTNjG6iKLqEy8cfv5xcwTFfCs1QvhpbHjjyzfCqVReJsAC1/ba8cNWtnarZfc2gUgvZx/Nw==",
  2498. "path": "quartz/3.1.0",
  2499. "hashPath": "quartz.3.1.0.nupkg.sha512"
  2500. },
  2501. "Remotion.Linq/2.2.0": {
  2502. "type": "package",
  2503. "serviceable": true,
  2504. "sha512": "sha512-fK/76UmpC0FXBlGDFVPLJHQlDLYnGC+XY3eoDgCgbtrhi0vzbXDQ3n/IYHhqSKqXQfGw/u04A1drWs7rFVkRjw==",
  2505. "path": "remotion.linq/2.2.0",
  2506. "hashPath": "remotion.linq.2.2.0.nupkg.sha512"
  2507. },
  2508. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  2509. "type": "package",
  2510. "serviceable": true,
  2511. "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  2512. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  2513. "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  2514. },
  2515. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  2516. "type": "package",
  2517. "serviceable": true,
  2518. "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  2519. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  2520. "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  2521. },
  2522. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  2523. "type": "package",
  2524. "serviceable": true,
  2525. "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  2526. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  2527. "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  2528. },
  2529. "runtime.native.System/4.3.0": {
  2530. "type": "package",
  2531. "serviceable": true,
  2532. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  2533. "path": "runtime.native.system/4.3.0",
  2534. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  2535. },
  2536. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  2537. "type": "package",
  2538. "serviceable": true,
  2539. "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
  2540. "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
  2541. "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512"
  2542. },
  2543. "runtime.native.System.Net.Http/4.3.0": {
  2544. "type": "package",
  2545. "serviceable": true,
  2546. "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  2547. "path": "runtime.native.system.net.http/4.3.0",
  2548. "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
  2549. },
  2550. "runtime.native.System.Net.Security/4.3.0": {
  2551. "type": "package",
  2552. "serviceable": true,
  2553. "sha512": "sha512-M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  2554. "path": "runtime.native.system.net.security/4.3.0",
  2555. "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512"
  2556. },
  2557. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  2558. "type": "package",
  2559. "serviceable": true,
  2560. "sha512": "sha512-UPrVPlqPRSVZaB4ADmbsQ77KXn9ORiWXyA1RP2W2+byCh3bhgT1bQz0jbeOoog9/2oTQ5wWZSDSMeb74MjezcA==",
  2561. "path": "runtime.native.system.security.cryptography.apple/4.3.1",
  2562. "hashPath": "runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512"
  2563. },
  2564. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  2565. "type": "package",
  2566. "serviceable": true,
  2567. "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  2568. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  2569. "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  2570. },
  2571. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  2572. "type": "package",
  2573. "serviceable": true,
  2574. "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  2575. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  2576. "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  2577. },
  2578. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  2579. "type": "package",
  2580. "serviceable": true,
  2581. "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  2582. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  2583. "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  2584. },
  2585. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  2586. "type": "package",
  2587. "serviceable": true,
  2588. "sha512": "sha512-t15yGf5r6vMV1rB5O6TgfXKChtCaN3niwFw44M2ImX3eZ8yzueplqMqXPCbWzoBDHJVz9fE+9LFUGCsUmS2Jgg==",
  2589. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.1",
  2590. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512"
  2591. },
  2592. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  2593. "type": "package",
  2594. "serviceable": true,
  2595. "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  2596. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  2597. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  2598. },
  2599. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  2600. "type": "package",
  2601. "serviceable": true,
  2602. "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  2603. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  2604. "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  2605. },
  2606. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  2607. "type": "package",
  2608. "serviceable": true,
  2609. "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  2610. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  2611. "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  2612. },
  2613. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  2614. "type": "package",
  2615. "serviceable": true,
  2616. "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  2617. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  2618. "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  2619. },
  2620. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  2621. "type": "package",
  2622. "serviceable": true,
  2623. "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  2624. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  2625. "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  2626. },
  2627. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2628. "type": "package",
  2629. "serviceable": true,
  2630. "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  2631. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  2632. "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
  2633. },
  2634. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2635. "type": "package",
  2636. "serviceable": true,
  2637. "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  2638. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  2639. "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
  2640. },
  2641. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2642. "type": "package",
  2643. "serviceable": true,
  2644. "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  2645. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  2646. "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
  2647. },
  2648. "SharpZipLib/1.2.0": {
  2649. "type": "package",
  2650. "serviceable": true,
  2651. "sha512": "sha512-zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==",
  2652. "path": "sharpziplib/1.2.0",
  2653. "hashPath": "sharpziplib.1.2.0.nupkg.sha512"
  2654. },
  2655. "SSH.NET/2020.0.1": {
  2656. "type": "package",
  2657. "serviceable": true,
  2658. "sha512": "sha512-DhVeQ8JzoS8Z25VwZfQ/9HEjTO8eWs4ldsMkcMsUFK7TFc8GnpxBeRBj3X8mc5+rwvzZNNmLDm08a8TpPZNF/g==",
  2659. "path": "ssh.net/2020.0.1",
  2660. "hashPath": "ssh.net.2020.0.1.nupkg.sha512"
  2661. },
  2662. "SshNet.Security.Cryptography/1.3.0": {
  2663. "type": "package",
  2664. "serviceable": true,
  2665. "sha512": "sha512-5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  2666. "path": "sshnet.security.cryptography/1.3.0",
  2667. "hashPath": "sshnet.security.cryptography.1.3.0.nupkg.sha512"
  2668. },
  2669. "System.Collections/4.3.0": {
  2670. "type": "package",
  2671. "serviceable": true,
  2672. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  2673. "path": "system.collections/4.3.0",
  2674. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  2675. },
  2676. "System.Collections.Concurrent/4.3.0": {
  2677. "type": "package",
  2678. "serviceable": true,
  2679. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  2680. "path": "system.collections.concurrent/4.3.0",
  2681. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  2682. },
  2683. "System.Collections.Immutable/1.5.0": {
  2684. "type": "package",
  2685. "serviceable": true,
  2686. "sha512": "sha512-EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==",
  2687. "path": "system.collections.immutable/1.5.0",
  2688. "hashPath": "system.collections.immutable.1.5.0.nupkg.sha512"
  2689. },
  2690. "System.Collections.NonGeneric/4.3.0": {
  2691. "type": "package",
  2692. "serviceable": true,
  2693. "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  2694. "path": "system.collections.nongeneric/4.3.0",
  2695. "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
  2696. },
  2697. "System.Collections.Specialized/4.3.0": {
  2698. "type": "package",
  2699. "serviceable": true,
  2700. "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  2701. "path": "system.collections.specialized/4.3.0",
  2702. "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
  2703. },
  2704. "System.ComponentModel/4.3.0": {
  2705. "type": "package",
  2706. "serviceable": true,
  2707. "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  2708. "path": "system.componentmodel/4.3.0",
  2709. "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
  2710. },
  2711. "System.ComponentModel.Annotations/4.7.0": {
  2712. "type": "package",
  2713. "serviceable": true,
  2714. "sha512": "sha512-0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  2715. "path": "system.componentmodel.annotations/4.7.0",
  2716. "hashPath": "system.componentmodel.annotations.4.7.0.nupkg.sha512"
  2717. },
  2718. "System.ComponentModel.Primitives/4.3.0": {
  2719. "type": "package",
  2720. "serviceable": true,
  2721. "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  2722. "path": "system.componentmodel.primitives/4.3.0",
  2723. "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
  2724. },
  2725. "System.ComponentModel.TypeConverter/4.3.0": {
  2726. "type": "package",
  2727. "serviceable": true,
  2728. "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  2729. "path": "system.componentmodel.typeconverter/4.3.0",
  2730. "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
  2731. },
  2732. "System.Composition/1.0.31": {
  2733. "type": "package",
  2734. "serviceable": true,
  2735. "sha512": "sha512-I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==",
  2736. "path": "system.composition/1.0.31",
  2737. "hashPath": "system.composition.1.0.31.nupkg.sha512"
  2738. },
  2739. "System.Composition.AttributedModel/1.0.31": {
  2740. "type": "package",
  2741. "serviceable": true,
  2742. "sha512": "sha512-NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==",
  2743. "path": "system.composition.attributedmodel/1.0.31",
  2744. "hashPath": "system.composition.attributedmodel.1.0.31.nupkg.sha512"
  2745. },
  2746. "System.Composition.Convention/1.0.31": {
  2747. "type": "package",
  2748. "serviceable": true,
  2749. "sha512": "sha512-GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==",
  2750. "path": "system.composition.convention/1.0.31",
  2751. "hashPath": "system.composition.convention.1.0.31.nupkg.sha512"
  2752. },
  2753. "System.Composition.Hosting/1.0.31": {
  2754. "type": "package",
  2755. "serviceable": true,
  2756. "sha512": "sha512-fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==",
  2757. "path": "system.composition.hosting/1.0.31",
  2758. "hashPath": "system.composition.hosting.1.0.31.nupkg.sha512"
  2759. },
  2760. "System.Composition.Runtime/1.0.31": {
  2761. "type": "package",
  2762. "serviceable": true,
  2763. "sha512": "sha512-0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==",
  2764. "path": "system.composition.runtime/1.0.31",
  2765. "hashPath": "system.composition.runtime.1.0.31.nupkg.sha512"
  2766. },
  2767. "System.Composition.TypedParts/1.0.31": {
  2768. "type": "package",
  2769. "serviceable": true,
  2770. "sha512": "sha512-0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==",
  2771. "path": "system.composition.typedparts/1.0.31",
  2772. "hashPath": "system.composition.typedparts.1.0.31.nupkg.sha512"
  2773. },
  2774. "System.Configuration.ConfigurationManager/4.7.0": {
  2775. "type": "package",
  2776. "serviceable": true,
  2777. "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  2778. "path": "system.configuration.configurationmanager/4.7.0",
  2779. "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512"
  2780. },
  2781. "System.Data.Common/4.3.0": {
  2782. "type": "package",
  2783. "serviceable": true,
  2784. "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  2785. "path": "system.data.common/4.3.0",
  2786. "hashPath": "system.data.common.4.3.0.nupkg.sha512"
  2787. },
  2788. "System.Data.SqlClient/4.8.0": {
  2789. "type": "package",
  2790. "serviceable": true,
  2791. "sha512": "sha512-xsSRvrPbeXgD6rAqFGw1FZsMLaoDVwzgflHig8OLypDpiyb4XISChy2XOutoNsQIkBP9SJ4nSvhd8uStDU7AiA==",
  2792. "path": "system.data.sqlclient/4.8.0",
  2793. "hashPath": "system.data.sqlclient.4.8.0.nupkg.sha512"
  2794. },
  2795. "System.Diagnostics.Debug/4.3.0": {
  2796. "type": "package",
  2797. "serviceable": true,
  2798. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  2799. "path": "system.diagnostics.debug/4.3.0",
  2800. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  2801. },
  2802. "System.Diagnostics.DiagnosticSource/4.7.1": {
  2803. "type": "package",
  2804. "serviceable": true,
  2805. "sha512": "sha512-j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
  2806. "path": "system.diagnostics.diagnosticsource/4.7.1",
  2807. "hashPath": "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512"
  2808. },
  2809. "System.Diagnostics.Tools/4.3.0": {
  2810. "type": "package",
  2811. "serviceable": true,
  2812. "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  2813. "path": "system.diagnostics.tools/4.3.0",
  2814. "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
  2815. },
  2816. "System.Diagnostics.Tracing/4.3.0": {
  2817. "type": "package",
  2818. "serviceable": true,
  2819. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  2820. "path": "system.diagnostics.tracing/4.3.0",
  2821. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  2822. },
  2823. "System.Drawing.Common/4.7.0": {
  2824. "type": "package",
  2825. "serviceable": true,
  2826. "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  2827. "path": "system.drawing.common/4.7.0",
  2828. "hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
  2829. },
  2830. "System.Globalization/4.3.0": {
  2831. "type": "package",
  2832. "serviceable": true,
  2833. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  2834. "path": "system.globalization/4.3.0",
  2835. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  2836. },
  2837. "System.Globalization.Calendars/4.3.0": {
  2838. "type": "package",
  2839. "serviceable": true,
  2840. "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  2841. "path": "system.globalization.calendars/4.3.0",
  2842. "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
  2843. },
  2844. "System.Globalization.Extensions/4.3.0": {
  2845. "type": "package",
  2846. "serviceable": true,
  2847. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  2848. "path": "system.globalization.extensions/4.3.0",
  2849. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  2850. },
  2851. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  2852. "type": "package",
  2853. "serviceable": true,
  2854. "sha512": "sha512-KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
  2855. "path": "system.identitymodel.tokens.jwt/5.6.0",
  2856. "hashPath": "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512"
  2857. },
  2858. "System.Interactive.Async/3.2.0": {
  2859. "type": "package",
  2860. "serviceable": true,
  2861. "sha512": "sha512-C07p0dAA5lGqYUPiPCK3paR709gqS4aMDDsje0v0pvffwzLaxmsn5YQTfZbyNG5qrudPx+BCxTqISnncQ3wIoQ==",
  2862. "path": "system.interactive.async/3.2.0",
  2863. "hashPath": "system.interactive.async.3.2.0.nupkg.sha512"
  2864. },
  2865. "System.IO/4.3.0": {
  2866. "type": "package",
  2867. "serviceable": true,
  2868. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  2869. "path": "system.io/4.3.0",
  2870. "hashPath": "system.io.4.3.0.nupkg.sha512"
  2871. },
  2872. "System.IO.FileSystem/4.3.0": {
  2873. "type": "package",
  2874. "serviceable": true,
  2875. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  2876. "path": "system.io.filesystem/4.3.0",
  2877. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  2878. },
  2879. "System.IO.FileSystem.Primitives/4.3.0": {
  2880. "type": "package",
  2881. "serviceable": true,
  2882. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  2883. "path": "system.io.filesystem.primitives/4.3.0",
  2884. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  2885. },
  2886. "System.Linq/4.3.0": {
  2887. "type": "package",
  2888. "serviceable": true,
  2889. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  2890. "path": "system.linq/4.3.0",
  2891. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  2892. },
  2893. "System.Linq.Expressions/4.3.0": {
  2894. "type": "package",
  2895. "serviceable": true,
  2896. "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  2897. "path": "system.linq.expressions/4.3.0",
  2898. "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
  2899. },
  2900. "System.Linq.Queryable/4.0.1": {
  2901. "type": "package",
  2902. "serviceable": true,
  2903. "sha512": "sha512-Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
  2904. "path": "system.linq.queryable/4.0.1",
  2905. "hashPath": "system.linq.queryable.4.0.1.nupkg.sha512"
  2906. },
  2907. "System.Memory/4.5.3": {
  2908. "type": "package",
  2909. "serviceable": true,
  2910. "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  2911. "path": "system.memory/4.5.3",
  2912. "hashPath": "system.memory.4.5.3.nupkg.sha512"
  2913. },
  2914. "System.Net.Http/4.3.0": {
  2915. "type": "package",
  2916. "serviceable": true,
  2917. "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  2918. "path": "system.net.http/4.3.0",
  2919. "hashPath": "system.net.http.4.3.0.nupkg.sha512"
  2920. },
  2921. "System.Net.NameResolution/4.3.0": {
  2922. "type": "package",
  2923. "serviceable": true,
  2924. "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  2925. "path": "system.net.nameresolution/4.3.0",
  2926. "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
  2927. },
  2928. "System.Net.Primitives/4.3.0": {
  2929. "type": "package",
  2930. "serviceable": true,
  2931. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  2932. "path": "system.net.primitives/4.3.0",
  2933. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  2934. },
  2935. "System.Net.Requests/4.3.0": {
  2936. "type": "package",
  2937. "serviceable": true,
  2938. "sha512": "sha512-OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==",
  2939. "path": "system.net.requests/4.3.0",
  2940. "hashPath": "system.net.requests.4.3.0.nupkg.sha512"
  2941. },
  2942. "System.Net.Security/4.3.2": {
  2943. "type": "package",
  2944. "serviceable": true,
  2945. "sha512": "sha512-xT2jbYpbBo3ha87rViHoTA6WdvqOAW37drmqyx/6LD8p7HEPT2qgdxoimRzWtPg8Jh4X5G9BV2seeTv4x6FYlA==",
  2946. "path": "system.net.security/4.3.2",
  2947. "hashPath": "system.net.security.4.3.2.nupkg.sha512"
  2948. },
  2949. "System.Net.WebHeaderCollection/4.3.0": {
  2950. "type": "package",
  2951. "serviceable": true,
  2952. "sha512": "sha512-XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==",
  2953. "path": "system.net.webheadercollection/4.3.0",
  2954. "hashPath": "system.net.webheadercollection.4.3.0.nupkg.sha512"
  2955. },
  2956. "System.ObjectModel/4.3.0": {
  2957. "type": "package",
  2958. "serviceable": true,
  2959. "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  2960. "path": "system.objectmodel/4.3.0",
  2961. "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
  2962. },
  2963. "System.Private.DataContractSerialization/4.3.0": {
  2964. "type": "package",
  2965. "serviceable": true,
  2966. "sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
  2967. "path": "system.private.datacontractserialization/4.3.0",
  2968. "hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512"
  2969. },
  2970. "System.Private.Uri/4.3.2": {
  2971. "type": "package",
  2972. "serviceable": true,
  2973. "sha512": "sha512-o1+7RJnu3Ik3PazR7Z7tJhjPdE000Eq2KGLLWhqJJKXj04wrS8lwb1OFtDF9jzXXADhUuZNJZlPc98uwwqmpFA==",
  2974. "path": "system.private.uri/4.3.2",
  2975. "hashPath": "system.private.uri.4.3.2.nupkg.sha512"
  2976. },
  2977. "System.Reflection/4.3.0": {
  2978. "type": "package",
  2979. "serviceable": true,
  2980. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  2981. "path": "system.reflection/4.3.0",
  2982. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  2983. },
  2984. "System.Reflection.Emit/4.3.0": {
  2985. "type": "package",
  2986. "serviceable": true,
  2987. "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  2988. "path": "system.reflection.emit/4.3.0",
  2989. "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
  2990. },
  2991. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2992. "type": "package",
  2993. "serviceable": true,
  2994. "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  2995. "path": "system.reflection.emit.ilgeneration/4.3.0",
  2996. "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
  2997. },
  2998. "System.Reflection.Emit.Lightweight/4.3.0": {
  2999. "type": "package",
  3000. "serviceable": true,
  3001. "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  3002. "path": "system.reflection.emit.lightweight/4.3.0",
  3003. "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
  3004. },
  3005. "System.Reflection.Extensions/4.3.0": {
  3006. "type": "package",
  3007. "serviceable": true,
  3008. "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  3009. "path": "system.reflection.extensions/4.3.0",
  3010. "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
  3011. },
  3012. "System.Reflection.Metadata/1.6.0": {
  3013. "type": "package",
  3014. "serviceable": true,
  3015. "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  3016. "path": "system.reflection.metadata/1.6.0",
  3017. "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
  3018. },
  3019. "System.Reflection.Primitives/4.3.0": {
  3020. "type": "package",
  3021. "serviceable": true,
  3022. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  3023. "path": "system.reflection.primitives/4.3.0",
  3024. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  3025. },
  3026. "System.Reflection.TypeExtensions/4.7.0": {
  3027. "type": "package",
  3028. "serviceable": true,
  3029. "sha512": "sha512-VybpaOQQhqE6siHppMktjfGBw1GCwvCqiufqmP8F1nj7fTUNtW35LOEt3UZTEsECfo+ELAl/9o9nJx3U91i7vA==",
  3030. "path": "system.reflection.typeextensions/4.7.0",
  3031. "hashPath": "system.reflection.typeextensions.4.7.0.nupkg.sha512"
  3032. },
  3033. "System.Resources.ResourceManager/4.3.0": {
  3034. "type": "package",
  3035. "serviceable": true,
  3036. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  3037. "path": "system.resources.resourcemanager/4.3.0",
  3038. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  3039. },
  3040. "System.Runtime/4.3.0": {
  3041. "type": "package",
  3042. "serviceable": true,
  3043. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  3044. "path": "system.runtime/4.3.0",
  3045. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  3046. },
  3047. "System.Runtime.Caching/4.7.0": {
  3048. "type": "package",
  3049. "serviceable": true,
  3050. "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  3051. "path": "system.runtime.caching/4.7.0",
  3052. "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512"
  3053. },
  3054. "System.Runtime.CompilerServices.Unsafe/4.7.0": {
  3055. "type": "package",
  3056. "serviceable": true,
  3057. "sha512": "sha512-IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==",
  3058. "path": "system.runtime.compilerservices.unsafe/4.7.0",
  3059. "hashPath": "system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512"
  3060. },
  3061. "System.Runtime.Extensions/4.3.0": {
  3062. "type": "package",
  3063. "serviceable": true,
  3064. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  3065. "path": "system.runtime.extensions/4.3.0",
  3066. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  3067. },
  3068. "System.Runtime.Handles/4.3.0": {
  3069. "type": "package",
  3070. "serviceable": true,
  3071. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  3072. "path": "system.runtime.handles/4.3.0",
  3073. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  3074. },
  3075. "System.Runtime.InteropServices/4.3.0": {
  3076. "type": "package",
  3077. "serviceable": true,
  3078. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  3079. "path": "system.runtime.interopservices/4.3.0",
  3080. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  3081. },
  3082. "System.Runtime.Loader/4.3.0": {
  3083. "type": "package",
  3084. "serviceable": true,
  3085. "sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  3086. "path": "system.runtime.loader/4.3.0",
  3087. "hashPath": "system.runtime.loader.4.3.0.nupkg.sha512"
  3088. },
  3089. "System.Runtime.Numerics/4.3.0": {
  3090. "type": "package",
  3091. "serviceable": true,
  3092. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  3093. "path": "system.runtime.numerics/4.3.0",
  3094. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  3095. },
  3096. "System.Runtime.Serialization.Formatters/4.3.0": {
  3097. "type": "package",
  3098. "serviceable": true,
  3099. "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  3100. "path": "system.runtime.serialization.formatters/4.3.0",
  3101. "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
  3102. },
  3103. "System.Runtime.Serialization.Json/4.3.0": {
  3104. "type": "package",
  3105. "serviceable": true,
  3106. "sha512": "sha512-CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==",
  3107. "path": "system.runtime.serialization.json/4.3.0",
  3108. "hashPath": "system.runtime.serialization.json.4.3.0.nupkg.sha512"
  3109. },
  3110. "System.Runtime.Serialization.Primitives/4.3.0": {
  3111. "type": "package",
  3112. "serviceable": true,
  3113. "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  3114. "path": "system.runtime.serialization.primitives/4.3.0",
  3115. "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
  3116. },
  3117. "System.Security.AccessControl/4.7.0": {
  3118. "type": "package",
  3119. "serviceable": true,
  3120. "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  3121. "path": "system.security.accesscontrol/4.7.0",
  3122. "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
  3123. },
  3124. "System.Security.Claims/4.3.0": {
  3125. "type": "package",
  3126. "serviceable": true,
  3127. "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  3128. "path": "system.security.claims/4.3.0",
  3129. "hashPath": "system.security.claims.4.3.0.nupkg.sha512"
  3130. },
  3131. "System.Security.Cryptography.Algorithms/4.3.1": {
  3132. "type": "package",
  3133. "serviceable": true,
  3134. "sha512": "sha512-DVUblnRfnarrI5olEC2B/OCsJQd0anjVaObQMndHSc43efbc88/RMOlDyg/EyY0ix5ecyZMXS8zMksb5ukebZA==",
  3135. "path": "system.security.cryptography.algorithms/4.3.1",
  3136. "hashPath": "system.security.cryptography.algorithms.4.3.1.nupkg.sha512"
  3137. },
  3138. "System.Security.Cryptography.Cng/4.7.0": {
  3139. "type": "package",
  3140. "serviceable": true,
  3141. "sha512": "sha512-4WQjFuypWtxb/bl/YwEE7LYGn4fgpsikFfBU6xwEm4YBYiRAhXAEJ62lILBu2JJSFbClIAntFTGfDZafn8yZTg==",
  3142. "path": "system.security.cryptography.cng/4.7.0",
  3143. "hashPath": "system.security.cryptography.cng.4.7.0.nupkg.sha512"
  3144. },
  3145. "System.Security.Cryptography.Csp/4.3.0": {
  3146. "type": "package",
  3147. "serviceable": true,
  3148. "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  3149. "path": "system.security.cryptography.csp/4.3.0",
  3150. "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
  3151. },
  3152. "System.Security.Cryptography.Encoding/4.3.0": {
  3153. "type": "package",
  3154. "serviceable": true,
  3155. "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  3156. "path": "system.security.cryptography.encoding/4.3.0",
  3157. "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
  3158. },
  3159. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3160. "type": "package",
  3161. "serviceable": true,
  3162. "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  3163. "path": "system.security.cryptography.openssl/4.3.0",
  3164. "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  3165. },
  3166. "System.Security.Cryptography.Pkcs/4.7.0": {
  3167. "type": "package",
  3168. "serviceable": true,
  3169. "sha512": "sha512-0Srzh6YlhjuMxaqMyeCCdZs22cucaUAG6SKDd3gNHBJmre0VZ71ekzWu9rvLD4YXPetyNdPvV6Qst+8C++9v3Q==",
  3170. "path": "system.security.cryptography.pkcs/4.7.0",
  3171. "hashPath": "system.security.cryptography.pkcs.4.7.0.nupkg.sha512"
  3172. },
  3173. "System.Security.Cryptography.Primitives/4.3.0": {
  3174. "type": "package",
  3175. "serviceable": true,
  3176. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  3177. "path": "system.security.cryptography.primitives/4.3.0",
  3178. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  3179. },
  3180. "System.Security.Cryptography.ProtectedData/4.7.0": {
  3181. "type": "package",
  3182. "serviceable": true,
  3183. "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  3184. "path": "system.security.cryptography.protecteddata/4.7.0",
  3185. "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
  3186. },
  3187. "System.Security.Cryptography.X509Certificates/4.3.2": {
  3188. "type": "package",
  3189. "serviceable": true,
  3190. "sha512": "sha512-uwlfOnvJd7rXRvP3aV126Q9XebIIEGEaZ245Rd5/ZwOg7U7AU+AmpE0vRh2F0DFjfOTuk7MAexv4nYiNP/RYnQ==",
  3191. "path": "system.security.cryptography.x509certificates/4.3.2",
  3192. "hashPath": "system.security.cryptography.x509certificates.4.3.2.nupkg.sha512"
  3193. },
  3194. "System.Security.Permissions/4.7.0": {
  3195. "type": "package",
  3196. "serviceable": true,
  3197. "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  3198. "path": "system.security.permissions/4.7.0",
  3199. "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
  3200. },
  3201. "System.Security.Principal/4.3.0": {
  3202. "type": "package",
  3203. "serviceable": true,
  3204. "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  3205. "path": "system.security.principal/4.3.0",
  3206. "hashPath": "system.security.principal.4.3.0.nupkg.sha512"
  3207. },
  3208. "System.Security.Principal.Windows/4.7.0": {
  3209. "type": "package",
  3210. "serviceable": true,
  3211. "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  3212. "path": "system.security.principal.windows/4.7.0",
  3213. "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
  3214. },
  3215. "System.Security.SecureString/4.3.0": {
  3216. "type": "package",
  3217. "serviceable": true,
  3218. "sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
  3219. "path": "system.security.securestring/4.3.0",
  3220. "hashPath": "system.security.securestring.4.3.0.nupkg.sha512"
  3221. },
  3222. "System.Text.Encoding/4.3.0": {
  3223. "type": "package",
  3224. "serviceable": true,
  3225. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  3226. "path": "system.text.encoding/4.3.0",
  3227. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  3228. },
  3229. "System.Text.Encoding.CodePages/4.7.0": {
  3230. "type": "package",
  3231. "serviceable": true,
  3232. "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  3233. "path": "system.text.encoding.codepages/4.7.0",
  3234. "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512"
  3235. },
  3236. "System.Text.Encoding.Extensions/4.3.0": {
  3237. "type": "package",
  3238. "serviceable": true,
  3239. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  3240. "path": "system.text.encoding.extensions/4.3.0",
  3241. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  3242. },
  3243. "System.Text.RegularExpressions/4.3.0": {
  3244. "type": "package",
  3245. "serviceable": true,
  3246. "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  3247. "path": "system.text.regularexpressions/4.3.0",
  3248. "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
  3249. },
  3250. "System.Threading/4.3.0": {
  3251. "type": "package",
  3252. "serviceable": true,
  3253. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  3254. "path": "system.threading/4.3.0",
  3255. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  3256. },
  3257. "System.Threading.Tasks/4.3.0": {
  3258. "type": "package",
  3259. "serviceable": true,
  3260. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  3261. "path": "system.threading.tasks/4.3.0",
  3262. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  3263. },
  3264. "System.Threading.Tasks.Extensions/4.5.3": {
  3265. "type": "package",
  3266. "serviceable": true,
  3267. "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==",
  3268. "path": "system.threading.tasks.extensions/4.5.3",
  3269. "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512"
  3270. },
  3271. "System.Threading.Thread/4.3.0": {
  3272. "type": "package",
  3273. "serviceable": true,
  3274. "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  3275. "path": "system.threading.thread/4.3.0",
  3276. "hashPath": "system.threading.thread.4.3.0.nupkg.sha512"
  3277. },
  3278. "System.Threading.ThreadPool/4.3.0": {
  3279. "type": "package",
  3280. "serviceable": true,
  3281. "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  3282. "path": "system.threading.threadpool/4.3.0",
  3283. "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
  3284. },
  3285. "System.Windows.Extensions/4.7.0": {
  3286. "type": "package",
  3287. "serviceable": true,
  3288. "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  3289. "path": "system.windows.extensions/4.7.0",
  3290. "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
  3291. },
  3292. "System.Xml.ReaderWriter/4.3.1": {
  3293. "type": "package",
  3294. "serviceable": true,
  3295. "sha512": "sha512-fVU1Xp9TEOHv1neQDtcJ4hNfYJ1pjfXzKY3VFeiRZK6HTV4Af2Ihyvq1FkPLrL1hzZhXv7NTmowQnL5DgTzIKA==",
  3296. "path": "system.xml.readerwriter/4.3.1",
  3297. "hashPath": "system.xml.readerwriter.4.3.1.nupkg.sha512"
  3298. },
  3299. "System.Xml.XDocument/4.3.0": {
  3300. "type": "package",
  3301. "serviceable": true,
  3302. "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  3303. "path": "system.xml.xdocument/4.3.0",
  3304. "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
  3305. },
  3306. "System.Xml.XmlDocument/4.3.0": {
  3307. "type": "package",
  3308. "serviceable": true,
  3309. "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  3310. "path": "system.xml.xmldocument/4.3.0",
  3311. "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
  3312. },
  3313. "System.Xml.XmlSerializer/4.3.0": {
  3314. "type": "package",
  3315. "serviceable": true,
  3316. "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
  3317. "path": "system.xml.xmlserializer/4.3.0",
  3318. "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
  3319. },
  3320. "System.Xml.XPath/4.3.0": {
  3321. "type": "package",
  3322. "serviceable": true,
  3323. "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
  3324. "path": "system.xml.xpath/4.3.0",
  3325. "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512"
  3326. },
  3327. "System.Xml.XPath.XDocument/4.3.0": {
  3328. "type": "package",
  3329. "serviceable": true,
  3330. "sha512": "sha512-jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==",
  3331. "path": "system.xml.xpath.xdocument/4.3.0",
  3332. "hashPath": "system.xml.xpath.xdocument.4.3.0.nupkg.sha512"
  3333. },
  3334. "System.Xml.XPath.XmlDocument/4.3.0": {
  3335. "type": "package",
  3336. "serviceable": true,
  3337. "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==",
  3338. "path": "system.xml.xpath.xmldocument/4.3.0",
  3339. "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512"
  3340. },
  3341. "ZKWeb.System.Drawing/4.0.1": {
  3342. "type": "package",
  3343. "serviceable": true,
  3344. "sha512": "sha512-r8OLPZ2cb9SSwjm8GNkMbqOgo58N8d8RwxJN1yF01atv+MQdNOqa5Xx117tIjWUbB6pBnVe6u+pXkYVORaCeWw==",
  3345. "path": "zkweb.system.drawing/4.0.1",
  3346. "hashPath": "zkweb.system.drawing.4.0.1.nupkg.sha512"
  3347. },
  3348. "Aspose.Cells/18.4.0.0": {
  3349. "type": "reference",
  3350. "serviceable": false,
  3351. "sha512": ""
  3352. }
  3353. }
  3354. }