Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

Diligent.WebAPI.Host.deps.json 140KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v6.0",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v6.0": {
  9. "Diligent.WebAPI.Host/1.0.0": {
  10. "dependencies": {
  11. "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0",
  12. "Diligent.WebAPI.Business": "1.0.0",
  13. "Diligent.WebAPI.Data": "1.0.0",
  14. "MediatR": "10.0.1",
  15. "MediatR.Extensions.Microsoft.DependencyInjection": "10.0.1",
  16. "Microsoft.AspNet.WebApi.Core": "5.2.9",
  17. "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.6",
  18. "Microsoft.AspNetCore.Identity": "2.2.0",
  19. "Microsoft.AspNetCore.Mvc.Versioning": "5.0.0",
  20. "Microsoft.EntityFrameworkCore.Design": "6.0.3",
  21. "Serilog": "2.11.0",
  22. "Serilog.AspNetCore": "5.0.0",
  23. "Serilog.Sinks.Console": "4.0.1",
  24. "Serilog.Sinks.File": "5.0.0",
  25. "Serilog.Sinks.Seq": "5.1.1"
  26. },
  27. "runtime": {
  28. "Diligent.WebAPI.Host.dll": {}
  29. }
  30. },
  31. "AspNetCore.Identity.MongoDbCore/3.1.2": {
  32. "dependencies": {
  33. "Microsoft.Extensions.Identity.Core": "3.1.12",
  34. "Microsoft.Extensions.Identity.Stores": "3.1.12",
  35. "MongoDB.Driver": "2.16.1",
  36. "MongoDbGenericRepository": "1.4.8"
  37. },
  38. "runtime": {
  39. "lib/netcoreapp3.1/AspNetCore.Identity.MongoDbCore.dll": {
  40. "assemblyVersion": "3.1.2.0",
  41. "fileVersion": "3.1.2.0"
  42. }
  43. }
  44. },
  45. "AutoMapper/11.0.1": {
  46. "dependencies": {
  47. "Microsoft.CSharp": "4.7.0"
  48. },
  49. "runtime": {
  50. "lib/netstandard2.1/AutoMapper.dll": {
  51. "assemblyVersion": "11.0.0.0",
  52. "fileVersion": "11.0.1.0"
  53. }
  54. }
  55. },
  56. "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": {
  57. "dependencies": {
  58. "AutoMapper": "11.0.1",
  59. "Microsoft.Extensions.Options": "6.0.0"
  60. },
  61. "runtime": {
  62. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {
  63. "assemblyVersion": "11.0.0.0",
  64. "fileVersion": "11.0.0.0"
  65. }
  66. }
  67. },
  68. "DnsClient/1.6.1": {
  69. "dependencies": {
  70. "Microsoft.Win32.Registry": "5.0.0"
  71. },
  72. "runtime": {
  73. "lib/net5.0/DnsClient.dll": {
  74. "assemblyVersion": "1.6.1.0",
  75. "fileVersion": "1.6.1.0"
  76. }
  77. }
  78. },
  79. "Humanizer.Core/2.8.26": {
  80. "runtime": {
  81. "lib/netstandard2.0/Humanizer.dll": {
  82. "assemblyVersion": "2.8.0.0",
  83. "fileVersion": "2.8.26.1919"
  84. }
  85. }
  86. },
  87. "MediatR/10.0.1": {
  88. "dependencies": {
  89. "MediatR.Contracts": "1.0.1"
  90. },
  91. "runtime": {
  92. "lib/netstandard2.1/MediatR.dll": {
  93. "assemblyVersion": "10.0.0.0",
  94. "fileVersion": "10.0.1.0"
  95. }
  96. }
  97. },
  98. "MediatR.Contracts/1.0.1": {
  99. "runtime": {
  100. "lib/netstandard2.0/MediatR.Contracts.dll": {
  101. "assemblyVersion": "1.0.1.0",
  102. "fileVersion": "1.0.1.0"
  103. }
  104. }
  105. },
  106. "MediatR.Extensions.Microsoft.DependencyInjection/10.0.1": {
  107. "dependencies": {
  108. "MediatR": "10.0.1",
  109. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0"
  110. },
  111. "runtime": {
  112. "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": {
  113. "assemblyVersion": "10.0.0.0",
  114. "fileVersion": "10.0.1.0"
  115. }
  116. }
  117. },
  118. "Microsoft.AspNet.WebApi.Client/5.2.9": {
  119. "dependencies": {
  120. "Newtonsoft.Json": "11.0.2",
  121. "Newtonsoft.Json.Bson": "1.0.1"
  122. },
  123. "runtime": {
  124. "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
  125. "assemblyVersion": "5.2.9.0",
  126. "fileVersion": "5.2.61129.10"
  127. }
  128. }
  129. },
  130. "Microsoft.AspNet.WebApi.Core/5.2.9": {
  131. "dependencies": {
  132. "Microsoft.AspNet.WebApi.Client": "5.2.9"
  133. },
  134. "runtime": {
  135. "lib/net45/System.Web.Http.dll": {
  136. "assemblyVersion": "5.2.9.0",
  137. "fileVersion": "5.2.61129.10"
  138. }
  139. }
  140. },
  141. "Microsoft.AspNetCore/2.2.0": {
  142. "dependencies": {
  143. "Microsoft.AspNetCore.Diagnostics": "2.2.0",
  144. "Microsoft.AspNetCore.HostFiltering": "2.2.0",
  145. "Microsoft.AspNetCore.Hosting": "2.2.0",
  146. "Microsoft.AspNetCore.Routing": "2.2.0",
  147. "Microsoft.AspNetCore.Server.IIS": "2.2.0",
  148. "Microsoft.AspNetCore.Server.IISIntegration": "2.2.0",
  149. "Microsoft.AspNetCore.Server.Kestrel": "2.2.0",
  150. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0",
  151. "Microsoft.Extensions.Configuration.CommandLine": "2.2.0",
  152. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0",
  153. "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
  154. "Microsoft.Extensions.Configuration.Json": "2.2.0",
  155. "Microsoft.Extensions.Configuration.UserSecrets": "2.2.0",
  156. "Microsoft.Extensions.Logging": "6.0.0",
  157. "Microsoft.Extensions.Logging.Configuration": "2.2.0",
  158. "Microsoft.Extensions.Logging.Console": "2.2.0",
  159. "Microsoft.Extensions.Logging.Debug": "2.2.0",
  160. "Microsoft.Extensions.Logging.EventSource": "2.2.0"
  161. }
  162. },
  163. "Microsoft.AspNetCore.Authentication/2.2.0": {
  164. "dependencies": {
  165. "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
  166. "Microsoft.AspNetCore.DataProtection": "2.2.0",
  167. "Microsoft.AspNetCore.Http": "2.2.0",
  168. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  169. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  170. "Microsoft.Extensions.Options": "6.0.0",
  171. "Microsoft.Extensions.WebEncoders": "2.2.0"
  172. }
  173. },
  174. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  175. "dependencies": {
  176. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  177. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  178. "Microsoft.Extensions.Options": "6.0.0"
  179. }
  180. },
  181. "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": {
  182. "dependencies": {
  183. "Microsoft.AspNetCore.Authentication": "2.2.0"
  184. }
  185. },
  186. "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
  187. "dependencies": {
  188. "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
  189. "Microsoft.AspNetCore.Http": "2.2.0",
  190. "Microsoft.AspNetCore.Http.Extensions": "2.2.0"
  191. }
  192. },
  193. "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.6": {
  194. "dependencies": {
  195. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0"
  196. },
  197. "runtime": {
  198. "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  199. "assemblyVersion": "6.0.6.0",
  200. "fileVersion": "6.0.622.26805"
  201. }
  202. }
  203. },
  204. "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
  205. "dependencies": {
  206. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  207. "System.IO.Pipelines": "4.5.2"
  208. }
  209. },
  210. "Microsoft.AspNetCore.Cryptography.Internal/3.1.12": {},
  211. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.12": {
  212. "dependencies": {
  213. "Microsoft.AspNetCore.Cryptography.Internal": "3.1.12"
  214. }
  215. },
  216. "Microsoft.AspNetCore.DataProtection/2.2.0": {
  217. "dependencies": {
  218. "Microsoft.AspNetCore.Cryptography.Internal": "3.1.12",
  219. "Microsoft.AspNetCore.DataProtection.Abstractions": "2.2.0",
  220. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  221. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  222. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  223. "Microsoft.Extensions.Options": "6.0.0",
  224. "Microsoft.Win32.Registry": "5.0.0",
  225. "System.Security.Cryptography.Xml": "4.5.0",
  226. "System.Security.Principal.Windows": "5.0.0"
  227. }
  228. },
  229. "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": {},
  230. "Microsoft.AspNetCore.Diagnostics/2.2.0": {
  231. "dependencies": {
  232. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.2.0",
  233. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  234. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  235. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  236. "Microsoft.Extensions.FileProviders.Physical": "2.2.0",
  237. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  238. "Microsoft.Extensions.Options": "6.0.0",
  239. "System.Diagnostics.DiagnosticSource": "6.0.0",
  240. "System.Reflection.Metadata": "1.6.0"
  241. }
  242. },
  243. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": {},
  244. "Microsoft.AspNetCore.HostFiltering/2.2.0": {
  245. "dependencies": {
  246. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  247. "Microsoft.AspNetCore.Http": "2.2.0",
  248. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  249. "Microsoft.Extensions.Options": "6.0.0"
  250. }
  251. },
  252. "Microsoft.AspNetCore.Hosting/2.2.0": {
  253. "dependencies": {
  254. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  255. "Microsoft.AspNetCore.Http": "2.2.0",
  256. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  257. "Microsoft.Extensions.Configuration": "2.2.0",
  258. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0",
  259. "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
  260. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  261. "Microsoft.Extensions.FileProviders.Physical": "2.2.0",
  262. "Microsoft.Extensions.Hosting.Abstractions": "3.1.8",
  263. "Microsoft.Extensions.Logging": "6.0.0",
  264. "Microsoft.Extensions.Options": "6.0.0",
  265. "System.Diagnostics.DiagnosticSource": "6.0.0",
  266. "System.Reflection.Metadata": "1.6.0"
  267. }
  268. },
  269. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  270. "dependencies": {
  271. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  272. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  273. "Microsoft.Extensions.Hosting.Abstractions": "3.1.8"
  274. }
  275. },
  276. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  277. "dependencies": {
  278. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  279. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  280. }
  281. },
  282. "Microsoft.AspNetCore.Http/2.2.0": {
  283. "dependencies": {
  284. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  285. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  286. "Microsoft.Extensions.ObjectPool": "2.2.0",
  287. "Microsoft.Extensions.Options": "6.0.0",
  288. "Microsoft.Net.Http.Headers": "2.2.0"
  289. }
  290. },
  291. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  292. "dependencies": {
  293. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  294. "System.Text.Encodings.Web": "4.5.0"
  295. }
  296. },
  297. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  298. "dependencies": {
  299. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  300. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.8",
  301. "Microsoft.Net.Http.Headers": "2.2.0",
  302. "System.Buffers": "4.5.1"
  303. }
  304. },
  305. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  306. "dependencies": {
  307. "Microsoft.Extensions.Primitives": "6.0.0"
  308. }
  309. },
  310. "Microsoft.AspNetCore.HttpOverrides/2.2.0": {
  311. "dependencies": {
  312. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  313. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  314. "Microsoft.Extensions.Options": "6.0.0"
  315. }
  316. },
  317. "Microsoft.AspNetCore.Identity/2.2.0": {
  318. "dependencies": {
  319. "Microsoft.AspNetCore.Authentication.Cookies": "2.2.0",
  320. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.12",
  321. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  322. "Microsoft.Extensions.Identity.Core": "3.1.12"
  323. }
  324. },
  325. "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": {
  326. "runtime": {
  327. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.dll": {
  328. "assemblyVersion": "5.0.0.0",
  329. "fileVersion": "5.0.7710.5690"
  330. }
  331. }
  332. },
  333. "Microsoft.AspNetCore.Routing/2.2.0": {
  334. "dependencies": {
  335. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  336. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  337. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  338. "Microsoft.Extensions.ObjectPool": "2.2.0",
  339. "Microsoft.Extensions.Options": "6.0.0"
  340. }
  341. },
  342. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  343. "dependencies": {
  344. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
  345. }
  346. },
  347. "Microsoft.AspNetCore.Server.IIS/2.2.0": {
  348. "dependencies": {
  349. "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
  350. "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0",
  351. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  352. "System.IO.Pipelines": "4.5.2",
  353. "System.Security.Principal.Windows": "5.0.0"
  354. }
  355. },
  356. "Microsoft.AspNetCore.Server.IISIntegration/2.2.0": {
  357. "dependencies": {
  358. "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
  359. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  360. "Microsoft.AspNetCore.Http": "2.2.0",
  361. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  362. "Microsoft.AspNetCore.HttpOverrides": "2.2.0",
  363. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  364. "Microsoft.Extensions.Options": "6.0.0",
  365. "System.Buffers": "4.5.1",
  366. "System.IO.Pipelines": "4.5.2",
  367. "System.Memory": "4.5.1",
  368. "System.Numerics.Vectors": "4.5.0",
  369. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  370. "System.Security.Principal.Windows": "5.0.0"
  371. }
  372. },
  373. "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
  374. "dependencies": {
  375. "Microsoft.AspNetCore.Hosting": "2.2.0",
  376. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0",
  377. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0",
  378. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.0"
  379. }
  380. },
  381. "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
  382. "dependencies": {
  383. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  384. "Microsoft.AspNetCore.Http": "2.2.0",
  385. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
  386. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  387. "Microsoft.Extensions.Configuration.Binder": "2.2.0",
  388. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  389. "Microsoft.Extensions.Options": "6.0.0",
  390. "Microsoft.Net.Http.Headers": "2.2.0",
  391. "System.Memory": "4.5.1",
  392. "System.Numerics.Vectors": "4.5.0",
  393. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  394. "System.Security.Cryptography.Cng": "4.5.0",
  395. "System.Threading.Tasks.Extensions": "4.5.1"
  396. }
  397. },
  398. "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
  399. "dependencies": {
  400. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  401. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0"
  402. },
  403. "runtime": {
  404. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
  405. "assemblyVersion": "2.2.0.0",
  406. "fileVersion": "2.2.0.18316"
  407. }
  408. }
  409. },
  410. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
  411. "dependencies": {
  412. "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0"
  413. },
  414. "runtime": {
  415. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
  416. "assemblyVersion": "2.2.0.0",
  417. "fileVersion": "2.2.0.18316"
  418. }
  419. }
  420. },
  421. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.0": {
  422. "dependencies": {
  423. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  424. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
  425. "Microsoft.Extensions.Options": "6.0.0"
  426. }
  427. },
  428. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  429. "dependencies": {
  430. "Microsoft.Net.Http.Headers": "2.2.0",
  431. "System.Text.Encodings.Web": "4.5.0"
  432. }
  433. },
  434. "Microsoft.CSharp/4.7.0": {},
  435. "Microsoft.Data.SqlClient/2.1.4": {
  436. "dependencies": {
  437. "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
  438. "Microsoft.Identity.Client": "4.21.1",
  439. "Microsoft.IdentityModel.JsonWebTokens": "6.10.0",
  440. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0",
  441. "Microsoft.Win32.Registry": "5.0.0",
  442. "System.Configuration.ConfigurationManager": "4.7.0",
  443. "System.Diagnostics.DiagnosticSource": "6.0.0",
  444. "System.Runtime.Caching": "4.7.0",
  445. "System.Security.Principal.Windows": "5.0.0",
  446. "System.Text.Encoding.CodePages": "4.7.0"
  447. },
  448. "runtime": {
  449. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  450. "assemblyVersion": "2.0.20168.4",
  451. "fileVersion": "2.0.20168.4"
  452. }
  453. },
  454. "runtimeTargets": {
  455. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  456. "rid": "unix",
  457. "assetType": "runtime",
  458. "assemblyVersion": "2.0.20168.4",
  459. "fileVersion": "2.0.20168.4"
  460. },
  461. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  462. "rid": "win",
  463. "assetType": "runtime",
  464. "assemblyVersion": "2.0.20168.4",
  465. "fileVersion": "2.0.20168.4"
  466. }
  467. }
  468. },
  469. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  470. "runtimeTargets": {
  471. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  472. "rid": "win-arm",
  473. "assetType": "native",
  474. "fileVersion": "2.1.1.0"
  475. },
  476. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  477. "rid": "win-arm64",
  478. "assetType": "native",
  479. "fileVersion": "2.1.1.0"
  480. },
  481. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  482. "rid": "win-x64",
  483. "assetType": "native",
  484. "fileVersion": "2.1.1.0"
  485. },
  486. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  487. "rid": "win-x86",
  488. "assetType": "native",
  489. "fileVersion": "2.1.1.0"
  490. }
  491. }
  492. },
  493. "Microsoft.EntityFrameworkCore/6.0.3": {
  494. "dependencies": {
  495. "Microsoft.EntityFrameworkCore.Abstractions": "6.0.3",
  496. "Microsoft.EntityFrameworkCore.Analyzers": "6.0.3",
  497. "Microsoft.Extensions.Caching.Memory": "6.0.1",
  498. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  499. "Microsoft.Extensions.Logging": "6.0.0",
  500. "System.Collections.Immutable": "6.0.0",
  501. "System.Diagnostics.DiagnosticSource": "6.0.0"
  502. },
  503. "runtime": {
  504. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  505. "assemblyVersion": "6.0.3.0",
  506. "fileVersion": "6.0.322.12306"
  507. }
  508. }
  509. },
  510. "Microsoft.EntityFrameworkCore.Abstractions/6.0.3": {
  511. "runtime": {
  512. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  513. "assemblyVersion": "6.0.3.0",
  514. "fileVersion": "6.0.322.12306"
  515. }
  516. }
  517. },
  518. "Microsoft.EntityFrameworkCore.Analyzers/6.0.3": {},
  519. "Microsoft.EntityFrameworkCore.Design/6.0.3": {
  520. "dependencies": {
  521. "Humanizer.Core": "2.8.26",
  522. "Microsoft.EntityFrameworkCore.Relational": "6.0.3"
  523. },
  524. "runtime": {
  525. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {
  526. "assemblyVersion": "6.0.3.0",
  527. "fileVersion": "6.0.322.12306"
  528. }
  529. }
  530. },
  531. "Microsoft.EntityFrameworkCore.Relational/6.0.3": {
  532. "dependencies": {
  533. "Microsoft.EntityFrameworkCore": "6.0.3",
  534. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  535. },
  536. "runtime": {
  537. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  538. "assemblyVersion": "6.0.3.0",
  539. "fileVersion": "6.0.322.12306"
  540. }
  541. }
  542. },
  543. "Microsoft.EntityFrameworkCore.SqlServer/6.0.3": {
  544. "dependencies": {
  545. "Microsoft.Data.SqlClient": "2.1.4",
  546. "Microsoft.EntityFrameworkCore.Relational": "6.0.3"
  547. },
  548. "runtime": {
  549. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  550. "assemblyVersion": "6.0.3.0",
  551. "fileVersion": "6.0.322.12306"
  552. }
  553. }
  554. },
  555. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  556. "dependencies": {
  557. "Microsoft.Extensions.Primitives": "6.0.0"
  558. }
  559. },
  560. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  561. "dependencies": {
  562. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  563. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  564. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  565. "Microsoft.Extensions.Options": "6.0.0",
  566. "Microsoft.Extensions.Primitives": "6.0.0"
  567. },
  568. "runtime": {
  569. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  570. "assemblyVersion": "6.0.0.0",
  571. "fileVersion": "6.0.222.6406"
  572. }
  573. }
  574. },
  575. "Microsoft.Extensions.Configuration/2.2.0": {
  576. "dependencies": {
  577. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  578. }
  579. },
  580. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  581. "dependencies": {
  582. "Microsoft.Extensions.Primitives": "6.0.0"
  583. }
  584. },
  585. "Microsoft.Extensions.Configuration.Binder/2.2.0": {
  586. "dependencies": {
  587. "Microsoft.Extensions.Configuration": "2.2.0"
  588. }
  589. },
  590. "Microsoft.Extensions.Configuration.CommandLine/2.2.0": {
  591. "dependencies": {
  592. "Microsoft.Extensions.Configuration": "2.2.0"
  593. }
  594. },
  595. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
  596. "dependencies": {
  597. "Microsoft.Extensions.Configuration": "2.2.0"
  598. }
  599. },
  600. "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
  601. "dependencies": {
  602. "Microsoft.Extensions.Configuration": "2.2.0",
  603. "Microsoft.Extensions.FileProviders.Physical": "2.2.0"
  604. }
  605. },
  606. "Microsoft.Extensions.Configuration.Json/2.2.0": {
  607. "dependencies": {
  608. "Microsoft.Extensions.Configuration": "2.2.0",
  609. "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
  610. "Newtonsoft.Json": "11.0.2"
  611. }
  612. },
  613. "Microsoft.Extensions.Configuration.UserSecrets/2.2.0": {
  614. "dependencies": {
  615. "Microsoft.Extensions.Configuration.Json": "2.2.0"
  616. }
  617. },
  618. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  619. "dependencies": {
  620. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  621. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  622. }
  623. },
  624. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {},
  625. "Microsoft.Extensions.DependencyModel/3.0.0": {
  626. "dependencies": {
  627. "System.Text.Json": "4.6.0"
  628. },
  629. "runtime": {
  630. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  631. "assemblyVersion": "3.0.0.0",
  632. "fileVersion": "3.0.19.46305"
  633. }
  634. }
  635. },
  636. "Microsoft.Extensions.FileProviders.Abstractions/3.1.8": {
  637. "dependencies": {
  638. "Microsoft.Extensions.Primitives": "6.0.0"
  639. }
  640. },
  641. "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
  642. "dependencies": {
  643. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.8",
  644. "Microsoft.Extensions.FileSystemGlobbing": "2.2.0"
  645. }
  646. },
  647. "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {},
  648. "Microsoft.Extensions.Hosting.Abstractions/3.1.8": {
  649. "dependencies": {
  650. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  651. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  652. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.8",
  653. "Microsoft.Extensions.Logging.Abstractions": "6.0.0"
  654. }
  655. },
  656. "Microsoft.Extensions.Identity.Core/3.1.12": {
  657. "dependencies": {
  658. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.12",
  659. "Microsoft.Extensions.Logging": "6.0.0",
  660. "Microsoft.Extensions.Options": "6.0.0"
  661. }
  662. },
  663. "Microsoft.Extensions.Identity.Stores/3.1.12": {
  664. "dependencies": {
  665. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  666. "Microsoft.Extensions.Identity.Core": "3.1.12",
  667. "Microsoft.Extensions.Logging": "6.0.0"
  668. }
  669. },
  670. "Microsoft.Extensions.Logging/6.0.0": {
  671. "dependencies": {
  672. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  673. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  674. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  675. "Microsoft.Extensions.Options": "6.0.0",
  676. "System.Diagnostics.DiagnosticSource": "6.0.0"
  677. }
  678. },
  679. "Microsoft.Extensions.Logging.Abstractions/6.0.0": {},
  680. "Microsoft.Extensions.Logging.Configuration/2.2.0": {
  681. "dependencies": {
  682. "Microsoft.Extensions.Logging": "6.0.0",
  683. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.2.0"
  684. }
  685. },
  686. "Microsoft.Extensions.Logging.Console/2.2.0": {
  687. "dependencies": {
  688. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  689. "Microsoft.Extensions.Logging": "6.0.0",
  690. "Microsoft.Extensions.Logging.Configuration": "2.2.0"
  691. }
  692. },
  693. "Microsoft.Extensions.Logging.Debug/2.2.0": {
  694. "dependencies": {
  695. "Microsoft.Extensions.Logging": "6.0.0"
  696. }
  697. },
  698. "Microsoft.Extensions.Logging.EventSource/2.2.0": {
  699. "dependencies": {
  700. "Microsoft.Extensions.Logging": "6.0.0",
  701. "Newtonsoft.Json": "11.0.2"
  702. }
  703. },
  704. "Microsoft.Extensions.ObjectPool/2.2.0": {},
  705. "Microsoft.Extensions.Options/6.0.0": {
  706. "dependencies": {
  707. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  708. "Microsoft.Extensions.Primitives": "6.0.0"
  709. }
  710. },
  711. "Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0": {
  712. "dependencies": {
  713. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  714. "Microsoft.Extensions.Configuration.Binder": "2.2.0",
  715. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  716. "Microsoft.Extensions.Options": "6.0.0"
  717. }
  718. },
  719. "Microsoft.Extensions.Primitives/6.0.0": {
  720. "dependencies": {
  721. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  722. }
  723. },
  724. "Microsoft.Extensions.WebEncoders/2.2.0": {
  725. "dependencies": {
  726. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  727. "Microsoft.Extensions.Options": "6.0.0",
  728. "System.Text.Encodings.Web": "4.5.0"
  729. }
  730. },
  731. "Microsoft.Identity.Client/4.21.1": {
  732. "runtime": {
  733. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  734. "assemblyVersion": "4.21.1.0",
  735. "fileVersion": "4.21.1.0"
  736. }
  737. }
  738. },
  739. "Microsoft.IdentityModel.JsonWebTokens/6.10.0": {
  740. "dependencies": {
  741. "Microsoft.IdentityModel.Tokens": "6.10.0"
  742. },
  743. "runtime": {
  744. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  745. "assemblyVersion": "6.10.0.0",
  746. "fileVersion": "6.10.0.20330"
  747. }
  748. }
  749. },
  750. "Microsoft.IdentityModel.Logging/6.10.0": {
  751. "runtime": {
  752. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  753. "assemblyVersion": "6.10.0.0",
  754. "fileVersion": "6.10.0.20330"
  755. }
  756. }
  757. },
  758. "Microsoft.IdentityModel.Protocols/6.10.0": {
  759. "dependencies": {
  760. "Microsoft.IdentityModel.Logging": "6.10.0",
  761. "Microsoft.IdentityModel.Tokens": "6.10.0"
  762. },
  763. "runtime": {
  764. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  765. "assemblyVersion": "6.10.0.0",
  766. "fileVersion": "6.10.0.20330"
  767. }
  768. }
  769. },
  770. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
  771. "dependencies": {
  772. "Microsoft.IdentityModel.Protocols": "6.10.0",
  773. "System.IdentityModel.Tokens.Jwt": "6.10.0"
  774. },
  775. "runtime": {
  776. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  777. "assemblyVersion": "6.10.0.0",
  778. "fileVersion": "6.10.0.20330"
  779. }
  780. }
  781. },
  782. "Microsoft.IdentityModel.Tokens/6.10.0": {
  783. "dependencies": {
  784. "Microsoft.CSharp": "4.7.0",
  785. "Microsoft.IdentityModel.Logging": "6.10.0",
  786. "System.Security.Cryptography.Cng": "4.5.0"
  787. },
  788. "runtime": {
  789. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  790. "assemblyVersion": "6.10.0.0",
  791. "fileVersion": "6.10.0.20330"
  792. }
  793. }
  794. },
  795. "Microsoft.Net.Http.Headers/2.2.0": {
  796. "dependencies": {
  797. "Microsoft.Extensions.Primitives": "6.0.0",
  798. "System.Buffers": "4.5.1"
  799. }
  800. },
  801. "Microsoft.NETCore.Platforms/5.0.0": {},
  802. "Microsoft.NETCore.Targets/1.1.0": {},
  803. "Microsoft.Win32.Primitives/4.3.0": {
  804. "dependencies": {
  805. "Microsoft.NETCore.Platforms": "5.0.0",
  806. "Microsoft.NETCore.Targets": "1.1.0",
  807. "System.Runtime": "4.3.0"
  808. }
  809. },
  810. "Microsoft.Win32.Registry/5.0.0": {
  811. "dependencies": {
  812. "System.Security.AccessControl": "5.0.0",
  813. "System.Security.Principal.Windows": "5.0.0"
  814. }
  815. },
  816. "Microsoft.Win32.SystemEvents/4.7.0": {
  817. "dependencies": {
  818. "Microsoft.NETCore.Platforms": "5.0.0"
  819. },
  820. "runtime": {
  821. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  822. "assemblyVersion": "4.0.2.0",
  823. "fileVersion": "4.700.19.56404"
  824. }
  825. },
  826. "runtimeTargets": {
  827. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  828. "rid": "win",
  829. "assetType": "runtime",
  830. "assemblyVersion": "4.0.2.0",
  831. "fileVersion": "4.700.19.56404"
  832. }
  833. }
  834. },
  835. "MongoDB.Bson/2.16.1": {
  836. "dependencies": {
  837. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  838. },
  839. "runtime": {
  840. "lib/netstandard2.1/MongoDB.Bson.dll": {
  841. "assemblyVersion": "2.16.1.0",
  842. "fileVersion": "2.16.1.0"
  843. }
  844. }
  845. },
  846. "MongoDB.Driver/2.16.1": {
  847. "dependencies": {
  848. "MongoDB.Bson": "2.16.1",
  849. "MongoDB.Driver.Core": "2.16.1",
  850. "MongoDB.Libmongocrypt": "1.5.3"
  851. },
  852. "runtime": {
  853. "lib/netstandard2.1/MongoDB.Driver.dll": {
  854. "assemblyVersion": "2.16.1.0",
  855. "fileVersion": "2.16.1.0"
  856. }
  857. }
  858. },
  859. "MongoDB.Driver.Core/2.16.1": {
  860. "dependencies": {
  861. "DnsClient": "1.6.1",
  862. "MongoDB.Bson": "2.16.1",
  863. "MongoDB.Libmongocrypt": "1.5.3",
  864. "SharpCompress": "0.30.1",
  865. "System.Buffers": "4.5.1"
  866. },
  867. "runtime": {
  868. "lib/netstandard2.1/MongoDB.Driver.Core.dll": {
  869. "assemblyVersion": "2.16.1.0",
  870. "fileVersion": "2.16.1.0"
  871. }
  872. },
  873. "runtimeTargets": {
  874. "runtimes/linux/native/libsnappy64.so": {
  875. "rid": "linux",
  876. "assetType": "native",
  877. "fileVersion": "0.0.0.0"
  878. },
  879. "runtimes/linux/native/libzstd.so": {
  880. "rid": "linux",
  881. "assetType": "native",
  882. "fileVersion": "0.0.0.0"
  883. },
  884. "runtimes/osx/native/libsnappy64.dylib": {
  885. "rid": "osx",
  886. "assetType": "native",
  887. "fileVersion": "0.0.0.0"
  888. },
  889. "runtimes/osx/native/libzstd.dylib": {
  890. "rid": "osx",
  891. "assetType": "native",
  892. "fileVersion": "0.0.0.0"
  893. },
  894. "runtimes/win/native/libzstd.dll": {
  895. "rid": "win",
  896. "assetType": "native",
  897. "fileVersion": "0.0.0.0"
  898. },
  899. "runtimes/win/native/snappy32.dll": {
  900. "rid": "win",
  901. "assetType": "native",
  902. "fileVersion": "1.1.1.7"
  903. },
  904. "runtimes/win/native/snappy64.dll": {
  905. "rid": "win",
  906. "assetType": "native",
  907. "fileVersion": "1.1.1.7"
  908. }
  909. }
  910. },
  911. "MongoDB.Libmongocrypt/1.5.3": {
  912. "runtime": {
  913. "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {
  914. "assemblyVersion": "1.5.3.0",
  915. "fileVersion": "1.5.3.0"
  916. }
  917. },
  918. "runtimeTargets": {
  919. "runtimes/linux/native/libmongocrypt.so": {
  920. "rid": "linux",
  921. "assetType": "native",
  922. "fileVersion": "0.0.0.0"
  923. },
  924. "runtimes/osx/native/libmongocrypt.dylib": {
  925. "rid": "osx",
  926. "assetType": "native",
  927. "fileVersion": "0.0.0.0"
  928. },
  929. "runtimes/win/native/mongocrypt.dll": {
  930. "rid": "win",
  931. "assetType": "native",
  932. "fileVersion": "0.0.0.0"
  933. }
  934. }
  935. },
  936. "MongoDbGenericRepository/1.4.8": {
  937. "dependencies": {
  938. "MongoDB.Driver": "2.16.1"
  939. },
  940. "runtime": {
  941. "lib/netstandard2.0/MongoDbGenericRepository.dll": {
  942. "assemblyVersion": "1.4.8.0",
  943. "fileVersion": "1.4.8.0"
  944. }
  945. }
  946. },
  947. "NETStandard.Library/1.6.1": {
  948. "dependencies": {
  949. "Microsoft.NETCore.Platforms": "5.0.0",
  950. "Microsoft.Win32.Primitives": "4.3.0",
  951. "System.AppContext": "4.3.0",
  952. "System.Collections": "4.3.0",
  953. "System.Collections.Concurrent": "4.3.0",
  954. "System.Console": "4.3.0",
  955. "System.Diagnostics.Debug": "4.3.0",
  956. "System.Diagnostics.Tools": "4.3.0",
  957. "System.Diagnostics.Tracing": "4.3.0",
  958. "System.Globalization": "4.3.0",
  959. "System.Globalization.Calendars": "4.3.0",
  960. "System.IO": "4.3.0",
  961. "System.IO.Compression": "4.3.0",
  962. "System.IO.Compression.ZipFile": "4.3.0",
  963. "System.IO.FileSystem": "4.3.0",
  964. "System.IO.FileSystem.Primitives": "4.3.0",
  965. "System.Linq": "4.3.0",
  966. "System.Linq.Expressions": "4.3.0",
  967. "System.Net.Http": "4.3.0",
  968. "System.Net.Primitives": "4.3.0",
  969. "System.Net.Sockets": "4.3.0",
  970. "System.ObjectModel": "4.3.0",
  971. "System.Reflection": "4.3.0",
  972. "System.Reflection.Extensions": "4.3.0",
  973. "System.Reflection.Primitives": "4.3.0",
  974. "System.Resources.ResourceManager": "4.3.0",
  975. "System.Runtime": "4.3.0",
  976. "System.Runtime.Extensions": "4.3.0",
  977. "System.Runtime.Handles": "4.3.0",
  978. "System.Runtime.InteropServices": "4.3.0",
  979. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  980. "System.Runtime.Numerics": "4.3.0",
  981. "System.Security.Cryptography.Algorithms": "4.3.0",
  982. "System.Security.Cryptography.Encoding": "4.3.0",
  983. "System.Security.Cryptography.Primitives": "4.3.0",
  984. "System.Security.Cryptography.X509Certificates": "4.3.0",
  985. "System.Text.Encoding": "4.3.0",
  986. "System.Text.Encoding.Extensions": "4.3.0",
  987. "System.Text.RegularExpressions": "4.3.0",
  988. "System.Threading": "4.3.0",
  989. "System.Threading.Tasks": "4.3.0",
  990. "System.Threading.Timer": "4.3.0",
  991. "System.Xml.ReaderWriter": "4.3.0",
  992. "System.Xml.XDocument": "4.3.0"
  993. }
  994. },
  995. "Newtonsoft.Json/11.0.2": {
  996. "runtime": {
  997. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  998. "assemblyVersion": "11.0.0.0",
  999. "fileVersion": "11.0.2.21924"
  1000. }
  1001. }
  1002. },
  1003. "Newtonsoft.Json.Bson/1.0.1": {
  1004. "dependencies": {
  1005. "NETStandard.Library": "1.6.1",
  1006. "Newtonsoft.Json": "11.0.2"
  1007. },
  1008. "runtime": {
  1009. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
  1010. "assemblyVersion": "1.0.0.0",
  1011. "fileVersion": "1.0.1.20722"
  1012. }
  1013. }
  1014. },
  1015. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1016. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1017. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1018. "runtime.native.System/4.3.0": {
  1019. "dependencies": {
  1020. "Microsoft.NETCore.Platforms": "5.0.0",
  1021. "Microsoft.NETCore.Targets": "1.1.0"
  1022. }
  1023. },
  1024. "runtime.native.System.IO.Compression/4.3.0": {
  1025. "dependencies": {
  1026. "Microsoft.NETCore.Platforms": "5.0.0",
  1027. "Microsoft.NETCore.Targets": "1.1.0"
  1028. }
  1029. },
  1030. "runtime.native.System.Net.Http/4.3.0": {
  1031. "dependencies": {
  1032. "Microsoft.NETCore.Platforms": "5.0.0",
  1033. "Microsoft.NETCore.Targets": "1.1.0"
  1034. }
  1035. },
  1036. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1037. "dependencies": {
  1038. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1039. }
  1040. },
  1041. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1042. "dependencies": {
  1043. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1044. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1045. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1046. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1047. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1048. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1049. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1050. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1051. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1052. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1053. }
  1054. },
  1055. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1056. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1057. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
  1058. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1059. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1060. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1061. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1062. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1063. "Serilog/2.11.0": {
  1064. "runtime": {
  1065. "lib/net5.0/Serilog.dll": {
  1066. "assemblyVersion": "2.0.0.0",
  1067. "fileVersion": "2.11.0.0"
  1068. }
  1069. }
  1070. },
  1071. "Serilog.AspNetCore/5.0.0": {
  1072. "dependencies": {
  1073. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1074. "Microsoft.Extensions.Logging": "6.0.0",
  1075. "Serilog": "2.11.0",
  1076. "Serilog.Extensions.Hosting": "4.2.0",
  1077. "Serilog.Formatting.Compact": "1.1.0",
  1078. "Serilog.Settings.Configuration": "3.3.0",
  1079. "Serilog.Sinks.Console": "4.0.1",
  1080. "Serilog.Sinks.Debug": "2.0.0",
  1081. "Serilog.Sinks.File": "5.0.0"
  1082. },
  1083. "runtime": {
  1084. "lib/net5.0/Serilog.AspNetCore.dll": {
  1085. "assemblyVersion": "2.0.0.0",
  1086. "fileVersion": "5.0.0.0"
  1087. }
  1088. }
  1089. },
  1090. "Serilog.Extensions.Hosting/4.2.0": {
  1091. "dependencies": {
  1092. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1093. "Microsoft.Extensions.Hosting.Abstractions": "3.1.8",
  1094. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1095. "Serilog": "2.11.0",
  1096. "Serilog.Extensions.Logging": "3.1.0"
  1097. },
  1098. "runtime": {
  1099. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {
  1100. "assemblyVersion": "2.0.0.0",
  1101. "fileVersion": "4.2.0.0"
  1102. }
  1103. }
  1104. },
  1105. "Serilog.Extensions.Logging/3.1.0": {
  1106. "dependencies": {
  1107. "Microsoft.Extensions.Logging": "6.0.0",
  1108. "Serilog": "2.11.0"
  1109. },
  1110. "runtime": {
  1111. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1112. "assemblyVersion": "2.0.0.0",
  1113. "fileVersion": "3.1.0.0"
  1114. }
  1115. }
  1116. },
  1117. "Serilog.Formatting.Compact/1.1.0": {
  1118. "dependencies": {
  1119. "Serilog": "2.11.0"
  1120. },
  1121. "runtime": {
  1122. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1123. "assemblyVersion": "1.1.0.0",
  1124. "fileVersion": "1.1.0.0"
  1125. }
  1126. }
  1127. },
  1128. "Serilog.Settings.Configuration/3.3.0": {
  1129. "dependencies": {
  1130. "Microsoft.Extensions.DependencyModel": "3.0.0",
  1131. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.2.0",
  1132. "Serilog": "2.11.0"
  1133. },
  1134. "runtime": {
  1135. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1136. "assemblyVersion": "3.3.0.0",
  1137. "fileVersion": "3.3.0.0"
  1138. }
  1139. }
  1140. },
  1141. "Serilog.Sinks.Console/4.0.1": {
  1142. "dependencies": {
  1143. "Serilog": "2.11.0"
  1144. },
  1145. "runtime": {
  1146. "lib/net5.0/Serilog.Sinks.Console.dll": {
  1147. "assemblyVersion": "4.0.1.0",
  1148. "fileVersion": "4.0.1.0"
  1149. }
  1150. }
  1151. },
  1152. "Serilog.Sinks.Debug/2.0.0": {
  1153. "dependencies": {
  1154. "Serilog": "2.11.0"
  1155. },
  1156. "runtime": {
  1157. "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
  1158. "assemblyVersion": "2.0.0.0",
  1159. "fileVersion": "2.0.0.0"
  1160. }
  1161. }
  1162. },
  1163. "Serilog.Sinks.File/5.0.0": {
  1164. "dependencies": {
  1165. "Serilog": "2.11.0"
  1166. },
  1167. "runtime": {
  1168. "lib/net5.0/Serilog.Sinks.File.dll": {
  1169. "assemblyVersion": "5.0.0.0",
  1170. "fileVersion": "5.0.0.0"
  1171. }
  1172. }
  1173. },
  1174. "Serilog.Sinks.PeriodicBatching/2.3.0": {
  1175. "dependencies": {
  1176. "Serilog": "2.11.0",
  1177. "System.Collections.Concurrent": "4.3.0",
  1178. "System.Threading.Timer": "4.3.0"
  1179. },
  1180. "runtime": {
  1181. "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": {
  1182. "assemblyVersion": "2.0.0.0",
  1183. "fileVersion": "2.3.0.0"
  1184. }
  1185. }
  1186. },
  1187. "Serilog.Sinks.Seq/5.1.1": {
  1188. "dependencies": {
  1189. "Serilog": "2.11.0",
  1190. "Serilog.Formatting.Compact": "1.1.0",
  1191. "Serilog.Sinks.File": "5.0.0",
  1192. "Serilog.Sinks.PeriodicBatching": "2.3.0"
  1193. },
  1194. "runtime": {
  1195. "lib/net5.0/Serilog.Sinks.Seq.dll": {
  1196. "assemblyVersion": "5.1.1.0",
  1197. "fileVersion": "5.1.1.0"
  1198. }
  1199. }
  1200. },
  1201. "SharpCompress/0.30.1": {
  1202. "runtime": {
  1203. "lib/net5.0/SharpCompress.dll": {
  1204. "assemblyVersion": "0.30.1.0",
  1205. "fileVersion": "0.30.1.0"
  1206. }
  1207. }
  1208. },
  1209. "System.AppContext/4.3.0": {
  1210. "dependencies": {
  1211. "System.Runtime": "4.3.0"
  1212. }
  1213. },
  1214. "System.Buffers/4.5.1": {},
  1215. "System.Collections/4.3.0": {
  1216. "dependencies": {
  1217. "Microsoft.NETCore.Platforms": "5.0.0",
  1218. "Microsoft.NETCore.Targets": "1.1.0",
  1219. "System.Runtime": "4.3.0"
  1220. }
  1221. },
  1222. "System.Collections.Concurrent/4.3.0": {
  1223. "dependencies": {
  1224. "System.Collections": "4.3.0",
  1225. "System.Diagnostics.Debug": "4.3.0",
  1226. "System.Diagnostics.Tracing": "4.3.0",
  1227. "System.Globalization": "4.3.0",
  1228. "System.Reflection": "4.3.0",
  1229. "System.Resources.ResourceManager": "4.3.0",
  1230. "System.Runtime": "4.3.0",
  1231. "System.Runtime.Extensions": "4.3.0",
  1232. "System.Threading": "4.3.0",
  1233. "System.Threading.Tasks": "4.3.0"
  1234. }
  1235. },
  1236. "System.Collections.Immutable/6.0.0": {
  1237. "dependencies": {
  1238. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1239. }
  1240. },
  1241. "System.Configuration.ConfigurationManager/4.7.0": {
  1242. "dependencies": {
  1243. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1244. "System.Security.Permissions": "4.7.0"
  1245. },
  1246. "runtime": {
  1247. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1248. "assemblyVersion": "4.0.3.0",
  1249. "fileVersion": "4.700.19.56404"
  1250. }
  1251. }
  1252. },
  1253. "System.Console/4.3.0": {
  1254. "dependencies": {
  1255. "Microsoft.NETCore.Platforms": "5.0.0",
  1256. "Microsoft.NETCore.Targets": "1.1.0",
  1257. "System.IO": "4.3.0",
  1258. "System.Runtime": "4.3.0",
  1259. "System.Text.Encoding": "4.3.0"
  1260. }
  1261. },
  1262. "System.Diagnostics.Debug/4.3.0": {
  1263. "dependencies": {
  1264. "Microsoft.NETCore.Platforms": "5.0.0",
  1265. "Microsoft.NETCore.Targets": "1.1.0",
  1266. "System.Runtime": "4.3.0"
  1267. }
  1268. },
  1269. "System.Diagnostics.DiagnosticSource/6.0.0": {
  1270. "dependencies": {
  1271. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1272. }
  1273. },
  1274. "System.Diagnostics.Tools/4.3.0": {
  1275. "dependencies": {
  1276. "Microsoft.NETCore.Platforms": "5.0.0",
  1277. "Microsoft.NETCore.Targets": "1.1.0",
  1278. "System.Runtime": "4.3.0"
  1279. }
  1280. },
  1281. "System.Diagnostics.Tracing/4.3.0": {
  1282. "dependencies": {
  1283. "Microsoft.NETCore.Platforms": "5.0.0",
  1284. "Microsoft.NETCore.Targets": "1.1.0",
  1285. "System.Runtime": "4.3.0"
  1286. }
  1287. },
  1288. "System.Drawing.Common/4.7.0": {
  1289. "dependencies": {
  1290. "Microsoft.NETCore.Platforms": "5.0.0",
  1291. "Microsoft.Win32.SystemEvents": "4.7.0"
  1292. },
  1293. "runtime": {
  1294. "lib/netstandard2.0/System.Drawing.Common.dll": {
  1295. "assemblyVersion": "4.0.0.1",
  1296. "fileVersion": "4.6.26919.2"
  1297. }
  1298. },
  1299. "runtimeTargets": {
  1300. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1301. "rid": "unix",
  1302. "assetType": "runtime",
  1303. "assemblyVersion": "4.0.2.0",
  1304. "fileVersion": "4.700.19.56404"
  1305. },
  1306. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1307. "rid": "win",
  1308. "assetType": "runtime",
  1309. "assemblyVersion": "4.0.2.0",
  1310. "fileVersion": "4.700.19.56404"
  1311. }
  1312. }
  1313. },
  1314. "System.Globalization/4.3.0": {
  1315. "dependencies": {
  1316. "Microsoft.NETCore.Platforms": "5.0.0",
  1317. "Microsoft.NETCore.Targets": "1.1.0",
  1318. "System.Runtime": "4.3.0"
  1319. }
  1320. },
  1321. "System.Globalization.Calendars/4.3.0": {
  1322. "dependencies": {
  1323. "Microsoft.NETCore.Platforms": "5.0.0",
  1324. "Microsoft.NETCore.Targets": "1.1.0",
  1325. "System.Globalization": "4.3.0",
  1326. "System.Runtime": "4.3.0"
  1327. }
  1328. },
  1329. "System.Globalization.Extensions/4.3.0": {
  1330. "dependencies": {
  1331. "Microsoft.NETCore.Platforms": "5.0.0",
  1332. "System.Globalization": "4.3.0",
  1333. "System.Resources.ResourceManager": "4.3.0",
  1334. "System.Runtime": "4.3.0",
  1335. "System.Runtime.Extensions": "4.3.0",
  1336. "System.Runtime.InteropServices": "4.3.0"
  1337. }
  1338. },
  1339. "System.IdentityModel.Tokens.Jwt/6.10.0": {
  1340. "dependencies": {
  1341. "Microsoft.IdentityModel.JsonWebTokens": "6.10.0",
  1342. "Microsoft.IdentityModel.Tokens": "6.10.0"
  1343. },
  1344. "runtime": {
  1345. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1346. "assemblyVersion": "6.10.0.0",
  1347. "fileVersion": "6.10.0.20330"
  1348. }
  1349. }
  1350. },
  1351. "System.IO/4.3.0": {
  1352. "dependencies": {
  1353. "Microsoft.NETCore.Platforms": "5.0.0",
  1354. "Microsoft.NETCore.Targets": "1.1.0",
  1355. "System.Runtime": "4.3.0",
  1356. "System.Text.Encoding": "4.3.0",
  1357. "System.Threading.Tasks": "4.3.0"
  1358. }
  1359. },
  1360. "System.IO.Compression/4.3.0": {
  1361. "dependencies": {
  1362. "Microsoft.NETCore.Platforms": "5.0.0",
  1363. "System.Buffers": "4.5.1",
  1364. "System.Collections": "4.3.0",
  1365. "System.Diagnostics.Debug": "4.3.0",
  1366. "System.IO": "4.3.0",
  1367. "System.Resources.ResourceManager": "4.3.0",
  1368. "System.Runtime": "4.3.0",
  1369. "System.Runtime.Extensions": "4.3.0",
  1370. "System.Runtime.Handles": "4.3.0",
  1371. "System.Runtime.InteropServices": "4.3.0",
  1372. "System.Text.Encoding": "4.3.0",
  1373. "System.Threading": "4.3.0",
  1374. "System.Threading.Tasks": "4.3.0",
  1375. "runtime.native.System": "4.3.0",
  1376. "runtime.native.System.IO.Compression": "4.3.0"
  1377. }
  1378. },
  1379. "System.IO.Compression.ZipFile/4.3.0": {
  1380. "dependencies": {
  1381. "System.Buffers": "4.5.1",
  1382. "System.IO": "4.3.0",
  1383. "System.IO.Compression": "4.3.0",
  1384. "System.IO.FileSystem": "4.3.0",
  1385. "System.IO.FileSystem.Primitives": "4.3.0",
  1386. "System.Resources.ResourceManager": "4.3.0",
  1387. "System.Runtime": "4.3.0",
  1388. "System.Runtime.Extensions": "4.3.0",
  1389. "System.Text.Encoding": "4.3.0"
  1390. }
  1391. },
  1392. "System.IO.FileSystem/4.3.0": {
  1393. "dependencies": {
  1394. "Microsoft.NETCore.Platforms": "5.0.0",
  1395. "Microsoft.NETCore.Targets": "1.1.0",
  1396. "System.IO": "4.3.0",
  1397. "System.IO.FileSystem.Primitives": "4.3.0",
  1398. "System.Runtime": "4.3.0",
  1399. "System.Runtime.Handles": "4.3.0",
  1400. "System.Text.Encoding": "4.3.0",
  1401. "System.Threading.Tasks": "4.3.0"
  1402. }
  1403. },
  1404. "System.IO.FileSystem.Primitives/4.3.0": {
  1405. "dependencies": {
  1406. "System.Runtime": "4.3.0"
  1407. }
  1408. },
  1409. "System.IO.Pipelines/4.5.2": {},
  1410. "System.Linq/4.3.0": {
  1411. "dependencies": {
  1412. "System.Collections": "4.3.0",
  1413. "System.Diagnostics.Debug": "4.3.0",
  1414. "System.Resources.ResourceManager": "4.3.0",
  1415. "System.Runtime": "4.3.0",
  1416. "System.Runtime.Extensions": "4.3.0"
  1417. }
  1418. },
  1419. "System.Linq.Expressions/4.3.0": {
  1420. "dependencies": {
  1421. "System.Collections": "4.3.0",
  1422. "System.Diagnostics.Debug": "4.3.0",
  1423. "System.Globalization": "4.3.0",
  1424. "System.IO": "4.3.0",
  1425. "System.Linq": "4.3.0",
  1426. "System.ObjectModel": "4.3.0",
  1427. "System.Reflection": "4.3.0",
  1428. "System.Reflection.Emit": "4.3.0",
  1429. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1430. "System.Reflection.Emit.Lightweight": "4.3.0",
  1431. "System.Reflection.Extensions": "4.3.0",
  1432. "System.Reflection.Primitives": "4.3.0",
  1433. "System.Reflection.TypeExtensions": "4.3.0",
  1434. "System.Resources.ResourceManager": "4.3.0",
  1435. "System.Runtime": "4.3.0",
  1436. "System.Runtime.Extensions": "4.3.0",
  1437. "System.Threading": "4.3.0"
  1438. }
  1439. },
  1440. "System.Memory/4.5.1": {},
  1441. "System.Net.Http/4.3.0": {
  1442. "dependencies": {
  1443. "Microsoft.NETCore.Platforms": "5.0.0",
  1444. "System.Collections": "4.3.0",
  1445. "System.Diagnostics.Debug": "4.3.0",
  1446. "System.Diagnostics.DiagnosticSource": "6.0.0",
  1447. "System.Diagnostics.Tracing": "4.3.0",
  1448. "System.Globalization": "4.3.0",
  1449. "System.Globalization.Extensions": "4.3.0",
  1450. "System.IO": "4.3.0",
  1451. "System.IO.FileSystem": "4.3.0",
  1452. "System.Net.Primitives": "4.3.0",
  1453. "System.Resources.ResourceManager": "4.3.0",
  1454. "System.Runtime": "4.3.0",
  1455. "System.Runtime.Extensions": "4.3.0",
  1456. "System.Runtime.Handles": "4.3.0",
  1457. "System.Runtime.InteropServices": "4.3.0",
  1458. "System.Security.Cryptography.Algorithms": "4.3.0",
  1459. "System.Security.Cryptography.Encoding": "4.3.0",
  1460. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1461. "System.Security.Cryptography.Primitives": "4.3.0",
  1462. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1463. "System.Text.Encoding": "4.3.0",
  1464. "System.Threading": "4.3.0",
  1465. "System.Threading.Tasks": "4.3.0",
  1466. "runtime.native.System": "4.3.0",
  1467. "runtime.native.System.Net.Http": "4.3.0",
  1468. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1469. }
  1470. },
  1471. "System.Net.Primitives/4.3.0": {
  1472. "dependencies": {
  1473. "Microsoft.NETCore.Platforms": "5.0.0",
  1474. "Microsoft.NETCore.Targets": "1.1.0",
  1475. "System.Runtime": "4.3.0",
  1476. "System.Runtime.Handles": "4.3.0"
  1477. }
  1478. },
  1479. "System.Net.Sockets/4.3.0": {
  1480. "dependencies": {
  1481. "Microsoft.NETCore.Platforms": "5.0.0",
  1482. "Microsoft.NETCore.Targets": "1.1.0",
  1483. "System.IO": "4.3.0",
  1484. "System.Net.Primitives": "4.3.0",
  1485. "System.Runtime": "4.3.0",
  1486. "System.Threading.Tasks": "4.3.0"
  1487. }
  1488. },
  1489. "System.Numerics.Vectors/4.5.0": {},
  1490. "System.ObjectModel/4.3.0": {
  1491. "dependencies": {
  1492. "System.Collections": "4.3.0",
  1493. "System.Diagnostics.Debug": "4.3.0",
  1494. "System.Resources.ResourceManager": "4.3.0",
  1495. "System.Runtime": "4.3.0",
  1496. "System.Threading": "4.3.0"
  1497. }
  1498. },
  1499. "System.Reflection/4.3.0": {
  1500. "dependencies": {
  1501. "Microsoft.NETCore.Platforms": "5.0.0",
  1502. "Microsoft.NETCore.Targets": "1.1.0",
  1503. "System.IO": "4.3.0",
  1504. "System.Reflection.Primitives": "4.3.0",
  1505. "System.Runtime": "4.3.0"
  1506. }
  1507. },
  1508. "System.Reflection.Emit/4.3.0": {
  1509. "dependencies": {
  1510. "System.IO": "4.3.0",
  1511. "System.Reflection": "4.3.0",
  1512. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1513. "System.Reflection.Primitives": "4.3.0",
  1514. "System.Runtime": "4.3.0"
  1515. }
  1516. },
  1517. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1518. "dependencies": {
  1519. "System.Reflection": "4.3.0",
  1520. "System.Reflection.Primitives": "4.3.0",
  1521. "System.Runtime": "4.3.0"
  1522. }
  1523. },
  1524. "System.Reflection.Emit.Lightweight/4.3.0": {
  1525. "dependencies": {
  1526. "System.Reflection": "4.3.0",
  1527. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1528. "System.Reflection.Primitives": "4.3.0",
  1529. "System.Runtime": "4.3.0"
  1530. }
  1531. },
  1532. "System.Reflection.Extensions/4.3.0": {
  1533. "dependencies": {
  1534. "Microsoft.NETCore.Platforms": "5.0.0",
  1535. "Microsoft.NETCore.Targets": "1.1.0",
  1536. "System.Reflection": "4.3.0",
  1537. "System.Runtime": "4.3.0"
  1538. }
  1539. },
  1540. "System.Reflection.Metadata/1.6.0": {},
  1541. "System.Reflection.Primitives/4.3.0": {
  1542. "dependencies": {
  1543. "Microsoft.NETCore.Platforms": "5.0.0",
  1544. "Microsoft.NETCore.Targets": "1.1.0",
  1545. "System.Runtime": "4.3.0"
  1546. }
  1547. },
  1548. "System.Reflection.TypeExtensions/4.3.0": {
  1549. "dependencies": {
  1550. "System.Reflection": "4.3.0",
  1551. "System.Runtime": "4.3.0"
  1552. }
  1553. },
  1554. "System.Resources.ResourceManager/4.3.0": {
  1555. "dependencies": {
  1556. "Microsoft.NETCore.Platforms": "5.0.0",
  1557. "Microsoft.NETCore.Targets": "1.1.0",
  1558. "System.Globalization": "4.3.0",
  1559. "System.Reflection": "4.3.0",
  1560. "System.Runtime": "4.3.0"
  1561. }
  1562. },
  1563. "System.Runtime/4.3.0": {
  1564. "dependencies": {
  1565. "Microsoft.NETCore.Platforms": "5.0.0",
  1566. "Microsoft.NETCore.Targets": "1.1.0"
  1567. }
  1568. },
  1569. "System.Runtime.Caching/4.7.0": {
  1570. "dependencies": {
  1571. "System.Configuration.ConfigurationManager": "4.7.0"
  1572. },
  1573. "runtime": {
  1574. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  1575. "assemblyVersion": "4.0.1.0",
  1576. "fileVersion": "4.700.19.56404"
  1577. }
  1578. },
  1579. "runtimeTargets": {
  1580. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  1581. "rid": "win",
  1582. "assetType": "runtime",
  1583. "assemblyVersion": "4.0.1.0",
  1584. "fileVersion": "4.700.19.56404"
  1585. }
  1586. }
  1587. },
  1588. "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
  1589. "System.Runtime.Extensions/4.3.0": {
  1590. "dependencies": {
  1591. "Microsoft.NETCore.Platforms": "5.0.0",
  1592. "Microsoft.NETCore.Targets": "1.1.0",
  1593. "System.Runtime": "4.3.0"
  1594. }
  1595. },
  1596. "System.Runtime.Handles/4.3.0": {
  1597. "dependencies": {
  1598. "Microsoft.NETCore.Platforms": "5.0.0",
  1599. "Microsoft.NETCore.Targets": "1.1.0",
  1600. "System.Runtime": "4.3.0"
  1601. }
  1602. },
  1603. "System.Runtime.InteropServices/4.3.0": {
  1604. "dependencies": {
  1605. "Microsoft.NETCore.Platforms": "5.0.0",
  1606. "Microsoft.NETCore.Targets": "1.1.0",
  1607. "System.Reflection": "4.3.0",
  1608. "System.Reflection.Primitives": "4.3.0",
  1609. "System.Runtime": "4.3.0",
  1610. "System.Runtime.Handles": "4.3.0"
  1611. }
  1612. },
  1613. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  1614. "dependencies": {
  1615. "System.Reflection": "4.3.0",
  1616. "System.Reflection.Extensions": "4.3.0",
  1617. "System.Resources.ResourceManager": "4.3.0",
  1618. "System.Runtime": "4.3.0",
  1619. "System.Runtime.InteropServices": "4.3.0",
  1620. "System.Threading": "4.3.0",
  1621. "runtime.native.System": "4.3.0"
  1622. }
  1623. },
  1624. "System.Runtime.Numerics/4.3.0": {
  1625. "dependencies": {
  1626. "System.Globalization": "4.3.0",
  1627. "System.Resources.ResourceManager": "4.3.0",
  1628. "System.Runtime": "4.3.0",
  1629. "System.Runtime.Extensions": "4.3.0"
  1630. }
  1631. },
  1632. "System.Security.AccessControl/5.0.0": {
  1633. "dependencies": {
  1634. "Microsoft.NETCore.Platforms": "5.0.0",
  1635. "System.Security.Principal.Windows": "5.0.0"
  1636. }
  1637. },
  1638. "System.Security.Cryptography.Algorithms/4.3.0": {
  1639. "dependencies": {
  1640. "Microsoft.NETCore.Platforms": "5.0.0",
  1641. "System.Collections": "4.3.0",
  1642. "System.IO": "4.3.0",
  1643. "System.Resources.ResourceManager": "4.3.0",
  1644. "System.Runtime": "4.3.0",
  1645. "System.Runtime.Extensions": "4.3.0",
  1646. "System.Runtime.Handles": "4.3.0",
  1647. "System.Runtime.InteropServices": "4.3.0",
  1648. "System.Runtime.Numerics": "4.3.0",
  1649. "System.Security.Cryptography.Encoding": "4.3.0",
  1650. "System.Security.Cryptography.Primitives": "4.3.0",
  1651. "System.Text.Encoding": "4.3.0",
  1652. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  1653. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1654. }
  1655. },
  1656. "System.Security.Cryptography.Cng/4.5.0": {},
  1657. "System.Security.Cryptography.Csp/4.3.0": {
  1658. "dependencies": {
  1659. "Microsoft.NETCore.Platforms": "5.0.0",
  1660. "System.IO": "4.3.0",
  1661. "System.Reflection": "4.3.0",
  1662. "System.Resources.ResourceManager": "4.3.0",
  1663. "System.Runtime": "4.3.0",
  1664. "System.Runtime.Extensions": "4.3.0",
  1665. "System.Runtime.Handles": "4.3.0",
  1666. "System.Runtime.InteropServices": "4.3.0",
  1667. "System.Security.Cryptography.Algorithms": "4.3.0",
  1668. "System.Security.Cryptography.Encoding": "4.3.0",
  1669. "System.Security.Cryptography.Primitives": "4.3.0",
  1670. "System.Text.Encoding": "4.3.0",
  1671. "System.Threading": "4.3.0"
  1672. }
  1673. },
  1674. "System.Security.Cryptography.Encoding/4.3.0": {
  1675. "dependencies": {
  1676. "Microsoft.NETCore.Platforms": "5.0.0",
  1677. "System.Collections": "4.3.0",
  1678. "System.Collections.Concurrent": "4.3.0",
  1679. "System.Linq": "4.3.0",
  1680. "System.Resources.ResourceManager": "4.3.0",
  1681. "System.Runtime": "4.3.0",
  1682. "System.Runtime.Extensions": "4.3.0",
  1683. "System.Runtime.Handles": "4.3.0",
  1684. "System.Runtime.InteropServices": "4.3.0",
  1685. "System.Security.Cryptography.Primitives": "4.3.0",
  1686. "System.Text.Encoding": "4.3.0",
  1687. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1688. }
  1689. },
  1690. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1691. "dependencies": {
  1692. "System.Collections": "4.3.0",
  1693. "System.IO": "4.3.0",
  1694. "System.Resources.ResourceManager": "4.3.0",
  1695. "System.Runtime": "4.3.0",
  1696. "System.Runtime.Extensions": "4.3.0",
  1697. "System.Runtime.Handles": "4.3.0",
  1698. "System.Runtime.InteropServices": "4.3.0",
  1699. "System.Runtime.Numerics": "4.3.0",
  1700. "System.Security.Cryptography.Algorithms": "4.3.0",
  1701. "System.Security.Cryptography.Encoding": "4.3.0",
  1702. "System.Security.Cryptography.Primitives": "4.3.0",
  1703. "System.Text.Encoding": "4.3.0",
  1704. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1705. }
  1706. },
  1707. "System.Security.Cryptography.Pkcs/4.5.0": {
  1708. "dependencies": {
  1709. "System.Security.Cryptography.Cng": "4.5.0"
  1710. }
  1711. },
  1712. "System.Security.Cryptography.Primitives/4.3.0": {
  1713. "dependencies": {
  1714. "System.Diagnostics.Debug": "4.3.0",
  1715. "System.Globalization": "4.3.0",
  1716. "System.IO": "4.3.0",
  1717. "System.Resources.ResourceManager": "4.3.0",
  1718. "System.Runtime": "4.3.0",
  1719. "System.Threading": "4.3.0",
  1720. "System.Threading.Tasks": "4.3.0"
  1721. }
  1722. },
  1723. "System.Security.Cryptography.ProtectedData/4.7.0": {
  1724. "runtime": {
  1725. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1726. "assemblyVersion": "4.0.5.0",
  1727. "fileVersion": "4.700.19.56404"
  1728. }
  1729. },
  1730. "runtimeTargets": {
  1731. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1732. "rid": "win",
  1733. "assetType": "runtime",
  1734. "assemblyVersion": "4.0.5.0",
  1735. "fileVersion": "4.700.19.56404"
  1736. }
  1737. }
  1738. },
  1739. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1740. "dependencies": {
  1741. "Microsoft.NETCore.Platforms": "5.0.0",
  1742. "System.Collections": "4.3.0",
  1743. "System.Diagnostics.Debug": "4.3.0",
  1744. "System.Globalization": "4.3.0",
  1745. "System.Globalization.Calendars": "4.3.0",
  1746. "System.IO": "4.3.0",
  1747. "System.IO.FileSystem": "4.3.0",
  1748. "System.IO.FileSystem.Primitives": "4.3.0",
  1749. "System.Resources.ResourceManager": "4.3.0",
  1750. "System.Runtime": "4.3.0",
  1751. "System.Runtime.Extensions": "4.3.0",
  1752. "System.Runtime.Handles": "4.3.0",
  1753. "System.Runtime.InteropServices": "4.3.0",
  1754. "System.Runtime.Numerics": "4.3.0",
  1755. "System.Security.Cryptography.Algorithms": "4.3.0",
  1756. "System.Security.Cryptography.Cng": "4.5.0",
  1757. "System.Security.Cryptography.Csp": "4.3.0",
  1758. "System.Security.Cryptography.Encoding": "4.3.0",
  1759. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1760. "System.Security.Cryptography.Primitives": "4.3.0",
  1761. "System.Text.Encoding": "4.3.0",
  1762. "System.Threading": "4.3.0",
  1763. "runtime.native.System": "4.3.0",
  1764. "runtime.native.System.Net.Http": "4.3.0",
  1765. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1766. }
  1767. },
  1768. "System.Security.Cryptography.Xml/4.5.0": {
  1769. "dependencies": {
  1770. "System.Security.Cryptography.Pkcs": "4.5.0",
  1771. "System.Security.Permissions": "4.7.0"
  1772. }
  1773. },
  1774. "System.Security.Permissions/4.7.0": {
  1775. "dependencies": {
  1776. "System.Security.AccessControl": "5.0.0",
  1777. "System.Windows.Extensions": "4.7.0"
  1778. },
  1779. "runtime": {
  1780. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  1781. "assemblyVersion": "4.0.3.0",
  1782. "fileVersion": "4.700.19.56404"
  1783. }
  1784. }
  1785. },
  1786. "System.Security.Principal.Windows/5.0.0": {},
  1787. "System.Text.Encoding/4.3.0": {
  1788. "dependencies": {
  1789. "Microsoft.NETCore.Platforms": "5.0.0",
  1790. "Microsoft.NETCore.Targets": "1.1.0",
  1791. "System.Runtime": "4.3.0"
  1792. }
  1793. },
  1794. "System.Text.Encoding.CodePages/4.7.0": {
  1795. "dependencies": {
  1796. "Microsoft.NETCore.Platforms": "5.0.0"
  1797. }
  1798. },
  1799. "System.Text.Encoding.Extensions/4.3.0": {
  1800. "dependencies": {
  1801. "Microsoft.NETCore.Platforms": "5.0.0",
  1802. "Microsoft.NETCore.Targets": "1.1.0",
  1803. "System.Runtime": "4.3.0",
  1804. "System.Text.Encoding": "4.3.0"
  1805. }
  1806. },
  1807. "System.Text.Encodings.Web/4.5.0": {},
  1808. "System.Text.Json/4.6.0": {},
  1809. "System.Text.RegularExpressions/4.3.0": {
  1810. "dependencies": {
  1811. "System.Runtime": "4.3.0"
  1812. }
  1813. },
  1814. "System.Threading/4.3.0": {
  1815. "dependencies": {
  1816. "System.Runtime": "4.3.0",
  1817. "System.Threading.Tasks": "4.3.0"
  1818. }
  1819. },
  1820. "System.Threading.Tasks/4.3.0": {
  1821. "dependencies": {
  1822. "Microsoft.NETCore.Platforms": "5.0.0",
  1823. "Microsoft.NETCore.Targets": "1.1.0",
  1824. "System.Runtime": "4.3.0"
  1825. }
  1826. },
  1827. "System.Threading.Tasks.Extensions/4.5.1": {},
  1828. "System.Threading.Timer/4.3.0": {
  1829. "dependencies": {
  1830. "Microsoft.NETCore.Platforms": "5.0.0",
  1831. "Microsoft.NETCore.Targets": "1.1.0",
  1832. "System.Runtime": "4.3.0"
  1833. }
  1834. },
  1835. "System.Windows.Extensions/4.7.0": {
  1836. "dependencies": {
  1837. "System.Drawing.Common": "4.7.0"
  1838. },
  1839. "runtime": {
  1840. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1841. "assemblyVersion": "4.0.1.0",
  1842. "fileVersion": "4.700.19.56404"
  1843. }
  1844. },
  1845. "runtimeTargets": {
  1846. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1847. "rid": "win",
  1848. "assetType": "runtime",
  1849. "assemblyVersion": "4.0.1.0",
  1850. "fileVersion": "4.700.19.56404"
  1851. }
  1852. }
  1853. },
  1854. "System.Xml.ReaderWriter/4.3.0": {
  1855. "dependencies": {
  1856. "System.Collections": "4.3.0",
  1857. "System.Diagnostics.Debug": "4.3.0",
  1858. "System.Globalization": "4.3.0",
  1859. "System.IO": "4.3.0",
  1860. "System.IO.FileSystem": "4.3.0",
  1861. "System.IO.FileSystem.Primitives": "4.3.0",
  1862. "System.Resources.ResourceManager": "4.3.0",
  1863. "System.Runtime": "4.3.0",
  1864. "System.Runtime.Extensions": "4.3.0",
  1865. "System.Runtime.InteropServices": "4.3.0",
  1866. "System.Text.Encoding": "4.3.0",
  1867. "System.Text.Encoding.Extensions": "4.3.0",
  1868. "System.Text.RegularExpressions": "4.3.0",
  1869. "System.Threading.Tasks": "4.3.0",
  1870. "System.Threading.Tasks.Extensions": "4.5.1"
  1871. }
  1872. },
  1873. "System.Xml.XDocument/4.3.0": {
  1874. "dependencies": {
  1875. "System.Collections": "4.3.0",
  1876. "System.Diagnostics.Debug": "4.3.0",
  1877. "System.Diagnostics.Tools": "4.3.0",
  1878. "System.Globalization": "4.3.0",
  1879. "System.IO": "4.3.0",
  1880. "System.Reflection": "4.3.0",
  1881. "System.Resources.ResourceManager": "4.3.0",
  1882. "System.Runtime": "4.3.0",
  1883. "System.Runtime.Extensions": "4.3.0",
  1884. "System.Text.Encoding": "4.3.0",
  1885. "System.Threading": "4.3.0",
  1886. "System.Xml.ReaderWriter": "4.3.0"
  1887. }
  1888. },
  1889. "Diligent.WebAPI.Business/1.0.0": {
  1890. "dependencies": {
  1891. "AutoMapper": "11.0.1",
  1892. "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0",
  1893. "Diligent.WebAPI.Data": "1.0.0",
  1894. "MongoDB.Driver": "2.16.1"
  1895. },
  1896. "runtime": {
  1897. "Diligent.WebAPI.Business.dll": {}
  1898. }
  1899. },
  1900. "Diligent.WebAPI.Data/1.0.0": {
  1901. "dependencies": {
  1902. "AspNetCore.Identity.MongoDbCore": "3.1.2",
  1903. "AutoMapper": "11.0.1",
  1904. "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0",
  1905. "Microsoft.AspNetCore": "2.2.0",
  1906. "Microsoft.EntityFrameworkCore.SqlServer": "6.0.3",
  1907. "MongoDB.Driver": "2.16.1"
  1908. },
  1909. "runtime": {
  1910. "Diligent.WebAPI.Data.dll": {}
  1911. }
  1912. }
  1913. }
  1914. },
  1915. "libraries": {
  1916. "Diligent.WebAPI.Host/1.0.0": {
  1917. "type": "project",
  1918. "serviceable": false,
  1919. "sha512": ""
  1920. },
  1921. "AspNetCore.Identity.MongoDbCore/3.1.2": {
  1922. "type": "package",
  1923. "serviceable": true,
  1924. "sha512": "sha512-ichSW3Vs51f+Ol7Ska1jIOlKc+i2Am3UeNvGhhIb59MXOKyhZGpyulUnFdN62IpP779EkLrLf3ZMwSZ2bVgY+g==",
  1925. "path": "aspnetcore.identity.mongodbcore/3.1.2",
  1926. "hashPath": "aspnetcore.identity.mongodbcore.3.1.2.nupkg.sha512"
  1927. },
  1928. "AutoMapper/11.0.1": {
  1929. "type": "package",
  1930. "serviceable": true,
  1931. "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==",
  1932. "path": "automapper/11.0.1",
  1933. "hashPath": "automapper.11.0.1.nupkg.sha512"
  1934. },
  1935. "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": {
  1936. "type": "package",
  1937. "serviceable": true,
  1938. "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==",
  1939. "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0",
  1940. "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512"
  1941. },
  1942. "DnsClient/1.6.1": {
  1943. "type": "package",
  1944. "serviceable": true,
  1945. "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==",
  1946. "path": "dnsclient/1.6.1",
  1947. "hashPath": "dnsclient.1.6.1.nupkg.sha512"
  1948. },
  1949. "Humanizer.Core/2.8.26": {
  1950. "type": "package",
  1951. "serviceable": true,
  1952. "sha512": "sha512-OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  1953. "path": "humanizer.core/2.8.26",
  1954. "hashPath": "humanizer.core.2.8.26.nupkg.sha512"
  1955. },
  1956. "MediatR/10.0.1": {
  1957. "type": "package",
  1958. "serviceable": true,
  1959. "sha512": "sha512-vnjbk4giDJzJelh34Ygt0eorApCKrRFB7j0pauFPY1oxfO3cEZ7FugBrIOjCM76SDGTOmPFfbfmVnz1t3iFrGA==",
  1960. "path": "mediatr/10.0.1",
  1961. "hashPath": "mediatr.10.0.1.nupkg.sha512"
  1962. },
  1963. "MediatR.Contracts/1.0.1": {
  1964. "type": "package",
  1965. "serviceable": true,
  1966. "sha512": "sha512-NsRvOxthhkYml4DcBMyJsmym8C4MchioH7wxKVPEg7plFj9Euh/i4IcmZ3Gvgx6+K8obeuhPeJdoBl56wnuo3A==",
  1967. "path": "mediatr.contracts/1.0.1",
  1968. "hashPath": "mediatr.contracts.1.0.1.nupkg.sha512"
  1969. },
  1970. "MediatR.Extensions.Microsoft.DependencyInjection/10.0.1": {
  1971. "type": "package",
  1972. "serviceable": true,
  1973. "sha512": "sha512-mYdfMvpkahCAj4tRfBoeMlUBZa2WthaONdQ4y5TtIyxcZYb5e7AE7c1eITTZVWcQhguxvD8AdExdaiAW6RhrVA==",
  1974. "path": "mediatr.extensions.microsoft.dependencyinjection/10.0.1",
  1975. "hashPath": "mediatr.extensions.microsoft.dependencyinjection.10.0.1.nupkg.sha512"
  1976. },
  1977. "Microsoft.AspNet.WebApi.Client/5.2.9": {
  1978. "type": "package",
  1979. "serviceable": true,
  1980. "sha512": "sha512-cuVhPjjNMSEFpKXweMNBbsG4RUFuuZpFBm8tSyw309U9JEjcnbB6n3EPb4xwgcy9bJ38ctIbv5G8zXUBhlrPWw==",
  1981. "path": "microsoft.aspnet.webapi.client/5.2.9",
  1982. "hashPath": "microsoft.aspnet.webapi.client.5.2.9.nupkg.sha512"
  1983. },
  1984. "Microsoft.AspNet.WebApi.Core/5.2.9": {
  1985. "type": "package",
  1986. "serviceable": true,
  1987. "sha512": "sha512-9C0/gBUeMBjorRFSmR5Z2j5wznf9BP5SddN+OZE7X0BpXgivBZTZ42d0h8tIjJzSLHYVCU4HZBf51+cidCY4fQ==",
  1988. "path": "microsoft.aspnet.webapi.core/5.2.9",
  1989. "hashPath": "microsoft.aspnet.webapi.core.5.2.9.nupkg.sha512"
  1990. },
  1991. "Microsoft.AspNetCore/2.2.0": {
  1992. "type": "package",
  1993. "serviceable": true,
  1994. "sha512": "sha512-Bs75iht4lXS8uVWy/Cbsr9i0m2jRtnrfPEWU+6t0dQTZcJEfF9b7G2F7XvstLFWkAKSgYRzFkAwi/KypY0Qtew==",
  1995. "path": "microsoft.aspnetcore/2.2.0",
  1996. "hashPath": "microsoft.aspnetcore.2.2.0.nupkg.sha512"
  1997. },
  1998. "Microsoft.AspNetCore.Authentication/2.2.0": {
  1999. "type": "package",
  2000. "serviceable": true,
  2001. "sha512": "sha512-b0R9X7L6zMqNsssKDvhYHuNi5x0s4DyHTeXybIAyGaitKiW1Q5aAGKdV2codHPiePv9yHfC9hAMyScXQ/xXhPw==",
  2002. "path": "microsoft.aspnetcore.authentication/2.2.0",
  2003. "hashPath": "microsoft.aspnetcore.authentication.2.2.0.nupkg.sha512"
  2004. },
  2005. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  2006. "type": "package",
  2007. "serviceable": true,
  2008. "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==",
  2009. "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0",
  2010. "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512"
  2011. },
  2012. "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": {
  2013. "type": "package",
  2014. "serviceable": true,
  2015. "sha512": "sha512-Iar9VFlBHkZGdSG9ZUTmn6Q8Qg+6CtW5G/TyJI2F8B432TOH+nZlkU7O0W0byow6xsxqOYeTviSHz4cCJ3amfQ==",
  2016. "path": "microsoft.aspnetcore.authentication.cookies/2.2.0",
  2017. "hashPath": "microsoft.aspnetcore.authentication.cookies.2.2.0.nupkg.sha512"
  2018. },
  2019. "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
  2020. "type": "package",
  2021. "serviceable": true,
  2022. "sha512": "sha512-XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==",
  2023. "path": "microsoft.aspnetcore.authentication.core/2.2.0",
  2024. "hashPath": "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512"
  2025. },
  2026. "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.6": {
  2027. "type": "package",
  2028. "serviceable": true,
  2029. "sha512": "sha512-lrfPEeisa0xCmZKKQIKxuks37aGE6jgGqDq1ikZDwNLWfIt2/ajOQpHMSE6a5uLjEVqkChKpXpvA7ZvfIKvdzA==",
  2030. "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.6",
  2031. "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.6.0.6.nupkg.sha512"
  2032. },
  2033. "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
  2034. "type": "package",
  2035. "serviceable": true,
  2036. "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==",
  2037. "path": "microsoft.aspnetcore.connections.abstractions/2.2.0",
  2038. "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512"
  2039. },
  2040. "Microsoft.AspNetCore.Cryptography.Internal/3.1.12": {
  2041. "type": "package",
  2042. "serviceable": true,
  2043. "sha512": "sha512-9V7Acx9lFw2KA23FOqH4TH5wQzZN/px/ovmRWBb8I3rf9arZ/cKniwRmRNrwgmShtQXhu1t124rrl1du2ueODA==",
  2044. "path": "microsoft.aspnetcore.cryptography.internal/3.1.12",
  2045. "hashPath": "microsoft.aspnetcore.cryptography.internal.3.1.12.nupkg.sha512"
  2046. },
  2047. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.12": {
  2048. "type": "package",
  2049. "serviceable": true,
  2050. "sha512": "sha512-LNaiyMe0J8kkXglqtmE3wK1xu3ofvKh1WTVmJs0yl/uFfo9Vbr6lSyZ0k+5sTUxuIS1WU6dHe4nO0ikRlXq6CQ==",
  2051. "path": "microsoft.aspnetcore.cryptography.keyderivation/3.1.12",
  2052. "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.3.1.12.nupkg.sha512"
  2053. },
  2054. "Microsoft.AspNetCore.DataProtection/2.2.0": {
  2055. "type": "package",
  2056. "serviceable": true,
  2057. "sha512": "sha512-G6dvu5Nd2vjpYbzazZ//qBFbSEf2wmBUbyAR7E4AwO3gWjhoJD5YxpThcGJb7oE3VUcW65SVMXT+cPCiiBg8Sg==",
  2058. "path": "microsoft.aspnetcore.dataprotection/2.2.0",
  2059. "hashPath": "microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512"
  2060. },
  2061. "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": {
  2062. "type": "package",
  2063. "serviceable": true,
  2064. "sha512": "sha512-seANFXmp8mb5Y12m1ShiElJ3ZdOT3mBN3wA1GPhHJIvZ/BxOCPyqEOR+810OWsxEZwA5r5fDRNpG/CqiJmQnJg==",
  2065. "path": "microsoft.aspnetcore.dataprotection.abstractions/2.2.0",
  2066. "hashPath": "microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512"
  2067. },
  2068. "Microsoft.AspNetCore.Diagnostics/2.2.0": {
  2069. "type": "package",
  2070. "serviceable": true,
  2071. "sha512": "sha512-RobNuZecn/eefWVApOE+OWAZXCdgfzm8pB7tBvJkahsjWfn1a+bLM9I2cuKlp/9aFBok1O/oDXlgYSvaQYu/yg==",
  2072. "path": "microsoft.aspnetcore.diagnostics/2.2.0",
  2073. "hashPath": "microsoft.aspnetcore.diagnostics.2.2.0.nupkg.sha512"
  2074. },
  2075. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": {
  2076. "type": "package",
  2077. "serviceable": true,
  2078. "sha512": "sha512-pva9ggfUDtnJIKzv0+wxwTX7LduDx6xLSpMqWwdOJkW52L0t31PI78+v+WqqMpUtMzcKug24jGs3nTFpAmA/2g==",
  2079. "path": "microsoft.aspnetcore.diagnostics.abstractions/2.2.0",
  2080. "hashPath": "microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512"
  2081. },
  2082. "Microsoft.AspNetCore.HostFiltering/2.2.0": {
  2083. "type": "package",
  2084. "serviceable": true,
  2085. "sha512": "sha512-JSX6ZlVWDkokZ+xCKDhUVQNqbmFn1lHQNzJc8K4Y/uTUocZS83+b/8Q7y/yx3oJ362etGMVy0keAvmCdqbP8nA==",
  2086. "path": "microsoft.aspnetcore.hostfiltering/2.2.0",
  2087. "hashPath": "microsoft.aspnetcore.hostfiltering.2.2.0.nupkg.sha512"
  2088. },
  2089. "Microsoft.AspNetCore.Hosting/2.2.0": {
  2090. "type": "package",
  2091. "serviceable": true,
  2092. "sha512": "sha512-7t4RbUGugpHtQmzAkc9fpDdYJg6t/jcB2VVnjensVYbZFnLDU8pNrG0hrekk1DQG7P2UzpSqKLzDsFF0/lkkbw==",
  2093. "path": "microsoft.aspnetcore.hosting/2.2.0",
  2094. "hashPath": "microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512"
  2095. },
  2096. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  2097. "type": "package",
  2098. "serviceable": true,
  2099. "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  2100. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  2101. "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512"
  2102. },
  2103. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  2104. "type": "package",
  2105. "serviceable": true,
  2106. "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  2107. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  2108. "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512"
  2109. },
  2110. "Microsoft.AspNetCore.Http/2.2.0": {
  2111. "type": "package",
  2112. "serviceable": true,
  2113. "sha512": "sha512-YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==",
  2114. "path": "microsoft.aspnetcore.http/2.2.0",
  2115. "hashPath": "microsoft.aspnetcore.http.2.2.0.nupkg.sha512"
  2116. },
  2117. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  2118. "type": "package",
  2119. "serviceable": true,
  2120. "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  2121. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  2122. "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
  2123. },
  2124. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  2125. "type": "package",
  2126. "serviceable": true,
  2127. "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
  2128. "path": "microsoft.aspnetcore.http.extensions/2.2.0",
  2129. "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512"
  2130. },
  2131. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  2132. "type": "package",
  2133. "serviceable": true,
  2134. "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  2135. "path": "microsoft.aspnetcore.http.features/2.2.0",
  2136. "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
  2137. },
  2138. "Microsoft.AspNetCore.HttpOverrides/2.2.0": {
  2139. "type": "package",
  2140. "serviceable": true,
  2141. "sha512": "sha512-pOlLQyNKQduGbtbgB55RyTHFeshSfKi3DmofrVjk+UBQjyp+Tm0RNNJFQf+sv34hlFsel+VnD79QyO9Zk/c3oA==",
  2142. "path": "microsoft.aspnetcore.httpoverrides/2.2.0",
  2143. "hashPath": "microsoft.aspnetcore.httpoverrides.2.2.0.nupkg.sha512"
  2144. },
  2145. "Microsoft.AspNetCore.Identity/2.2.0": {
  2146. "type": "package",
  2147. "serviceable": true,
  2148. "sha512": "sha512-F16BKeS96wKhyIyhaFR7m8kRIwIvPUW9Dx7IlGWmu2IIwnUDCdo+2z7IrWKA8r77pZQ1UE9kYcBPg5456YdAIA==",
  2149. "path": "microsoft.aspnetcore.identity/2.2.0",
  2150. "hashPath": "microsoft.aspnetcore.identity.2.2.0.nupkg.sha512"
  2151. },
  2152. "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": {
  2153. "type": "package",
  2154. "serviceable": true,
  2155. "sha512": "sha512-mN9IARvNpHMBD2/oGmp5Bxp1Dg45Hfcp+LWaAyTtL2HisWLMOIcf0Ox1qW9IvCvdbHM+2A9dWEInhiqBsNxsJA==",
  2156. "path": "microsoft.aspnetcore.mvc.versioning/5.0.0",
  2157. "hashPath": "microsoft.aspnetcore.mvc.versioning.5.0.0.nupkg.sha512"
  2158. },
  2159. "Microsoft.AspNetCore.Routing/2.2.0": {
  2160. "type": "package",
  2161. "serviceable": true,
  2162. "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==",
  2163. "path": "microsoft.aspnetcore.routing/2.2.0",
  2164. "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512"
  2165. },
  2166. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  2167. "type": "package",
  2168. "serviceable": true,
  2169. "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==",
  2170. "path": "microsoft.aspnetcore.routing.abstractions/2.2.0",
  2171. "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512"
  2172. },
  2173. "Microsoft.AspNetCore.Server.IIS/2.2.0": {
  2174. "type": "package",
  2175. "serviceable": true,
  2176. "sha512": "sha512-6NEwFAJFrnZ0f5eJB1ReIpgPM1ZRDj3IE3Rda01nD3vJANCyJFjZ4SGW3Ckn1AmMi225fGflWzpCKLb7/l43jw==",
  2177. "path": "microsoft.aspnetcore.server.iis/2.2.0",
  2178. "hashPath": "microsoft.aspnetcore.server.iis.2.2.0.nupkg.sha512"
  2179. },
  2180. "Microsoft.AspNetCore.Server.IISIntegration/2.2.0": {
  2181. "type": "package",
  2182. "serviceable": true,
  2183. "sha512": "sha512-iVjgAg+doTTrTFCOq6kZRpebXq94YGCx9efMIwO5QhwdY/sHAjfrVz2lXzji63G96YjJVK3ZRrlpgS2fd49ABw==",
  2184. "path": "microsoft.aspnetcore.server.iisintegration/2.2.0",
  2185. "hashPath": "microsoft.aspnetcore.server.iisintegration.2.2.0.nupkg.sha512"
  2186. },
  2187. "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
  2188. "type": "package",
  2189. "serviceable": true,
  2190. "sha512": "sha512-D0vGB8Tp0UNMiAhT+pwAVeqDDx2OFrfpu/plwm0WhA+1DZvTLc99eDwGISL6LAY8x7a12lhl9w7/m+VdoyDu8Q==",
  2191. "path": "microsoft.aspnetcore.server.kestrel/2.2.0",
  2192. "hashPath": "microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512"
  2193. },
  2194. "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
  2195. "type": "package",
  2196. "serviceable": true,
  2197. "sha512": "sha512-F6/Vesd3ODq/ISbHfcvfRf7IzRtTvrNX8VA36Knm5e7bteJhoRA2GKQUVQ+neoO1njLvaQKnjcA3rdCZ6AF6cg==",
  2198. "path": "microsoft.aspnetcore.server.kestrel.core/2.2.0",
  2199. "hashPath": "microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512"
  2200. },
  2201. "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
  2202. "type": "package",
  2203. "serviceable": true,
  2204. "sha512": "sha512-nEH5mU6idUYS3/+9BKw2stMOM25ZdGwIH4P4kyj6PVkMPgQUTkBQ7l/ScPkepdhejcOlPa+g3+M4dYsSYPUJ8g==",
  2205. "path": "microsoft.aspnetcore.server.kestrel.https/2.2.0",
  2206. "hashPath": "microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512"
  2207. },
  2208. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
  2209. "type": "package",
  2210. "serviceable": true,
  2211. "sha512": "sha512-j1ai2CG8BGp4mYf2TWSFjjy1pRgW9XbqhdR4EOVvrlFVbcpEPfXNIPEdjkcgK+txWCupGzkFnFF8oZsASMtmyw==",
  2212. "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.2.0",
  2213. "hashPath": "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512"
  2214. },
  2215. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.0": {
  2216. "type": "package",
  2217. "serviceable": true,
  2218. "sha512": "sha512-qTACI0wePgAKCH+YKrMgChyfqJpjwgGZEtSuwBw6TjWLQ66THGasleia/7EZz2t2eAjwWxw8RA/D8ODrBqpj9A==",
  2219. "path": "microsoft.aspnetcore.server.kestrel.transport.sockets/2.2.0",
  2220. "hashPath": "microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.0.nupkg.sha512"
  2221. },
  2222. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  2223. "type": "package",
  2224. "serviceable": true,
  2225. "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==",
  2226. "path": "microsoft.aspnetcore.webutilities/2.2.0",
  2227. "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512"
  2228. },
  2229. "Microsoft.CSharp/4.7.0": {
  2230. "type": "package",
  2231. "serviceable": true,
  2232. "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2233. "path": "microsoft.csharp/4.7.0",
  2234. "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
  2235. },
  2236. "Microsoft.Data.SqlClient/2.1.4": {
  2237. "type": "package",
  2238. "serviceable": true,
  2239. "sha512": "sha512-cDcKBTKILdRuAzJjbgXwGcUQXzMue+SG02kD4tZTXXfoz4ALrGLpCnA5k9khw3fnAMlMnRzLIGuvRdJurqmESA==",
  2240. "path": "microsoft.data.sqlclient/2.1.4",
  2241. "hashPath": "microsoft.data.sqlclient.2.1.4.nupkg.sha512"
  2242. },
  2243. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  2244. "type": "package",
  2245. "serviceable": true,
  2246. "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  2247. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  2248. "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512"
  2249. },
  2250. "Microsoft.EntityFrameworkCore/6.0.3": {
  2251. "type": "package",
  2252. "serviceable": true,
  2253. "sha512": "sha512-f7ZlNOI1wPg/r0zRgvmcLAM3kwuCVGe5cZc8rYoKPDGZs5dgRFe5a43H9FnCXsyFAF6FILB08Nr9RkuNMwd3TQ==",
  2254. "path": "microsoft.entityframeworkcore/6.0.3",
  2255. "hashPath": "microsoft.entityframeworkcore.6.0.3.nupkg.sha512"
  2256. },
  2257. "Microsoft.EntityFrameworkCore.Abstractions/6.0.3": {
  2258. "type": "package",
  2259. "serviceable": true,
  2260. "sha512": "sha512-7c6wJtTFj7FDe20IVPDKeCzxWIMu+XDpYi7aYuUo6knu4vDeB3N3F0pjAZgXJ96GwTZYBrjOEwnbpYmfapEz/w==",
  2261. "path": "microsoft.entityframeworkcore.abstractions/6.0.3",
  2262. "hashPath": "microsoft.entityframeworkcore.abstractions.6.0.3.nupkg.sha512"
  2263. },
  2264. "Microsoft.EntityFrameworkCore.Analyzers/6.0.3": {
  2265. "type": "package",
  2266. "serviceable": true,
  2267. "sha512": "sha512-Ld9HyVABYor3Tq43/sG2JERL94UnDHJPg5PwpkCW4CWsf/CbxHetdecv+bCXA/Hg4q+44sov0GVl4Ywjk4PnyA==",
  2268. "path": "microsoft.entityframeworkcore.analyzers/6.0.3",
  2269. "hashPath": "microsoft.entityframeworkcore.analyzers.6.0.3.nupkg.sha512"
  2270. },
  2271. "Microsoft.EntityFrameworkCore.Design/6.0.3": {
  2272. "type": "package",
  2273. "serviceable": true,
  2274. "sha512": "sha512-Gc3XhQ4vLK4rlGpZi8zaa4bl0t894QxqMXHSbDSsx8d7ghRaLbGIH1tQawpo2hriU/q918eepbCyoISD89Xx1w==",
  2275. "path": "microsoft.entityframeworkcore.design/6.0.3",
  2276. "hashPath": "microsoft.entityframeworkcore.design.6.0.3.nupkg.sha512"
  2277. },
  2278. "Microsoft.EntityFrameworkCore.Relational/6.0.3": {
  2279. "type": "package",
  2280. "serviceable": true,
  2281. "sha512": "sha512-Dga4OH8QxmPT9APr7ZL5R0TvNADOcjDNNvJa8pU3QbPJ6OvRPTlzqAehfEBow0/NXBTKbIO48b4aIJI4VCO7fg==",
  2282. "path": "microsoft.entityframeworkcore.relational/6.0.3",
  2283. "hashPath": "microsoft.entityframeworkcore.relational.6.0.3.nupkg.sha512"
  2284. },
  2285. "Microsoft.EntityFrameworkCore.SqlServer/6.0.3": {
  2286. "type": "package",
  2287. "serviceable": true,
  2288. "sha512": "sha512-rd1lGh5au10tB6J0Jt3ZLLA78Bs/eQSWgkMSBE9n+cRAs/Db99OfdnxgkK3JqCCyFfp12LAsboWDUCnRhPOskw==",
  2289. "path": "microsoft.entityframeworkcore.sqlserver/6.0.3",
  2290. "hashPath": "microsoft.entityframeworkcore.sqlserver.6.0.3.nupkg.sha512"
  2291. },
  2292. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  2293. "type": "package",
  2294. "serviceable": true,
  2295. "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
  2296. "path": "microsoft.extensions.caching.abstractions/6.0.0",
  2297. "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512"
  2298. },
  2299. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  2300. "type": "package",
  2301. "serviceable": true,
  2302. "sha512": "sha512-B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==",
  2303. "path": "microsoft.extensions.caching.memory/6.0.1",
  2304. "hashPath": "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512"
  2305. },
  2306. "Microsoft.Extensions.Configuration/2.2.0": {
  2307. "type": "package",
  2308. "serviceable": true,
  2309. "sha512": "sha512-nOP8R1mVb/6mZtm2qgAJXn/LFm/2kMjHDAg/QJLFG6CuWYJtaD3p1BwQhufBVvRzL9ceJ/xF0SQ0qsI2GkDQAA==",
  2310. "path": "microsoft.extensions.configuration/2.2.0",
  2311. "hashPath": "microsoft.extensions.configuration.2.2.0.nupkg.sha512"
  2312. },
  2313. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  2314. "type": "package",
  2315. "serviceable": true,
  2316. "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  2317. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  2318. "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512"
  2319. },
  2320. "Microsoft.Extensions.Configuration.Binder/2.2.0": {
  2321. "type": "package",
  2322. "serviceable": true,
  2323. "sha512": "sha512-vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==",
  2324. "path": "microsoft.extensions.configuration.binder/2.2.0",
  2325. "hashPath": "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512"
  2326. },
  2327. "Microsoft.Extensions.Configuration.CommandLine/2.2.0": {
  2328. "type": "package",
  2329. "serviceable": true,
  2330. "sha512": "sha512-4kJIGOSRqD1Ccqerst4t/zsNs51plR7BIxbdKO1J/9rL+2DuNT+ieAuEv+HROelqTam3yOpKFR7TtHBt3oLpOA==",
  2331. "path": "microsoft.extensions.configuration.commandline/2.2.0",
  2332. "hashPath": "microsoft.extensions.configuration.commandline.2.2.0.nupkg.sha512"
  2333. },
  2334. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
  2335. "type": "package",
  2336. "serviceable": true,
  2337. "sha512": "sha512-gIqt9PkKO01hZ0zmHnWrZ1E45MDreZTVoyDbL1kMWKtDgxxWTJpYtESTEcgpvR1uB1iex1zKGYzJpOMgmuP5TQ==",
  2338. "path": "microsoft.extensions.configuration.environmentvariables/2.2.0",
  2339. "hashPath": "microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512"
  2340. },
  2341. "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
  2342. "type": "package",
  2343. "serviceable": true,
  2344. "sha512": "sha512-H1qCpWBC8Ed4tguTR/qYkbb3F6DI5Su3t8xyFo3/5MzAd8PwPpHzgX8X04KbBxKmk173Pb64x7xMHarczVFQUA==",
  2345. "path": "microsoft.extensions.configuration.fileextensions/2.2.0",
  2346. "hashPath": "microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512"
  2347. },
  2348. "Microsoft.Extensions.Configuration.Json/2.2.0": {
  2349. "type": "package",
  2350. "serviceable": true,
  2351. "sha512": "sha512-jUDdmLyFmLf9V3mqnMzSAzAv4QigJ67tZh5Q7HBXeBnESL2UyeesNG6jSBti+b63JpxZf+EDyn+anx3gyrNxug==",
  2352. "path": "microsoft.extensions.configuration.json/2.2.0",
  2353. "hashPath": "microsoft.extensions.configuration.json.2.2.0.nupkg.sha512"
  2354. },
  2355. "Microsoft.Extensions.Configuration.UserSecrets/2.2.0": {
  2356. "type": "package",
  2357. "serviceable": true,
  2358. "sha512": "sha512-2/N2xo6/sNbVshnKktmq5lwaQbsAR2SrzCVrJEeMP8OKZVI7SzT8P6/WXZF8/YC7dTYsMe3nrHzgl1cF9i5ZKQ==",
  2359. "path": "microsoft.extensions.configuration.usersecrets/2.2.0",
  2360. "hashPath": "microsoft.extensions.configuration.usersecrets.2.2.0.nupkg.sha512"
  2361. },
  2362. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  2363. "type": "package",
  2364. "serviceable": true,
  2365. "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
  2366. "path": "microsoft.extensions.dependencyinjection/6.0.0",
  2367. "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512"
  2368. },
  2369. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  2370. "type": "package",
  2371. "serviceable": true,
  2372. "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  2373. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  2374. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512"
  2375. },
  2376. "Microsoft.Extensions.DependencyModel/3.0.0": {
  2377. "type": "package",
  2378. "serviceable": true,
  2379. "sha512": "sha512-Iaectmzg9Dc4ZbKX/FurrRjgO/I8rTumL5UU+Uube6vZuGetcnXoIgTA94RthFWePhdMVm8MMhVFJZdbzMsdyQ==",
  2380. "path": "microsoft.extensions.dependencymodel/3.0.0",
  2381. "hashPath": "microsoft.extensions.dependencymodel.3.0.0.nupkg.sha512"
  2382. },
  2383. "Microsoft.Extensions.FileProviders.Abstractions/3.1.8": {
  2384. "type": "package",
  2385. "serviceable": true,
  2386. "sha512": "sha512-U7ffyzrPfRDH5K3h/mBpqJVoHbppw1kc1KyHZcZeDR7b1A0FRaqMSiizGpN9IGwWs9BuN7oXIKFyviuSGBjHtQ==",
  2387. "path": "microsoft.extensions.fileproviders.abstractions/3.1.8",
  2388. "hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.8.nupkg.sha512"
  2389. },
  2390. "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
  2391. "type": "package",
  2392. "serviceable": true,
  2393. "sha512": "sha512-tbDHZnBJkjYd9NjlRZ9ondDiv1Te3KYCTW2RWpR1B0e1Z8+EnFRo7qNnHkkSCixLdlPZzhjlX24d/PixQ7w2dA==",
  2394. "path": "microsoft.extensions.fileproviders.physical/2.2.0",
  2395. "hashPath": "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512"
  2396. },
  2397. "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
  2398. "type": "package",
  2399. "serviceable": true,
  2400. "sha512": "sha512-ZSsHZp3PyW6vk37tDEdypjgGlNtpJ0EixBMOfUod2Thx7GtwfFSAQXUQx8a8BN8vfWKGGMbp7jPWdoHx/At4wQ==",
  2401. "path": "microsoft.extensions.filesystemglobbing/2.2.0",
  2402. "hashPath": "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512"
  2403. },
  2404. "Microsoft.Extensions.Hosting.Abstractions/3.1.8": {
  2405. "type": "package",
  2406. "serviceable": true,
  2407. "sha512": "sha512-7ZJUKwPipkDvuv2KJPZ3r01wp2AWNMiYH+61i0dL89F7QICknjKpWgLKLpTSUYFgl77S3b4264I6i4HzDdrb2A==",
  2408. "path": "microsoft.extensions.hosting.abstractions/3.1.8",
  2409. "hashPath": "microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512"
  2410. },
  2411. "Microsoft.Extensions.Identity.Core/3.1.12": {
  2412. "type": "package",
  2413. "serviceable": true,
  2414. "sha512": "sha512-MRNaIsE3PdT24+6cWxJhiyfTY3Eoncr/m+5nW3NtBjPQXhJKECGNdquh5EH5KwNaYls2KI53znl7KD4pWMkKyw==",
  2415. "path": "microsoft.extensions.identity.core/3.1.12",
  2416. "hashPath": "microsoft.extensions.identity.core.3.1.12.nupkg.sha512"
  2417. },
  2418. "Microsoft.Extensions.Identity.Stores/3.1.12": {
  2419. "type": "package",
  2420. "serviceable": true,
  2421. "sha512": "sha512-xQOIvN3nFJ0ptl/qnozFJPzfY/TxrJFr9k/EPJkqHZx8jtzlGJ4mqvgknau0AunW25uXyT+O6co3AJ4B4OKcRQ==",
  2422. "path": "microsoft.extensions.identity.stores/3.1.12",
  2423. "hashPath": "microsoft.extensions.identity.stores.3.1.12.nupkg.sha512"
  2424. },
  2425. "Microsoft.Extensions.Logging/6.0.0": {
  2426. "type": "package",
  2427. "serviceable": true,
  2428. "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
  2429. "path": "microsoft.extensions.logging/6.0.0",
  2430. "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512"
  2431. },
  2432. "Microsoft.Extensions.Logging.Abstractions/6.0.0": {
  2433. "type": "package",
  2434. "serviceable": true,
  2435. "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==",
  2436. "path": "microsoft.extensions.logging.abstractions/6.0.0",
  2437. "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512"
  2438. },
  2439. "Microsoft.Extensions.Logging.Configuration/2.2.0": {
  2440. "type": "package",
  2441. "serviceable": true,
  2442. "sha512": "sha512-ukU1mQGX9+xBsEzpNd13yl4deFVYI+fxxnmKpOhvNZsF+/trCrAUQh+9QM5pPGHbfYkz3lLQ4BXfKCP0502dLw==",
  2443. "path": "microsoft.extensions.logging.configuration/2.2.0",
  2444. "hashPath": "microsoft.extensions.logging.configuration.2.2.0.nupkg.sha512"
  2445. },
  2446. "Microsoft.Extensions.Logging.Console/2.2.0": {
  2447. "type": "package",
  2448. "serviceable": true,
  2449. "sha512": "sha512-1eGgcOJ++PMxW6sn++j6U7wsWvhEBm/5ScqBUUBGLRE8M7AHahi9tsxivDMqEXVM3F0/pshHl3kEpMXtw4BeFg==",
  2450. "path": "microsoft.extensions.logging.console/2.2.0",
  2451. "hashPath": "microsoft.extensions.logging.console.2.2.0.nupkg.sha512"
  2452. },
  2453. "Microsoft.Extensions.Logging.Debug/2.2.0": {
  2454. "type": "package",
  2455. "serviceable": true,
  2456. "sha512": "sha512-JjqWtshxUujSnxslFccCRAaH8uFOciqXkYdRw+h5MwpC4sUc+ju9yZzvVi6PA5vW09ckv26EkasEvXrofGiaJg==",
  2457. "path": "microsoft.extensions.logging.debug/2.2.0",
  2458. "hashPath": "microsoft.extensions.logging.debug.2.2.0.nupkg.sha512"
  2459. },
  2460. "Microsoft.Extensions.Logging.EventSource/2.2.0": {
  2461. "type": "package",
  2462. "serviceable": true,
  2463. "sha512": "sha512-oOa5H+vdNgpsxE6vgtX4U/godKtX2edVi+QjlWb2PBQfavGIQ3WxtjxN+B0DQAjwBNdV4mW8cgOiDEZ8KdR7Ig==",
  2464. "path": "microsoft.extensions.logging.eventsource/2.2.0",
  2465. "hashPath": "microsoft.extensions.logging.eventsource.2.2.0.nupkg.sha512"
  2466. },
  2467. "Microsoft.Extensions.ObjectPool/2.2.0": {
  2468. "type": "package",
  2469. "serviceable": true,
  2470. "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
  2471. "path": "microsoft.extensions.objectpool/2.2.0",
  2472. "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512"
  2473. },
  2474. "Microsoft.Extensions.Options/6.0.0": {
  2475. "type": "package",
  2476. "serviceable": true,
  2477. "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  2478. "path": "microsoft.extensions.options/6.0.0",
  2479. "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512"
  2480. },
  2481. "Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0": {
  2482. "type": "package",
  2483. "serviceable": true,
  2484. "sha512": "sha512-d4WS6yVXaw43ffiUnHj8oG1t2B6RbDDiQcgdA+Eq//NlPa3Wd+GTJFKj4OM4eDF3GjVumGr/CEVRS/jcYoF5LA==",
  2485. "path": "microsoft.extensions.options.configurationextensions/2.2.0",
  2486. "hashPath": "microsoft.extensions.options.configurationextensions.2.2.0.nupkg.sha512"
  2487. },
  2488. "Microsoft.Extensions.Primitives/6.0.0": {
  2489. "type": "package",
  2490. "serviceable": true,
  2491. "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  2492. "path": "microsoft.extensions.primitives/6.0.0",
  2493. "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512"
  2494. },
  2495. "Microsoft.Extensions.WebEncoders/2.2.0": {
  2496. "type": "package",
  2497. "serviceable": true,
  2498. "sha512": "sha512-V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==",
  2499. "path": "microsoft.extensions.webencoders/2.2.0",
  2500. "hashPath": "microsoft.extensions.webencoders.2.2.0.nupkg.sha512"
  2501. },
  2502. "Microsoft.Identity.Client/4.21.1": {
  2503. "type": "package",
  2504. "serviceable": true,
  2505. "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  2506. "path": "microsoft.identity.client/4.21.1",
  2507. "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512"
  2508. },
  2509. "Microsoft.IdentityModel.JsonWebTokens/6.10.0": {
  2510. "type": "package",
  2511. "serviceable": true,
  2512. "sha512": "sha512-0qjS31rN1MQTc46tAYbzmMTSRfdV5ndZxSjYxIGqKSidd4wpNJfNII/pdhU5Fx8olarQoKL9lqqYw4yNOIwT0Q==",
  2513. "path": "microsoft.identitymodel.jsonwebtokens/6.10.0",
  2514. "hashPath": "microsoft.identitymodel.jsonwebtokens.6.10.0.nupkg.sha512"
  2515. },
  2516. "Microsoft.IdentityModel.Logging/6.10.0": {
  2517. "type": "package",
  2518. "serviceable": true,
  2519. "sha512": "sha512-zbcwV6esnNzhZZ/VP87dji6VrUBLB5rxnZBkDMqNYpyG+nrBnBsbm4PUYLCBMUflHCM9EMLDG0rLnqqT+l0ldA==",
  2520. "path": "microsoft.identitymodel.logging/6.10.0",
  2521. "hashPath": "microsoft.identitymodel.logging.6.10.0.nupkg.sha512"
  2522. },
  2523. "Microsoft.IdentityModel.Protocols/6.10.0": {
  2524. "type": "package",
  2525. "serviceable": true,
  2526. "sha512": "sha512-DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==",
  2527. "path": "microsoft.identitymodel.protocols/6.10.0",
  2528. "hashPath": "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512"
  2529. },
  2530. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
  2531. "type": "package",
  2532. "serviceable": true,
  2533. "sha512": "sha512-LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==",
  2534. "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0",
  2535. "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512"
  2536. },
  2537. "Microsoft.IdentityModel.Tokens/6.10.0": {
  2538. "type": "package",
  2539. "serviceable": true,
  2540. "sha512": "sha512-qbf1NslutDB4oLrriYTJpy7oB1pbh2ej2lEHd2IPDQH9C74ysOdhU5wAC7KoXblldbo7YsNR2QYFOqQM/b0Rsg==",
  2541. "path": "microsoft.identitymodel.tokens/6.10.0",
  2542. "hashPath": "microsoft.identitymodel.tokens.6.10.0.nupkg.sha512"
  2543. },
  2544. "Microsoft.Net.Http.Headers/2.2.0": {
  2545. "type": "package",
  2546. "serviceable": true,
  2547. "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
  2548. "path": "microsoft.net.http.headers/2.2.0",
  2549. "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512"
  2550. },
  2551. "Microsoft.NETCore.Platforms/5.0.0": {
  2552. "type": "package",
  2553. "serviceable": true,
  2554. "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  2555. "path": "microsoft.netcore.platforms/5.0.0",
  2556. "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
  2557. },
  2558. "Microsoft.NETCore.Targets/1.1.0": {
  2559. "type": "package",
  2560. "serviceable": true,
  2561. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  2562. "path": "microsoft.netcore.targets/1.1.0",
  2563. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  2564. },
  2565. "Microsoft.Win32.Primitives/4.3.0": {
  2566. "type": "package",
  2567. "serviceable": true,
  2568. "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  2569. "path": "microsoft.win32.primitives/4.3.0",
  2570. "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
  2571. },
  2572. "Microsoft.Win32.Registry/5.0.0": {
  2573. "type": "package",
  2574. "serviceable": true,
  2575. "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  2576. "path": "microsoft.win32.registry/5.0.0",
  2577. "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
  2578. },
  2579. "Microsoft.Win32.SystemEvents/4.7.0": {
  2580. "type": "package",
  2581. "serviceable": true,
  2582. "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  2583. "path": "microsoft.win32.systemevents/4.7.0",
  2584. "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512"
  2585. },
  2586. "MongoDB.Bson/2.16.1": {
  2587. "type": "package",
  2588. "serviceable": true,
  2589. "sha512": "sha512-d647KTPQ7hWqJmvCg80iiVdm239llaUwMyIeRF/0zKpN+ddRWh9jT/g6R6WQrmi4qd7yodvv/Jn0rpEqh4QN8g==",
  2590. "path": "mongodb.bson/2.16.1",
  2591. "hashPath": "mongodb.bson.2.16.1.nupkg.sha512"
  2592. },
  2593. "MongoDB.Driver/2.16.1": {
  2594. "type": "package",
  2595. "serviceable": true,
  2596. "sha512": "sha512-LqDWfRG7gM1tZKcG9Q/vuQGYF5GsBuxUF5KcOgvWrE6P7pSkOSL9xGZ7ABZ6XRVECGEQs+N6GyU1E4ViI4lh+g==",
  2597. "path": "mongodb.driver/2.16.1",
  2598. "hashPath": "mongodb.driver.2.16.1.nupkg.sha512"
  2599. },
  2600. "MongoDB.Driver.Core/2.16.1": {
  2601. "type": "package",
  2602. "serviceable": true,
  2603. "sha512": "sha512-oJZnXHnAyTd/haHYdbfKMRmPEZ1fFrndv8xhorHeTkUDeGgsPA89vpGMHcjppUyHMYBpLgHbn6GoMkleHKsTHg==",
  2604. "path": "mongodb.driver.core/2.16.1",
  2605. "hashPath": "mongodb.driver.core.2.16.1.nupkg.sha512"
  2606. },
  2607. "MongoDB.Libmongocrypt/1.5.3": {
  2608. "type": "package",
  2609. "serviceable": true,
  2610. "sha512": "sha512-OWWxuyuxbjAmOLPoaoUEYnIW4F7qexS6XYOdu6absxyGAqLBWEY+M4WY2Y0km2UUG1+QOPdebpb/7cg5BIEbdw==",
  2611. "path": "mongodb.libmongocrypt/1.5.3",
  2612. "hashPath": "mongodb.libmongocrypt.1.5.3.nupkg.sha512"
  2613. },
  2614. "MongoDbGenericRepository/1.4.8": {
  2615. "type": "package",
  2616. "serviceable": true,
  2617. "sha512": "sha512-+cogUUMvXjnc8JUvDwnWitNAKRU7BrOleILH2AeLQnZ/WZNvocRw2PLNBIBlXyBdf3Nt2UtByL12d2lPGwP+VQ==",
  2618. "path": "mongodbgenericrepository/1.4.8",
  2619. "hashPath": "mongodbgenericrepository.1.4.8.nupkg.sha512"
  2620. },
  2621. "NETStandard.Library/1.6.1": {
  2622. "type": "package",
  2623. "serviceable": true,
  2624. "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  2625. "path": "netstandard.library/1.6.1",
  2626. "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
  2627. },
  2628. "Newtonsoft.Json/11.0.2": {
  2629. "type": "package",
  2630. "serviceable": true,
  2631. "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
  2632. "path": "newtonsoft.json/11.0.2",
  2633. "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
  2634. },
  2635. "Newtonsoft.Json.Bson/1.0.1": {
  2636. "type": "package",
  2637. "serviceable": true,
  2638. "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
  2639. "path": "newtonsoft.json.bson/1.0.1",
  2640. "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512"
  2641. },
  2642. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2643. "type": "package",
  2644. "serviceable": true,
  2645. "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  2646. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2647. "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2648. },
  2649. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2650. "type": "package",
  2651. "serviceable": true,
  2652. "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  2653. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2654. "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2655. },
  2656. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2657. "type": "package",
  2658. "serviceable": true,
  2659. "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  2660. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2661. "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2662. },
  2663. "runtime.native.System/4.3.0": {
  2664. "type": "package",
  2665. "serviceable": true,
  2666. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  2667. "path": "runtime.native.system/4.3.0",
  2668. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  2669. },
  2670. "runtime.native.System.IO.Compression/4.3.0": {
  2671. "type": "package",
  2672. "serviceable": true,
  2673. "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  2674. "path": "runtime.native.system.io.compression/4.3.0",
  2675. "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
  2676. },
  2677. "runtime.native.System.Net.Http/4.3.0": {
  2678. "type": "package",
  2679. "serviceable": true,
  2680. "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  2681. "path": "runtime.native.system.net.http/4.3.0",
  2682. "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
  2683. },
  2684. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2685. "type": "package",
  2686. "serviceable": true,
  2687. "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  2688. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  2689. "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  2690. },
  2691. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2692. "type": "package",
  2693. "serviceable": true,
  2694. "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  2695. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  2696. "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2697. },
  2698. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2699. "type": "package",
  2700. "serviceable": true,
  2701. "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  2702. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2703. "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2704. },
  2705. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2706. "type": "package",
  2707. "serviceable": true,
  2708. "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  2709. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2710. "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2711. },
  2712. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2713. "type": "package",
  2714. "serviceable": true,
  2715. "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  2716. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  2717. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  2718. },
  2719. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2720. "type": "package",
  2721. "serviceable": true,
  2722. "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  2723. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2724. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2725. },
  2726. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2727. "type": "package",
  2728. "serviceable": true,
  2729. "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  2730. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2731. "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2732. },
  2733. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2734. "type": "package",
  2735. "serviceable": true,
  2736. "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  2737. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2738. "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2739. },
  2740. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2741. "type": "package",
  2742. "serviceable": true,
  2743. "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  2744. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2745. "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2746. },
  2747. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2748. "type": "package",
  2749. "serviceable": true,
  2750. "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  2751. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2752. "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2753. },
  2754. "Serilog/2.11.0": {
  2755. "type": "package",
  2756. "serviceable": true,
  2757. "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==",
  2758. "path": "serilog/2.11.0",
  2759. "hashPath": "serilog.2.11.0.nupkg.sha512"
  2760. },
  2761. "Serilog.AspNetCore/5.0.0": {
  2762. "type": "package",
  2763. "serviceable": true,
  2764. "sha512": "sha512-/JO/txIxRR61x1UXQAgUzG2Sx05o1QHCkokVBWrKzmAoDu+p5EtCAj7L/TVVg7Ezhh3GPiZ0JI9OJCmRO9tSRw==",
  2765. "path": "serilog.aspnetcore/5.0.0",
  2766. "hashPath": "serilog.aspnetcore.5.0.0.nupkg.sha512"
  2767. },
  2768. "Serilog.Extensions.Hosting/4.2.0": {
  2769. "type": "package",
  2770. "serviceable": true,
  2771. "sha512": "sha512-gT2keceCmPQR9EX0VpXQZvUgELdfE7yqJ7MOxBhm3WLCblcvRgswEOOTgok/DHObbM15A3V/DtF3VdVDQPIZzQ==",
  2772. "path": "serilog.extensions.hosting/4.2.0",
  2773. "hashPath": "serilog.extensions.hosting.4.2.0.nupkg.sha512"
  2774. },
  2775. "Serilog.Extensions.Logging/3.1.0": {
  2776. "type": "package",
  2777. "serviceable": true,
  2778. "sha512": "sha512-IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==",
  2779. "path": "serilog.extensions.logging/3.1.0",
  2780. "hashPath": "serilog.extensions.logging.3.1.0.nupkg.sha512"
  2781. },
  2782. "Serilog.Formatting.Compact/1.1.0": {
  2783. "type": "package",
  2784. "serviceable": true,
  2785. "sha512": "sha512-pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==",
  2786. "path": "serilog.formatting.compact/1.1.0",
  2787. "hashPath": "serilog.formatting.compact.1.1.0.nupkg.sha512"
  2788. },
  2789. "Serilog.Settings.Configuration/3.3.0": {
  2790. "type": "package",
  2791. "serviceable": true,
  2792. "sha512": "sha512-7GNudISZwqaT902hqEL2OFGTZeUFWfnrNLupJkOqeF41AR3GjcxX+Hwb30xb8gG2/CDXsCMVfF8o0+8KY0fJNg==",
  2793. "path": "serilog.settings.configuration/3.3.0",
  2794. "hashPath": "serilog.settings.configuration.3.3.0.nupkg.sha512"
  2795. },
  2796. "Serilog.Sinks.Console/4.0.1": {
  2797. "type": "package",
  2798. "serviceable": true,
  2799. "sha512": "sha512-apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==",
  2800. "path": "serilog.sinks.console/4.0.1",
  2801. "hashPath": "serilog.sinks.console.4.0.1.nupkg.sha512"
  2802. },
  2803. "Serilog.Sinks.Debug/2.0.0": {
  2804. "type": "package",
  2805. "serviceable": true,
  2806. "sha512": "sha512-Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==",
  2807. "path": "serilog.sinks.debug/2.0.0",
  2808. "hashPath": "serilog.sinks.debug.2.0.0.nupkg.sha512"
  2809. },
  2810. "Serilog.Sinks.File/5.0.0": {
  2811. "type": "package",
  2812. "serviceable": true,
  2813. "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  2814. "path": "serilog.sinks.file/5.0.0",
  2815. "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512"
  2816. },
  2817. "Serilog.Sinks.PeriodicBatching/2.3.0": {
  2818. "type": "package",
  2819. "serviceable": true,
  2820. "sha512": "sha512-UYKSjTMTlUY9T3OgzMmLDLD+z0qPfgvq/RvG0rKfyz+O+Zrjw3X/Xpv14J4WMcGVsOjUaR+k8n2MdmqVpJtI6A==",
  2821. "path": "serilog.sinks.periodicbatching/2.3.0",
  2822. "hashPath": "serilog.sinks.periodicbatching.2.3.0.nupkg.sha512"
  2823. },
  2824. "Serilog.Sinks.Seq/5.1.1": {
  2825. "type": "package",
  2826. "serviceable": true,
  2827. "sha512": "sha512-+BsIoanNyZPEcWY5sVtx2nL/88UcCw9gr/l0nCfe4bjuSoFS2clDIUmKaH1UXA/hx9undHCgw4epVltOulGuxw==",
  2828. "path": "serilog.sinks.seq/5.1.1",
  2829. "hashPath": "serilog.sinks.seq.5.1.1.nupkg.sha512"
  2830. },
  2831. "SharpCompress/0.30.1": {
  2832. "type": "package",
  2833. "serviceable": true,
  2834. "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==",
  2835. "path": "sharpcompress/0.30.1",
  2836. "hashPath": "sharpcompress.0.30.1.nupkg.sha512"
  2837. },
  2838. "System.AppContext/4.3.0": {
  2839. "type": "package",
  2840. "serviceable": true,
  2841. "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  2842. "path": "system.appcontext/4.3.0",
  2843. "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
  2844. },
  2845. "System.Buffers/4.5.1": {
  2846. "type": "package",
  2847. "serviceable": true,
  2848. "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  2849. "path": "system.buffers/4.5.1",
  2850. "hashPath": "system.buffers.4.5.1.nupkg.sha512"
  2851. },
  2852. "System.Collections/4.3.0": {
  2853. "type": "package",
  2854. "serviceable": true,
  2855. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  2856. "path": "system.collections/4.3.0",
  2857. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  2858. },
  2859. "System.Collections.Concurrent/4.3.0": {
  2860. "type": "package",
  2861. "serviceable": true,
  2862. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  2863. "path": "system.collections.concurrent/4.3.0",
  2864. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  2865. },
  2866. "System.Collections.Immutable/6.0.0": {
  2867. "type": "package",
  2868. "serviceable": true,
  2869. "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  2870. "path": "system.collections.immutable/6.0.0",
  2871. "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512"
  2872. },
  2873. "System.Configuration.ConfigurationManager/4.7.0": {
  2874. "type": "package",
  2875. "serviceable": true,
  2876. "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  2877. "path": "system.configuration.configurationmanager/4.7.0",
  2878. "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512"
  2879. },
  2880. "System.Console/4.3.0": {
  2881. "type": "package",
  2882. "serviceable": true,
  2883. "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  2884. "path": "system.console/4.3.0",
  2885. "hashPath": "system.console.4.3.0.nupkg.sha512"
  2886. },
  2887. "System.Diagnostics.Debug/4.3.0": {
  2888. "type": "package",
  2889. "serviceable": true,
  2890. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  2891. "path": "system.diagnostics.debug/4.3.0",
  2892. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  2893. },
  2894. "System.Diagnostics.DiagnosticSource/6.0.0": {
  2895. "type": "package",
  2896. "serviceable": true,
  2897. "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  2898. "path": "system.diagnostics.diagnosticsource/6.0.0",
  2899. "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512"
  2900. },
  2901. "System.Diagnostics.Tools/4.3.0": {
  2902. "type": "package",
  2903. "serviceable": true,
  2904. "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  2905. "path": "system.diagnostics.tools/4.3.0",
  2906. "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
  2907. },
  2908. "System.Diagnostics.Tracing/4.3.0": {
  2909. "type": "package",
  2910. "serviceable": true,
  2911. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  2912. "path": "system.diagnostics.tracing/4.3.0",
  2913. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  2914. },
  2915. "System.Drawing.Common/4.7.0": {
  2916. "type": "package",
  2917. "serviceable": true,
  2918. "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  2919. "path": "system.drawing.common/4.7.0",
  2920. "hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
  2921. },
  2922. "System.Globalization/4.3.0": {
  2923. "type": "package",
  2924. "serviceable": true,
  2925. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  2926. "path": "system.globalization/4.3.0",
  2927. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  2928. },
  2929. "System.Globalization.Calendars/4.3.0": {
  2930. "type": "package",
  2931. "serviceable": true,
  2932. "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  2933. "path": "system.globalization.calendars/4.3.0",
  2934. "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
  2935. },
  2936. "System.Globalization.Extensions/4.3.0": {
  2937. "type": "package",
  2938. "serviceable": true,
  2939. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  2940. "path": "system.globalization.extensions/4.3.0",
  2941. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  2942. },
  2943. "System.IdentityModel.Tokens.Jwt/6.10.0": {
  2944. "type": "package",
  2945. "serviceable": true,
  2946. "sha512": "sha512-C+Q5ORsFycRkRuvy/Xd0Pv5xVpmWSAvQYZAGs7VQogmkqlLhvfZXTgBIlHqC3cxkstSoLJAYx6xZB7foQ2y5eg==",
  2947. "path": "system.identitymodel.tokens.jwt/6.10.0",
  2948. "hashPath": "system.identitymodel.tokens.jwt.6.10.0.nupkg.sha512"
  2949. },
  2950. "System.IO/4.3.0": {
  2951. "type": "package",
  2952. "serviceable": true,
  2953. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  2954. "path": "system.io/4.3.0",
  2955. "hashPath": "system.io.4.3.0.nupkg.sha512"
  2956. },
  2957. "System.IO.Compression/4.3.0": {
  2958. "type": "package",
  2959. "serviceable": true,
  2960. "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  2961. "path": "system.io.compression/4.3.0",
  2962. "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
  2963. },
  2964. "System.IO.Compression.ZipFile/4.3.0": {
  2965. "type": "package",
  2966. "serviceable": true,
  2967. "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  2968. "path": "system.io.compression.zipfile/4.3.0",
  2969. "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
  2970. },
  2971. "System.IO.FileSystem/4.3.0": {
  2972. "type": "package",
  2973. "serviceable": true,
  2974. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  2975. "path": "system.io.filesystem/4.3.0",
  2976. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  2977. },
  2978. "System.IO.FileSystem.Primitives/4.3.0": {
  2979. "type": "package",
  2980. "serviceable": true,
  2981. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  2982. "path": "system.io.filesystem.primitives/4.3.0",
  2983. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  2984. },
  2985. "System.IO.Pipelines/4.5.2": {
  2986. "type": "package",
  2987. "serviceable": true,
  2988. "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==",
  2989. "path": "system.io.pipelines/4.5.2",
  2990. "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512"
  2991. },
  2992. "System.Linq/4.3.0": {
  2993. "type": "package",
  2994. "serviceable": true,
  2995. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  2996. "path": "system.linq/4.3.0",
  2997. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  2998. },
  2999. "System.Linq.Expressions/4.3.0": {
  3000. "type": "package",
  3001. "serviceable": true,
  3002. "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  3003. "path": "system.linq.expressions/4.3.0",
  3004. "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
  3005. },
  3006. "System.Memory/4.5.1": {
  3007. "type": "package",
  3008. "serviceable": true,
  3009. "sha512": "sha512-sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==",
  3010. "path": "system.memory/4.5.1",
  3011. "hashPath": "system.memory.4.5.1.nupkg.sha512"
  3012. },
  3013. "System.Net.Http/4.3.0": {
  3014. "type": "package",
  3015. "serviceable": true,
  3016. "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  3017. "path": "system.net.http/4.3.0",
  3018. "hashPath": "system.net.http.4.3.0.nupkg.sha512"
  3019. },
  3020. "System.Net.Primitives/4.3.0": {
  3021. "type": "package",
  3022. "serviceable": true,
  3023. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  3024. "path": "system.net.primitives/4.3.0",
  3025. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  3026. },
  3027. "System.Net.Sockets/4.3.0": {
  3028. "type": "package",
  3029. "serviceable": true,
  3030. "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  3031. "path": "system.net.sockets/4.3.0",
  3032. "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
  3033. },
  3034. "System.Numerics.Vectors/4.5.0": {
  3035. "type": "package",
  3036. "serviceable": true,
  3037. "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  3038. "path": "system.numerics.vectors/4.5.0",
  3039. "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
  3040. },
  3041. "System.ObjectModel/4.3.0": {
  3042. "type": "package",
  3043. "serviceable": true,
  3044. "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  3045. "path": "system.objectmodel/4.3.0",
  3046. "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
  3047. },
  3048. "System.Reflection/4.3.0": {
  3049. "type": "package",
  3050. "serviceable": true,
  3051. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  3052. "path": "system.reflection/4.3.0",
  3053. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  3054. },
  3055. "System.Reflection.Emit/4.3.0": {
  3056. "type": "package",
  3057. "serviceable": true,
  3058. "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  3059. "path": "system.reflection.emit/4.3.0",
  3060. "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
  3061. },
  3062. "System.Reflection.Emit.ILGeneration/4.3.0": {
  3063. "type": "package",
  3064. "serviceable": true,
  3065. "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  3066. "path": "system.reflection.emit.ilgeneration/4.3.0",
  3067. "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
  3068. },
  3069. "System.Reflection.Emit.Lightweight/4.3.0": {
  3070. "type": "package",
  3071. "serviceable": true,
  3072. "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  3073. "path": "system.reflection.emit.lightweight/4.3.0",
  3074. "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
  3075. },
  3076. "System.Reflection.Extensions/4.3.0": {
  3077. "type": "package",
  3078. "serviceable": true,
  3079. "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  3080. "path": "system.reflection.extensions/4.3.0",
  3081. "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
  3082. },
  3083. "System.Reflection.Metadata/1.6.0": {
  3084. "type": "package",
  3085. "serviceable": true,
  3086. "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  3087. "path": "system.reflection.metadata/1.6.0",
  3088. "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
  3089. },
  3090. "System.Reflection.Primitives/4.3.0": {
  3091. "type": "package",
  3092. "serviceable": true,
  3093. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  3094. "path": "system.reflection.primitives/4.3.0",
  3095. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  3096. },
  3097. "System.Reflection.TypeExtensions/4.3.0": {
  3098. "type": "package",
  3099. "serviceable": true,
  3100. "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  3101. "path": "system.reflection.typeextensions/4.3.0",
  3102. "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
  3103. },
  3104. "System.Resources.ResourceManager/4.3.0": {
  3105. "type": "package",
  3106. "serviceable": true,
  3107. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  3108. "path": "system.resources.resourcemanager/4.3.0",
  3109. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  3110. },
  3111. "System.Runtime/4.3.0": {
  3112. "type": "package",
  3113. "serviceable": true,
  3114. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  3115. "path": "system.runtime/4.3.0",
  3116. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  3117. },
  3118. "System.Runtime.Caching/4.7.0": {
  3119. "type": "package",
  3120. "serviceable": true,
  3121. "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  3122. "path": "system.runtime.caching/4.7.0",
  3123. "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512"
  3124. },
  3125. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  3126. "type": "package",
  3127. "serviceable": true,
  3128. "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  3129. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  3130. "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
  3131. },
  3132. "System.Runtime.Extensions/4.3.0": {
  3133. "type": "package",
  3134. "serviceable": true,
  3135. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  3136. "path": "system.runtime.extensions/4.3.0",
  3137. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  3138. },
  3139. "System.Runtime.Handles/4.3.0": {
  3140. "type": "package",
  3141. "serviceable": true,
  3142. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  3143. "path": "system.runtime.handles/4.3.0",
  3144. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  3145. },
  3146. "System.Runtime.InteropServices/4.3.0": {
  3147. "type": "package",
  3148. "serviceable": true,
  3149. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  3150. "path": "system.runtime.interopservices/4.3.0",
  3151. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  3152. },
  3153. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  3154. "type": "package",
  3155. "serviceable": true,
  3156. "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  3157. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  3158. "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
  3159. },
  3160. "System.Runtime.Numerics/4.3.0": {
  3161. "type": "package",
  3162. "serviceable": true,
  3163. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  3164. "path": "system.runtime.numerics/4.3.0",
  3165. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  3166. },
  3167. "System.Security.AccessControl/5.0.0": {
  3168. "type": "package",
  3169. "serviceable": true,
  3170. "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  3171. "path": "system.security.accesscontrol/5.0.0",
  3172. "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
  3173. },
  3174. "System.Security.Cryptography.Algorithms/4.3.0": {
  3175. "type": "package",
  3176. "serviceable": true,
  3177. "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  3178. "path": "system.security.cryptography.algorithms/4.3.0",
  3179. "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
  3180. },
  3181. "System.Security.Cryptography.Cng/4.5.0": {
  3182. "type": "package",
  3183. "serviceable": true,
  3184. "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  3185. "path": "system.security.cryptography.cng/4.5.0",
  3186. "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
  3187. },
  3188. "System.Security.Cryptography.Csp/4.3.0": {
  3189. "type": "package",
  3190. "serviceable": true,
  3191. "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  3192. "path": "system.security.cryptography.csp/4.3.0",
  3193. "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
  3194. },
  3195. "System.Security.Cryptography.Encoding/4.3.0": {
  3196. "type": "package",
  3197. "serviceable": true,
  3198. "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  3199. "path": "system.security.cryptography.encoding/4.3.0",
  3200. "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
  3201. },
  3202. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3203. "type": "package",
  3204. "serviceable": true,
  3205. "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  3206. "path": "system.security.cryptography.openssl/4.3.0",
  3207. "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  3208. },
  3209. "System.Security.Cryptography.Pkcs/4.5.0": {
  3210. "type": "package",
  3211. "serviceable": true,
  3212. "sha512": "sha512-TGQX51gxpY3K3I6LJlE2LAftVlIMqJf0cBGhz68Y89jjk3LJCB6SrwiD+YN1fkqemBvWGs+GjyMJukl6d6goyQ==",
  3213. "path": "system.security.cryptography.pkcs/4.5.0",
  3214. "hashPath": "system.security.cryptography.pkcs.4.5.0.nupkg.sha512"
  3215. },
  3216. "System.Security.Cryptography.Primitives/4.3.0": {
  3217. "type": "package",
  3218. "serviceable": true,
  3219. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  3220. "path": "system.security.cryptography.primitives/4.3.0",
  3221. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  3222. },
  3223. "System.Security.Cryptography.ProtectedData/4.7.0": {
  3224. "type": "package",
  3225. "serviceable": true,
  3226. "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  3227. "path": "system.security.cryptography.protecteddata/4.7.0",
  3228. "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
  3229. },
  3230. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3231. "type": "package",
  3232. "serviceable": true,
  3233. "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  3234. "path": "system.security.cryptography.x509certificates/4.3.0",
  3235. "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
  3236. },
  3237. "System.Security.Cryptography.Xml/4.5.0": {
  3238. "type": "package",
  3239. "serviceable": true,
  3240. "sha512": "sha512-i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==",
  3241. "path": "system.security.cryptography.xml/4.5.0",
  3242. "hashPath": "system.security.cryptography.xml.4.5.0.nupkg.sha512"
  3243. },
  3244. "System.Security.Permissions/4.7.0": {
  3245. "type": "package",
  3246. "serviceable": true,
  3247. "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  3248. "path": "system.security.permissions/4.7.0",
  3249. "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
  3250. },
  3251. "System.Security.Principal.Windows/5.0.0": {
  3252. "type": "package",
  3253. "serviceable": true,
  3254. "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  3255. "path": "system.security.principal.windows/5.0.0",
  3256. "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
  3257. },
  3258. "System.Text.Encoding/4.3.0": {
  3259. "type": "package",
  3260. "serviceable": true,
  3261. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  3262. "path": "system.text.encoding/4.3.0",
  3263. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  3264. },
  3265. "System.Text.Encoding.CodePages/4.7.0": {
  3266. "type": "package",
  3267. "serviceable": true,
  3268. "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  3269. "path": "system.text.encoding.codepages/4.7.0",
  3270. "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512"
  3271. },
  3272. "System.Text.Encoding.Extensions/4.3.0": {
  3273. "type": "package",
  3274. "serviceable": true,
  3275. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  3276. "path": "system.text.encoding.extensions/4.3.0",
  3277. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  3278. },
  3279. "System.Text.Encodings.Web/4.5.0": {
  3280. "type": "package",
  3281. "serviceable": true,
  3282. "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  3283. "path": "system.text.encodings.web/4.5.0",
  3284. "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
  3285. },
  3286. "System.Text.Json/4.6.0": {
  3287. "type": "package",
  3288. "serviceable": true,
  3289. "sha512": "sha512-4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==",
  3290. "path": "system.text.json/4.6.0",
  3291. "hashPath": "system.text.json.4.6.0.nupkg.sha512"
  3292. },
  3293. "System.Text.RegularExpressions/4.3.0": {
  3294. "type": "package",
  3295. "serviceable": true,
  3296. "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  3297. "path": "system.text.regularexpressions/4.3.0",
  3298. "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
  3299. },
  3300. "System.Threading/4.3.0": {
  3301. "type": "package",
  3302. "serviceable": true,
  3303. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  3304. "path": "system.threading/4.3.0",
  3305. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  3306. },
  3307. "System.Threading.Tasks/4.3.0": {
  3308. "type": "package",
  3309. "serviceable": true,
  3310. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  3311. "path": "system.threading.tasks/4.3.0",
  3312. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  3313. },
  3314. "System.Threading.Tasks.Extensions/4.5.1": {
  3315. "type": "package",
  3316. "serviceable": true,
  3317. "sha512": "sha512-WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==",
  3318. "path": "system.threading.tasks.extensions/4.5.1",
  3319. "hashPath": "system.threading.tasks.extensions.4.5.1.nupkg.sha512"
  3320. },
  3321. "System.Threading.Timer/4.3.0": {
  3322. "type": "package",
  3323. "serviceable": true,
  3324. "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  3325. "path": "system.threading.timer/4.3.0",
  3326. "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
  3327. },
  3328. "System.Windows.Extensions/4.7.0": {
  3329. "type": "package",
  3330. "serviceable": true,
  3331. "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  3332. "path": "system.windows.extensions/4.7.0",
  3333. "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
  3334. },
  3335. "System.Xml.ReaderWriter/4.3.0": {
  3336. "type": "package",
  3337. "serviceable": true,
  3338. "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  3339. "path": "system.xml.readerwriter/4.3.0",
  3340. "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
  3341. },
  3342. "System.Xml.XDocument/4.3.0": {
  3343. "type": "package",
  3344. "serviceable": true,
  3345. "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  3346. "path": "system.xml.xdocument/4.3.0",
  3347. "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
  3348. },
  3349. "Diligent.WebAPI.Business/1.0.0": {
  3350. "type": "project",
  3351. "serviceable": false,
  3352. "sha512": ""
  3353. },
  3354. "Diligent.WebAPI.Data/1.0.0": {
  3355. "type": "project",
  3356. "serviceable": false,
  3357. "sha512": ""
  3358. }
  3359. }
  3360. }