FileServer.deps.json 225 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v2.1",
  4. "signature": "8d74a95046236c3098907da75a779339f58ec64f"
  5. },
  6. "compilationOptions": {
  7. "defines": [
  8. "TRACE",
  9. "DEBUG",
  10. "NETCOREAPP",
  11. "NETCOREAPP2_1"
  12. ],
  13. "languageVersion": "latest",
  14. "platform": "",
  15. "allowUnsafe": false,
  16. "warningsAsErrors": false,
  17. "optimize": false,
  18. "keyFile": "",
  19. "emitEntryPoint": true,
  20. "xmlDoc": false,
  21. "debugType": "portable"
  22. },
  23. "targets": {
  24. ".NETCoreApp,Version=v2.1": {
  25. "FileServer/1.0.0": {
  26. "dependencies": {
  27. "Microsoft.AspNetCore.App": "2.1.1",
  28. "Microsoft.AspNetCore.Razor.Design": "2.1.2",
  29. "Microsoft.AspNetCore.StaticFiles": "2.2.0-preview3-35497",
  30. "Microsoft.Extensions.Configuration": "2.2.0-preview3-35497",
  31. "Microsoft.NETCore.App": "2.1.0"
  32. },
  33. "runtime": {
  34. "FileServer.dll": {}
  35. },
  36. "compile": {
  37. "FileServer.dll": {}
  38. }
  39. },
  40. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0-preview3-35497": {
  41. "dependencies": {
  42. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0-preview3-35497",
  43. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0-preview3-35497",
  44. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0-preview3-35497"
  45. },
  46. "runtime": {
  47. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  48. "assemblyVersion": "2.2.0.0",
  49. "fileVersion": "2.2.0.18287"
  50. }
  51. },
  52. "compile": {
  53. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  54. }
  55. },
  56. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0-preview3-35497": {
  57. "dependencies": {
  58. "Microsoft.AspNetCore.Http.Features": "2.2.0-preview3-35497",
  59. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0-preview3-35497"
  60. },
  61. "runtime": {
  62. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  63. "assemblyVersion": "2.2.0.0",
  64. "fileVersion": "2.2.0.18287"
  65. }
  66. },
  67. "compile": {
  68. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  69. }
  70. },
  71. "Microsoft.AspNetCore.Http.Abstractions/2.2.0-preview3-35497": {
  72. "dependencies": {
  73. "Microsoft.AspNetCore.Http.Features": "2.2.0-preview3-35497",
  74. "System.Text.Encodings.Web": "4.5.0"
  75. },
  76. "runtime": {
  77. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  78. "assemblyVersion": "2.2.0.0",
  79. "fileVersion": "2.2.0.18287"
  80. }
  81. },
  82. "compile": {
  83. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  84. }
  85. },
  86. "Microsoft.AspNetCore.Http.Extensions/2.2.0-preview3-35497": {
  87. "dependencies": {
  88. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0-preview3-35497",
  89. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0-preview3-35497",
  90. "Microsoft.Net.Http.Headers": "2.2.0-preview3-35497",
  91. "System.Buffers": "4.5.0"
  92. },
  93. "runtime": {
  94. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  95. "assemblyVersion": "2.2.0.0",
  96. "fileVersion": "2.2.0.18287"
  97. }
  98. },
  99. "compile": {
  100. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {}
  101. }
  102. },
  103. "Microsoft.AspNetCore.Http.Features/2.2.0-preview3-35497": {
  104. "dependencies": {
  105. "Microsoft.Extensions.Primitives": "2.2.0-preview3-35497"
  106. },
  107. "runtime": {
  108. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  109. "assemblyVersion": "2.2.0.0",
  110. "fileVersion": "2.2.0.18287"
  111. }
  112. },
  113. "compile": {
  114. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  115. }
  116. },
  117. "Microsoft.AspNetCore.Razor.Design/2.1.2": {},
  118. "Microsoft.AspNetCore.StaticFiles/2.2.0-preview3-35497": {
  119. "dependencies": {
  120. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  121. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  122. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0-preview3-35497",
  123. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  124. "Microsoft.Extensions.WebEncoders": "2.2.0-preview3-35497"
  125. },
  126. "runtime": {
  127. "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll": {
  128. "assemblyVersion": "2.2.0.0",
  129. "fileVersion": "2.2.0.18287"
  130. }
  131. },
  132. "compile": {
  133. "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll": {}
  134. }
  135. },
  136. "Microsoft.Extensions.Configuration/2.2.0-preview3-35497": {
  137. "dependencies": {
  138. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0-preview3-35497"
  139. },
  140. "runtime": {
  141. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  142. "assemblyVersion": "2.2.0.0",
  143. "fileVersion": "2.2.0.18287"
  144. }
  145. },
  146. "compile": {
  147. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  148. }
  149. },
  150. "Microsoft.Extensions.Configuration.Abstractions/2.2.0-preview3-35497": {
  151. "dependencies": {
  152. "Microsoft.Extensions.Primitives": "2.2.0-preview3-35497"
  153. },
  154. "runtime": {
  155. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  156. "assemblyVersion": "2.2.0.0",
  157. "fileVersion": "2.2.0.18287"
  158. }
  159. },
  160. "compile": {
  161. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  162. }
  163. },
  164. "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0-preview3-35497": {
  165. "runtime": {
  166. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  167. "assemblyVersion": "2.2.0.0",
  168. "fileVersion": "2.2.0.18287"
  169. }
  170. },
  171. "compile": {
  172. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  173. }
  174. },
  175. "Microsoft.Extensions.FileProviders.Abstractions/2.2.0-preview3-35497": {
  176. "dependencies": {
  177. "Microsoft.Extensions.Primitives": "2.2.0-preview3-35497"
  178. },
  179. "runtime": {
  180. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  181. "assemblyVersion": "2.2.0.0",
  182. "fileVersion": "2.2.0.18287"
  183. }
  184. },
  185. "compile": {
  186. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  187. }
  188. },
  189. "Microsoft.Extensions.Hosting.Abstractions/2.2.0-preview3-35497": {
  190. "dependencies": {
  191. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0-preview3-35497",
  192. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0-preview3-35497",
  193. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0-preview3-35497",
  194. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497"
  195. },
  196. "runtime": {
  197. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  198. "assemblyVersion": "2.2.0.0",
  199. "fileVersion": "2.2.0.18287"
  200. }
  201. },
  202. "compile": {
  203. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  204. }
  205. },
  206. "Microsoft.Extensions.Logging.Abstractions/2.2.0-preview3-35497": {
  207. "runtime": {
  208. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  209. "assemblyVersion": "2.2.0.0",
  210. "fileVersion": "2.2.0.18287"
  211. }
  212. },
  213. "compile": {
  214. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  215. }
  216. },
  217. "Microsoft.Extensions.Options/2.2.0-preview3-35497": {
  218. "dependencies": {
  219. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0-preview3-35497",
  220. "Microsoft.Extensions.Primitives": "2.2.0-preview3-35497",
  221. "System.ComponentModel.Annotations": "4.5.0"
  222. },
  223. "runtime": {
  224. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
  225. "assemblyVersion": "2.2.0.0",
  226. "fileVersion": "2.2.0.18287"
  227. }
  228. },
  229. "compile": {
  230. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  231. }
  232. },
  233. "Microsoft.Extensions.Primitives/2.2.0-preview3-35497": {
  234. "dependencies": {
  235. "System.Memory": "4.5.1",
  236. "System.Runtime.CompilerServices.Unsafe": "4.5.1"
  237. },
  238. "runtime": {
  239. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  240. "assemblyVersion": "2.2.0.0",
  241. "fileVersion": "2.2.0.18287"
  242. }
  243. },
  244. "compile": {
  245. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
  246. }
  247. },
  248. "Microsoft.Extensions.WebEncoders/2.2.0-preview3-35497": {
  249. "dependencies": {
  250. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0-preview3-35497",
  251. "Microsoft.Extensions.Options": "2.2.0-preview3-35497",
  252. "System.Text.Encodings.Web": "4.5.0"
  253. },
  254. "runtime": {
  255. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
  256. "assemblyVersion": "2.2.0.0",
  257. "fileVersion": "2.2.0.18287"
  258. }
  259. },
  260. "compile": {
  261. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {}
  262. }
  263. },
  264. "Microsoft.Net.Http.Headers/2.2.0-preview3-35497": {
  265. "dependencies": {
  266. "Microsoft.Extensions.Primitives": "2.2.0-preview3-35497",
  267. "System.Buffers": "4.5.0"
  268. },
  269. "runtime": {
  270. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  271. "assemblyVersion": "2.2.0.0",
  272. "fileVersion": "2.2.0.18287"
  273. }
  274. },
  275. "compile": {
  276. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {}
  277. }
  278. },
  279. "Microsoft.NETCore.App/2.1.0": {
  280. "dependencies": {
  281. "Microsoft.NETCore.DotNetHostPolicy": "2.1.0",
  282. "Microsoft.NETCore.Platforms": "2.1.0",
  283. "Microsoft.NETCore.Targets": "2.1.0",
  284. "NETStandard.Library": "2.0.3"
  285. },
  286. "compile": {
  287. "ref/netcoreapp2.1/Microsoft.CSharp.dll": {},
  288. "ref/netcoreapp2.1/Microsoft.VisualBasic.dll": {},
  289. "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll": {},
  290. "ref/netcoreapp2.1/System.AppContext.dll": {},
  291. "ref/netcoreapp2.1/System.Buffers.dll": {},
  292. "ref/netcoreapp2.1/System.Collections.Concurrent.dll": {},
  293. "ref/netcoreapp2.1/System.Collections.Immutable.dll": {},
  294. "ref/netcoreapp2.1/System.Collections.NonGeneric.dll": {},
  295. "ref/netcoreapp2.1/System.Collections.Specialized.dll": {},
  296. "ref/netcoreapp2.1/System.Collections.dll": {},
  297. "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll": {},
  298. "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll": {},
  299. "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll": {},
  300. "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll": {},
  301. "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll": {},
  302. "ref/netcoreapp2.1/System.ComponentModel.dll": {},
  303. "ref/netcoreapp2.1/System.Configuration.dll": {},
  304. "ref/netcoreapp2.1/System.Console.dll": {},
  305. "ref/netcoreapp2.1/System.Core.dll": {},
  306. "ref/netcoreapp2.1/System.Data.Common.dll": {},
  307. "ref/netcoreapp2.1/System.Data.dll": {},
  308. "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll": {},
  309. "ref/netcoreapp2.1/System.Diagnostics.Debug.dll": {},
  310. "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll": {},
  311. "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll": {},
  312. "ref/netcoreapp2.1/System.Diagnostics.Process.dll": {},
  313. "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll": {},
  314. "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll": {},
  315. "ref/netcoreapp2.1/System.Diagnostics.Tools.dll": {},
  316. "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll": {},
  317. "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll": {},
  318. "ref/netcoreapp2.1/System.Drawing.Primitives.dll": {},
  319. "ref/netcoreapp2.1/System.Drawing.dll": {},
  320. "ref/netcoreapp2.1/System.Dynamic.Runtime.dll": {},
  321. "ref/netcoreapp2.1/System.Globalization.Calendars.dll": {},
  322. "ref/netcoreapp2.1/System.Globalization.Extensions.dll": {},
  323. "ref/netcoreapp2.1/System.Globalization.dll": {},
  324. "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll": {},
  325. "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll": {},
  326. "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll": {},
  327. "ref/netcoreapp2.1/System.IO.Compression.dll": {},
  328. "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll": {},
  329. "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll": {},
  330. "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll": {},
  331. "ref/netcoreapp2.1/System.IO.FileSystem.dll": {},
  332. "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll": {},
  333. "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll": {},
  334. "ref/netcoreapp2.1/System.IO.Pipes.dll": {},
  335. "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll": {},
  336. "ref/netcoreapp2.1/System.IO.dll": {},
  337. "ref/netcoreapp2.1/System.Linq.Expressions.dll": {},
  338. "ref/netcoreapp2.1/System.Linq.Parallel.dll": {},
  339. "ref/netcoreapp2.1/System.Linq.Queryable.dll": {},
  340. "ref/netcoreapp2.1/System.Linq.dll": {},
  341. "ref/netcoreapp2.1/System.Memory.dll": {},
  342. "ref/netcoreapp2.1/System.Net.Http.dll": {},
  343. "ref/netcoreapp2.1/System.Net.HttpListener.dll": {},
  344. "ref/netcoreapp2.1/System.Net.Mail.dll": {},
  345. "ref/netcoreapp2.1/System.Net.NameResolution.dll": {},
  346. "ref/netcoreapp2.1/System.Net.NetworkInformation.dll": {},
  347. "ref/netcoreapp2.1/System.Net.Ping.dll": {},
  348. "ref/netcoreapp2.1/System.Net.Primitives.dll": {},
  349. "ref/netcoreapp2.1/System.Net.Requests.dll": {},
  350. "ref/netcoreapp2.1/System.Net.Security.dll": {},
  351. "ref/netcoreapp2.1/System.Net.ServicePoint.dll": {},
  352. "ref/netcoreapp2.1/System.Net.Sockets.dll": {},
  353. "ref/netcoreapp2.1/System.Net.WebClient.dll": {},
  354. "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll": {},
  355. "ref/netcoreapp2.1/System.Net.WebProxy.dll": {},
  356. "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll": {},
  357. "ref/netcoreapp2.1/System.Net.WebSockets.dll": {},
  358. "ref/netcoreapp2.1/System.Net.dll": {},
  359. "ref/netcoreapp2.1/System.Numerics.Vectors.dll": {},
  360. "ref/netcoreapp2.1/System.Numerics.dll": {},
  361. "ref/netcoreapp2.1/System.ObjectModel.dll": {},
  362. "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll": {},
  363. "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll": {},
  364. "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll": {},
  365. "ref/netcoreapp2.1/System.Reflection.Emit.dll": {},
  366. "ref/netcoreapp2.1/System.Reflection.Extensions.dll": {},
  367. "ref/netcoreapp2.1/System.Reflection.Metadata.dll": {},
  368. "ref/netcoreapp2.1/System.Reflection.Primitives.dll": {},
  369. "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll": {},
  370. "ref/netcoreapp2.1/System.Reflection.dll": {},
  371. "ref/netcoreapp2.1/System.Resources.Reader.dll": {},
  372. "ref/netcoreapp2.1/System.Resources.ResourceManager.dll": {},
  373. "ref/netcoreapp2.1/System.Resources.Writer.dll": {},
  374. "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll": {},
  375. "ref/netcoreapp2.1/System.Runtime.Extensions.dll": {},
  376. "ref/netcoreapp2.1/System.Runtime.Handles.dll": {},
  377. "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll": {},
  378. "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll": {},
  379. "ref/netcoreapp2.1/System.Runtime.InteropServices.dll": {},
  380. "ref/netcoreapp2.1/System.Runtime.Loader.dll": {},
  381. "ref/netcoreapp2.1/System.Runtime.Numerics.dll": {},
  382. "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll": {},
  383. "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll": {},
  384. "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll": {},
  385. "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll": {},
  386. "ref/netcoreapp2.1/System.Runtime.Serialization.dll": {},
  387. "ref/netcoreapp2.1/System.Runtime.dll": {},
  388. "ref/netcoreapp2.1/System.Security.Claims.dll": {},
  389. "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll": {},
  390. "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll": {},
  391. "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll": {},
  392. "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll": {},
  393. "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll": {},
  394. "ref/netcoreapp2.1/System.Security.Principal.dll": {},
  395. "ref/netcoreapp2.1/System.Security.SecureString.dll": {},
  396. "ref/netcoreapp2.1/System.Security.dll": {},
  397. "ref/netcoreapp2.1/System.ServiceModel.Web.dll": {},
  398. "ref/netcoreapp2.1/System.ServiceProcess.dll": {},
  399. "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll": {},
  400. "ref/netcoreapp2.1/System.Text.Encoding.dll": {},
  401. "ref/netcoreapp2.1/System.Text.RegularExpressions.dll": {},
  402. "ref/netcoreapp2.1/System.Threading.Overlapped.dll": {},
  403. "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll": {},
  404. "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll": {},
  405. "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll": {},
  406. "ref/netcoreapp2.1/System.Threading.Tasks.dll": {},
  407. "ref/netcoreapp2.1/System.Threading.Thread.dll": {},
  408. "ref/netcoreapp2.1/System.Threading.ThreadPool.dll": {},
  409. "ref/netcoreapp2.1/System.Threading.Timer.dll": {},
  410. "ref/netcoreapp2.1/System.Threading.dll": {},
  411. "ref/netcoreapp2.1/System.Transactions.Local.dll": {},
  412. "ref/netcoreapp2.1/System.Transactions.dll": {},
  413. "ref/netcoreapp2.1/System.ValueTuple.dll": {},
  414. "ref/netcoreapp2.1/System.Web.HttpUtility.dll": {},
  415. "ref/netcoreapp2.1/System.Web.dll": {},
  416. "ref/netcoreapp2.1/System.Windows.dll": {},
  417. "ref/netcoreapp2.1/System.Xml.Linq.dll": {},
  418. "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll": {},
  419. "ref/netcoreapp2.1/System.Xml.Serialization.dll": {},
  420. "ref/netcoreapp2.1/System.Xml.XDocument.dll": {},
  421. "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll": {},
  422. "ref/netcoreapp2.1/System.Xml.XPath.dll": {},
  423. "ref/netcoreapp2.1/System.Xml.XmlDocument.dll": {},
  424. "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll": {},
  425. "ref/netcoreapp2.1/System.Xml.dll": {},
  426. "ref/netcoreapp2.1/System.dll": {},
  427. "ref/netcoreapp2.1/WindowsBase.dll": {},
  428. "ref/netcoreapp2.1/mscorlib.dll": {},
  429. "ref/netcoreapp2.1/netstandard.dll": {}
  430. }
  431. },
  432. "Microsoft.NETCore.DotNetAppHost/2.1.0": {},
  433. "Microsoft.NETCore.DotNetHostPolicy/2.1.0": {
  434. "dependencies": {
  435. "Microsoft.NETCore.DotNetHostResolver": "2.1.0"
  436. }
  437. },
  438. "Microsoft.NETCore.DotNetHostResolver/2.1.0": {
  439. "dependencies": {
  440. "Microsoft.NETCore.DotNetAppHost": "2.1.0"
  441. }
  442. },
  443. "Microsoft.NETCore.Platforms/2.1.0": {},
  444. "Microsoft.NETCore.Targets/2.1.0": {},
  445. "NETStandard.Library/2.0.3": {
  446. "dependencies": {
  447. "Microsoft.NETCore.Platforms": "2.1.0"
  448. }
  449. },
  450. "Microsoft.AspNet.WebApi.Client/5.2.6": {
  451. "dependencies": {
  452. "Newtonsoft.Json": "11.0.2",
  453. "Newtonsoft.Json.Bson": "1.0.1"
  454. },
  455. "compile": {
  456. "lib/netstandard2.0/System.Net.Http.Formatting.dll": {}
  457. },
  458. "compileOnly": true
  459. },
  460. "Microsoft.AspNetCore/2.1.1": {
  461. "dependencies": {
  462. "Microsoft.AspNetCore.Diagnostics": "2.1.1",
  463. "Microsoft.AspNetCore.HostFiltering": "2.1.1",
  464. "Microsoft.AspNetCore.Hosting": "2.1.1",
  465. "Microsoft.AspNetCore.Routing": "2.1.1",
  466. "Microsoft.AspNetCore.Server.IISIntegration": "2.1.1",
  467. "Microsoft.AspNetCore.Server.Kestrel": "2.1.1",
  468. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.1.1",
  469. "Microsoft.Extensions.Configuration.CommandLine": "2.1.1",
  470. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.1.1",
  471. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  472. "Microsoft.Extensions.Configuration.Json": "2.1.1",
  473. "Microsoft.Extensions.Configuration.UserSecrets": "2.1.1",
  474. "Microsoft.Extensions.Logging": "2.1.1",
  475. "Microsoft.Extensions.Logging.Configuration": "2.1.1",
  476. "Microsoft.Extensions.Logging.Console": "2.1.1",
  477. "Microsoft.Extensions.Logging.Debug": "2.1.1"
  478. },
  479. "compile": {
  480. "lib/netstandard2.0/Microsoft.AspNetCore.dll": {}
  481. },
  482. "compileOnly": true
  483. },
  484. "Microsoft.AspNetCore.Antiforgery/2.1.1": {
  485. "dependencies": {
  486. "Microsoft.AspNetCore.DataProtection": "2.1.1",
  487. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0-preview3-35497",
  488. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  489. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  490. "Microsoft.Extensions.ObjectPool": "2.1.1"
  491. },
  492. "compile": {
  493. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {}
  494. },
  495. "compileOnly": true
  496. },
  497. "Microsoft.AspNetCore.App/2.1.1": {
  498. "dependencies": {
  499. "Microsoft.AspNet.WebApi.Client": "5.2.6",
  500. "Microsoft.AspNetCore": "2.1.1",
  501. "Microsoft.AspNetCore.Antiforgery": "2.1.1",
  502. "Microsoft.AspNetCore.Authentication": "2.1.1",
  503. "Microsoft.AspNetCore.Authentication.Abstractions": "2.1.1",
  504. "Microsoft.AspNetCore.Authentication.Cookies": "2.1.1",
  505. "Microsoft.AspNetCore.Authentication.Core": "2.1.1",
  506. "Microsoft.AspNetCore.Authentication.Facebook": "2.1.1",
  507. "Microsoft.AspNetCore.Authentication.Google": "2.1.1",
  508. "Microsoft.AspNetCore.Authentication.JwtBearer": "2.1.1",
  509. "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "2.1.1",
  510. "Microsoft.AspNetCore.Authentication.OAuth": "2.1.1",
  511. "Microsoft.AspNetCore.Authentication.OpenIdConnect": "2.1.1",
  512. "Microsoft.AspNetCore.Authentication.Twitter": "2.1.1",
  513. "Microsoft.AspNetCore.Authentication.WsFederation": "2.1.1",
  514. "Microsoft.AspNetCore.Authorization": "2.1.1",
  515. "Microsoft.AspNetCore.Authorization.Policy": "2.1.1",
  516. "Microsoft.AspNetCore.Connections.Abstractions": "2.1.1",
  517. "Microsoft.AspNetCore.CookiePolicy": "2.1.1",
  518. "Microsoft.AspNetCore.Cors": "2.1.1",
  519. "Microsoft.AspNetCore.Cryptography.Internal": "2.1.1",
  520. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.1.1",
  521. "Microsoft.AspNetCore.DataProtection": "2.1.1",
  522. "Microsoft.AspNetCore.DataProtection.Abstractions": "2.1.1",
  523. "Microsoft.AspNetCore.DataProtection.Extensions": "2.1.1",
  524. "Microsoft.AspNetCore.Diagnostics": "2.1.1",
  525. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.1.1",
  526. "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "2.1.1",
  527. "Microsoft.AspNetCore.HostFiltering": "2.1.1",
  528. "Microsoft.AspNetCore.Hosting": "2.1.1",
  529. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  530. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0-preview3-35497",
  531. "Microsoft.AspNetCore.Html.Abstractions": "2.1.1",
  532. "Microsoft.AspNetCore.Http": "2.1.1",
  533. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0-preview3-35497",
  534. "Microsoft.AspNetCore.Http.Connections": "1.0.1",
  535. "Microsoft.AspNetCore.Http.Connections.Common": "1.0.1",
  536. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  537. "Microsoft.AspNetCore.Http.Features": "2.2.0-preview3-35497",
  538. "Microsoft.AspNetCore.HttpOverrides": "2.1.1",
  539. "Microsoft.AspNetCore.HttpsPolicy": "2.1.1",
  540. "Microsoft.AspNetCore.Identity": "2.1.1",
  541. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "2.1.1",
  542. "Microsoft.AspNetCore.Identity.UI": "2.1.1",
  543. "Microsoft.AspNetCore.JsonPatch": "2.1.1",
  544. "Microsoft.AspNetCore.Localization": "2.1.1",
  545. "Microsoft.AspNetCore.Localization.Routing": "2.1.1",
  546. "Microsoft.AspNetCore.MiddlewareAnalysis": "2.1.1",
  547. "Microsoft.AspNetCore.Mvc": "2.1.1",
  548. "Microsoft.AspNetCore.Mvc.Abstractions": "2.1.1",
  549. "Microsoft.AspNetCore.Mvc.Analyzers": "2.1.1",
  550. "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.1.1",
  551. "Microsoft.AspNetCore.Mvc.Core": "2.1.1",
  552. "Microsoft.AspNetCore.Mvc.Cors": "2.1.1",
  553. "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.1.1",
  554. "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.1.1",
  555. "Microsoft.AspNetCore.Mvc.Formatters.Xml": "2.1.1",
  556. "Microsoft.AspNetCore.Mvc.Localization": "2.1.1",
  557. "Microsoft.AspNetCore.Mvc.Razor": "2.1.1",
  558. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.1.1",
  559. "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation": "2.1.1",
  560. "Microsoft.AspNetCore.Mvc.RazorPages": "2.1.1",
  561. "Microsoft.AspNetCore.Mvc.TagHelpers": "2.1.1",
  562. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.1.1",
  563. "Microsoft.AspNetCore.NodeServices": "2.1.1",
  564. "Microsoft.AspNetCore.Owin": "2.1.1",
  565. "Microsoft.AspNetCore.Razor": "2.1.1",
  566. "Microsoft.AspNetCore.Razor.Design": "2.1.2",
  567. "Microsoft.AspNetCore.Razor.Language": "2.1.1",
  568. "Microsoft.AspNetCore.Razor.Runtime": "2.1.1",
  569. "Microsoft.AspNetCore.ResponseCaching": "2.1.1",
  570. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.1.1",
  571. "Microsoft.AspNetCore.ResponseCompression": "2.1.1",
  572. "Microsoft.AspNetCore.Rewrite": "2.1.1",
  573. "Microsoft.AspNetCore.Routing": "2.1.1",
  574. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1",
  575. "Microsoft.AspNetCore.Server.HttpSys": "2.1.1",
  576. "Microsoft.AspNetCore.Server.IISIntegration": "2.1.1",
  577. "Microsoft.AspNetCore.Server.Kestrel": "2.1.1",
  578. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.1.1",
  579. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.1.1",
  580. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.1.1",
  581. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.1.1",
  582. "Microsoft.AspNetCore.Session": "2.1.1",
  583. "Microsoft.AspNetCore.SignalR": "1.0.1",
  584. "Microsoft.AspNetCore.SignalR.Common": "1.0.1",
  585. "Microsoft.AspNetCore.SignalR.Core": "1.0.1",
  586. "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.0.1",
  587. "Microsoft.AspNetCore.SpaServices": "2.1.1",
  588. "Microsoft.AspNetCore.SpaServices.Extensions": "2.1.1",
  589. "Microsoft.AspNetCore.StaticFiles": "2.2.0-preview3-35497",
  590. "Microsoft.AspNetCore.WebSockets": "2.1.1",
  591. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  592. "Microsoft.CodeAnalysis.Razor": "2.1.1",
  593. "Microsoft.EntityFrameworkCore": "2.1.1",
  594. "Microsoft.EntityFrameworkCore.Abstractions": "2.1.1",
  595. "Microsoft.EntityFrameworkCore.Analyzers": "2.1.1",
  596. "Microsoft.EntityFrameworkCore.Design": "2.1.1",
  597. "Microsoft.EntityFrameworkCore.InMemory": "2.1.1",
  598. "Microsoft.EntityFrameworkCore.Relational": "2.1.1",
  599. "Microsoft.EntityFrameworkCore.SqlServer": "2.1.1",
  600. "Microsoft.EntityFrameworkCore.Tools": "2.1.1",
  601. "Microsoft.Extensions.Caching.Abstractions": "2.1.1",
  602. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  603. "Microsoft.Extensions.Caching.SqlServer": "2.1.1",
  604. "Microsoft.Extensions.Configuration": "2.2.0-preview3-35497",
  605. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0-preview3-35497",
  606. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  607. "Microsoft.Extensions.Configuration.CommandLine": "2.1.1",
  608. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.1.1",
  609. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  610. "Microsoft.Extensions.Configuration.Ini": "2.1.1",
  611. "Microsoft.Extensions.Configuration.Json": "2.1.1",
  612. "Microsoft.Extensions.Configuration.KeyPerFile": "2.1.1",
  613. "Microsoft.Extensions.Configuration.UserSecrets": "2.1.1",
  614. "Microsoft.Extensions.Configuration.Xml": "2.1.1",
  615. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  616. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0-preview3-35497",
  617. "Microsoft.Extensions.DiagnosticAdapter": "2.1.0",
  618. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0-preview3-35497",
  619. "Microsoft.Extensions.FileProviders.Composite": "2.1.1",
  620. "Microsoft.Extensions.FileProviders.Embedded": "2.1.1",
  621. "Microsoft.Extensions.FileProviders.Physical": "2.1.1",
  622. "Microsoft.Extensions.FileSystemGlobbing": "2.1.1",
  623. "Microsoft.Extensions.Hosting": "2.1.1",
  624. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0-preview3-35497",
  625. "Microsoft.Extensions.Http": "2.1.1",
  626. "Microsoft.Extensions.Identity.Core": "2.1.1",
  627. "Microsoft.Extensions.Identity.Stores": "2.1.1",
  628. "Microsoft.Extensions.Localization": "2.1.1",
  629. "Microsoft.Extensions.Localization.Abstractions": "2.1.1",
  630. "Microsoft.Extensions.Logging": "2.1.1",
  631. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  632. "Microsoft.Extensions.Logging.Configuration": "2.1.1",
  633. "Microsoft.Extensions.Logging.Console": "2.1.1",
  634. "Microsoft.Extensions.Logging.Debug": "2.1.1",
  635. "Microsoft.Extensions.Logging.EventSource": "2.1.1",
  636. "Microsoft.Extensions.Logging.TraceSource": "2.1.1",
  637. "Microsoft.Extensions.ObjectPool": "2.1.1",
  638. "Microsoft.Extensions.Options": "2.2.0-preview3-35497",
  639. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.1.1",
  640. "Microsoft.Extensions.Primitives": "2.2.0-preview3-35497",
  641. "Microsoft.Extensions.WebEncoders": "2.2.0-preview3-35497",
  642. "Microsoft.Net.Http.Headers": "2.2.0-preview3-35497"
  643. },
  644. "compileOnly": true
  645. },
  646. "Microsoft.AspNetCore.Authentication/2.1.1": {
  647. "dependencies": {
  648. "Microsoft.AspNetCore.Authentication.Core": "2.1.1",
  649. "Microsoft.AspNetCore.DataProtection": "2.1.1",
  650. "Microsoft.AspNetCore.Http": "2.1.1",
  651. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  652. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  653. "Microsoft.Extensions.Options": "2.2.0-preview3-35497",
  654. "Microsoft.Extensions.WebEncoders": "2.2.0-preview3-35497"
  655. },
  656. "compile": {
  657. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll": {}
  658. },
  659. "compileOnly": true
  660. },
  661. "Microsoft.AspNetCore.Authentication.Abstractions/2.1.1": {
  662. "dependencies": {
  663. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0-preview3-35497",
  664. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  665. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  666. },
  667. "compile": {
  668. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
  669. },
  670. "compileOnly": true
  671. },
  672. "Microsoft.AspNetCore.Authentication.Cookies/2.1.1": {
  673. "dependencies": {
  674. "Microsoft.AspNetCore.Authentication": "2.1.1"
  675. },
  676. "compile": {
  677. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
  678. },
  679. "compileOnly": true
  680. },
  681. "Microsoft.AspNetCore.Authentication.Core/2.1.1": {
  682. "dependencies": {
  683. "Microsoft.AspNetCore.Authentication.Abstractions": "2.1.1",
  684. "Microsoft.AspNetCore.Http": "2.1.1",
  685. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497"
  686. },
  687. "compile": {
  688. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {}
  689. },
  690. "compileOnly": true
  691. },
  692. "Microsoft.AspNetCore.Authentication.Facebook/2.1.1": {
  693. "dependencies": {
  694. "Microsoft.AspNetCore.Authentication.OAuth": "2.1.1"
  695. },
  696. "compile": {
  697. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll": {}
  698. },
  699. "compileOnly": true
  700. },
  701. "Microsoft.AspNetCore.Authentication.Google/2.1.1": {
  702. "dependencies": {
  703. "Microsoft.AspNetCore.Authentication.OAuth": "2.1.1"
  704. },
  705. "compile": {
  706. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll": {}
  707. },
  708. "compileOnly": true
  709. },
  710. "Microsoft.AspNetCore.Authentication.JwtBearer/2.1.1": {
  711. "dependencies": {
  712. "Microsoft.AspNetCore.Authentication": "2.1.1",
  713. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.2.0"
  714. },
  715. "compile": {
  716. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {}
  717. },
  718. "compileOnly": true
  719. },
  720. "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.1.1": {
  721. "dependencies": {
  722. "Microsoft.AspNetCore.Authentication.OAuth": "2.1.1"
  723. },
  724. "compile": {
  725. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {}
  726. },
  727. "compileOnly": true
  728. },
  729. "Microsoft.AspNetCore.Authentication.OAuth/2.1.1": {
  730. "dependencies": {
  731. "Microsoft.AspNetCore.Authentication": "2.1.1",
  732. "Newtonsoft.Json": "11.0.2"
  733. },
  734. "compile": {
  735. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll": {}
  736. },
  737. "compileOnly": true
  738. },
  739. "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.1.1": {
  740. "dependencies": {
  741. "Microsoft.AspNetCore.Authentication.OAuth": "2.1.1",
  742. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.2.0"
  743. },
  744. "compile": {
  745. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {}
  746. },
  747. "compileOnly": true
  748. },
  749. "Microsoft.AspNetCore.Authentication.Twitter/2.1.1": {
  750. "dependencies": {
  751. "Microsoft.AspNetCore.Authentication.OAuth": "2.1.1"
  752. },
  753. "compile": {
  754. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll": {}
  755. },
  756. "compileOnly": true
  757. },
  758. "Microsoft.AspNetCore.Authentication.WsFederation/2.1.1": {
  759. "dependencies": {
  760. "Microsoft.AspNetCore.Authentication": "2.1.1",
  761. "Microsoft.IdentityModel.Protocols.WsFederation": "5.2.0",
  762. "System.IdentityModel.Tokens.Jwt": "5.2.0"
  763. },
  764. "compile": {
  765. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.WsFederation.dll": {}
  766. },
  767. "compileOnly": true
  768. },
  769. "Microsoft.AspNetCore.Authorization/2.1.1": {
  770. "dependencies": {
  771. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  772. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  773. },
  774. "compile": {
  775. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {}
  776. },
  777. "compileOnly": true
  778. },
  779. "Microsoft.AspNetCore.Authorization.Policy/2.1.1": {
  780. "dependencies": {
  781. "Microsoft.AspNetCore.Authentication.Abstractions": "2.1.1",
  782. "Microsoft.AspNetCore.Authorization": "2.1.1"
  783. },
  784. "compile": {
  785. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {}
  786. },
  787. "compileOnly": true
  788. },
  789. "Microsoft.AspNetCore.Connections.Abstractions/2.1.1": {
  790. "dependencies": {
  791. "Microsoft.AspNetCore.Http.Features": "2.2.0-preview3-35497",
  792. "System.IO.Pipelines": "4.5.0"
  793. },
  794. "compile": {
  795. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {}
  796. },
  797. "compileOnly": true
  798. },
  799. "Microsoft.AspNetCore.CookiePolicy/2.1.1": {
  800. "dependencies": {
  801. "Microsoft.AspNetCore.Http": "2.1.1",
  802. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  803. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  804. },
  805. "compile": {
  806. "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll": {}
  807. },
  808. "compileOnly": true
  809. },
  810. "Microsoft.AspNetCore.Cors/2.1.1": {
  811. "dependencies": {
  812. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  813. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0-preview3-35497",
  814. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0-preview3-35497",
  815. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  816. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  817. },
  818. "compile": {
  819. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {}
  820. },
  821. "compileOnly": true
  822. },
  823. "Microsoft.AspNetCore.Cryptography.Internal/2.1.1": {
  824. "compile": {
  825. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  826. },
  827. "compileOnly": true
  828. },
  829. "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.1.1": {
  830. "dependencies": {
  831. "Microsoft.AspNetCore.Cryptography.Internal": "2.1.1"
  832. },
  833. "compile": {
  834. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  835. },
  836. "compileOnly": true
  837. },
  838. "Microsoft.AspNetCore.DataProtection/2.1.1": {
  839. "dependencies": {
  840. "Microsoft.AspNetCore.Cryptography.Internal": "2.1.1",
  841. "Microsoft.AspNetCore.DataProtection.Abstractions": "2.1.1",
  842. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  843. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0-preview3-35497",
  844. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  845. "Microsoft.Extensions.Options": "2.2.0-preview3-35497",
  846. "Microsoft.Win32.Registry": "4.5.0",
  847. "System.Security.Cryptography.Xml": "4.5.0",
  848. "System.Security.Principal.Windows": "4.5.0"
  849. },
  850. "compile": {
  851. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {}
  852. },
  853. "compileOnly": true
  854. },
  855. "Microsoft.AspNetCore.DataProtection.Abstractions/2.1.1": {
  856. "compile": {
  857. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  858. },
  859. "compileOnly": true
  860. },
  861. "Microsoft.AspNetCore.DataProtection.Extensions/2.1.1": {
  862. "dependencies": {
  863. "Microsoft.AspNetCore.DataProtection": "2.1.1",
  864. "Microsoft.Extensions.DependencyInjection": "2.1.1"
  865. },
  866. "compile": {
  867. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll": {}
  868. },
  869. "compileOnly": true
  870. },
  871. "Microsoft.AspNetCore.Diagnostics/2.1.1": {
  872. "dependencies": {
  873. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.1.1",
  874. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  875. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  876. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  877. "Microsoft.Extensions.FileProviders.Physical": "2.1.1",
  878. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  879. "Microsoft.Extensions.Options": "2.2.0-preview3-35497",
  880. "System.Diagnostics.DiagnosticSource": "4.5.0",
  881. "System.Reflection.Metadata": "1.6.0"
  882. },
  883. "compile": {
  884. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {}
  885. },
  886. "compileOnly": true
  887. },
  888. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.1.1": {
  889. "compile": {
  890. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  891. },
  892. "compileOnly": true
  893. },
  894. "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.1.1": {
  895. "dependencies": {
  896. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0-preview3-35497",
  897. "Microsoft.EntityFrameworkCore.Relational": "2.1.1"
  898. },
  899. "compile": {
  900. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {}
  901. },
  902. "compileOnly": true
  903. },
  904. "Microsoft.AspNetCore.HostFiltering/2.1.1": {
  905. "dependencies": {
  906. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  907. "Microsoft.AspNetCore.Http": "2.1.1",
  908. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  909. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  910. },
  911. "compile": {
  912. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll": {}
  913. },
  914. "compileOnly": true
  915. },
  916. "Microsoft.AspNetCore.Hosting/2.1.1": {
  917. "dependencies": {
  918. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  919. "Microsoft.AspNetCore.Http": "2.1.1",
  920. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  921. "Microsoft.Extensions.Configuration": "2.2.0-preview3-35497",
  922. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.1.1",
  923. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  924. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  925. "Microsoft.Extensions.FileProviders.Physical": "2.1.1",
  926. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0-preview3-35497",
  927. "Microsoft.Extensions.Logging": "2.1.1",
  928. "Microsoft.Extensions.Options": "2.2.0-preview3-35497",
  929. "System.Diagnostics.DiagnosticSource": "4.5.0",
  930. "System.Reflection.Metadata": "1.6.0"
  931. },
  932. "compile": {
  933. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {}
  934. },
  935. "compileOnly": true
  936. },
  937. "Microsoft.AspNetCore.Html.Abstractions/2.1.1": {
  938. "dependencies": {
  939. "System.Text.Encodings.Web": "4.5.0"
  940. },
  941. "compile": {
  942. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  943. },
  944. "compileOnly": true
  945. },
  946. "Microsoft.AspNetCore.Http/2.1.1": {
  947. "dependencies": {
  948. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0-preview3-35497",
  949. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  950. "Microsoft.Extensions.ObjectPool": "2.1.1",
  951. "Microsoft.Extensions.Options": "2.2.0-preview3-35497",
  952. "Microsoft.Net.Http.Headers": "2.2.0-preview3-35497"
  953. },
  954. "compile": {
  955. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {}
  956. },
  957. "compileOnly": true
  958. },
  959. "Microsoft.AspNetCore.Http.Connections/1.0.1": {
  960. "dependencies": {
  961. "Microsoft.AspNetCore.Authorization.Policy": "2.1.1",
  962. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  963. "Microsoft.AspNetCore.Http": "2.1.1",
  964. "Microsoft.AspNetCore.Http.Connections.Common": "1.0.1",
  965. "Microsoft.AspNetCore.Routing": "2.1.1",
  966. "Microsoft.AspNetCore.WebSockets": "2.1.1",
  967. "Newtonsoft.Json": "11.0.2"
  968. },
  969. "compile": {
  970. "lib/netcoreapp2.1/Microsoft.AspNetCore.Http.Connections.dll": {}
  971. },
  972. "compileOnly": true
  973. },
  974. "Microsoft.AspNetCore.Http.Connections.Common/1.0.1": {
  975. "dependencies": {
  976. "Microsoft.AspNetCore.Connections.Abstractions": "2.1.1",
  977. "Newtonsoft.Json": "11.0.2",
  978. "System.Buffers": "4.5.0"
  979. },
  980. "compile": {
  981. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": {}
  982. },
  983. "compileOnly": true
  984. },
  985. "Microsoft.AspNetCore.HttpOverrides/2.1.1": {
  986. "dependencies": {
  987. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  988. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  989. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  990. },
  991. "compile": {
  992. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {}
  993. },
  994. "compileOnly": true
  995. },
  996. "Microsoft.AspNetCore.HttpsPolicy/2.1.1": {
  997. "dependencies": {
  998. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  999. "Microsoft.AspNetCore.Http": "2.1.1",
  1000. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  1001. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  1002. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  1003. },
  1004. "compile": {
  1005. "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll": {}
  1006. },
  1007. "compileOnly": true
  1008. },
  1009. "Microsoft.AspNetCore.Identity/2.1.1": {
  1010. "dependencies": {
  1011. "Microsoft.AspNetCore.Authentication.Cookies": "2.1.1",
  1012. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.1.1",
  1013. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  1014. "Microsoft.Extensions.Identity.Core": "2.1.1"
  1015. },
  1016. "compile": {
  1017. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll": {}
  1018. },
  1019. "compileOnly": true
  1020. },
  1021. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.1.1": {
  1022. "dependencies": {
  1023. "Microsoft.AspNetCore.Identity": "2.1.1",
  1024. "Microsoft.EntityFrameworkCore.Relational": "2.1.1",
  1025. "Microsoft.Extensions.Identity.Stores": "2.1.1"
  1026. },
  1027. "compile": {
  1028. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  1029. },
  1030. "compileOnly": true
  1031. },
  1032. "Microsoft.AspNetCore.Identity.UI/2.1.1": {
  1033. "dependencies": {
  1034. "Microsoft.AspNetCore.Identity": "2.1.1",
  1035. "Microsoft.AspNetCore.Mvc": "2.1.1",
  1036. "Microsoft.AspNetCore.StaticFiles": "2.2.0-preview3-35497",
  1037. "Microsoft.Extensions.FileProviders.Embedded": "2.1.1",
  1038. "Microsoft.Extensions.Identity.Stores": "2.1.1"
  1039. },
  1040. "compile": {
  1041. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.dll": {},
  1042. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.dll": {}
  1043. },
  1044. "compileOnly": true
  1045. },
  1046. "Microsoft.AspNetCore.JsonPatch/2.1.1": {
  1047. "dependencies": {
  1048. "Microsoft.CSharp": "4.5.0",
  1049. "Newtonsoft.Json": "11.0.2"
  1050. },
  1051. "compile": {
  1052. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {}
  1053. },
  1054. "compileOnly": true
  1055. },
  1056. "Microsoft.AspNetCore.Localization/2.1.1": {
  1057. "dependencies": {
  1058. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  1059. "Microsoft.Extensions.Localization.Abstractions": "2.1.1",
  1060. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  1061. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  1062. },
  1063. "compile": {
  1064. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {}
  1065. },
  1066. "compileOnly": true
  1067. },
  1068. "Microsoft.AspNetCore.Localization.Routing/2.1.1": {
  1069. "dependencies": {
  1070. "Microsoft.AspNetCore.Localization": "2.1.1",
  1071. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1"
  1072. },
  1073. "compile": {
  1074. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll": {}
  1075. },
  1076. "compileOnly": true
  1077. },
  1078. "Microsoft.AspNetCore.MiddlewareAnalysis/2.1.1": {
  1079. "dependencies": {
  1080. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  1081. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0-preview3-35497",
  1082. "System.Diagnostics.DiagnosticSource": "4.5.0"
  1083. },
  1084. "compile": {
  1085. "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll": {}
  1086. },
  1087. "compileOnly": true
  1088. },
  1089. "Microsoft.AspNetCore.Mvc/2.1.1": {
  1090. "dependencies": {
  1091. "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.1.1",
  1092. "Microsoft.AspNetCore.Mvc.Cors": "2.1.1",
  1093. "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.1.1",
  1094. "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.1.1",
  1095. "Microsoft.AspNetCore.Mvc.Localization": "2.1.1",
  1096. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.1.1",
  1097. "Microsoft.AspNetCore.Mvc.RazorPages": "2.1.1",
  1098. "Microsoft.AspNetCore.Mvc.TagHelpers": "2.1.1",
  1099. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.1.1",
  1100. "Microsoft.AspNetCore.Razor.Design": "2.1.2",
  1101. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  1102. "Microsoft.Extensions.DependencyInjection": "2.1.1"
  1103. },
  1104. "compile": {
  1105. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {}
  1106. },
  1107. "compileOnly": true
  1108. },
  1109. "Microsoft.AspNetCore.Mvc.Abstractions/2.1.1": {
  1110. "dependencies": {
  1111. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1",
  1112. "Microsoft.Net.Http.Headers": "2.2.0-preview3-35497"
  1113. },
  1114. "compile": {
  1115. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  1116. },
  1117. "compileOnly": true
  1118. },
  1119. "Microsoft.AspNetCore.Mvc.Analyzers/2.1.1": {
  1120. "compileOnly": true
  1121. },
  1122. "Microsoft.AspNetCore.Mvc.ApiExplorer/2.1.1": {
  1123. "dependencies": {
  1124. "Microsoft.AspNetCore.Mvc.Core": "2.1.1"
  1125. },
  1126. "compile": {
  1127. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
  1128. },
  1129. "compileOnly": true
  1130. },
  1131. "Microsoft.AspNetCore.Mvc.Core/2.1.1": {
  1132. "dependencies": {
  1133. "Microsoft.AspNetCore.Authentication.Core": "2.1.1",
  1134. "Microsoft.AspNetCore.Authorization.Policy": "2.1.1",
  1135. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  1136. "Microsoft.AspNetCore.Http": "2.1.1",
  1137. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  1138. "Microsoft.AspNetCore.Mvc.Abstractions": "2.1.1",
  1139. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.1.1",
  1140. "Microsoft.AspNetCore.Routing": "2.1.1",
  1141. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  1142. "Microsoft.Extensions.DependencyModel": "2.1.0",
  1143. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0-preview3-35497",
  1144. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  1145. "System.Diagnostics.DiagnosticSource": "4.5.0",
  1146. "System.Threading.Tasks.Extensions": "4.5.1"
  1147. },
  1148. "compile": {
  1149. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {}
  1150. },
  1151. "compileOnly": true
  1152. },
  1153. "Microsoft.AspNetCore.Mvc.Cors/2.1.1": {
  1154. "dependencies": {
  1155. "Microsoft.AspNetCore.Cors": "2.1.1",
  1156. "Microsoft.AspNetCore.Mvc.Core": "2.1.1"
  1157. },
  1158. "compile": {
  1159. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {}
  1160. },
  1161. "compileOnly": true
  1162. },
  1163. "Microsoft.AspNetCore.Mvc.DataAnnotations/2.1.1": {
  1164. "dependencies": {
  1165. "Microsoft.AspNetCore.Mvc.Core": "2.1.1",
  1166. "Microsoft.Extensions.Localization": "2.1.1",
  1167. "System.ComponentModel.Annotations": "4.5.0"
  1168. },
  1169. "compile": {
  1170. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  1171. },
  1172. "compileOnly": true
  1173. },
  1174. "Microsoft.AspNetCore.Mvc.Formatters.Json/2.1.1": {
  1175. "dependencies": {
  1176. "Microsoft.AspNetCore.JsonPatch": "2.1.1",
  1177. "Microsoft.AspNetCore.Mvc.Core": "2.1.1"
  1178. },
  1179. "compile": {
  1180. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  1181. },
  1182. "compileOnly": true
  1183. },
  1184. "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.1.1": {
  1185. "dependencies": {
  1186. "Microsoft.AspNetCore.Mvc.Core": "2.1.1"
  1187. },
  1188. "compile": {
  1189. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {}
  1190. },
  1191. "compileOnly": true
  1192. },
  1193. "Microsoft.AspNetCore.Mvc.Localization/2.1.1": {
  1194. "dependencies": {
  1195. "Microsoft.AspNetCore.Localization": "2.1.1",
  1196. "Microsoft.AspNetCore.Mvc.Razor": "2.1.1",
  1197. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  1198. "Microsoft.Extensions.Localization": "2.1.1"
  1199. },
  1200. "compile": {
  1201. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {}
  1202. },
  1203. "compileOnly": true
  1204. },
  1205. "Microsoft.AspNetCore.Mvc.Razor/2.1.1": {
  1206. "dependencies": {
  1207. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.1.1",
  1208. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.1.1",
  1209. "Microsoft.AspNetCore.Razor.Runtime": "2.1.1",
  1210. "Microsoft.CodeAnalysis.CSharp": "2.8.0",
  1211. "Microsoft.CodeAnalysis.Razor": "2.1.1",
  1212. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  1213. "Microsoft.Extensions.FileProviders.Composite": "2.1.1"
  1214. },
  1215. "compile": {
  1216. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {}
  1217. },
  1218. "compileOnly": true
  1219. },
  1220. "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.1.1": {
  1221. "dependencies": {
  1222. "Microsoft.AspNetCore.Razor.Language": "2.1.1",
  1223. "Microsoft.CodeAnalysis.Razor": "2.1.1"
  1224. },
  1225. "compile": {
  1226. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {}
  1227. },
  1228. "compileOnly": true
  1229. },
  1230. "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.1.1": {
  1231. "dependencies": {
  1232. "Microsoft.AspNetCore.Hosting": "2.1.1",
  1233. "Microsoft.AspNetCore.Mvc.RazorPages": "2.1.1"
  1234. },
  1235. "compileOnly": true
  1236. },
  1237. "Microsoft.AspNetCore.Mvc.RazorPages/2.1.1": {
  1238. "dependencies": {
  1239. "Microsoft.AspNetCore.Mvc.Razor": "2.1.1"
  1240. },
  1241. "compile": {
  1242. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {}
  1243. },
  1244. "compileOnly": true
  1245. },
  1246. "Microsoft.AspNetCore.Mvc.TagHelpers/2.1.1": {
  1247. "dependencies": {
  1248. "Microsoft.AspNetCore.Mvc.Razor": "2.1.1",
  1249. "Microsoft.AspNetCore.Razor.Runtime": "2.1.1",
  1250. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1",
  1251. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  1252. "Microsoft.Extensions.FileSystemGlobbing": "2.1.1",
  1253. "Microsoft.Extensions.Primitives": "2.2.0-preview3-35497"
  1254. },
  1255. "compile": {
  1256. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
  1257. },
  1258. "compileOnly": true
  1259. },
  1260. "Microsoft.AspNetCore.Mvc.ViewFeatures/2.1.1": {
  1261. "dependencies": {
  1262. "Microsoft.AspNetCore.Antiforgery": "2.1.1",
  1263. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.1.1",
  1264. "Microsoft.AspNetCore.Html.Abstractions": "2.1.1",
  1265. "Microsoft.AspNetCore.Mvc.Core": "2.1.1",
  1266. "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.1.1",
  1267. "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.1.1",
  1268. "Microsoft.Extensions.WebEncoders": "2.2.0-preview3-35497",
  1269. "Newtonsoft.Json.Bson": "1.0.1"
  1270. },
  1271. "compile": {
  1272. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  1273. },
  1274. "compileOnly": true
  1275. },
  1276. "Microsoft.AspNetCore.NodeServices/2.1.1": {
  1277. "dependencies": {
  1278. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  1279. "Microsoft.Extensions.Logging.Console": "2.1.1",
  1280. "Newtonsoft.Json": "11.0.2"
  1281. },
  1282. "compile": {
  1283. "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll": {}
  1284. },
  1285. "compileOnly": true
  1286. },
  1287. "Microsoft.AspNetCore.Owin/2.1.1": {
  1288. "dependencies": {
  1289. "Microsoft.AspNetCore.Http": "2.1.1"
  1290. },
  1291. "compile": {
  1292. "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll": {}
  1293. },
  1294. "compileOnly": true
  1295. },
  1296. "Microsoft.AspNetCore.Razor/2.1.1": {
  1297. "dependencies": {
  1298. "Microsoft.AspNetCore.Html.Abstractions": "2.1.1"
  1299. },
  1300. "compile": {
  1301. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {}
  1302. },
  1303. "compileOnly": true
  1304. },
  1305. "Microsoft.AspNetCore.Razor.Language/2.1.1": {
  1306. "compile": {
  1307. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  1308. },
  1309. "compileOnly": true
  1310. },
  1311. "Microsoft.AspNetCore.Razor.Runtime/2.1.1": {
  1312. "dependencies": {
  1313. "Microsoft.AspNetCore.Html.Abstractions": "2.1.1",
  1314. "Microsoft.AspNetCore.Razor": "2.1.1"
  1315. },
  1316. "compile": {
  1317. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {}
  1318. },
  1319. "compileOnly": true
  1320. },
  1321. "Microsoft.AspNetCore.ResponseCaching/2.1.1": {
  1322. "dependencies": {
  1323. "Microsoft.AspNetCore.Http": "2.1.1",
  1324. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  1325. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.1.1",
  1326. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  1327. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497"
  1328. },
  1329. "compile": {
  1330. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll": {}
  1331. },
  1332. "compileOnly": true
  1333. },
  1334. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.1.1": {
  1335. "dependencies": {
  1336. "Microsoft.Extensions.Primitives": "2.2.0-preview3-35497"
  1337. },
  1338. "compile": {
  1339. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
  1340. },
  1341. "compileOnly": true
  1342. },
  1343. "Microsoft.AspNetCore.ResponseCompression/2.1.1": {
  1344. "dependencies": {
  1345. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  1346. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  1347. },
  1348. "compile": {
  1349. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.dll": {}
  1350. },
  1351. "compileOnly": true
  1352. },
  1353. "Microsoft.AspNetCore.Rewrite/2.1.1": {
  1354. "dependencies": {
  1355. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  1356. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  1357. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0-preview3-35497",
  1358. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0-preview3-35497",
  1359. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  1360. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  1361. },
  1362. "compile": {
  1363. "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll": {}
  1364. },
  1365. "compileOnly": true
  1366. },
  1367. "Microsoft.AspNetCore.Routing/2.1.1": {
  1368. "dependencies": {
  1369. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  1370. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1",
  1371. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  1372. "Microsoft.Extensions.ObjectPool": "2.1.1",
  1373. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  1374. },
  1375. "compile": {
  1376. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll": {}
  1377. },
  1378. "compileOnly": true
  1379. },
  1380. "Microsoft.AspNetCore.Routing.Abstractions/2.1.1": {
  1381. "dependencies": {
  1382. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0-preview3-35497"
  1383. },
  1384. "compile": {
  1385. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  1386. },
  1387. "compileOnly": true
  1388. },
  1389. "Microsoft.AspNetCore.Server.HttpSys/2.1.1": {
  1390. "dependencies": {
  1391. "Microsoft.AspNetCore.Authentication.Core": "2.1.1",
  1392. "Microsoft.AspNetCore.Hosting": "2.1.1",
  1393. "Microsoft.Net.Http.Headers": "2.2.0-preview3-35497",
  1394. "Microsoft.Win32.Registry": "4.5.0",
  1395. "System.Security.Principal.Windows": "4.5.0"
  1396. },
  1397. "compile": {
  1398. "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll": {}
  1399. },
  1400. "compileOnly": true
  1401. },
  1402. "Microsoft.AspNetCore.Server.IISIntegration/2.1.1": {
  1403. "dependencies": {
  1404. "Microsoft.AspNetCore.Authentication.Core": "2.1.1",
  1405. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  1406. "Microsoft.AspNetCore.Http": "2.1.1",
  1407. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  1408. "Microsoft.AspNetCore.HttpOverrides": "2.1.1",
  1409. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  1410. "Microsoft.Extensions.Options": "2.2.0-preview3-35497",
  1411. "System.Buffers": "4.5.0",
  1412. "System.IO.Pipelines": "4.5.0",
  1413. "System.Memory": "4.5.1",
  1414. "System.Numerics.Vectors": "4.5.0",
  1415. "System.Runtime.CompilerServices.Unsafe": "4.5.1",
  1416. "System.Security.Principal.Windows": "4.5.0"
  1417. },
  1418. "compile": {
  1419. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
  1420. },
  1421. "compileOnly": true
  1422. },
  1423. "Microsoft.AspNetCore.Server.Kestrel/2.1.1": {
  1424. "dependencies": {
  1425. "Microsoft.AspNetCore.Hosting": "2.1.1",
  1426. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.1.1",
  1427. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.1.1",
  1428. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.1.1"
  1429. },
  1430. "compile": {
  1431. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {}
  1432. },
  1433. "compileOnly": true
  1434. },
  1435. "Microsoft.AspNetCore.Server.Kestrel.Core/2.1.1": {
  1436. "dependencies": {
  1437. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  1438. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.1.1",
  1439. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  1440. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  1441. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  1442. "Microsoft.Extensions.Options": "2.2.0-preview3-35497",
  1443. "Microsoft.Net.Http.Headers": "2.2.0-preview3-35497",
  1444. "System.Memory": "4.5.1",
  1445. "System.Numerics.Vectors": "4.5.0",
  1446. "System.Runtime.CompilerServices.Unsafe": "4.5.1",
  1447. "System.Security.Cryptography.Cng": "4.5.0",
  1448. "System.Threading.Tasks.Extensions": "4.5.1"
  1449. },
  1450. "compile": {
  1451. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
  1452. },
  1453. "compileOnly": true
  1454. },
  1455. "Microsoft.AspNetCore.Server.Kestrel.Https/2.1.1": {
  1456. "dependencies": {
  1457. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0-preview3-35497",
  1458. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.1.1"
  1459. },
  1460. "compile": {
  1461. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {}
  1462. },
  1463. "compileOnly": true
  1464. },
  1465. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.1.1": {
  1466. "dependencies": {
  1467. "Microsoft.AspNetCore.Connections.Abstractions": "2.1.1"
  1468. },
  1469. "compile": {
  1470. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {}
  1471. },
  1472. "compileOnly": true
  1473. },
  1474. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.1.1": {
  1475. "dependencies": {
  1476. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0-preview3-35497",
  1477. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.1.1",
  1478. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  1479. },
  1480. "compile": {
  1481. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
  1482. },
  1483. "compileOnly": true
  1484. },
  1485. "Microsoft.AspNetCore.Session/2.1.1": {
  1486. "dependencies": {
  1487. "Microsoft.AspNetCore.DataProtection": "2.1.1",
  1488. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0-preview3-35497",
  1489. "Microsoft.Extensions.Caching.Abstractions": "2.1.1",
  1490. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  1491. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  1492. },
  1493. "compile": {
  1494. "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll": {}
  1495. },
  1496. "compileOnly": true
  1497. },
  1498. "Microsoft.AspNetCore.SignalR/1.0.1": {
  1499. "dependencies": {
  1500. "Microsoft.AspNetCore.Http.Connections": "1.0.1",
  1501. "Microsoft.AspNetCore.SignalR.Core": "1.0.1"
  1502. },
  1503. "compile": {
  1504. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {}
  1505. },
  1506. "compileOnly": true
  1507. },
  1508. "Microsoft.AspNetCore.SignalR.Common/1.0.1": {
  1509. "dependencies": {
  1510. "Microsoft.AspNetCore.Connections.Abstractions": "2.1.1",
  1511. "Microsoft.Extensions.Options": "2.2.0-preview3-35497",
  1512. "Newtonsoft.Json": "11.0.2",
  1513. "System.Buffers": "4.5.0"
  1514. },
  1515. "compile": {
  1516. "lib/netcoreapp2.1/Microsoft.AspNetCore.SignalR.Common.dll": {}
  1517. },
  1518. "compileOnly": true
  1519. },
  1520. "Microsoft.AspNetCore.SignalR.Core/1.0.1": {
  1521. "dependencies": {
  1522. "Microsoft.AspNetCore.Authorization": "2.1.1",
  1523. "Microsoft.AspNetCore.SignalR.Common": "1.0.1",
  1524. "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.0.1",
  1525. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0-preview3-35497",
  1526. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  1527. "System.Reflection.Emit": "4.3.0",
  1528. "System.Threading.Channels": "4.5.0"
  1529. },
  1530. "compile": {
  1531. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {}
  1532. },
  1533. "compileOnly": true
  1534. },
  1535. "Microsoft.AspNetCore.SignalR.Protocols.Json/1.0.1": {
  1536. "dependencies": {
  1537. "Microsoft.AspNetCore.SignalR.Common": "1.0.1",
  1538. "Newtonsoft.Json": "11.0.2"
  1539. },
  1540. "compile": {
  1541. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {}
  1542. },
  1543. "compileOnly": true
  1544. },
  1545. "Microsoft.AspNetCore.SpaServices/2.1.1": {
  1546. "dependencies": {
  1547. "Microsoft.AspNetCore.Mvc.TagHelpers": "2.1.1",
  1548. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.1.1",
  1549. "Microsoft.AspNetCore.NodeServices": "2.1.1"
  1550. },
  1551. "compile": {
  1552. "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll": {}
  1553. },
  1554. "compileOnly": true
  1555. },
  1556. "Microsoft.AspNetCore.SpaServices.Extensions/2.1.1": {
  1557. "dependencies": {
  1558. "Microsoft.AspNetCore.SpaServices": "2.1.1",
  1559. "Microsoft.AspNetCore.StaticFiles": "2.2.0-preview3-35497",
  1560. "Microsoft.AspNetCore.WebSockets": "2.1.1",
  1561. "Microsoft.Extensions.FileProviders.Physical": "2.1.1"
  1562. },
  1563. "compile": {
  1564. "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.Extensions.dll": {}
  1565. },
  1566. "compileOnly": true
  1567. },
  1568. "Microsoft.AspNetCore.WebSockets/2.1.1": {
  1569. "dependencies": {
  1570. "Microsoft.AspNetCore.Http.Extensions": "2.2.0-preview3-35497",
  1571. "Microsoft.Extensions.Options": "2.2.0-preview3-35497",
  1572. "System.Net.WebSockets.WebSocketProtocol": "4.5.1"
  1573. },
  1574. "compile": {
  1575. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {}
  1576. },
  1577. "compileOnly": true
  1578. },
  1579. "Microsoft.AspNetCore.WebUtilities/2.1.1": {
  1580. "dependencies": {
  1581. "Microsoft.Net.Http.Headers": "2.2.0-preview3-35497",
  1582. "System.Text.Encodings.Web": "4.5.0"
  1583. },
  1584. "compile": {
  1585. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {}
  1586. },
  1587. "compileOnly": true
  1588. },
  1589. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  1590. "compileOnly": true
  1591. },
  1592. "Microsoft.CodeAnalysis.Common/2.8.0": {
  1593. "dependencies": {
  1594. "Microsoft.CodeAnalysis.Analyzers": "1.1.0",
  1595. "System.AppContext": "4.3.0",
  1596. "System.Collections": "4.3.0",
  1597. "System.Collections.Concurrent": "4.3.0",
  1598. "System.Collections.Immutable": "1.5.0",
  1599. "System.Console": "4.3.0",
  1600. "System.Diagnostics.Debug": "4.3.0",
  1601. "System.Diagnostics.FileVersionInfo": "4.3.0",
  1602. "System.Diagnostics.StackTrace": "4.3.0",
  1603. "System.Diagnostics.Tools": "4.3.0",
  1604. "System.Dynamic.Runtime": "4.3.0",
  1605. "System.Globalization": "4.3.0",
  1606. "System.IO.Compression": "4.3.0",
  1607. "System.IO.FileSystem": "4.3.0",
  1608. "System.IO.FileSystem.Primitives": "4.3.0",
  1609. "System.Linq": "4.3.0",
  1610. "System.Linq.Expressions": "4.3.0",
  1611. "System.Reflection": "4.3.0",
  1612. "System.Reflection.Metadata": "1.6.0",
  1613. "System.Resources.ResourceManager": "4.3.0",
  1614. "System.Runtime": "4.3.0",
  1615. "System.Runtime.Extensions": "4.3.0",
  1616. "System.Runtime.InteropServices": "4.3.0",
  1617. "System.Runtime.Numerics": "4.3.0",
  1618. "System.Security.Cryptography.Algorithms": "4.3.0",
  1619. "System.Security.Cryptography.Encoding": "4.3.0",
  1620. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1621. "System.Text.Encoding": "4.3.0",
  1622. "System.Text.Encoding.CodePages": "4.5.0",
  1623. "System.Text.Encoding.Extensions": "4.3.0",
  1624. "System.Threading": "4.3.0",
  1625. "System.Threading.Tasks": "4.3.0",
  1626. "System.Threading.Tasks.Parallel": "4.3.0",
  1627. "System.Threading.Thread": "4.3.0",
  1628. "System.ValueTuple": "4.3.0",
  1629. "System.Xml.ReaderWriter": "4.3.0",
  1630. "System.Xml.XDocument": "4.3.0",
  1631. "System.Xml.XPath.XDocument": "4.3.0",
  1632. "System.Xml.XmlDocument": "4.3.0"
  1633. },
  1634. "compile": {
  1635. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {}
  1636. },
  1637. "compileOnly": true
  1638. },
  1639. "Microsoft.CodeAnalysis.CSharp/2.8.0": {
  1640. "dependencies": {
  1641. "Microsoft.CodeAnalysis.Common": "2.8.0"
  1642. },
  1643. "compile": {
  1644. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {}
  1645. },
  1646. "compileOnly": true
  1647. },
  1648. "Microsoft.CodeAnalysis.Razor/2.1.1": {
  1649. "dependencies": {
  1650. "Microsoft.AspNetCore.Razor.Language": "2.1.1",
  1651. "Microsoft.CodeAnalysis.CSharp": "2.8.0",
  1652. "Microsoft.CodeAnalysis.Common": "2.8.0"
  1653. },
  1654. "compile": {
  1655. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  1656. },
  1657. "compileOnly": true
  1658. },
  1659. "Microsoft.CSharp/4.5.0": {
  1660. "compileOnly": true
  1661. },
  1662. "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
  1663. "dependencies": {
  1664. "System.AppContext": "4.3.0",
  1665. "System.Collections": "4.3.0",
  1666. "System.IO": "4.3.0",
  1667. "System.IO.FileSystem": "4.3.0",
  1668. "System.Reflection.TypeExtensions": "4.3.0",
  1669. "System.Runtime.Extensions": "4.3.0",
  1670. "System.Runtime.InteropServices": "4.3.0",
  1671. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
  1672. },
  1673. "compile": {
  1674. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  1675. },
  1676. "compileOnly": true
  1677. },
  1678. "Microsoft.EntityFrameworkCore/2.1.1": {
  1679. "dependencies": {
  1680. "Microsoft.EntityFrameworkCore.Abstractions": "2.1.1",
  1681. "Microsoft.EntityFrameworkCore.Analyzers": "2.1.1",
  1682. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  1683. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  1684. "Microsoft.Extensions.Logging": "2.1.1",
  1685. "Remotion.Linq": "2.2.0",
  1686. "System.Collections.Immutable": "1.5.0",
  1687. "System.ComponentModel.Annotations": "4.5.0",
  1688. "System.Diagnostics.DiagnosticSource": "4.5.0",
  1689. "System.Interactive.Async": "3.1.1"
  1690. },
  1691. "compile": {
  1692. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  1693. },
  1694. "compileOnly": true
  1695. },
  1696. "Microsoft.EntityFrameworkCore.Abstractions/2.1.1": {
  1697. "compile": {
  1698. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  1699. },
  1700. "compileOnly": true
  1701. },
  1702. "Microsoft.EntityFrameworkCore.Analyzers/2.1.1": {
  1703. "compileOnly": true
  1704. },
  1705. "Microsoft.EntityFrameworkCore.Design/2.1.1": {
  1706. "dependencies": {
  1707. "Microsoft.CSharp": "4.5.0",
  1708. "Microsoft.EntityFrameworkCore.Relational": "2.1.1"
  1709. },
  1710. "compile": {
  1711. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {}
  1712. },
  1713. "compileOnly": true
  1714. },
  1715. "Microsoft.EntityFrameworkCore.InMemory/2.1.1": {
  1716. "dependencies": {
  1717. "Microsoft.EntityFrameworkCore": "2.1.1"
  1718. },
  1719. "compile": {
  1720. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll": {}
  1721. },
  1722. "compileOnly": true
  1723. },
  1724. "Microsoft.EntityFrameworkCore.Relational/2.1.1": {
  1725. "dependencies": {
  1726. "Microsoft.EntityFrameworkCore": "2.1.1"
  1727. },
  1728. "compile": {
  1729. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  1730. },
  1731. "compileOnly": true
  1732. },
  1733. "Microsoft.EntityFrameworkCore.SqlServer/2.1.1": {
  1734. "dependencies": {
  1735. "Microsoft.EntityFrameworkCore.Relational": "2.1.1",
  1736. "System.Data.SqlClient": "4.5.1"
  1737. },
  1738. "compile": {
  1739. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
  1740. },
  1741. "compileOnly": true
  1742. },
  1743. "Microsoft.EntityFrameworkCore.Tools/2.1.1": {
  1744. "dependencies": {
  1745. "Microsoft.EntityFrameworkCore.Design": "2.1.1"
  1746. },
  1747. "compileOnly": true
  1748. },
  1749. "Microsoft.Extensions.Caching.Abstractions/2.1.1": {
  1750. "dependencies": {
  1751. "Microsoft.Extensions.Primitives": "2.2.0-preview3-35497"
  1752. },
  1753. "compile": {
  1754. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  1755. },
  1756. "compileOnly": true
  1757. },
  1758. "Microsoft.Extensions.Caching.Memory/2.1.1": {
  1759. "dependencies": {
  1760. "Microsoft.Extensions.Caching.Abstractions": "2.1.1",
  1761. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0-preview3-35497",
  1762. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  1763. },
  1764. "compile": {
  1765. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  1766. },
  1767. "compileOnly": true
  1768. },
  1769. "Microsoft.Extensions.Caching.SqlServer/2.1.1": {
  1770. "dependencies": {
  1771. "Microsoft.Extensions.Caching.Abstractions": "2.1.1",
  1772. "Microsoft.Extensions.Options": "2.2.0-preview3-35497",
  1773. "System.Data.SqlClient": "4.5.1"
  1774. },
  1775. "compile": {
  1776. "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll": {}
  1777. },
  1778. "compileOnly": true
  1779. },
  1780. "Microsoft.Extensions.Configuration.Binder/2.1.1": {
  1781. "dependencies": {
  1782. "Microsoft.Extensions.Configuration": "2.2.0-preview3-35497"
  1783. },
  1784. "compile": {
  1785. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  1786. },
  1787. "compileOnly": true
  1788. },
  1789. "Microsoft.Extensions.Configuration.CommandLine/2.1.1": {
  1790. "dependencies": {
  1791. "Microsoft.Extensions.Configuration": "2.2.0-preview3-35497"
  1792. },
  1793. "compile": {
  1794. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
  1795. },
  1796. "compileOnly": true
  1797. },
  1798. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.1.1": {
  1799. "dependencies": {
  1800. "Microsoft.Extensions.Configuration": "2.2.0-preview3-35497"
  1801. },
  1802. "compile": {
  1803. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  1804. },
  1805. "compileOnly": true
  1806. },
  1807. "Microsoft.Extensions.Configuration.FileExtensions/2.1.1": {
  1808. "dependencies": {
  1809. "Microsoft.Extensions.Configuration": "2.2.0-preview3-35497",
  1810. "Microsoft.Extensions.FileProviders.Physical": "2.1.1"
  1811. },
  1812. "compile": {
  1813. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  1814. },
  1815. "compileOnly": true
  1816. },
  1817. "Microsoft.Extensions.Configuration.Ini/2.1.1": {
  1818. "dependencies": {
  1819. "Microsoft.Extensions.Configuration": "2.2.0-preview3-35497",
  1820. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1"
  1821. },
  1822. "compile": {
  1823. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll": {}
  1824. },
  1825. "compileOnly": true
  1826. },
  1827. "Microsoft.Extensions.Configuration.Json/2.1.1": {
  1828. "dependencies": {
  1829. "Microsoft.Extensions.Configuration": "2.2.0-preview3-35497",
  1830. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  1831. "Newtonsoft.Json": "11.0.2"
  1832. },
  1833. "compile": {
  1834. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
  1835. },
  1836. "compileOnly": true
  1837. },
  1838. "Microsoft.Extensions.Configuration.KeyPerFile/2.1.1": {
  1839. "dependencies": {
  1840. "Microsoft.Extensions.Configuration": "2.2.0-preview3-35497",
  1841. "Microsoft.Extensions.FileProviders.Physical": "2.1.1"
  1842. },
  1843. "compile": {
  1844. "lib/netstandard2.0/Microsoft.Extensions.Configuration.KeyPerFile.dll": {}
  1845. },
  1846. "compileOnly": true
  1847. },
  1848. "Microsoft.Extensions.Configuration.UserSecrets/2.1.1": {
  1849. "dependencies": {
  1850. "Microsoft.Extensions.Configuration.Json": "2.1.1"
  1851. },
  1852. "compile": {
  1853. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  1854. },
  1855. "compileOnly": true
  1856. },
  1857. "Microsoft.Extensions.Configuration.Xml/2.1.1": {
  1858. "dependencies": {
  1859. "Microsoft.Extensions.Configuration": "2.2.0-preview3-35497",
  1860. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  1861. "System.Security.Cryptography.Xml": "4.5.0"
  1862. },
  1863. "compile": {
  1864. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll": {}
  1865. },
  1866. "compileOnly": true
  1867. },
  1868. "Microsoft.Extensions.DependencyInjection/2.1.1": {
  1869. "dependencies": {
  1870. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0-preview3-35497"
  1871. },
  1872. "compile": {
  1873. "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {}
  1874. },
  1875. "compileOnly": true
  1876. },
  1877. "Microsoft.Extensions.DependencyModel/2.1.0": {
  1878. "dependencies": {
  1879. "Microsoft.DotNet.PlatformAbstractions": "2.1.0",
  1880. "Newtonsoft.Json": "11.0.2",
  1881. "System.Diagnostics.Debug": "4.3.0",
  1882. "System.Dynamic.Runtime": "4.3.0",
  1883. "System.Linq": "4.3.0"
  1884. },
  1885. "compile": {
  1886. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  1887. },
  1888. "compileOnly": true
  1889. },
  1890. "Microsoft.Extensions.DiagnosticAdapter/2.1.0": {
  1891. "dependencies": {
  1892. "System.Diagnostics.DiagnosticSource": "4.5.0"
  1893. },
  1894. "compile": {
  1895. "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll": {}
  1896. },
  1897. "compileOnly": true
  1898. },
  1899. "Microsoft.Extensions.FileProviders.Composite/2.1.1": {
  1900. "dependencies": {
  1901. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0-preview3-35497"
  1902. },
  1903. "compile": {
  1904. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
  1905. },
  1906. "compileOnly": true
  1907. },
  1908. "Microsoft.Extensions.FileProviders.Embedded/2.1.1": {
  1909. "dependencies": {
  1910. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0-preview3-35497"
  1911. },
  1912. "compile": {
  1913. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll": {}
  1914. },
  1915. "compileOnly": true
  1916. },
  1917. "Microsoft.Extensions.FileProviders.Physical/2.1.1": {
  1918. "dependencies": {
  1919. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0-preview3-35497",
  1920. "Microsoft.Extensions.FileSystemGlobbing": "2.1.1"
  1921. },
  1922. "compile": {
  1923. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  1924. },
  1925. "compileOnly": true
  1926. },
  1927. "Microsoft.Extensions.FileSystemGlobbing/2.1.1": {
  1928. "compile": {
  1929. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  1930. },
  1931. "compileOnly": true
  1932. },
  1933. "Microsoft.Extensions.Hosting/2.1.1": {
  1934. "dependencies": {
  1935. "Microsoft.Extensions.Configuration": "2.2.0-preview3-35497",
  1936. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  1937. "Microsoft.Extensions.FileProviders.Physical": "2.1.1",
  1938. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0-preview3-35497",
  1939. "Microsoft.Extensions.Logging": "2.1.1"
  1940. },
  1941. "compile": {
  1942. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {}
  1943. },
  1944. "compileOnly": true
  1945. },
  1946. "Microsoft.Extensions.Http/2.1.1": {
  1947. "dependencies": {
  1948. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0-preview3-35497",
  1949. "Microsoft.Extensions.Logging": "2.1.1",
  1950. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  1951. },
  1952. "compile": {
  1953. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {}
  1954. },
  1955. "compileOnly": true
  1956. },
  1957. "Microsoft.Extensions.Identity.Core/2.1.1": {
  1958. "dependencies": {
  1959. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.1.1",
  1960. "Microsoft.Extensions.Logging": "2.1.1",
  1961. "Microsoft.Extensions.Options": "2.2.0-preview3-35497",
  1962. "System.ComponentModel.Annotations": "4.5.0"
  1963. },
  1964. "compile": {
  1965. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {}
  1966. },
  1967. "compileOnly": true
  1968. },
  1969. "Microsoft.Extensions.Identity.Stores/2.1.1": {
  1970. "dependencies": {
  1971. "Microsoft.Extensions.Identity.Core": "2.1.1",
  1972. "Microsoft.Extensions.Logging": "2.1.1",
  1973. "System.ComponentModel.Annotations": "4.5.0"
  1974. },
  1975. "compile": {
  1976. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {}
  1977. },
  1978. "compileOnly": true
  1979. },
  1980. "Microsoft.Extensions.Localization/2.1.1": {
  1981. "dependencies": {
  1982. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0-preview3-35497",
  1983. "Microsoft.Extensions.Localization.Abstractions": "2.1.1",
  1984. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  1985. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  1986. },
  1987. "compile": {
  1988. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {}
  1989. },
  1990. "compileOnly": true
  1991. },
  1992. "Microsoft.Extensions.Localization.Abstractions/2.1.1": {
  1993. "compile": {
  1994. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
  1995. },
  1996. "compileOnly": true
  1997. },
  1998. "Microsoft.Extensions.Logging/2.1.1": {
  1999. "dependencies": {
  2000. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  2001. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0-preview3-35497",
  2002. "Microsoft.Extensions.Logging.Abstractions": "2.2.0-preview3-35497",
  2003. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  2004. },
  2005. "compile": {
  2006. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
  2007. },
  2008. "compileOnly": true
  2009. },
  2010. "Microsoft.Extensions.Logging.Configuration/2.1.1": {
  2011. "dependencies": {
  2012. "Microsoft.Extensions.Logging": "2.1.1",
  2013. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.1.1"
  2014. },
  2015. "compile": {
  2016. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
  2017. },
  2018. "compileOnly": true
  2019. },
  2020. "Microsoft.Extensions.Logging.Console/2.1.1": {
  2021. "dependencies": {
  2022. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0-preview3-35497",
  2023. "Microsoft.Extensions.Logging": "2.1.1",
  2024. "Microsoft.Extensions.Logging.Configuration": "2.1.1"
  2025. },
  2026. "compile": {
  2027. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {}
  2028. },
  2029. "compileOnly": true
  2030. },
  2031. "Microsoft.Extensions.Logging.Debug/2.1.1": {
  2032. "dependencies": {
  2033. "Microsoft.Extensions.Logging": "2.1.1"
  2034. },
  2035. "compile": {
  2036. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
  2037. },
  2038. "compileOnly": true
  2039. },
  2040. "Microsoft.Extensions.Logging.EventSource/2.1.1": {
  2041. "dependencies": {
  2042. "Microsoft.Extensions.Logging": "2.1.1",
  2043. "Newtonsoft.Json": "11.0.2"
  2044. },
  2045. "compile": {
  2046. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {}
  2047. },
  2048. "compileOnly": true
  2049. },
  2050. "Microsoft.Extensions.Logging.TraceSource/2.1.1": {
  2051. "dependencies": {
  2052. "Microsoft.Extensions.Logging": "2.1.1"
  2053. },
  2054. "compile": {
  2055. "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll": {}
  2056. },
  2057. "compileOnly": true
  2058. },
  2059. "Microsoft.Extensions.ObjectPool/2.1.1": {
  2060. "compile": {
  2061. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {}
  2062. },
  2063. "compileOnly": true
  2064. },
  2065. "Microsoft.Extensions.Options.ConfigurationExtensions/2.1.1": {
  2066. "dependencies": {
  2067. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0-preview3-35497",
  2068. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  2069. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0-preview3-35497",
  2070. "Microsoft.Extensions.Options": "2.2.0-preview3-35497"
  2071. },
  2072. "compile": {
  2073. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  2074. },
  2075. "compileOnly": true
  2076. },
  2077. "Microsoft.IdentityModel.Logging/5.2.0": {
  2078. "dependencies": {
  2079. "NETStandard.Library": "2.0.3",
  2080. "System.Diagnostics.Tracing": "4.3.0",
  2081. "System.Globalization": "4.3.0",
  2082. "System.IO": "4.3.0",
  2083. "System.IO.FileSystem": "4.3.0"
  2084. },
  2085. "compile": {
  2086. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll": {}
  2087. },
  2088. "compileOnly": true
  2089. },
  2090. "Microsoft.IdentityModel.Protocols/5.2.0": {
  2091. "dependencies": {
  2092. "Microsoft.IdentityModel.Logging": "5.2.0",
  2093. "Microsoft.IdentityModel.Tokens": "5.2.0",
  2094. "NETStandard.Library": "2.0.3",
  2095. "System.Collections.Specialized": "4.3.0",
  2096. "System.Diagnostics.Contracts": "4.3.0",
  2097. "System.Net.Http": "4.3.0"
  2098. },
  2099. "compile": {
  2100. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll": {}
  2101. },
  2102. "compileOnly": true
  2103. },
  2104. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.2.0": {
  2105. "dependencies": {
  2106. "Microsoft.IdentityModel.Protocols": "5.2.0",
  2107. "NETStandard.Library": "2.0.3",
  2108. "Newtonsoft.Json": "11.0.2",
  2109. "System.Dynamic.Runtime": "4.3.0",
  2110. "System.IdentityModel.Tokens.Jwt": "5.2.0"
  2111. },
  2112. "compile": {
  2113. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  2114. },
  2115. "compileOnly": true
  2116. },
  2117. "Microsoft.IdentityModel.Protocols.WsFederation/5.2.0": {
  2118. "dependencies": {
  2119. "Microsoft.IdentityModel.Protocols": "5.2.0",
  2120. "Microsoft.IdentityModel.Tokens.Saml": "5.2.0",
  2121. "Microsoft.IdentityModel.Xml": "5.2.0",
  2122. "NETStandard.Library": "2.0.3",
  2123. "System.Xml.XmlDocument": "4.3.0"
  2124. },
  2125. "compile": {
  2126. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.WsFederation.dll": {}
  2127. },
  2128. "compileOnly": true
  2129. },
  2130. "Microsoft.IdentityModel.Tokens/5.2.0": {
  2131. "dependencies": {
  2132. "Microsoft.IdentityModel.Logging": "5.2.0",
  2133. "NETStandard.Library": "2.0.3",
  2134. "Newtonsoft.Json": "11.0.2",
  2135. "System.Collections": "4.3.0",
  2136. "System.Diagnostics.Tools": "4.3.0",
  2137. "System.Runtime": "4.3.0",
  2138. "System.Runtime.Extensions": "4.3.0",
  2139. "System.Runtime.InteropServices": "4.3.0",
  2140. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  2141. "System.Runtime.Serialization.Xml": "4.3.0",
  2142. "System.Security.Claims": "4.3.0",
  2143. "System.Security.Cryptography.Algorithms": "4.3.0",
  2144. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2145. "System.Text.RegularExpressions": "4.3.0",
  2146. "System.Threading": "4.3.0"
  2147. },
  2148. "compile": {
  2149. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll": {}
  2150. },
  2151. "compileOnly": true
  2152. },
  2153. "Microsoft.IdentityModel.Tokens.Saml/5.2.0": {
  2154. "dependencies": {
  2155. "Microsoft.IdentityModel.Tokens": "5.2.0",
  2156. "Microsoft.IdentityModel.Xml": "5.2.0",
  2157. "NETStandard.Library": "2.0.3"
  2158. },
  2159. "compile": {
  2160. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.Saml.dll": {}
  2161. },
  2162. "compileOnly": true
  2163. },
  2164. "Microsoft.IdentityModel.Xml/5.2.0": {
  2165. "dependencies": {
  2166. "Microsoft.IdentityModel.Tokens": "5.2.0",
  2167. "NETStandard.Library": "2.0.3"
  2168. },
  2169. "compile": {
  2170. "lib/netstandard1.4/Microsoft.IdentityModel.Xml.dll": {}
  2171. },
  2172. "compileOnly": true
  2173. },
  2174. "Microsoft.Win32.Registry/4.5.0": {
  2175. "dependencies": {
  2176. "System.Security.AccessControl": "4.5.0",
  2177. "System.Security.Principal.Windows": "4.5.0"
  2178. },
  2179. "compile": {
  2180. "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  2181. },
  2182. "compileOnly": true
  2183. },
  2184. "Newtonsoft.Json/11.0.2": {
  2185. "compile": {
  2186. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  2187. },
  2188. "compileOnly": true
  2189. },
  2190. "Newtonsoft.Json.Bson/1.0.1": {
  2191. "dependencies": {
  2192. "NETStandard.Library": "2.0.3",
  2193. "Newtonsoft.Json": "11.0.2"
  2194. },
  2195. "compile": {
  2196. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {}
  2197. },
  2198. "compileOnly": true
  2199. },
  2200. "Remotion.Linq/2.2.0": {
  2201. "dependencies": {
  2202. "System.Collections": "4.3.0",
  2203. "System.Diagnostics.Debug": "4.3.0",
  2204. "System.Linq": "4.3.0",
  2205. "System.Linq.Expressions": "4.3.0",
  2206. "System.Linq.Queryable": "4.0.1",
  2207. "System.ObjectModel": "4.3.0",
  2208. "System.Reflection": "4.3.0",
  2209. "System.Reflection.Extensions": "4.3.0",
  2210. "System.Runtime": "4.3.0",
  2211. "System.Runtime.Extensions": "4.3.0",
  2212. "System.Threading": "4.3.0"
  2213. },
  2214. "compile": {
  2215. "lib/netstandard1.0/Remotion.Linq.dll": {}
  2216. },
  2217. "compileOnly": true
  2218. },
  2219. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2220. "compileOnly": true
  2221. },
  2222. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2223. "compileOnly": true
  2224. },
  2225. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2226. "compileOnly": true
  2227. },
  2228. "runtime.native.System/4.3.0": {
  2229. "dependencies": {
  2230. "Microsoft.NETCore.Platforms": "2.1.0",
  2231. "Microsoft.NETCore.Targets": "2.1.0"
  2232. },
  2233. "compileOnly": true
  2234. },
  2235. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2236. "dependencies": {
  2237. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  2238. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  2239. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  2240. },
  2241. "compileOnly": true
  2242. },
  2243. "runtime.native.System.IO.Compression/4.3.0": {
  2244. "dependencies": {
  2245. "Microsoft.NETCore.Platforms": "2.1.0",
  2246. "Microsoft.NETCore.Targets": "2.1.0"
  2247. },
  2248. "compileOnly": true
  2249. },
  2250. "runtime.native.System.Net.Http/4.3.0": {
  2251. "dependencies": {
  2252. "Microsoft.NETCore.Platforms": "2.1.0",
  2253. "Microsoft.NETCore.Targets": "2.1.0"
  2254. },
  2255. "compileOnly": true
  2256. },
  2257. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2258. "dependencies": {
  2259. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  2260. },
  2261. "compileOnly": true
  2262. },
  2263. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2264. "dependencies": {
  2265. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2266. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2267. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2268. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2269. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2270. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2271. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2272. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2273. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2274. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2275. },
  2276. "compileOnly": true
  2277. },
  2278. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2279. "compileOnly": true
  2280. },
  2281. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2282. "compileOnly": true
  2283. },
  2284. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2285. "compileOnly": true
  2286. },
  2287. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2288. "compileOnly": true
  2289. },
  2290. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2291. "compileOnly": true
  2292. },
  2293. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2294. "compileOnly": true
  2295. },
  2296. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2297. "compileOnly": true
  2298. },
  2299. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2300. "compileOnly": true
  2301. },
  2302. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2303. "compileOnly": true
  2304. },
  2305. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2306. "compileOnly": true
  2307. },
  2308. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2309. "compileOnly": true
  2310. },
  2311. "System.AppContext/4.3.0": {
  2312. "dependencies": {
  2313. "System.Runtime": "4.3.0"
  2314. },
  2315. "compileOnly": true
  2316. },
  2317. "System.Buffers/4.5.0": {
  2318. "compileOnly": true
  2319. },
  2320. "System.Collections/4.3.0": {
  2321. "dependencies": {
  2322. "Microsoft.NETCore.Platforms": "2.1.0",
  2323. "Microsoft.NETCore.Targets": "2.1.0",
  2324. "System.Runtime": "4.3.0"
  2325. },
  2326. "compileOnly": true
  2327. },
  2328. "System.Collections.Concurrent/4.3.0": {
  2329. "dependencies": {
  2330. "System.Collections": "4.3.0",
  2331. "System.Diagnostics.Debug": "4.3.0",
  2332. "System.Diagnostics.Tracing": "4.3.0",
  2333. "System.Globalization": "4.3.0",
  2334. "System.Reflection": "4.3.0",
  2335. "System.Resources.ResourceManager": "4.3.0",
  2336. "System.Runtime": "4.3.0",
  2337. "System.Runtime.Extensions": "4.3.0",
  2338. "System.Threading": "4.3.0",
  2339. "System.Threading.Tasks": "4.3.0"
  2340. },
  2341. "compileOnly": true
  2342. },
  2343. "System.Collections.Immutable/1.5.0": {
  2344. "compileOnly": true
  2345. },
  2346. "System.Collections.NonGeneric/4.3.0": {
  2347. "dependencies": {
  2348. "System.Diagnostics.Debug": "4.3.0",
  2349. "System.Globalization": "4.3.0",
  2350. "System.Resources.ResourceManager": "4.3.0",
  2351. "System.Runtime": "4.3.0",
  2352. "System.Runtime.Extensions": "4.3.0",
  2353. "System.Threading": "4.3.0"
  2354. },
  2355. "compileOnly": true
  2356. },
  2357. "System.Collections.Specialized/4.3.0": {
  2358. "dependencies": {
  2359. "System.Collections.NonGeneric": "4.3.0",
  2360. "System.Globalization": "4.3.0",
  2361. "System.Globalization.Extensions": "4.3.0",
  2362. "System.Resources.ResourceManager": "4.3.0",
  2363. "System.Runtime": "4.3.0",
  2364. "System.Runtime.Extensions": "4.3.0",
  2365. "System.Threading": "4.3.0"
  2366. },
  2367. "compileOnly": true
  2368. },
  2369. "System.ComponentModel.Annotations/4.5.0": {
  2370. "compileOnly": true
  2371. },
  2372. "System.Console/4.3.0": {
  2373. "dependencies": {
  2374. "Microsoft.NETCore.Platforms": "2.1.0",
  2375. "Microsoft.NETCore.Targets": "2.1.0",
  2376. "System.IO": "4.3.0",
  2377. "System.Runtime": "4.3.0",
  2378. "System.Text.Encoding": "4.3.0"
  2379. },
  2380. "compileOnly": true
  2381. },
  2382. "System.Data.SqlClient/4.5.1": {
  2383. "dependencies": {
  2384. "Microsoft.Win32.Registry": "4.5.0",
  2385. "System.Security.Principal.Windows": "4.5.0",
  2386. "System.Text.Encoding.CodePages": "4.5.0",
  2387. "runtime.native.System.Data.SqlClient.sni": "4.4.0"
  2388. },
  2389. "compile": {
  2390. "ref/netcoreapp2.1/System.Data.SqlClient.dll": {}
  2391. },
  2392. "compileOnly": true
  2393. },
  2394. "System.Diagnostics.Contracts/4.3.0": {
  2395. "dependencies": {
  2396. "System.Runtime": "4.3.0"
  2397. },
  2398. "compileOnly": true
  2399. },
  2400. "System.Diagnostics.Debug/4.3.0": {
  2401. "dependencies": {
  2402. "Microsoft.NETCore.Platforms": "2.1.0",
  2403. "Microsoft.NETCore.Targets": "2.1.0",
  2404. "System.Runtime": "4.3.0"
  2405. },
  2406. "compileOnly": true
  2407. },
  2408. "System.Diagnostics.DiagnosticSource/4.5.0": {
  2409. "compileOnly": true
  2410. },
  2411. "System.Diagnostics.FileVersionInfo/4.3.0": {
  2412. "dependencies": {
  2413. "Microsoft.NETCore.Platforms": "2.1.0",
  2414. "System.Globalization": "4.3.0",
  2415. "System.IO": "4.3.0",
  2416. "System.IO.FileSystem": "4.3.0",
  2417. "System.IO.FileSystem.Primitives": "4.3.0",
  2418. "System.Reflection.Metadata": "1.6.0",
  2419. "System.Runtime": "4.3.0",
  2420. "System.Runtime.Extensions": "4.3.0",
  2421. "System.Runtime.InteropServices": "4.3.0"
  2422. },
  2423. "compileOnly": true
  2424. },
  2425. "System.Diagnostics.StackTrace/4.3.0": {
  2426. "dependencies": {
  2427. "System.IO.FileSystem": "4.3.0",
  2428. "System.Reflection": "4.3.0",
  2429. "System.Reflection.Metadata": "1.6.0",
  2430. "System.Runtime": "4.3.0"
  2431. },
  2432. "compileOnly": true
  2433. },
  2434. "System.Diagnostics.Tools/4.3.0": {
  2435. "dependencies": {
  2436. "Microsoft.NETCore.Platforms": "2.1.0",
  2437. "Microsoft.NETCore.Targets": "2.1.0",
  2438. "System.Runtime": "4.3.0"
  2439. },
  2440. "compileOnly": true
  2441. },
  2442. "System.Diagnostics.Tracing/4.3.0": {
  2443. "dependencies": {
  2444. "Microsoft.NETCore.Platforms": "2.1.0",
  2445. "Microsoft.NETCore.Targets": "2.1.0",
  2446. "System.Runtime": "4.3.0"
  2447. },
  2448. "compileOnly": true
  2449. },
  2450. "System.Dynamic.Runtime/4.3.0": {
  2451. "dependencies": {
  2452. "System.Collections": "4.3.0",
  2453. "System.Diagnostics.Debug": "4.3.0",
  2454. "System.Linq": "4.3.0",
  2455. "System.Linq.Expressions": "4.3.0",
  2456. "System.ObjectModel": "4.3.0",
  2457. "System.Reflection": "4.3.0",
  2458. "System.Reflection.Emit": "4.3.0",
  2459. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2460. "System.Reflection.Primitives": "4.3.0",
  2461. "System.Reflection.TypeExtensions": "4.3.0",
  2462. "System.Resources.ResourceManager": "4.3.0",
  2463. "System.Runtime": "4.3.0",
  2464. "System.Runtime.Extensions": "4.3.0",
  2465. "System.Threading": "4.3.0"
  2466. },
  2467. "compileOnly": true
  2468. },
  2469. "System.Globalization/4.3.0": {
  2470. "dependencies": {
  2471. "Microsoft.NETCore.Platforms": "2.1.0",
  2472. "Microsoft.NETCore.Targets": "2.1.0",
  2473. "System.Runtime": "4.3.0"
  2474. },
  2475. "compileOnly": true
  2476. },
  2477. "System.Globalization.Calendars/4.3.0": {
  2478. "dependencies": {
  2479. "Microsoft.NETCore.Platforms": "2.1.0",
  2480. "Microsoft.NETCore.Targets": "2.1.0",
  2481. "System.Globalization": "4.3.0",
  2482. "System.Runtime": "4.3.0"
  2483. },
  2484. "compileOnly": true
  2485. },
  2486. "System.Globalization.Extensions/4.3.0": {
  2487. "dependencies": {
  2488. "Microsoft.NETCore.Platforms": "2.1.0",
  2489. "System.Globalization": "4.3.0",
  2490. "System.Resources.ResourceManager": "4.3.0",
  2491. "System.Runtime": "4.3.0",
  2492. "System.Runtime.Extensions": "4.3.0",
  2493. "System.Runtime.InteropServices": "4.3.0"
  2494. },
  2495. "compileOnly": true
  2496. },
  2497. "System.IdentityModel.Tokens.Jwt/5.2.0": {
  2498. "dependencies": {
  2499. "Microsoft.IdentityModel.Tokens": "5.2.0",
  2500. "NETStandard.Library": "2.0.3",
  2501. "Newtonsoft.Json": "11.0.2"
  2502. },
  2503. "compile": {
  2504. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll": {}
  2505. },
  2506. "compileOnly": true
  2507. },
  2508. "System.Interactive.Async/3.1.1": {
  2509. "dependencies": {
  2510. "NETStandard.Library": "2.0.3"
  2511. },
  2512. "compile": {
  2513. "lib/netstandard1.3/System.Interactive.Async.dll": {}
  2514. },
  2515. "compileOnly": true
  2516. },
  2517. "System.IO/4.3.0": {
  2518. "dependencies": {
  2519. "Microsoft.NETCore.Platforms": "2.1.0",
  2520. "Microsoft.NETCore.Targets": "2.1.0",
  2521. "System.Runtime": "4.3.0",
  2522. "System.Text.Encoding": "4.3.0",
  2523. "System.Threading.Tasks": "4.3.0"
  2524. },
  2525. "compileOnly": true
  2526. },
  2527. "System.IO.Compression/4.3.0": {
  2528. "dependencies": {
  2529. "Microsoft.NETCore.Platforms": "2.1.0",
  2530. "System.Buffers": "4.5.0",
  2531. "System.Collections": "4.3.0",
  2532. "System.Diagnostics.Debug": "4.3.0",
  2533. "System.IO": "4.3.0",
  2534. "System.Resources.ResourceManager": "4.3.0",
  2535. "System.Runtime": "4.3.0",
  2536. "System.Runtime.Extensions": "4.3.0",
  2537. "System.Runtime.Handles": "4.3.0",
  2538. "System.Runtime.InteropServices": "4.3.0",
  2539. "System.Text.Encoding": "4.3.0",
  2540. "System.Threading": "4.3.0",
  2541. "System.Threading.Tasks": "4.3.0",
  2542. "runtime.native.System": "4.3.0",
  2543. "runtime.native.System.IO.Compression": "4.3.0"
  2544. },
  2545. "compileOnly": true
  2546. },
  2547. "System.IO.FileSystem/4.3.0": {
  2548. "dependencies": {
  2549. "Microsoft.NETCore.Platforms": "2.1.0",
  2550. "Microsoft.NETCore.Targets": "2.1.0",
  2551. "System.IO": "4.3.0",
  2552. "System.IO.FileSystem.Primitives": "4.3.0",
  2553. "System.Runtime": "4.3.0",
  2554. "System.Runtime.Handles": "4.3.0",
  2555. "System.Text.Encoding": "4.3.0",
  2556. "System.Threading.Tasks": "4.3.0"
  2557. },
  2558. "compileOnly": true
  2559. },
  2560. "System.IO.FileSystem.Primitives/4.3.0": {
  2561. "dependencies": {
  2562. "System.Runtime": "4.3.0"
  2563. },
  2564. "compileOnly": true
  2565. },
  2566. "System.IO.Pipelines/4.5.0": {
  2567. "compile": {
  2568. "ref/netstandard1.3/System.IO.Pipelines.dll": {}
  2569. },
  2570. "compileOnly": true
  2571. },
  2572. "System.Linq/4.3.0": {
  2573. "dependencies": {
  2574. "System.Collections": "4.3.0",
  2575. "System.Diagnostics.Debug": "4.3.0",
  2576. "System.Resources.ResourceManager": "4.3.0",
  2577. "System.Runtime": "4.3.0",
  2578. "System.Runtime.Extensions": "4.3.0"
  2579. },
  2580. "compileOnly": true
  2581. },
  2582. "System.Linq.Expressions/4.3.0": {
  2583. "dependencies": {
  2584. "System.Collections": "4.3.0",
  2585. "System.Diagnostics.Debug": "4.3.0",
  2586. "System.Globalization": "4.3.0",
  2587. "System.IO": "4.3.0",
  2588. "System.Linq": "4.3.0",
  2589. "System.ObjectModel": "4.3.0",
  2590. "System.Reflection": "4.3.0",
  2591. "System.Reflection.Emit": "4.3.0",
  2592. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2593. "System.Reflection.Emit.Lightweight": "4.3.0",
  2594. "System.Reflection.Extensions": "4.3.0",
  2595. "System.Reflection.Primitives": "4.3.0",
  2596. "System.Reflection.TypeExtensions": "4.3.0",
  2597. "System.Resources.ResourceManager": "4.3.0",
  2598. "System.Runtime": "4.3.0",
  2599. "System.Runtime.Extensions": "4.3.0",
  2600. "System.Threading": "4.3.0"
  2601. },
  2602. "compileOnly": true
  2603. },
  2604. "System.Linq.Queryable/4.0.1": {
  2605. "dependencies": {
  2606. "System.Collections": "4.3.0",
  2607. "System.Diagnostics.Debug": "4.3.0",
  2608. "System.Linq": "4.3.0",
  2609. "System.Linq.Expressions": "4.3.0",
  2610. "System.Reflection": "4.3.0",
  2611. "System.Reflection.Extensions": "4.3.0",
  2612. "System.Resources.ResourceManager": "4.3.0",
  2613. "System.Runtime": "4.3.0"
  2614. },
  2615. "compileOnly": true
  2616. },
  2617. "System.Memory/4.5.1": {
  2618. "compileOnly": true
  2619. },
  2620. "System.Net.Http/4.3.0": {
  2621. "dependencies": {
  2622. "Microsoft.NETCore.Platforms": "2.1.0",
  2623. "System.Collections": "4.3.0",
  2624. "System.Diagnostics.Debug": "4.3.0",
  2625. "System.Diagnostics.DiagnosticSource": "4.5.0",
  2626. "System.Diagnostics.Tracing": "4.3.0",
  2627. "System.Globalization": "4.3.0",
  2628. "System.Globalization.Extensions": "4.3.0",
  2629. "System.IO": "4.3.0",
  2630. "System.IO.FileSystem": "4.3.0",
  2631. "System.Net.Primitives": "4.3.0",
  2632. "System.Resources.ResourceManager": "4.3.0",
  2633. "System.Runtime": "4.3.0",
  2634. "System.Runtime.Extensions": "4.3.0",
  2635. "System.Runtime.Handles": "4.3.0",
  2636. "System.Runtime.InteropServices": "4.3.0",
  2637. "System.Security.Cryptography.Algorithms": "4.3.0",
  2638. "System.Security.Cryptography.Encoding": "4.3.0",
  2639. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2640. "System.Security.Cryptography.Primitives": "4.3.0",
  2641. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2642. "System.Text.Encoding": "4.3.0",
  2643. "System.Threading": "4.3.0",
  2644. "System.Threading.Tasks": "4.3.0",
  2645. "runtime.native.System": "4.3.0",
  2646. "runtime.native.System.Net.Http": "4.3.0",
  2647. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2648. },
  2649. "compileOnly": true
  2650. },
  2651. "System.Net.Primitives/4.3.0": {
  2652. "dependencies": {
  2653. "Microsoft.NETCore.Platforms": "2.1.0",
  2654. "Microsoft.NETCore.Targets": "2.1.0",
  2655. "System.Runtime": "4.3.0",
  2656. "System.Runtime.Handles": "4.3.0"
  2657. },
  2658. "compileOnly": true
  2659. },
  2660. "System.Net.WebSockets.WebSocketProtocol/4.5.1": {
  2661. "compile": {
  2662. "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": {}
  2663. },
  2664. "compileOnly": true
  2665. },
  2666. "System.Numerics.Vectors/4.5.0": {
  2667. "compileOnly": true
  2668. },
  2669. "System.ObjectModel/4.3.0": {
  2670. "dependencies": {
  2671. "System.Collections": "4.3.0",
  2672. "System.Diagnostics.Debug": "4.3.0",
  2673. "System.Resources.ResourceManager": "4.3.0",
  2674. "System.Runtime": "4.3.0",
  2675. "System.Threading": "4.3.0"
  2676. },
  2677. "compileOnly": true
  2678. },
  2679. "System.Private.DataContractSerialization/4.3.0": {
  2680. "dependencies": {
  2681. "System.Collections": "4.3.0",
  2682. "System.Collections.Concurrent": "4.3.0",
  2683. "System.Diagnostics.Debug": "4.3.0",
  2684. "System.Globalization": "4.3.0",
  2685. "System.IO": "4.3.0",
  2686. "System.Linq": "4.3.0",
  2687. "System.Reflection": "4.3.0",
  2688. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2689. "System.Reflection.Emit.Lightweight": "4.3.0",
  2690. "System.Reflection.Extensions": "4.3.0",
  2691. "System.Reflection.Primitives": "4.3.0",
  2692. "System.Reflection.TypeExtensions": "4.3.0",
  2693. "System.Resources.ResourceManager": "4.3.0",
  2694. "System.Runtime": "4.3.0",
  2695. "System.Runtime.Extensions": "4.3.0",
  2696. "System.Runtime.Serialization.Primitives": "4.3.0",
  2697. "System.Text.Encoding": "4.3.0",
  2698. "System.Text.Encoding.Extensions": "4.3.0",
  2699. "System.Text.RegularExpressions": "4.3.0",
  2700. "System.Threading": "4.3.0",
  2701. "System.Threading.Tasks": "4.3.0",
  2702. "System.Xml.ReaderWriter": "4.3.0",
  2703. "System.Xml.XDocument": "4.3.0",
  2704. "System.Xml.XmlDocument": "4.3.0",
  2705. "System.Xml.XmlSerializer": "4.3.0"
  2706. },
  2707. "compileOnly": true
  2708. },
  2709. "System.Reflection/4.3.0": {
  2710. "dependencies": {
  2711. "Microsoft.NETCore.Platforms": "2.1.0",
  2712. "Microsoft.NETCore.Targets": "2.1.0",
  2713. "System.IO": "4.3.0",
  2714. "System.Reflection.Primitives": "4.3.0",
  2715. "System.Runtime": "4.3.0"
  2716. },
  2717. "compileOnly": true
  2718. },
  2719. "System.Reflection.Emit/4.3.0": {
  2720. "dependencies": {
  2721. "System.IO": "4.3.0",
  2722. "System.Reflection": "4.3.0",
  2723. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2724. "System.Reflection.Primitives": "4.3.0",
  2725. "System.Runtime": "4.3.0"
  2726. },
  2727. "compileOnly": true
  2728. },
  2729. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2730. "dependencies": {
  2731. "System.Reflection": "4.3.0",
  2732. "System.Reflection.Primitives": "4.3.0",
  2733. "System.Runtime": "4.3.0"
  2734. },
  2735. "compileOnly": true
  2736. },
  2737. "System.Reflection.Emit.Lightweight/4.3.0": {
  2738. "dependencies": {
  2739. "System.Reflection": "4.3.0",
  2740. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2741. "System.Reflection.Primitives": "4.3.0",
  2742. "System.Runtime": "4.3.0"
  2743. },
  2744. "compileOnly": true
  2745. },
  2746. "System.Reflection.Extensions/4.3.0": {
  2747. "dependencies": {
  2748. "Microsoft.NETCore.Platforms": "2.1.0",
  2749. "Microsoft.NETCore.Targets": "2.1.0",
  2750. "System.Reflection": "4.3.0",
  2751. "System.Runtime": "4.3.0"
  2752. },
  2753. "compileOnly": true
  2754. },
  2755. "System.Reflection.Metadata/1.6.0": {
  2756. "compileOnly": true
  2757. },
  2758. "System.Reflection.Primitives/4.3.0": {
  2759. "dependencies": {
  2760. "Microsoft.NETCore.Platforms": "2.1.0",
  2761. "Microsoft.NETCore.Targets": "2.1.0",
  2762. "System.Runtime": "4.3.0"
  2763. },
  2764. "compileOnly": true
  2765. },
  2766. "System.Reflection.TypeExtensions/4.3.0": {
  2767. "dependencies": {
  2768. "System.Reflection": "4.3.0",
  2769. "System.Runtime": "4.3.0"
  2770. },
  2771. "compileOnly": true
  2772. },
  2773. "System.Resources.ResourceManager/4.3.0": {
  2774. "dependencies": {
  2775. "Microsoft.NETCore.Platforms": "2.1.0",
  2776. "Microsoft.NETCore.Targets": "2.1.0",
  2777. "System.Globalization": "4.3.0",
  2778. "System.Reflection": "4.3.0",
  2779. "System.Runtime": "4.3.0"
  2780. },
  2781. "compileOnly": true
  2782. },
  2783. "System.Runtime/4.3.0": {
  2784. "dependencies": {
  2785. "Microsoft.NETCore.Platforms": "2.1.0",
  2786. "Microsoft.NETCore.Targets": "2.1.0"
  2787. },
  2788. "compileOnly": true
  2789. },
  2790. "System.Runtime.CompilerServices.Unsafe/4.5.1": {
  2791. "compile": {
  2792. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  2793. },
  2794. "compileOnly": true
  2795. },
  2796. "System.Runtime.Extensions/4.3.0": {
  2797. "dependencies": {
  2798. "Microsoft.NETCore.Platforms": "2.1.0",
  2799. "Microsoft.NETCore.Targets": "2.1.0",
  2800. "System.Runtime": "4.3.0"
  2801. },
  2802. "compileOnly": true
  2803. },
  2804. "System.Runtime.Handles/4.3.0": {
  2805. "dependencies": {
  2806. "Microsoft.NETCore.Platforms": "2.1.0",
  2807. "Microsoft.NETCore.Targets": "2.1.0",
  2808. "System.Runtime": "4.3.0"
  2809. },
  2810. "compileOnly": true
  2811. },
  2812. "System.Runtime.InteropServices/4.3.0": {
  2813. "dependencies": {
  2814. "Microsoft.NETCore.Platforms": "2.1.0",
  2815. "Microsoft.NETCore.Targets": "2.1.0",
  2816. "System.Reflection": "4.3.0",
  2817. "System.Reflection.Primitives": "4.3.0",
  2818. "System.Runtime": "4.3.0",
  2819. "System.Runtime.Handles": "4.3.0"
  2820. },
  2821. "compileOnly": true
  2822. },
  2823. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2824. "dependencies": {
  2825. "System.Reflection": "4.3.0",
  2826. "System.Reflection.Extensions": "4.3.0",
  2827. "System.Resources.ResourceManager": "4.3.0",
  2828. "System.Runtime": "4.3.0",
  2829. "System.Runtime.InteropServices": "4.3.0",
  2830. "System.Threading": "4.3.0",
  2831. "runtime.native.System": "4.3.0"
  2832. },
  2833. "compileOnly": true
  2834. },
  2835. "System.Runtime.Numerics/4.3.0": {
  2836. "dependencies": {
  2837. "System.Globalization": "4.3.0",
  2838. "System.Resources.ResourceManager": "4.3.0",
  2839. "System.Runtime": "4.3.0",
  2840. "System.Runtime.Extensions": "4.3.0"
  2841. },
  2842. "compileOnly": true
  2843. },
  2844. "System.Runtime.Serialization.Primitives/4.3.0": {
  2845. "dependencies": {
  2846. "System.Resources.ResourceManager": "4.3.0",
  2847. "System.Runtime": "4.3.0"
  2848. },
  2849. "compileOnly": true
  2850. },
  2851. "System.Runtime.Serialization.Xml/4.3.0": {
  2852. "dependencies": {
  2853. "System.IO": "4.3.0",
  2854. "System.Private.DataContractSerialization": "4.3.0",
  2855. "System.Runtime": "4.3.0",
  2856. "System.Runtime.Serialization.Primitives": "4.3.0",
  2857. "System.Text.Encoding": "4.3.0",
  2858. "System.Xml.ReaderWriter": "4.3.0"
  2859. },
  2860. "compileOnly": true
  2861. },
  2862. "System.Security.AccessControl/4.5.0": {
  2863. "dependencies": {
  2864. "Microsoft.NETCore.Platforms": "2.1.0",
  2865. "System.Security.Principal.Windows": "4.5.0"
  2866. },
  2867. "compile": {
  2868. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  2869. },
  2870. "compileOnly": true
  2871. },
  2872. "System.Security.Claims/4.3.0": {
  2873. "dependencies": {
  2874. "System.Collections": "4.3.0",
  2875. "System.Globalization": "4.3.0",
  2876. "System.IO": "4.3.0",
  2877. "System.Resources.ResourceManager": "4.3.0",
  2878. "System.Runtime": "4.3.0",
  2879. "System.Runtime.Extensions": "4.3.0",
  2880. "System.Security.Principal": "4.3.0"
  2881. },
  2882. "compileOnly": true
  2883. },
  2884. "System.Security.Cryptography.Algorithms/4.3.0": {
  2885. "dependencies": {
  2886. "Microsoft.NETCore.Platforms": "2.1.0",
  2887. "System.Collections": "4.3.0",
  2888. "System.IO": "4.3.0",
  2889. "System.Resources.ResourceManager": "4.3.0",
  2890. "System.Runtime": "4.3.0",
  2891. "System.Runtime.Extensions": "4.3.0",
  2892. "System.Runtime.Handles": "4.3.0",
  2893. "System.Runtime.InteropServices": "4.3.0",
  2894. "System.Runtime.Numerics": "4.3.0",
  2895. "System.Security.Cryptography.Encoding": "4.3.0",
  2896. "System.Security.Cryptography.Primitives": "4.3.0",
  2897. "System.Text.Encoding": "4.3.0",
  2898. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2899. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2900. },
  2901. "compileOnly": true
  2902. },
  2903. "System.Security.Cryptography.Cng/4.5.0": {
  2904. "compile": {
  2905. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2906. },
  2907. "compileOnly": true
  2908. },
  2909. "System.Security.Cryptography.Csp/4.3.0": {
  2910. "dependencies": {
  2911. "Microsoft.NETCore.Platforms": "2.1.0",
  2912. "System.IO": "4.3.0",
  2913. "System.Reflection": "4.3.0",
  2914. "System.Resources.ResourceManager": "4.3.0",
  2915. "System.Runtime": "4.3.0",
  2916. "System.Runtime.Extensions": "4.3.0",
  2917. "System.Runtime.Handles": "4.3.0",
  2918. "System.Runtime.InteropServices": "4.3.0",
  2919. "System.Security.Cryptography.Algorithms": "4.3.0",
  2920. "System.Security.Cryptography.Encoding": "4.3.0",
  2921. "System.Security.Cryptography.Primitives": "4.3.0",
  2922. "System.Text.Encoding": "4.3.0",
  2923. "System.Threading": "4.3.0"
  2924. },
  2925. "compileOnly": true
  2926. },
  2927. "System.Security.Cryptography.Encoding/4.3.0": {
  2928. "dependencies": {
  2929. "Microsoft.NETCore.Platforms": "2.1.0",
  2930. "System.Collections": "4.3.0",
  2931. "System.Collections.Concurrent": "4.3.0",
  2932. "System.Linq": "4.3.0",
  2933. "System.Resources.ResourceManager": "4.3.0",
  2934. "System.Runtime": "4.3.0",
  2935. "System.Runtime.Extensions": "4.3.0",
  2936. "System.Runtime.Handles": "4.3.0",
  2937. "System.Runtime.InteropServices": "4.3.0",
  2938. "System.Security.Cryptography.Primitives": "4.3.0",
  2939. "System.Text.Encoding": "4.3.0",
  2940. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2941. },
  2942. "compileOnly": true
  2943. },
  2944. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2945. "dependencies": {
  2946. "System.Collections": "4.3.0",
  2947. "System.IO": "4.3.0",
  2948. "System.Resources.ResourceManager": "4.3.0",
  2949. "System.Runtime": "4.3.0",
  2950. "System.Runtime.Extensions": "4.3.0",
  2951. "System.Runtime.Handles": "4.3.0",
  2952. "System.Runtime.InteropServices": "4.3.0",
  2953. "System.Runtime.Numerics": "4.3.0",
  2954. "System.Security.Cryptography.Algorithms": "4.3.0",
  2955. "System.Security.Cryptography.Encoding": "4.3.0",
  2956. "System.Security.Cryptography.Primitives": "4.3.0",
  2957. "System.Text.Encoding": "4.3.0",
  2958. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2959. },
  2960. "compileOnly": true
  2961. },
  2962. "System.Security.Cryptography.Pkcs/4.5.0": {
  2963. "dependencies": {
  2964. "System.Security.Cryptography.Cng": "4.5.0"
  2965. },
  2966. "compileOnly": true
  2967. },
  2968. "System.Security.Cryptography.Primitives/4.3.0": {
  2969. "dependencies": {
  2970. "System.Diagnostics.Debug": "4.3.0",
  2971. "System.Globalization": "4.3.0",
  2972. "System.IO": "4.3.0",
  2973. "System.Resources.ResourceManager": "4.3.0",
  2974. "System.Runtime": "4.3.0",
  2975. "System.Threading": "4.3.0",
  2976. "System.Threading.Tasks": "4.3.0"
  2977. },
  2978. "compileOnly": true
  2979. },
  2980. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2981. "dependencies": {
  2982. "Microsoft.NETCore.Platforms": "2.1.0",
  2983. "System.Collections": "4.3.0",
  2984. "System.Diagnostics.Debug": "4.3.0",
  2985. "System.Globalization": "4.3.0",
  2986. "System.Globalization.Calendars": "4.3.0",
  2987. "System.IO": "4.3.0",
  2988. "System.IO.FileSystem": "4.3.0",
  2989. "System.IO.FileSystem.Primitives": "4.3.0",
  2990. "System.Resources.ResourceManager": "4.3.0",
  2991. "System.Runtime": "4.3.0",
  2992. "System.Runtime.Extensions": "4.3.0",
  2993. "System.Runtime.Handles": "4.3.0",
  2994. "System.Runtime.InteropServices": "4.3.0",
  2995. "System.Runtime.Numerics": "4.3.0",
  2996. "System.Security.Cryptography.Algorithms": "4.3.0",
  2997. "System.Security.Cryptography.Cng": "4.5.0",
  2998. "System.Security.Cryptography.Csp": "4.3.0",
  2999. "System.Security.Cryptography.Encoding": "4.3.0",
  3000. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3001. "System.Security.Cryptography.Primitives": "4.3.0",
  3002. "System.Text.Encoding": "4.3.0",
  3003. "System.Threading": "4.3.0",
  3004. "runtime.native.System": "4.3.0",
  3005. "runtime.native.System.Net.Http": "4.3.0",
  3006. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3007. },
  3008. "compileOnly": true
  3009. },
  3010. "System.Security.Cryptography.Xml/4.5.0": {
  3011. "dependencies": {
  3012. "System.Security.Cryptography.Pkcs": "4.5.0",
  3013. "System.Security.Permissions": "4.5.0"
  3014. },
  3015. "compile": {
  3016. "ref/netstandard2.0/System.Security.Cryptography.Xml.dll": {}
  3017. },
  3018. "compileOnly": true
  3019. },
  3020. "System.Security.Permissions/4.5.0": {
  3021. "dependencies": {
  3022. "System.Security.AccessControl": "4.5.0"
  3023. },
  3024. "compile": {
  3025. "ref/netstandard2.0/System.Security.Permissions.dll": {}
  3026. },
  3027. "compileOnly": true
  3028. },
  3029. "System.Security.Principal/4.3.0": {
  3030. "dependencies": {
  3031. "System.Runtime": "4.3.0"
  3032. },
  3033. "compileOnly": true
  3034. },
  3035. "System.Security.Principal.Windows/4.5.0": {
  3036. "dependencies": {
  3037. "Microsoft.NETCore.Platforms": "2.1.0"
  3038. },
  3039. "compile": {
  3040. "ref/netstandard2.0/System.Security.Principal.Windows.dll": {}
  3041. },
  3042. "compileOnly": true
  3043. },
  3044. "System.Text.Encoding/4.3.0": {
  3045. "dependencies": {
  3046. "Microsoft.NETCore.Platforms": "2.1.0",
  3047. "Microsoft.NETCore.Targets": "2.1.0",
  3048. "System.Runtime": "4.3.0"
  3049. },
  3050. "compileOnly": true
  3051. },
  3052. "System.Text.Encoding.CodePages/4.5.0": {
  3053. "dependencies": {
  3054. "Microsoft.NETCore.Platforms": "2.1.0",
  3055. "System.Runtime.CompilerServices.Unsafe": "4.5.1"
  3056. },
  3057. "compileOnly": true
  3058. },
  3059. "System.Text.Encoding.Extensions/4.3.0": {
  3060. "dependencies": {
  3061. "Microsoft.NETCore.Platforms": "2.1.0",
  3062. "Microsoft.NETCore.Targets": "2.1.0",
  3063. "System.Runtime": "4.3.0",
  3064. "System.Text.Encoding": "4.3.0"
  3065. },
  3066. "compileOnly": true
  3067. },
  3068. "System.Text.Encodings.Web/4.5.0": {
  3069. "compile": {
  3070. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  3071. },
  3072. "compileOnly": true
  3073. },
  3074. "System.Text.RegularExpressions/4.3.0": {
  3075. "dependencies": {
  3076. "System.Runtime": "4.3.0"
  3077. },
  3078. "compileOnly": true
  3079. },
  3080. "System.Threading/4.3.0": {
  3081. "dependencies": {
  3082. "System.Runtime": "4.3.0",
  3083. "System.Threading.Tasks": "4.3.0"
  3084. },
  3085. "compileOnly": true
  3086. },
  3087. "System.Threading.Channels/4.5.0": {
  3088. "compile": {
  3089. "lib/netcoreapp2.1/System.Threading.Channels.dll": {}
  3090. },
  3091. "compileOnly": true
  3092. },
  3093. "System.Threading.Tasks/4.3.0": {
  3094. "dependencies": {
  3095. "Microsoft.NETCore.Platforms": "2.1.0",
  3096. "Microsoft.NETCore.Targets": "2.1.0",
  3097. "System.Runtime": "4.3.0"
  3098. },
  3099. "compileOnly": true
  3100. },
  3101. "System.Threading.Tasks.Extensions/4.5.1": {
  3102. "compileOnly": true
  3103. },
  3104. "System.Threading.Tasks.Parallel/4.3.0": {
  3105. "dependencies": {
  3106. "System.Collections.Concurrent": "4.3.0",
  3107. "System.Diagnostics.Debug": "4.3.0",
  3108. "System.Diagnostics.Tracing": "4.3.0",
  3109. "System.Resources.ResourceManager": "4.3.0",
  3110. "System.Runtime": "4.3.0",
  3111. "System.Runtime.Extensions": "4.3.0",
  3112. "System.Threading": "4.3.0",
  3113. "System.Threading.Tasks": "4.3.0"
  3114. },
  3115. "compileOnly": true
  3116. },
  3117. "System.Threading.Thread/4.3.0": {
  3118. "dependencies": {
  3119. "System.Runtime": "4.3.0"
  3120. },
  3121. "compileOnly": true
  3122. },
  3123. "System.ValueTuple/4.3.0": {
  3124. "dependencies": {
  3125. "System.Collections": "4.3.0",
  3126. "System.Resources.ResourceManager": "4.3.0",
  3127. "System.Runtime": "4.3.0"
  3128. },
  3129. "compileOnly": true
  3130. },
  3131. "System.Xml.ReaderWriter/4.3.0": {
  3132. "dependencies": {
  3133. "System.Collections": "4.3.0",
  3134. "System.Diagnostics.Debug": "4.3.0",
  3135. "System.Globalization": "4.3.0",
  3136. "System.IO": "4.3.0",
  3137. "System.IO.FileSystem": "4.3.0",
  3138. "System.IO.FileSystem.Primitives": "4.3.0",
  3139. "System.Resources.ResourceManager": "4.3.0",
  3140. "System.Runtime": "4.3.0",
  3141. "System.Runtime.Extensions": "4.3.0",
  3142. "System.Runtime.InteropServices": "4.3.0",
  3143. "System.Text.Encoding": "4.3.0",
  3144. "System.Text.Encoding.Extensions": "4.3.0",
  3145. "System.Text.RegularExpressions": "4.3.0",
  3146. "System.Threading.Tasks": "4.3.0",
  3147. "System.Threading.Tasks.Extensions": "4.5.1"
  3148. },
  3149. "compileOnly": true
  3150. },
  3151. "System.Xml.XDocument/4.3.0": {
  3152. "dependencies": {
  3153. "System.Collections": "4.3.0",
  3154. "System.Diagnostics.Debug": "4.3.0",
  3155. "System.Diagnostics.Tools": "4.3.0",
  3156. "System.Globalization": "4.3.0",
  3157. "System.IO": "4.3.0",
  3158. "System.Reflection": "4.3.0",
  3159. "System.Resources.ResourceManager": "4.3.0",
  3160. "System.Runtime": "4.3.0",
  3161. "System.Runtime.Extensions": "4.3.0",
  3162. "System.Text.Encoding": "4.3.0",
  3163. "System.Threading": "4.3.0",
  3164. "System.Xml.ReaderWriter": "4.3.0"
  3165. },
  3166. "compileOnly": true
  3167. },
  3168. "System.Xml.XmlDocument/4.3.0": {
  3169. "dependencies": {
  3170. "System.Collections": "4.3.0",
  3171. "System.Diagnostics.Debug": "4.3.0",
  3172. "System.Globalization": "4.3.0",
  3173. "System.IO": "4.3.0",
  3174. "System.Resources.ResourceManager": "4.3.0",
  3175. "System.Runtime": "4.3.0",
  3176. "System.Runtime.Extensions": "4.3.0",
  3177. "System.Text.Encoding": "4.3.0",
  3178. "System.Threading": "4.3.0",
  3179. "System.Xml.ReaderWriter": "4.3.0"
  3180. },
  3181. "compileOnly": true
  3182. },
  3183. "System.Xml.XmlSerializer/4.3.0": {
  3184. "dependencies": {
  3185. "System.Collections": "4.3.0",
  3186. "System.Globalization": "4.3.0",
  3187. "System.IO": "4.3.0",
  3188. "System.Linq": "4.3.0",
  3189. "System.Reflection": "4.3.0",
  3190. "System.Reflection.Emit": "4.3.0",
  3191. "System.Reflection.Emit.ILGeneration": "4.3.0",
  3192. "System.Reflection.Extensions": "4.3.0",
  3193. "System.Reflection.Primitives": "4.3.0",
  3194. "System.Reflection.TypeExtensions": "4.3.0",
  3195. "System.Resources.ResourceManager": "4.3.0",
  3196. "System.Runtime": "4.3.0",
  3197. "System.Runtime.Extensions": "4.3.0",
  3198. "System.Text.RegularExpressions": "4.3.0",
  3199. "System.Threading": "4.3.0",
  3200. "System.Xml.ReaderWriter": "4.3.0",
  3201. "System.Xml.XmlDocument": "4.3.0"
  3202. },
  3203. "compileOnly": true
  3204. },
  3205. "System.Xml.XPath/4.3.0": {
  3206. "dependencies": {
  3207. "System.Collections": "4.3.0",
  3208. "System.Diagnostics.Debug": "4.3.0",
  3209. "System.Globalization": "4.3.0",
  3210. "System.IO": "4.3.0",
  3211. "System.Resources.ResourceManager": "4.3.0",
  3212. "System.Runtime": "4.3.0",
  3213. "System.Runtime.Extensions": "4.3.0",
  3214. "System.Threading": "4.3.0",
  3215. "System.Xml.ReaderWriter": "4.3.0"
  3216. },
  3217. "compileOnly": true
  3218. },
  3219. "System.Xml.XPath.XDocument/4.3.0": {
  3220. "dependencies": {
  3221. "System.Diagnostics.Debug": "4.3.0",
  3222. "System.Linq": "4.3.0",
  3223. "System.Resources.ResourceManager": "4.3.0",
  3224. "System.Runtime": "4.3.0",
  3225. "System.Runtime.Extensions": "4.3.0",
  3226. "System.Threading": "4.3.0",
  3227. "System.Xml.ReaderWriter": "4.3.0",
  3228. "System.Xml.XDocument": "4.3.0",
  3229. "System.Xml.XPath": "4.3.0"
  3230. },
  3231. "compileOnly": true
  3232. }
  3233. }
  3234. },
  3235. "libraries": {
  3236. "FileServer/1.0.0": {
  3237. "type": "project",
  3238. "serviceable": false,
  3239. "sha512": ""
  3240. },
  3241. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0-preview3-35497": {
  3242. "type": "package",
  3243. "serviceable": true,
  3244. "sha512": "sha512-vG0nd13ZLyezzSoZKyoqTsKOyY6d26Q2aKnRQJPWkodJ6P+uzsp/MpGBVO9Xw5ku8Xy7wvv7po1seE+AoDx+gg==",
  3245. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0-preview3-35497",
  3246. "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0-preview3-35497.nupkg.sha512"
  3247. },
  3248. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0-preview3-35497": {
  3249. "type": "package",
  3250. "serviceable": true,
  3251. "sha512": "sha512-wPEo6Uq6IDeE8w12z/rXzEIuPESZFmFJWZN44AFCaHYz+nG2VEEwIBXAyhEEJsZNSMY6NAxVn6Wdo+Q6cmeR+w==",
  3252. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0-preview3-35497",
  3253. "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0-preview3-35497.nupkg.sha512"
  3254. },
  3255. "Microsoft.AspNetCore.Http.Abstractions/2.2.0-preview3-35497": {
  3256. "type": "package",
  3257. "serviceable": true,
  3258. "sha512": "sha512-2Fd9TfiqxQ/LyP5/2UC2/kRlUjBr+JnetEz/jiLRpveLs73D8anCuiWrwrZm6DPaUhSOcMjwO4vtPZnPgHI+CQ==",
  3259. "path": "microsoft.aspnetcore.http.abstractions/2.2.0-preview3-35497",
  3260. "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0-preview3-35497.nupkg.sha512"
  3261. },
  3262. "Microsoft.AspNetCore.Http.Extensions/2.2.0-preview3-35497": {
  3263. "type": "package",
  3264. "serviceable": true,
  3265. "sha512": "sha512-IL4Vr2v3J6NZb7/K80mskmJYmiHDcJGEH83cIvyJkHO7Z5HOL18DA1ETz2LBAJ+HQc0sMwYyeFqEENeAOIfT3g==",
  3266. "path": "microsoft.aspnetcore.http.extensions/2.2.0-preview3-35497",
  3267. "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0-preview3-35497.nupkg.sha512"
  3268. },
  3269. "Microsoft.AspNetCore.Http.Features/2.2.0-preview3-35497": {
  3270. "type": "package",
  3271. "serviceable": true,
  3272. "sha512": "sha512-jeSu67yXgzwrj4VFBqTyfHR5oj76LspgiA0Z/Kxgm1Dgpc4L1c7JrHYpI39van4XBOaYYj23d29v+un2AkQMMw==",
  3273. "path": "microsoft.aspnetcore.http.features/2.2.0-preview3-35497",
  3274. "hashPath": "microsoft.aspnetcore.http.features.2.2.0-preview3-35497.nupkg.sha512"
  3275. },
  3276. "Microsoft.AspNetCore.Razor.Design/2.1.2": {
  3277. "type": "package",
  3278. "serviceable": true,
  3279. "sha512": "sha512-ab4+TZw3Sxqrr5TwrwVyABeQkhSxYMJXgG6yZw7T+r6Vz+hcOt+pK79o15ESG7kZvWAK9wRG7emnTIia5O6R1Q==",
  3280. "path": "microsoft.aspnetcore.razor.design/2.1.2",
  3281. "hashPath": "microsoft.aspnetcore.razor.design.2.1.2.nupkg.sha512"
  3282. },
  3283. "Microsoft.AspNetCore.StaticFiles/2.2.0-preview3-35497": {
  3284. "type": "package",
  3285. "serviceable": true,
  3286. "sha512": "sha512-tYJKU1gGreLKXc+/BYlz2mhdMKUH9QCYcui6tDGcb1iDGczDrLWDe2fMjTMj1mC2yXnc5xke1RuvdYGwn9eL5Q==",
  3287. "path": "microsoft.aspnetcore.staticfiles/2.2.0-preview3-35497",
  3288. "hashPath": "microsoft.aspnetcore.staticfiles.2.2.0-preview3-35497.nupkg.sha512"
  3289. },
  3290. "Microsoft.Extensions.Configuration/2.2.0-preview3-35497": {
  3291. "type": "package",
  3292. "serviceable": true,
  3293. "sha512": "sha512-MqoNoaAckbH2JKcr+JvjmSOjXhZJD6lovlV1Eha/wM9cc70VOCkgR+J7j72apMQP4cNAb4cdy0fZqXRt11npkg==",
  3294. "path": "microsoft.extensions.configuration/2.2.0-preview3-35497",
  3295. "hashPath": "microsoft.extensions.configuration.2.2.0-preview3-35497.nupkg.sha512"
  3296. },
  3297. "Microsoft.Extensions.Configuration.Abstractions/2.2.0-preview3-35497": {
  3298. "type": "package",
  3299. "serviceable": true,
  3300. "sha512": "sha512-2htmHv8wTCIO5p3VI4NRHbFlVfM+0ChaP5YfJ4dSNs2Rx/MlVi/ty6R5yboYSz5Tpf2SVzPNSPWCNJ/d8PVvQw==",
  3301. "path": "microsoft.extensions.configuration.abstractions/2.2.0-preview3-35497",
  3302. "hashPath": "microsoft.extensions.configuration.abstractions.2.2.0-preview3-35497.nupkg.sha512"
  3303. },
  3304. "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0-preview3-35497": {
  3305. "type": "package",
  3306. "serviceable": true,
  3307. "sha512": "sha512-t+jRjqu4Zuih00dnl/1vqglQKPsma63AaZ3su+6irrLZ+gvw/xD3s0OOzEryQ6GKYjREkGijaJ4tPcLD6SAf6A==",
  3308. "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0-preview3-35497",
  3309. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.2.0-preview3-35497.nupkg.sha512"
  3310. },
  3311. "Microsoft.Extensions.FileProviders.Abstractions/2.2.0-preview3-35497": {
  3312. "type": "package",
  3313. "serviceable": true,
  3314. "sha512": "sha512-5whNSz5lXvF5D9r+6o8S5tphVJUnPh74hFv9Z2QIUHCF/vJ1eADpQ/rXR0KOTyk0sCXileDmAEZbxzCGqAfjXA==",
  3315. "path": "microsoft.extensions.fileproviders.abstractions/2.2.0-preview3-35497",
  3316. "hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0-preview3-35497.nupkg.sha512"
  3317. },
  3318. "Microsoft.Extensions.Hosting.Abstractions/2.2.0-preview3-35497": {
  3319. "type": "package",
  3320. "serviceable": true,
  3321. "sha512": "sha512-7VO4bdSQC8lSWy+8fKSXsoVuqqAald6fUTQJ1O7ww8/W7SUIi9FDw7CkHuhWklzKUDu4r4DRESjypuURbL/AvQ==",
  3322. "path": "microsoft.extensions.hosting.abstractions/2.2.0-preview3-35497",
  3323. "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0-preview3-35497.nupkg.sha512"
  3324. },
  3325. "Microsoft.Extensions.Logging.Abstractions/2.2.0-preview3-35497": {
  3326. "type": "package",
  3327. "serviceable": true,
  3328. "sha512": "sha512-m4T3nmyaqMCR7NEPEdOnDMQOKpeFjNLN2LEIhViF6S0LI3y30J2EmFVWhVhGmW6jyOyhZXy5gbymd6eon6XJWw==",
  3329. "path": "microsoft.extensions.logging.abstractions/2.2.0-preview3-35497",
  3330. "hashPath": "microsoft.extensions.logging.abstractions.2.2.0-preview3-35497.nupkg.sha512"
  3331. },
  3332. "Microsoft.Extensions.Options/2.2.0-preview3-35497": {
  3333. "type": "package",
  3334. "serviceable": true,
  3335. "sha512": "sha512-YklFzw3r6wSSv7B1vKhtwPPqwz3TPMMpgkH5FH4nRE5wQXTWUgnZPDiN2KmLANFOffg2xJmw6Aq4JsEjeCv79g==",
  3336. "path": "microsoft.extensions.options/2.2.0-preview3-35497",
  3337. "hashPath": "microsoft.extensions.options.2.2.0-preview3-35497.nupkg.sha512"
  3338. },
  3339. "Microsoft.Extensions.Primitives/2.2.0-preview3-35497": {
  3340. "type": "package",
  3341. "serviceable": true,
  3342. "sha512": "sha512-+IF1kn9v+Yaj9cnOiVfIYgkD70R5lZwoPwvCx42Jphex4XyI/kbO+/8itgwcFMvHxRseDSsmCk4Cbz7665mS3A==",
  3343. "path": "microsoft.extensions.primitives/2.2.0-preview3-35497",
  3344. "hashPath": "microsoft.extensions.primitives.2.2.0-preview3-35497.nupkg.sha512"
  3345. },
  3346. "Microsoft.Extensions.WebEncoders/2.2.0-preview3-35497": {
  3347. "type": "package",
  3348. "serviceable": true,
  3349. "sha512": "sha512-sra//CnUL9hVT4d0QReA3sUNZzOh6fgQ0ezJudNqgtjVmnXlKKsaOYtwlV1Ni854aKPsLqAGNFmNYhyvieBAfQ==",
  3350. "path": "microsoft.extensions.webencoders/2.2.0-preview3-35497",
  3351. "hashPath": "microsoft.extensions.webencoders.2.2.0-preview3-35497.nupkg.sha512"
  3352. },
  3353. "Microsoft.Net.Http.Headers/2.2.0-preview3-35497": {
  3354. "type": "package",
  3355. "serviceable": true,
  3356. "sha512": "sha512-Q9Z8hwsWk0OInRGmrpbWiKVgUAZ2ywPyvnb3+EwalB74vWGM9Sw1OmKqYJXGujObeY7AlBkkrURTjBg2Jgl1hA==",
  3357. "path": "microsoft.net.http.headers/2.2.0-preview3-35497",
  3358. "hashPath": "microsoft.net.http.headers.2.2.0-preview3-35497.nupkg.sha512"
  3359. },
  3360. "Microsoft.NETCore.App/2.1.0": {
  3361. "type": "package",
  3362. "serviceable": true,
  3363. "sha512": "sha512-AvT774nTFgU8cYcGO9j1EMwuayKslxqYTurg32HGpWa2hEYNuW2+XgYVVNcZe6Ndbr84QX6fwaOZfd5n+1m2OA==",
  3364. "path": "microsoft.netcore.app/2.1.0",
  3365. "hashPath": "microsoft.netcore.app.2.1.0.nupkg.sha512"
  3366. },
  3367. "Microsoft.NETCore.DotNetAppHost/2.1.0": {
  3368. "type": "package",
  3369. "serviceable": true,
  3370. "sha512": "sha512-f/47I60Wg3SrveTvnecCQhCZCAMYlUujWF15EQ/AZTqF/54qeEJjbCIAxKcZI8ToUYzSg6JdfrHggsgjCyCE9Q==",
  3371. "path": "microsoft.netcore.dotnetapphost/2.1.0",
  3372. "hashPath": "microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512"
  3373. },
  3374. "Microsoft.NETCore.DotNetHostPolicy/2.1.0": {
  3375. "type": "package",
  3376. "serviceable": true,
  3377. "sha512": "sha512-p50yZYKzhH64lmArJgoKjtvsNehECa+/sAuOQzZh5uDNBTbRKxjN8IXP1e517xdVsgrFcSNxSEVDKZIOWVjGcQ==",
  3378. "path": "microsoft.netcore.dotnethostpolicy/2.1.0",
  3379. "hashPath": "microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512"
  3380. },
  3381. "Microsoft.NETCore.DotNetHostResolver/2.1.0": {
  3382. "type": "package",
  3383. "serviceable": true,
  3384. "sha512": "sha512-fS9D8a+y55n6mHMbNqgHXaPGkjmpVH9h97OyrBxsCuo3Z8aQaFMJ5xIfmzji2ntUd/3truhMbSgSfIelHOkQpg==",
  3385. "path": "microsoft.netcore.dotnethostresolver/2.1.0",
  3386. "hashPath": "microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512"
  3387. },
  3388. "Microsoft.NETCore.Platforms/2.1.0": {
  3389. "type": "package",
  3390. "serviceable": true,
  3391. "sha512": "sha512-TT+QCi9LcxGTjBssH7S7n5+8DVcwfG4DYgXX7Dk7+BfZ4oVHj8Q0CbYk9glzAlHLsSt3bYzol+fOdra2iu6GOw==",
  3392. "path": "microsoft.netcore.platforms/2.1.0",
  3393. "hashPath": "microsoft.netcore.platforms.2.1.0.nupkg.sha512"
  3394. },
  3395. "Microsoft.NETCore.Targets/2.1.0": {
  3396. "type": "package",
  3397. "serviceable": true,
  3398. "sha512": "sha512-etaYwrLZQUS+b3UWTpCnUggd6SQ/ZIkZ5pHnoR7+dIWt/wp2Rv3CvMKOZISsrt7FYCHKwCxfcepuuyEWkQxADg==",
  3399. "path": "microsoft.netcore.targets/2.1.0",
  3400. "hashPath": "microsoft.netcore.targets.2.1.0.nupkg.sha512"
  3401. },
  3402. "NETStandard.Library/2.0.3": {
  3403. "type": "package",
  3404. "serviceable": true,
  3405. "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
  3406. "path": "netstandard.library/2.0.3",
  3407. "hashPath": "netstandard.library.2.0.3.nupkg.sha512"
  3408. },
  3409. "Microsoft.AspNet.WebApi.Client/5.2.6": {
  3410. "type": "package",
  3411. "serviceable": true,
  3412. "sha512": "sha512-rMDlyePoxggkmN/qgha1+BR2Uy+dOr38xKCQOPfVNKGY07R2nYJGMTKJFE1XFgwD70RYUNazf2fqutjJF18XgQ==",
  3413. "path": "microsoft.aspnet.webapi.client/5.2.6",
  3414. "hashPath": "microsoft.aspnet.webapi.client.5.2.6.nupkg.sha512"
  3415. },
  3416. "Microsoft.AspNetCore/2.1.1": {
  3417. "type": "package",
  3418. "serviceable": true,
  3419. "sha512": "sha512-YN6f5seFJb8EzODtccEnSW73q7yS6kgozun/TDAJQK4vbWG/PK9WKR2dPO1pXkrDlau3f/8yTRzof+j3hsDLOw==",
  3420. "path": "microsoft.aspnetcore/2.1.1",
  3421. "hashPath": "microsoft.aspnetcore.2.1.1.nupkg.sha512"
  3422. },
  3423. "Microsoft.AspNetCore.Antiforgery/2.1.1": {
  3424. "type": "package",
  3425. "serviceable": true,
  3426. "sha512": "sha512-BKDp2thf1k3Q2XBSIxC0TvHLvGFOr3ga3DdsxOJNTQ2MEvCuqlNFAoBxXIXWtvP9EHNfLbmKA0+VF7nBqXTlYg==",
  3427. "path": "microsoft.aspnetcore.antiforgery/2.1.1",
  3428. "hashPath": "microsoft.aspnetcore.antiforgery.2.1.1.nupkg.sha512"
  3429. },
  3430. "Microsoft.AspNetCore.App/2.1.1": {
  3431. "type": "package",
  3432. "serviceable": true,
  3433. "sha512": "sha512-PR5ozWADVe9vPfJj5gbp+JRMKu/6q8Mc6Sq0S1wLJITXDcVzsXYEvmVVS+bBXkJtlIqenNPsEcDSX2oKBJsvsQ==",
  3434. "path": "microsoft.aspnetcore.app/2.1.1",
  3435. "hashPath": "microsoft.aspnetcore.app.2.1.1.nupkg.sha512"
  3436. },
  3437. "Microsoft.AspNetCore.Authentication/2.1.1": {
  3438. "type": "package",
  3439. "serviceable": true,
  3440. "sha512": "sha512-WgbDLOGoyX0/EoUdAlihMaKIpON6LwCYZ8fiPhZZe+qdCJhvl1aTBmJ/carHcv3NJGT+ETuq2ppYQr7PKLq1CQ==",
  3441. "path": "microsoft.aspnetcore.authentication/2.1.1",
  3442. "hashPath": "microsoft.aspnetcore.authentication.2.1.1.nupkg.sha512"
  3443. },
  3444. "Microsoft.AspNetCore.Authentication.Abstractions/2.1.1": {
  3445. "type": "package",
  3446. "serviceable": true,
  3447. "sha512": "sha512-kl1yZmNeUMm9/kWtqoOvIATBavqHPwJICl0FA9rpvNqETqeTgakAbbY25TdG82wKKbjo4LpqZ0YCHwktNPaR2Q==",
  3448. "path": "microsoft.aspnetcore.authentication.abstractions/2.1.1",
  3449. "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.1.1.nupkg.sha512"
  3450. },
  3451. "Microsoft.AspNetCore.Authentication.Cookies/2.1.1": {
  3452. "type": "package",
  3453. "serviceable": true,
  3454. "sha512": "sha512-Yz9dgcZvZ+OJjJ8ZX/+DtgY0+9ZuKzNO0cHkDUdQubY4W4Ozn5e194s70lNQiiEGJjah9hd/5yuayPAePiz7DQ==",
  3455. "path": "microsoft.aspnetcore.authentication.cookies/2.1.1",
  3456. "hashPath": "microsoft.aspnetcore.authentication.cookies.2.1.1.nupkg.sha512"
  3457. },
  3458. "Microsoft.AspNetCore.Authentication.Core/2.1.1": {
  3459. "type": "package",
  3460. "serviceable": true,
  3461. "sha512": "sha512-I7CfHtUAwVH67ayCG9ZrkRI5si0yOlttb0ltMR36dMwXfPR9CYab0o9PyWfTOfGIT9VQ+UgAEH9U9+jVoEjPeg==",
  3462. "path": "microsoft.aspnetcore.authentication.core/2.1.1",
  3463. "hashPath": "microsoft.aspnetcore.authentication.core.2.1.1.nupkg.sha512"
  3464. },
  3465. "Microsoft.AspNetCore.Authentication.Facebook/2.1.1": {
  3466. "type": "package",
  3467. "serviceable": true,
  3468. "sha512": "sha512-Zx6Gr6Ks3EyG8MlaTVM/XHlO7nZDbnoPy4Umv/Nh80DLgciWilITwTNmNtILxPCivW+qzn8NySjqbFvCLJwBVw==",
  3469. "path": "microsoft.aspnetcore.authentication.facebook/2.1.1",
  3470. "hashPath": "microsoft.aspnetcore.authentication.facebook.2.1.1.nupkg.sha512"
  3471. },
  3472. "Microsoft.AspNetCore.Authentication.Google/2.1.1": {
  3473. "type": "package",
  3474. "serviceable": true,
  3475. "sha512": "sha512-08ivngAB+2CgVteg2q/dd+M+MAAKi0mJZmbRwghZefRQrIG0YSK2pCINHhUtDBsOTVrWQCgQiwcZwCKTMwfKrg==",
  3476. "path": "microsoft.aspnetcore.authentication.google/2.1.1",
  3477. "hashPath": "microsoft.aspnetcore.authentication.google.2.1.1.nupkg.sha512"
  3478. },
  3479. "Microsoft.AspNetCore.Authentication.JwtBearer/2.1.1": {
  3480. "type": "package",
  3481. "serviceable": true,
  3482. "sha512": "sha512-u4lJIWhWp2+YIOofX98LwvK1dDuaMBwkNmDk8IDurTv8AivWdTDGocyBC5Guzxf6vb9DvILM+8JEzmzkUWhJIg==",
  3483. "path": "microsoft.aspnetcore.authentication.jwtbearer/2.1.1",
  3484. "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.2.1.1.nupkg.sha512"
  3485. },
  3486. "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.1.1": {
  3487. "type": "package",
  3488. "serviceable": true,
  3489. "sha512": "sha512-5Fd5ei39mXQLAkTlrI95mW+zyOGgzVgz9KgB8Jq1jMa99Mgf2e90oKLqKLAsSBSqZ8Qx3DLlbVC81+28mnjK9g==",
  3490. "path": "microsoft.aspnetcore.authentication.microsoftaccount/2.1.1",
  3491. "hashPath": "microsoft.aspnetcore.authentication.microsoftaccount.2.1.1.nupkg.sha512"
  3492. },
  3493. "Microsoft.AspNetCore.Authentication.OAuth/2.1.1": {
  3494. "type": "package",
  3495. "serviceable": true,
  3496. "sha512": "sha512-3WkJT0eUYBxox4ByRJO09gzq7vjYppxRuzl9lZu0nhur5paVD5ogSAFYMdfl4XQtN/Eq09X9xbB2USS6bth5qg==",
  3497. "path": "microsoft.aspnetcore.authentication.oauth/2.1.1",
  3498. "hashPath": "microsoft.aspnetcore.authentication.oauth.2.1.1.nupkg.sha512"
  3499. },
  3500. "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.1.1": {
  3501. "type": "package",
  3502. "serviceable": true,
  3503. "sha512": "sha512-3hUta6Wmi6LERPxV90YZhZTDg76MdWjy5Yl23RDmnnVuq4xQDua4tgyDqIweV5NwbIUgXQzdYgtMsJv4ipuldQ==",
  3504. "path": "microsoft.aspnetcore.authentication.openidconnect/2.1.1",
  3505. "hashPath": "microsoft.aspnetcore.authentication.openidconnect.2.1.1.nupkg.sha512"
  3506. },
  3507. "Microsoft.AspNetCore.Authentication.Twitter/2.1.1": {
  3508. "type": "package",
  3509. "serviceable": true,
  3510. "sha512": "sha512-XUw8+b3Q58kpR4wavOBbWg14ujUUSYTexZD6/lr6Luwg7pVlzLfW9OVKRSTtwSykjzTIwQ4ie1+Sz+ATn8mUQA==",
  3511. "path": "microsoft.aspnetcore.authentication.twitter/2.1.1",
  3512. "hashPath": "microsoft.aspnetcore.authentication.twitter.2.1.1.nupkg.sha512"
  3513. },
  3514. "Microsoft.AspNetCore.Authentication.WsFederation/2.1.1": {
  3515. "type": "package",
  3516. "serviceable": true,
  3517. "sha512": "sha512-wVunuX+o7ctflbHHnTt8rMSqAAApX46bNW7q6KFPOSjfoog2I7EPInGMpnlxwUKi5IcAZ1ml1kdaoRAYW+xjfQ==",
  3518. "path": "microsoft.aspnetcore.authentication.wsfederation/2.1.1",
  3519. "hashPath": "microsoft.aspnetcore.authentication.wsfederation.2.1.1.nupkg.sha512"
  3520. },
  3521. "Microsoft.AspNetCore.Authorization/2.1.1": {
  3522. "type": "package",
  3523. "serviceable": true,
  3524. "sha512": "sha512-z/5haIkI/G2NcCMO288l6l7Jy3BDqzZjHLb2VxjCfj4NKRVv6KlsDD7nGIyAtAbDVKnbOsGBXF6xwhyo4aFGBw==",
  3525. "path": "microsoft.aspnetcore.authorization/2.1.1",
  3526. "hashPath": "microsoft.aspnetcore.authorization.2.1.1.nupkg.sha512"
  3527. },
  3528. "Microsoft.AspNetCore.Authorization.Policy/2.1.1": {
  3529. "type": "package",
  3530. "serviceable": true,
  3531. "sha512": "sha512-ipuhLj35k90+q6GbBuJaouPDLGwaJilBUUE+y0rtGL+yncCtA1gYFrs3jZ+tRX/zNqlVtlAb1u7wXm5NJ/TkQw==",
  3532. "path": "microsoft.aspnetcore.authorization.policy/2.1.1",
  3533. "hashPath": "microsoft.aspnetcore.authorization.policy.2.1.1.nupkg.sha512"
  3534. },
  3535. "Microsoft.AspNetCore.Connections.Abstractions/2.1.1": {
  3536. "type": "package",
  3537. "serviceable": true,
  3538. "sha512": "sha512-F3+HhBB2Xh9EbJDLJq9PqKIvLiiFHWwoSU/LLjltbV/p0ch7fXCvmQqZV+p+Od/Gji2QsSwsr2EhVEA9FCZh1g==",
  3539. "path": "microsoft.aspnetcore.connections.abstractions/2.1.1",
  3540. "hashPath": "microsoft.aspnetcore.connections.abstractions.2.1.1.nupkg.sha512"
  3541. },
  3542. "Microsoft.AspNetCore.CookiePolicy/2.1.1": {
  3543. "type": "package",
  3544. "serviceable": true,
  3545. "sha512": "sha512-1VXR36rwz55yTA4z2S2C8/M2kkgMNMkiZi6YFyYBYSXKep3ekNgY75Y9zlkHJHiUiKXMj3nz1fHNBohODbBLZg==",
  3546. "path": "microsoft.aspnetcore.cookiepolicy/2.1.1",
  3547. "hashPath": "microsoft.aspnetcore.cookiepolicy.2.1.1.nupkg.sha512"
  3548. },
  3549. "Microsoft.AspNetCore.Cors/2.1.1": {
  3550. "type": "package",
  3551. "serviceable": true,
  3552. "sha512": "sha512-ajz3/gjo4OYDFId5nJUrBAYJhKW3sJrK5+dLJ3ynTuVyGwY5me3QICukzMeADSKNV+JapSrPKLXIythHwDrQjA==",
  3553. "path": "microsoft.aspnetcore.cors/2.1.1",
  3554. "hashPath": "microsoft.aspnetcore.cors.2.1.1.nupkg.sha512"
  3555. },
  3556. "Microsoft.AspNetCore.Cryptography.Internal/2.1.1": {
  3557. "type": "package",
  3558. "serviceable": true,
  3559. "sha512": "sha512-9X49e4ZTv6ipL/Yh1GvVxpgh+ghWMHi+PPE3tQI2HRgG6Jixvmt8LgT/KvAvfgYEDnjsSTRyt/arrHsekHwfMA==",
  3560. "path": "microsoft.aspnetcore.cryptography.internal/2.1.1",
  3561. "hashPath": "microsoft.aspnetcore.cryptography.internal.2.1.1.nupkg.sha512"
  3562. },
  3563. "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.1.1": {
  3564. "type": "package",
  3565. "serviceable": true,
  3566. "sha512": "sha512-HqgqUlIbOUgCWcW51NyJuws2FcY4mCfhIFcw1+NnK+p3XwdYmJ/XI+Q/WM4GTshTh9Dgn1h7i/WsrzgQr/292g==",
  3567. "path": "microsoft.aspnetcore.cryptography.keyderivation/2.1.1",
  3568. "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.2.1.1.nupkg.sha512"
  3569. },
  3570. "Microsoft.AspNetCore.DataProtection/2.1.1": {
  3571. "type": "package",
  3572. "serviceable": true,
  3573. "sha512": "sha512-561yQw2Xu5DH05p6uv4G6dD0tfO2KeNuFz/kPREHHFzOk4PF3tdmH9LjCz2fX8eyOvgvfiLSib3atE7thRvZDQ==",
  3574. "path": "microsoft.aspnetcore.dataprotection/2.1.1",
  3575. "hashPath": "microsoft.aspnetcore.dataprotection.2.1.1.nupkg.sha512"
  3576. },
  3577. "Microsoft.AspNetCore.DataProtection.Abstractions/2.1.1": {
  3578. "type": "package",
  3579. "serviceable": true,
  3580. "sha512": "sha512-94UHZlJQUeCeCsrDNrEVDO7nOoFsr1KSetcHAttPA6DDe80XJ57wbWUpzxjoGRimoGG2yS95n7M0bueZCMD7ag==",
  3581. "path": "microsoft.aspnetcore.dataprotection.abstractions/2.1.1",
  3582. "hashPath": "microsoft.aspnetcore.dataprotection.abstractions.2.1.1.nupkg.sha512"
  3583. },
  3584. "Microsoft.AspNetCore.DataProtection.Extensions/2.1.1": {
  3585. "type": "package",
  3586. "serviceable": true,
  3587. "sha512": "sha512-kwZ6maQQXmDpGBL+XW2Hqvy2TUzON2h+9FG3b0b0wNnocNNCJ3SqgvuXxjMjkpGwD2oS9/BXb1XL7S17YPKBtw==",
  3588. "path": "microsoft.aspnetcore.dataprotection.extensions/2.1.1",
  3589. "hashPath": "microsoft.aspnetcore.dataprotection.extensions.2.1.1.nupkg.sha512"
  3590. },
  3591. "Microsoft.AspNetCore.Diagnostics/2.1.1": {
  3592. "type": "package",
  3593. "serviceable": true,
  3594. "sha512": "sha512-F9GjtKSe4HeOqZJjnnI110wDcvsY0aguALGswbr+R3iuw6X+Mzko7S/Vx7LxQXxInOCJoxnNEkd7Kf59dFFSRg==",
  3595. "path": "microsoft.aspnetcore.diagnostics/2.1.1",
  3596. "hashPath": "microsoft.aspnetcore.diagnostics.2.1.1.nupkg.sha512"
  3597. },
  3598. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.1.1": {
  3599. "type": "package",
  3600. "serviceable": true,
  3601. "sha512": "sha512-rLn97UtnaXvD1E8K2UFQg5MBZ/D6KLuMZEEt47qkIIEsEQar84yIlR3HdDDF7ovJ/Bg546EyJXHxXvi7t6G7yw==",
  3602. "path": "microsoft.aspnetcore.diagnostics.abstractions/2.1.1",
  3603. "hashPath": "microsoft.aspnetcore.diagnostics.abstractions.2.1.1.nupkg.sha512"
  3604. },
  3605. "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.1.1": {
  3606. "type": "package",
  3607. "serviceable": true,
  3608. "sha512": "sha512-gOlYU6k5UTARQKs1RefT03Z+J4+kCUeAcB13P2ytOeGoN9NXJ+1+4zIOlwbvUgsJwelBiW2XcpxlXzyaUvwe2A==",
  3609. "path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/2.1.1",
  3610. "hashPath": "microsoft.aspnetcore.diagnostics.entityframeworkcore.2.1.1.nupkg.sha512"
  3611. },
  3612. "Microsoft.AspNetCore.HostFiltering/2.1.1": {
  3613. "type": "package",
  3614. "serviceable": true,
  3615. "sha512": "sha512-j0EXj9gWL3I+66wlozjuefGmKnbK6CJUcpnczmenxkFOPhQ2/3T9m9I0pj8ztCfktbM22R/6Dzzt1QUz+mHtjw==",
  3616. "path": "microsoft.aspnetcore.hostfiltering/2.1.1",
  3617. "hashPath": "microsoft.aspnetcore.hostfiltering.2.1.1.nupkg.sha512"
  3618. },
  3619. "Microsoft.AspNetCore.Hosting/2.1.1": {
  3620. "type": "package",
  3621. "serviceable": true,
  3622. "sha512": "sha512-rO2JSJGuHJMYE68vm72bFI+PEj1e6zgv9r3izNMEMwyGtjsEDFSHALoGqffnehY63TKqpXdAKElKzPV0UYrMqA==",
  3623. "path": "microsoft.aspnetcore.hosting/2.1.1",
  3624. "hashPath": "microsoft.aspnetcore.hosting.2.1.1.nupkg.sha512"
  3625. },
  3626. "Microsoft.AspNetCore.Html.Abstractions/2.1.1": {
  3627. "type": "package",
  3628. "serviceable": true,
  3629. "sha512": "sha512-tPZG0aA3V8tljooIgKhAiVxu7ZnAnL7QPzz3uxQgs4v7vwwCZTigzh2PIL4QRtezlGFk1jn7PbOtxi+FsmEe0g==",
  3630. "path": "microsoft.aspnetcore.html.abstractions/2.1.1",
  3631. "hashPath": "microsoft.aspnetcore.html.abstractions.2.1.1.nupkg.sha512"
  3632. },
  3633. "Microsoft.AspNetCore.Http/2.1.1": {
  3634. "type": "package",
  3635. "serviceable": true,
  3636. "sha512": "sha512-u8Fmky/nirrxOU1gBGh97J5gPoniWDc1QiT+J0EFuXJWcFo3BgPGiv7RLvYCi89QpLgIt5CkkPqTkPnWz0eaSA==",
  3637. "path": "microsoft.aspnetcore.http/2.1.1",
  3638. "hashPath": "microsoft.aspnetcore.http.2.1.1.nupkg.sha512"
  3639. },
  3640. "Microsoft.AspNetCore.Http.Connections/1.0.1": {
  3641. "type": "package",
  3642. "serviceable": true,
  3643. "sha512": "sha512-VpNZjRdXDjiIb+ZmpjYChFWLYEv6344JjOHFjafq7Q2cQtXVC242BAvBuM+o3LeovPfMyZr3LSS54mRHXDpqxg==",
  3644. "path": "microsoft.aspnetcore.http.connections/1.0.1",
  3645. "hashPath": "microsoft.aspnetcore.http.connections.1.0.1.nupkg.sha512"
  3646. },
  3647. "Microsoft.AspNetCore.Http.Connections.Common/1.0.1": {
  3648. "type": "package",
  3649. "serviceable": true,
  3650. "sha512": "sha512-bWPi3xZNxTzobUldHtCixRwkJ3uCyCAMO7PVdtzVP3Sq1q5krRYM1EOR2d7h0AUT5uktRnpGz2yxqUYtb79fXg==",
  3651. "path": "microsoft.aspnetcore.http.connections.common/1.0.1",
  3652. "hashPath": "microsoft.aspnetcore.http.connections.common.1.0.1.nupkg.sha512"
  3653. },
  3654. "Microsoft.AspNetCore.HttpOverrides/2.1.1": {
  3655. "type": "package",
  3656. "serviceable": true,
  3657. "sha512": "sha512-BiIpB0HjMUq1nc45ss4N9A4KbxUgyBWemXEdA5Iv1VQZDy3gUI/eR3+Ist9Oo1ATA7LxXgJ++LGSrCVN2UWYNg==",
  3658. "path": "microsoft.aspnetcore.httpoverrides/2.1.1",
  3659. "hashPath": "microsoft.aspnetcore.httpoverrides.2.1.1.nupkg.sha512"
  3660. },
  3661. "Microsoft.AspNetCore.HttpsPolicy/2.1.1": {
  3662. "type": "package",
  3663. "serviceable": true,
  3664. "sha512": "sha512-8pHFcicNlPyEuPsjsUHpROdAHmM0j+StbRekbncft/5kbMKPVJAp7y6PusFbYmizOVXNKGKfHNwo3UA/lG5Ckw==",
  3665. "path": "microsoft.aspnetcore.httpspolicy/2.1.1",
  3666. "hashPath": "microsoft.aspnetcore.httpspolicy.2.1.1.nupkg.sha512"
  3667. },
  3668. "Microsoft.AspNetCore.Identity/2.1.1": {
  3669. "type": "package",
  3670. "serviceable": true,
  3671. "sha512": "sha512-bTnsTimS6tFwZXDWPgexZo9gzr2jLuCEHRV8ib8gjMzR6TzQ/3/tl5lxP72Db446PJl1s479Qj1rnflQc6+PSw==",
  3672. "path": "microsoft.aspnetcore.identity/2.1.1",
  3673. "hashPath": "microsoft.aspnetcore.identity.2.1.1.nupkg.sha512"
  3674. },
  3675. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.1.1": {
  3676. "type": "package",
  3677. "serviceable": true,
  3678. "sha512": "sha512-0Xd+Q8uwwPnj7rt95h5p1FQFClwLMHwnGxZykK/GM9Wkttw5AE47yXvNKlkgM+GPyDhhB6JWd+w+aiOwLfG0jA==",
  3679. "path": "microsoft.aspnetcore.identity.entityframeworkcore/2.1.1",
  3680. "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.2.1.1.nupkg.sha512"
  3681. },
  3682. "Microsoft.AspNetCore.Identity.UI/2.1.1": {
  3683. "type": "package",
  3684. "serviceable": true,
  3685. "sha512": "sha512-Mw+WI+OUhgSvatpqYZY0FJx2ri1THLFHQZsYlOfNa1AB4j/Qx6RpkV9iFB9iopNM1I+iviHeiHY0Nw6WqQXIUA==",
  3686. "path": "microsoft.aspnetcore.identity.ui/2.1.1",
  3687. "hashPath": "microsoft.aspnetcore.identity.ui.2.1.1.nupkg.sha512"
  3688. },
  3689. "Microsoft.AspNetCore.JsonPatch/2.1.1": {
  3690. "type": "package",
  3691. "serviceable": true,
  3692. "sha512": "sha512-T5kx4u+0CH5bD3hB+QEozR4MmLZ7CDGdm0+OD1wxyQBJKNNA6jRSJmbvsZ8nmOEwoGtAfHdXLYM0r3/Zw6J4JQ==",
  3693. "path": "microsoft.aspnetcore.jsonpatch/2.1.1",
  3694. "hashPath": "microsoft.aspnetcore.jsonpatch.2.1.1.nupkg.sha512"
  3695. },
  3696. "Microsoft.AspNetCore.Localization/2.1.1": {
  3697. "type": "package",
  3698. "serviceable": true,
  3699. "sha512": "sha512-oy13Ppp0iBLHAzq03R5tEBNTAfatboreqW7YEMhVA2fu6L0KLmBk3njHc0FJaFnwZwCbmPnRtr81J8A7NWqQuQ==",
  3700. "path": "microsoft.aspnetcore.localization/2.1.1",
  3701. "hashPath": "microsoft.aspnetcore.localization.2.1.1.nupkg.sha512"
  3702. },
  3703. "Microsoft.AspNetCore.Localization.Routing/2.1.1": {
  3704. "type": "package",
  3705. "serviceable": true,
  3706. "sha512": "sha512-aINDrKmXV4PkqYsIOKv3Y5Mqg8/dVBAvKmubT0jEpdX18dSeUNKdhOSjadGUYgwUmu11bsqFeplo7gYGcbK8TA==",
  3707. "path": "microsoft.aspnetcore.localization.routing/2.1.1",
  3708. "hashPath": "microsoft.aspnetcore.localization.routing.2.1.1.nupkg.sha512"
  3709. },
  3710. "Microsoft.AspNetCore.MiddlewareAnalysis/2.1.1": {
  3711. "type": "package",
  3712. "serviceable": true,
  3713. "sha512": "sha512-qEH68Ps12p0xCEf68ZEWVTWRqvxJAr0Fy1JivDx80d4GSFN9WdDuljVAYCeE6S3tExBQx2m7/o9P/TGbmRfIUw==",
  3714. "path": "microsoft.aspnetcore.middlewareanalysis/2.1.1",
  3715. "hashPath": "microsoft.aspnetcore.middlewareanalysis.2.1.1.nupkg.sha512"
  3716. },
  3717. "Microsoft.AspNetCore.Mvc/2.1.1": {
  3718. "type": "package",
  3719. "serviceable": true,
  3720. "sha512": "sha512-3mHitdj9MClvbFThDsVhojGH2PxWWxhJNFzFwNnofSdORrnRby9bikM+HCqUOz2gvxnyYz5jsgbA88+CGkNy4A==",
  3721. "path": "microsoft.aspnetcore.mvc/2.1.1",
  3722. "hashPath": "microsoft.aspnetcore.mvc.2.1.1.nupkg.sha512"
  3723. },
  3724. "Microsoft.AspNetCore.Mvc.Abstractions/2.1.1": {
  3725. "type": "package",
  3726. "serviceable": true,
  3727. "sha512": "sha512-/XgeeXi0LrykMlMCNMQftj2XyEua4JT5AFAt3D3xE6KChx0PydXTFiwQtDvbGpNvarPQWWdyEfq1rKlgyVGlXA==",
  3728. "path": "microsoft.aspnetcore.mvc.abstractions/2.1.1",
  3729. "hashPath": "microsoft.aspnetcore.mvc.abstractions.2.1.1.nupkg.sha512"
  3730. },
  3731. "Microsoft.AspNetCore.Mvc.Analyzers/2.1.1": {
  3732. "type": "package",
  3733. "serviceable": true,
  3734. "sha512": "sha512-TNWptMY99Iojeihp2MBxZhOb2IhZMMGtXxg5wy/Z2Bsb/MeQiazIFyiAjKFBY9ccq3Qd23EEjJAReYQClFjvmQ==",
  3735. "path": "microsoft.aspnetcore.mvc.analyzers/2.1.1",
  3736. "hashPath": "microsoft.aspnetcore.mvc.analyzers.2.1.1.nupkg.sha512"
  3737. },
  3738. "Microsoft.AspNetCore.Mvc.ApiExplorer/2.1.1": {
  3739. "type": "package",
  3740. "serviceable": true,
  3741. "sha512": "sha512-GGPbYZfzJvu6rigtCN0FRQD4B8ERmMO+grCyf/lfQhmqK9cTfhDcU8Zfw75SXrQ3Ity1lSvYpf26XeFVIi5Y5A==",
  3742. "path": "microsoft.aspnetcore.mvc.apiexplorer/2.1.1",
  3743. "hashPath": "microsoft.aspnetcore.mvc.apiexplorer.2.1.1.nupkg.sha512"
  3744. },
  3745. "Microsoft.AspNetCore.Mvc.Core/2.1.1": {
  3746. "type": "package",
  3747. "serviceable": true,
  3748. "sha512": "sha512-QoYLsJHrN7LNnL1LWzSGzQm3v/1ERI5csb4LSzNYm71EcCG8SWckw76GgXNx6mjsJXfxsvoqRAovnLQKCCBtvA==",
  3749. "path": "microsoft.aspnetcore.mvc.core/2.1.1",
  3750. "hashPath": "microsoft.aspnetcore.mvc.core.2.1.1.nupkg.sha512"
  3751. },
  3752. "Microsoft.AspNetCore.Mvc.Cors/2.1.1": {
  3753. "type": "package",
  3754. "serviceable": true,
  3755. "sha512": "sha512-a04jcvPbG6IfaugJe3CS59ZhSRAVLmwVEGDLp4wGuR4/9yW3T4mCZgqcSQz+5921j/hRGn1Jwu/b05bWkg+wBg==",
  3756. "path": "microsoft.aspnetcore.mvc.cors/2.1.1",
  3757. "hashPath": "microsoft.aspnetcore.mvc.cors.2.1.1.nupkg.sha512"
  3758. },
  3759. "Microsoft.AspNetCore.Mvc.DataAnnotations/2.1.1": {
  3760. "type": "package",
  3761. "serviceable": true,
  3762. "sha512": "sha512-3/LdPk7u3VitfUxVu+forzb+YFa/G4tqFDQKG20mMHrAnE7ranDUhqURD7qoy8JFLRWdhvvdBhUJaATfvvmTVg==",
  3763. "path": "microsoft.aspnetcore.mvc.dataannotations/2.1.1",
  3764. "hashPath": "microsoft.aspnetcore.mvc.dataannotations.2.1.1.nupkg.sha512"
  3765. },
  3766. "Microsoft.AspNetCore.Mvc.Formatters.Json/2.1.1": {
  3767. "type": "package",
  3768. "serviceable": true,
  3769. "sha512": "sha512-nBzpBR0Ei/4L63+ylGS6P4gP+u+/S1cIvUU4+G+4Rk+vtzNT5KsoFP9TfCvW8hGQ6ShehjT7wXMuci/D2SbCQQ==",
  3770. "path": "microsoft.aspnetcore.mvc.formatters.json/2.1.1",
  3771. "hashPath": "microsoft.aspnetcore.mvc.formatters.json.2.1.1.nupkg.sha512"
  3772. },
  3773. "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.1.1": {
  3774. "type": "package",
  3775. "serviceable": true,
  3776. "sha512": "sha512-WgK7shj6rok4qc0Jc2yOCltN+XO81gP4IVTlXU8vS6AHHKVt6m0UN8mirgcZCRetUnY466hnZNyPHHq/a+7zWw==",
  3777. "path": "microsoft.aspnetcore.mvc.formatters.xml/2.1.1",
  3778. "hashPath": "microsoft.aspnetcore.mvc.formatters.xml.2.1.1.nupkg.sha512"
  3779. },
  3780. "Microsoft.AspNetCore.Mvc.Localization/2.1.1": {
  3781. "type": "package",
  3782. "serviceable": true,
  3783. "sha512": "sha512-JN/d/T8JUYoF/YMBupIu92ZcP9PcYfLLQqIZWvfyJrNNftgXENAHMLn1999POEzG44RjGouWdioSH8QZJ1mTTQ==",
  3784. "path": "microsoft.aspnetcore.mvc.localization/2.1.1",
  3785. "hashPath": "microsoft.aspnetcore.mvc.localization.2.1.1.nupkg.sha512"
  3786. },
  3787. "Microsoft.AspNetCore.Mvc.Razor/2.1.1": {
  3788. "type": "package",
  3789. "serviceable": true,
  3790. "sha512": "sha512-9WCfQX8+xZN8pzRK8ZxCJw/3lpsKsg3iQvFr6CRz4UtayLEoq/uzLKL5xvY8fj1rVJjt3wBh+YBhheB/196QSg==",
  3791. "path": "microsoft.aspnetcore.mvc.razor/2.1.1",
  3792. "hashPath": "microsoft.aspnetcore.mvc.razor.2.1.1.nupkg.sha512"
  3793. },
  3794. "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.1.1": {
  3795. "type": "package",
  3796. "serviceable": true,
  3797. "sha512": "sha512-w/4GAxZS5y9CnlIO4z04sC7I+cLVVYsvI+hC+Thh2vy5AQxNZj9ZIxmdIPtvqQfZ2JdURQ7cpBsr8pzf4YhTEA==",
  3798. "path": "microsoft.aspnetcore.mvc.razor.extensions/2.1.1",
  3799. "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.2.1.1.nupkg.sha512"
  3800. },
  3801. "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.1.1": {
  3802. "type": "package",
  3803. "serviceable": true,
  3804. "sha512": "sha512-9fZ7Ut3yhJZUzf0yI8OBeQhN2CdJOcITVbwvM58Xe5L/Ws+Xh3BRsCYzWzj6UvstdZXs47pkZZkGABE2rqQ4zQ==",
  3805. "path": "microsoft.aspnetcore.mvc.razor.viewcompilation/2.1.1",
  3806. "hashPath": "microsoft.aspnetcore.mvc.razor.viewcompilation.2.1.1.nupkg.sha512"
  3807. },
  3808. "Microsoft.AspNetCore.Mvc.RazorPages/2.1.1": {
  3809. "type": "package",
  3810. "serviceable": true,
  3811. "sha512": "sha512-icxhGYO1z5IQsrmJhbIJUHM2a0mTK7g1kdPR/mnB5L4r35im8ElX0449AFN3KlA0C00E6mzXVe1CCJ3wO+TUxQ==",
  3812. "path": "microsoft.aspnetcore.mvc.razorpages/2.1.1",
  3813. "hashPath": "microsoft.aspnetcore.mvc.razorpages.2.1.1.nupkg.sha512"
  3814. },
  3815. "Microsoft.AspNetCore.Mvc.TagHelpers/2.1.1": {
  3816. "type": "package",
  3817. "serviceable": true,
  3818. "sha512": "sha512-wLHZ9TUdD9Gl2rVihrNGmRJ1LGTjiRzPM4d78efClOpFJwhMaHCnr9ktfQhnJX4XQj0w22XvPPCV0GxSrVp4Lg==",
  3819. "path": "microsoft.aspnetcore.mvc.taghelpers/2.1.1",
  3820. "hashPath": "microsoft.aspnetcore.mvc.taghelpers.2.1.1.nupkg.sha512"
  3821. },
  3822. "Microsoft.AspNetCore.Mvc.ViewFeatures/2.1.1": {
  3823. "type": "package",
  3824. "serviceable": true,
  3825. "sha512": "sha512-4F4uu3Hh5pgQ/2XkKgG2XEfPIvzUUjpOrSPIdOpMzxloTfYM/jK6xEW6kM9DE5vYhyW9EE02sngRBh8cmU0vng==",
  3826. "path": "microsoft.aspnetcore.mvc.viewfeatures/2.1.1",
  3827. "hashPath": "microsoft.aspnetcore.mvc.viewfeatures.2.1.1.nupkg.sha512"
  3828. },
  3829. "Microsoft.AspNetCore.NodeServices/2.1.1": {
  3830. "type": "package",
  3831. "serviceable": true,
  3832. "sha512": "sha512-/9VSehGhQMV8tz+ddKl6jt8IorFlGGtc/7kEDyfcGWGgsE8WswlfszIRxGMa4BWrhaWovQVteshQCyBBqEG6/g==",
  3833. "path": "microsoft.aspnetcore.nodeservices/2.1.1",
  3834. "hashPath": "microsoft.aspnetcore.nodeservices.2.1.1.nupkg.sha512"
  3835. },
  3836. "Microsoft.AspNetCore.Owin/2.1.1": {
  3837. "type": "package",
  3838. "serviceable": true,
  3839. "sha512": "sha512-X6M3UwpwYcBK33mCp/xa9kcMKgfxZnMd4+q8RWGpLWI2Gy5V0jri0+HFfgHVXc9pVkKOrEHGn1K6Z+iT4nibWA==",
  3840. "path": "microsoft.aspnetcore.owin/2.1.1",
  3841. "hashPath": "microsoft.aspnetcore.owin.2.1.1.nupkg.sha512"
  3842. },
  3843. "Microsoft.AspNetCore.Razor/2.1.1": {
  3844. "type": "package",
  3845. "serviceable": true,
  3846. "sha512": "sha512-oDxJTufrOF2Y7g+p2jU5+2xtrcsb3KX20pH/KosLW5rbsJMAqaOwprI6gJlBQCGtMCYl/MbnC45ZObPmzyI0NQ==",
  3847. "path": "microsoft.aspnetcore.razor/2.1.1",
  3848. "hashPath": "microsoft.aspnetcore.razor.2.1.1.nupkg.sha512"
  3849. },
  3850. "Microsoft.AspNetCore.Razor.Language/2.1.1": {
  3851. "type": "package",
  3852. "serviceable": true,
  3853. "sha512": "sha512-5HX7/SguN9F8cdJ6GBBFJauEii/k6XPuI1gHucOcOBKKetgm4nG/xrHzRGSBTxmc1rbCcVKrBl10/PYItE7JyA==",
  3854. "path": "microsoft.aspnetcore.razor.language/2.1.1",
  3855. "hashPath": "microsoft.aspnetcore.razor.language.2.1.1.nupkg.sha512"
  3856. },
  3857. "Microsoft.AspNetCore.Razor.Runtime/2.1.1": {
  3858. "type": "package",
  3859. "serviceable": true,
  3860. "sha512": "sha512-dGublvci7Lwu8gAegh81YXATyKGupWHb5RDHPsIO/Ct++xG7Lv9/6nNbci05sqYienZgprDbTAH8G7PmBCpIKQ==",
  3861. "path": "microsoft.aspnetcore.razor.runtime/2.1.1",
  3862. "hashPath": "microsoft.aspnetcore.razor.runtime.2.1.1.nupkg.sha512"
  3863. },
  3864. "Microsoft.AspNetCore.ResponseCaching/2.1.1": {
  3865. "type": "package",
  3866. "serviceable": true,
  3867. "sha512": "sha512-w3pH2ex82TdMRexWxXIr7EpdE0LJB0/EE/jlU1t+VltijKot7KrSSR5cxYBCafL7WmxjHfVnGKq0eVosxh7MvA==",
  3868. "path": "microsoft.aspnetcore.responsecaching/2.1.1",
  3869. "hashPath": "microsoft.aspnetcore.responsecaching.2.1.1.nupkg.sha512"
  3870. },
  3871. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.1.1": {
  3872. "type": "package",
  3873. "serviceable": true,
  3874. "sha512": "sha512-F2/eDBTwGdTdQ+YPrlf7DBprzbHVZmZqnCTkHT6Jge7MQDu0xgUmDfNyBUzg9jn38RSKnDp6RWLQSJ6yqsYdIQ==",
  3875. "path": "microsoft.aspnetcore.responsecaching.abstractions/2.1.1",
  3876. "hashPath": "microsoft.aspnetcore.responsecaching.abstractions.2.1.1.nupkg.sha512"
  3877. },
  3878. "Microsoft.AspNetCore.ResponseCompression/2.1.1": {
  3879. "type": "package",
  3880. "serviceable": true,
  3881. "sha512": "sha512-jJWsmkyWdmd74kNCZy9qoAMTL6bbYMqPPRRket07kpjm1IWcbW833IuhcE6t+wCC/Wrs8ECyMwRHFtvQUxkV2g==",
  3882. "path": "microsoft.aspnetcore.responsecompression/2.1.1",
  3883. "hashPath": "microsoft.aspnetcore.responsecompression.2.1.1.nupkg.sha512"
  3884. },
  3885. "Microsoft.AspNetCore.Rewrite/2.1.1": {
  3886. "type": "package",
  3887. "serviceable": true,
  3888. "sha512": "sha512-PWragHOb23NSybDojbJGezzXr0dl/1VwQME3YR5jH3Yanl9CmO8Uuak72L1dCbiASMOKBFnR+gr6YIymDrXaXw==",
  3889. "path": "microsoft.aspnetcore.rewrite/2.1.1",
  3890. "hashPath": "microsoft.aspnetcore.rewrite.2.1.1.nupkg.sha512"
  3891. },
  3892. "Microsoft.AspNetCore.Routing/2.1.1": {
  3893. "type": "package",
  3894. "serviceable": true,
  3895. "sha512": "sha512-BnVEKMGIkRcZecG3zR+tl9tYGkViz1k/WzYVNRfdaAN0LeuSabNP0NlG037oz+pDPsLzzNkFeLSOh/w0AKLaig==",
  3896. "path": "microsoft.aspnetcore.routing/2.1.1",
  3897. "hashPath": "microsoft.aspnetcore.routing.2.1.1.nupkg.sha512"
  3898. },
  3899. "Microsoft.AspNetCore.Routing.Abstractions/2.1.1": {
  3900. "type": "package",
  3901. "serviceable": true,
  3902. "sha512": "sha512-+Yxsy/ZcCthcziktuhfC6WpQ/cZzgD/IsQ96xefNKrCzIm9jXjfNK3ONsoScvyFFihNohp7zAVPiic5J6CvUDw==",
  3903. "path": "microsoft.aspnetcore.routing.abstractions/2.1.1",
  3904. "hashPath": "microsoft.aspnetcore.routing.abstractions.2.1.1.nupkg.sha512"
  3905. },
  3906. "Microsoft.AspNetCore.Server.HttpSys/2.1.1": {
  3907. "type": "package",
  3908. "serviceable": true,
  3909. "sha512": "sha512-4aLacPVSAp5ByErwN9PQfcNUmt/PAjXmK6kkCIkn2UJFABkPz0x/AX2fnjzEeHhHiGHTT6segApNJsh8wXTlcw==",
  3910. "path": "microsoft.aspnetcore.server.httpsys/2.1.1",
  3911. "hashPath": "microsoft.aspnetcore.server.httpsys.2.1.1.nupkg.sha512"
  3912. },
  3913. "Microsoft.AspNetCore.Server.IISIntegration/2.1.1": {
  3914. "type": "package",
  3915. "serviceable": true,
  3916. "sha512": "sha512-GOEg75Bb+hoJ5/e1fouBn02MotR9ITs3pQBqT6y6DGTplQ0+/VQsb2R7utro39joHwB1HX4LgLBzfSjkjyYHvQ==",
  3917. "path": "microsoft.aspnetcore.server.iisintegration/2.1.1",
  3918. "hashPath": "microsoft.aspnetcore.server.iisintegration.2.1.1.nupkg.sha512"
  3919. },
  3920. "Microsoft.AspNetCore.Server.Kestrel/2.1.1": {
  3921. "type": "package",
  3922. "serviceable": true,
  3923. "sha512": "sha512-nHJ7DAcZUYIgTpqs5GKlsEo16uGlEk73LO2fX7YQDvF/L1zX1Fe7f5KyynepGorIenzJHvAJEtfTHpqFFSPNsA==",
  3924. "path": "microsoft.aspnetcore.server.kestrel/2.1.1",
  3925. "hashPath": "microsoft.aspnetcore.server.kestrel.2.1.1.nupkg.sha512"
  3926. },
  3927. "Microsoft.AspNetCore.Server.Kestrel.Core/2.1.1": {
  3928. "type": "package",
  3929. "serviceable": true,
  3930. "sha512": "sha512-lJHti9K7nUoFdx3czli+ITiTOOT1GBgKZxhe5dT0K/6lIniyDZAHZ+s9n4JGej2fUEFBZvfSxIGBWZUGe1ffmw==",
  3931. "path": "microsoft.aspnetcore.server.kestrel.core/2.1.1",
  3932. "hashPath": "microsoft.aspnetcore.server.kestrel.core.2.1.1.nupkg.sha512"
  3933. },
  3934. "Microsoft.AspNetCore.Server.Kestrel.Https/2.1.1": {
  3935. "type": "package",
  3936. "serviceable": true,
  3937. "sha512": "sha512-7DtRvE3ffWAqa2zyOt2pKKmi9xToQCP/WFBmujTZTfB8FX+1sEHc0/2h2WuaCZTmXC+jwLdO95HZx8Bu0XctSQ==",
  3938. "path": "microsoft.aspnetcore.server.kestrel.https/2.1.1",
  3939. "hashPath": "microsoft.aspnetcore.server.kestrel.https.2.1.1.nupkg.sha512"
  3940. },
  3941. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.1.1": {
  3942. "type": "package",
  3943. "serviceable": true,
  3944. "sha512": "sha512-118KSszFP/b81+AS+h1M3Tm6pSL3Py8y65UjEzM9BE3S5qlTRC+w/ExHqy5avZOkvunfAlEFKu8Gyl9IJQFdXw==",
  3945. "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.1.1",
  3946. "hashPath": "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.1.1.nupkg.sha512"
  3947. },
  3948. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.1.1": {
  3949. "type": "package",
  3950. "serviceable": true,
  3951. "sha512": "sha512-Q2obTqdWPxLqSm8RVLNq+RWRNiMNXkckVnHvM6UwHryw7KCDOW8TiBh52hTBNVmuRjZQ2bTeqYO1luSGYKpcPQ==",
  3952. "path": "microsoft.aspnetcore.server.kestrel.transport.sockets/2.1.1",
  3953. "hashPath": "microsoft.aspnetcore.server.kestrel.transport.sockets.2.1.1.nupkg.sha512"
  3954. },
  3955. "Microsoft.AspNetCore.Session/2.1.1": {
  3956. "type": "package",
  3957. "serviceable": true,
  3958. "sha512": "sha512-M7p1xCZd4pjBFruviakM7g8PKYZenrog4iCrhetVNkCgcqKljsUrRYvViwZNCYMS58aEhbzBBxGGNL7XAXU72A==",
  3959. "path": "microsoft.aspnetcore.session/2.1.1",
  3960. "hashPath": "microsoft.aspnetcore.session.2.1.1.nupkg.sha512"
  3961. },
  3962. "Microsoft.AspNetCore.SignalR/1.0.1": {
  3963. "type": "package",
  3964. "serviceable": true,
  3965. "sha512": "sha512-UqXok7HEQrR6OIIYA4NEYHL5LM/xtTue1NR6irXxglfaP/IZwfPz64OGechQJ+GDZ/tzR6U+nvZR9ggnegCxQg==",
  3966. "path": "microsoft.aspnetcore.signalr/1.0.1",
  3967. "hashPath": "microsoft.aspnetcore.signalr.1.0.1.nupkg.sha512"
  3968. },
  3969. "Microsoft.AspNetCore.SignalR.Common/1.0.1": {
  3970. "type": "package",
  3971. "serviceable": true,
  3972. "sha512": "sha512-6zUQE2tROCr2Lh6HprHdX5sY+mmD6EGtdnUW5vJ4zDyWOYIbzb7xgzBMx+GUxF/acl+ffhGX9kk5omRYmmXjOQ==",
  3973. "path": "microsoft.aspnetcore.signalr.common/1.0.1",
  3974. "hashPath": "microsoft.aspnetcore.signalr.common.1.0.1.nupkg.sha512"
  3975. },
  3976. "Microsoft.AspNetCore.SignalR.Core/1.0.1": {
  3977. "type": "package",
  3978. "serviceable": true,
  3979. "sha512": "sha512-yJVbHWRwI2lu0h7D58V8kxUAyg63bf84BW5xv0i9KFE9I3BGE/OChQKuQsPc02qSTAb3YfT7n4s5guCGvfXefA==",
  3980. "path": "microsoft.aspnetcore.signalr.core/1.0.1",
  3981. "hashPath": "microsoft.aspnetcore.signalr.core.1.0.1.nupkg.sha512"
  3982. },
  3983. "Microsoft.AspNetCore.SignalR.Protocols.Json/1.0.1": {
  3984. "type": "package",
  3985. "serviceable": true,
  3986. "sha512": "sha512-FT+l9BokJmQnvuXBWcFPC/EciP3h3KvUzlvq+dLwIf8lDw82ndcX6DzjUxkjR1PSvRbEblW8TekfOrmz+7blDw==",
  3987. "path": "microsoft.aspnetcore.signalr.protocols.json/1.0.1",
  3988. "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.0.1.nupkg.sha512"
  3989. },
  3990. "Microsoft.AspNetCore.SpaServices/2.1.1": {
  3991. "type": "package",
  3992. "serviceable": true,
  3993. "sha512": "sha512-KGGarPSicaywgCy/qfZmJ+aBMOtbOWEqAL9QVvTiFDCBuE2TXuoD808HGrh5go+p4E9iUY6fJX1Pqvot1WzDxg==",
  3994. "path": "microsoft.aspnetcore.spaservices/2.1.1",
  3995. "hashPath": "microsoft.aspnetcore.spaservices.2.1.1.nupkg.sha512"
  3996. },
  3997. "Microsoft.AspNetCore.SpaServices.Extensions/2.1.1": {
  3998. "type": "package",
  3999. "serviceable": true,
  4000. "sha512": "sha512-xpMbtgKWD6aDRfb8znqm/uhPIiaws4m+Mv6ezGB0wIajvGCsHc/CQVMSB5N1Cj/AZY8GO2THRd+4zdSS1D5Dfg==",
  4001. "path": "microsoft.aspnetcore.spaservices.extensions/2.1.1",
  4002. "hashPath": "microsoft.aspnetcore.spaservices.extensions.2.1.1.nupkg.sha512"
  4003. },
  4004. "Microsoft.AspNetCore.WebSockets/2.1.1": {
  4005. "type": "package",
  4006. "serviceable": true,
  4007. "sha512": "sha512-6m4KkYR1UG3f0Aucop1s+XmJbAlrDVLNvq69nJ9evhmdWiuJAc/yuR07e3HVED3RvdFzUFla6AQm0gnEiViUJQ==",
  4008. "path": "microsoft.aspnetcore.websockets/2.1.1",
  4009. "hashPath": "microsoft.aspnetcore.websockets.2.1.1.nupkg.sha512"
  4010. },
  4011. "Microsoft.AspNetCore.WebUtilities/2.1.1": {
  4012. "type": "package",
  4013. "serviceable": true,
  4014. "sha512": "sha512-gvCdObgQDLdZ9enyFQuPb3Rae6QyzZAPgHiv5JhYjORLMW1UNgWXvdqLov6iGtnyG+BBCavPooW9ScWGQCJHLg==",
  4015. "path": "microsoft.aspnetcore.webutilities/2.1.1",
  4016. "hashPath": "microsoft.aspnetcore.webutilities.2.1.1.nupkg.sha512"
  4017. },
  4018. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  4019. "type": "package",
  4020. "serviceable": true,
  4021. "sha512": "sha512-HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
  4022. "path": "microsoft.codeanalysis.analyzers/1.1.0",
  4023. "hashPath": "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512"
  4024. },
  4025. "Microsoft.CodeAnalysis.Common/2.8.0": {
  4026. "type": "package",
  4027. "serviceable": true,
  4028. "sha512": "sha512-lYUBqh3OD3iEQqxt9KB472VzgOnEKoUVG4Lx5Xw4oJe9dZtITkHFtct+T73jH3FOASFI1NSzzP5MBM0c9zZspA==",
  4029. "path": "microsoft.codeanalysis.common/2.8.0",
  4030. "hashPath": "microsoft.codeanalysis.common.2.8.0.nupkg.sha512"
  4031. },
  4032. "Microsoft.CodeAnalysis.CSharp/2.8.0": {
  4033. "type": "package",
  4034. "serviceable": true,
  4035. "sha512": "sha512-+4CHAwHMwLO5GRqPJ7Khv2Ny//omhukPKP3Ny/d2XDpt11bX35zb9pTziwZN0eNvxj6a46joIdHEYQ1JsekI3w==",
  4036. "path": "microsoft.codeanalysis.csharp/2.8.0",
  4037. "hashPath": "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512"
  4038. },
  4039. "Microsoft.CodeAnalysis.Razor/2.1.1": {
  4040. "type": "package",
  4041. "serviceable": true,
  4042. "sha512": "sha512-D5zUSmQHsgKosYlWLQjs6uXn4n7llEdUwFhJz7EIwR16ge18q8p8BJ547out9ScnMDuwHA8MeCPe8WMwCaFAPw==",
  4043. "path": "microsoft.codeanalysis.razor/2.1.1",
  4044. "hashPath": "microsoft.codeanalysis.razor.2.1.1.nupkg.sha512"
  4045. },
  4046. "Microsoft.CSharp/4.5.0": {
  4047. "type": "package",
  4048. "serviceable": true,
  4049. "sha512": "sha512-EGoBmf3Na2ppbhPePDE9PlX81r1HuOZH5twBrq7couJZiPTjUnD3648balerQJO6EJ8Sj+43+XuRwQ7r+3tE3w==",
  4050. "path": "microsoft.csharp/4.5.0",
  4051. "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
  4052. },
  4053. "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
  4054. "type": "package",
  4055. "serviceable": true,
  4056. "sha512": "sha512-wkCXkBS0q+5hsbeikjfsHCGP3nNe1L1MrDEBPCBKm+4UH8nXqHLxDZuBrTYaVY85CGIx2y1qW90nO6b+ORAfrA==",
  4057. "path": "microsoft.dotnet.platformabstractions/2.1.0",
  4058. "hashPath": "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512"
  4059. },
  4060. "Microsoft.EntityFrameworkCore/2.1.1": {
  4061. "type": "package",
  4062. "serviceable": true,
  4063. "sha512": "sha512-R0zD5lDEA0Aari3+stBhAP5dredWIHcu4+tKfumG7Q6r34Psl5a3fC4hXOBD4W8Mc+aRaee3xehLQC0M0EHEdA==",
  4064. "path": "microsoft.entityframeworkcore/2.1.1",
  4065. "hashPath": "microsoft.entityframeworkcore.2.1.1.nupkg.sha512"
  4066. },
  4067. "Microsoft.EntityFrameworkCore.Abstractions/2.1.1": {
  4068. "type": "package",
  4069. "serviceable": true,
  4070. "sha512": "sha512-eAkWeRhvwMLbAmS73HUESlE/sRmGYdKr1nzZ/IOmyRFz37e8BGEGwwbazKhi2OjjzdIWJxmMdB4nGQUP2mco7A==",
  4071. "path": "microsoft.entityframeworkcore.abstractions/2.1.1",
  4072. "hashPath": "microsoft.entityframeworkcore.abstractions.2.1.1.nupkg.sha512"
  4073. },
  4074. "Microsoft.EntityFrameworkCore.Analyzers/2.1.1": {
  4075. "type": "package",
  4076. "serviceable": true,
  4077. "sha512": "sha512-Cvyj3q8j0vhhEBbxRXXTZZhrO0RW/hRJQ6VzfGcfvMh+Zhkr8Jl4CP8gA5GXOgg+0dxYYC+GfT27EqjbxM3Qbg==",
  4078. "path": "microsoft.entityframeworkcore.analyzers/2.1.1",
  4079. "hashPath": "microsoft.entityframeworkcore.analyzers.2.1.1.nupkg.sha512"
  4080. },
  4081. "Microsoft.EntityFrameworkCore.Design/2.1.1": {
  4082. "type": "package",
  4083. "serviceable": true,
  4084. "sha512": "sha512-/kmRSJHgtcng6eNsy7ab3Ac2ofqqoQAZTiTPMKlLaD6WaEG0t5KJuj71/jAMo9LGgaeKGMI0m5wmG+LsIAlaSA==",
  4085. "path": "microsoft.entityframeworkcore.design/2.1.1",
  4086. "hashPath": "microsoft.entityframeworkcore.design.2.1.1.nupkg.sha512"
  4087. },
  4088. "Microsoft.EntityFrameworkCore.InMemory/2.1.1": {
  4089. "type": "package",
  4090. "serviceable": true,
  4091. "sha512": "sha512-eX6plbREvKOq06f2XU6n4ZCSpTXjS9khC9jNH4BeyG/m2WXbYnpTW3zX6RT/UCM8wVqO9U3YUr7QbTsuOysK7w==",
  4092. "path": "microsoft.entityframeworkcore.inmemory/2.1.1",
  4093. "hashPath": "microsoft.entityframeworkcore.inmemory.2.1.1.nupkg.sha512"
  4094. },
  4095. "Microsoft.EntityFrameworkCore.Relational/2.1.1": {
  4096. "type": "package",
  4097. "serviceable": true,
  4098. "sha512": "sha512-GdS22wCLqf+W+NvWzuz/0oXmulD0mlxa65Z/RO65YiAJRDhLZ/4/QYeDEIvh8HF9Fw4kB/UnrQ756uv0+IDDKQ==",
  4099. "path": "microsoft.entityframeworkcore.relational/2.1.1",
  4100. "hashPath": "microsoft.entityframeworkcore.relational.2.1.1.nupkg.sha512"
  4101. },
  4102. "Microsoft.EntityFrameworkCore.SqlServer/2.1.1": {
  4103. "type": "package",
  4104. "serviceable": true,
  4105. "sha512": "sha512-+owJ/RcmFOrRseb+9PEjqhoOcE7l+DeTe0Jwte0tqhYoiPxZpC6jtGhUhpftPSBkC662siPR7kNm2TfxpPVilQ==",
  4106. "path": "microsoft.entityframeworkcore.sqlserver/2.1.1",
  4107. "hashPath": "microsoft.entityframeworkcore.sqlserver.2.1.1.nupkg.sha512"
  4108. },
  4109. "Microsoft.EntityFrameworkCore.Tools/2.1.1": {
  4110. "type": "package",
  4111. "serviceable": true,
  4112. "sha512": "sha512-OYHhKbFNJCSHpkLAKI9yqTx3+SZ7aHKZaCP+G5ctlL/rZm5Y37Ke00abUhp5mFEJlvEueYfOGDx/GjltEs210A==",
  4113. "path": "microsoft.entityframeworkcore.tools/2.1.1",
  4114. "hashPath": "microsoft.entityframeworkcore.tools.2.1.1.nupkg.sha512"
  4115. },
  4116. "Microsoft.Extensions.Caching.Abstractions/2.1.1": {
  4117. "type": "package",
  4118. "serviceable": true,
  4119. "sha512": "sha512-gcPRTtchou4pIEdLYhh9xoBDjwCaCLiTHJaFN2IWJCP+TGJcIHQYblPMftw6fajHER9ZrvPO5RYZUyLmH1eNIA==",
  4120. "path": "microsoft.extensions.caching.abstractions/2.1.1",
  4121. "hashPath": "microsoft.extensions.caching.abstractions.2.1.1.nupkg.sha512"
  4122. },
  4123. "Microsoft.Extensions.Caching.Memory/2.1.1": {
  4124. "type": "package",
  4125. "serviceable": true,
  4126. "sha512": "sha512-KV2w9nelcxgl1Y028qmexCcgBK+CtZ18fE2eIypB1lUtLOGBrzP+XhcJTxBYwXPnYPkxazqdzcOfIRxz/Bq2uQ==",
  4127. "path": "microsoft.extensions.caching.memory/2.1.1",
  4128. "hashPath": "microsoft.extensions.caching.memory.2.1.1.nupkg.sha512"
  4129. },
  4130. "Microsoft.Extensions.Caching.SqlServer/2.1.1": {
  4131. "type": "package",
  4132. "serviceable": true,
  4133. "sha512": "sha512-kRMsRtpyhuZiRBFu2tXmcMkhZl0kfBQ2JxRmERUp5K+P7fJd3DYN47w5vNURkFUlzDskgsPJ2s3Ug07wHDwCJw==",
  4134. "path": "microsoft.extensions.caching.sqlserver/2.1.1",
  4135. "hashPath": "microsoft.extensions.caching.sqlserver.2.1.1.nupkg.sha512"
  4136. },
  4137. "Microsoft.Extensions.Configuration.Binder/2.1.1": {
  4138. "type": "package",
  4139. "serviceable": true,
  4140. "sha512": "sha512-t7KFAv6AxyUsZj9QN8FAbusg+X5baCELl+XtscyuP1IGUv5UctyY7/rNZLyiKaV7HhAcDQ1zC5ZQNQQFn6JpAA==",
  4141. "path": "microsoft.extensions.configuration.binder/2.1.1",
  4142. "hashPath": "microsoft.extensions.configuration.binder.2.1.1.nupkg.sha512"
  4143. },
  4144. "Microsoft.Extensions.Configuration.CommandLine/2.1.1": {
  4145. "type": "package",
  4146. "serviceable": true,
  4147. "sha512": "sha512-mLtD/B9sx0jycMcPcIweb5x0bRKBoDcN+xONQnw6urMZTyazyJED+zTfj2ZCbVsloh7SW2W6f16UpELD+xtaOA==",
  4148. "path": "microsoft.extensions.configuration.commandline/2.1.1",
  4149. "hashPath": "microsoft.extensions.configuration.commandline.2.1.1.nupkg.sha512"
  4150. },
  4151. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.1.1": {
  4152. "type": "package",
  4153. "serviceable": true,
  4154. "sha512": "sha512-rDFRChBvs6sPGC+JjshKsP4kWRvsG8Y9MQKduDu60RWnJpFiIpQ7HK2K9sPrCL1MaYEk894PUkiZ5Xdsm9cPvg==",
  4155. "path": "microsoft.extensions.configuration.environmentvariables/2.1.1",
  4156. "hashPath": "microsoft.extensions.configuration.environmentvariables.2.1.1.nupkg.sha512"
  4157. },
  4158. "Microsoft.Extensions.Configuration.FileExtensions/2.1.1": {
  4159. "type": "package",
  4160. "serviceable": true,
  4161. "sha512": "sha512-JnhKotPCs1+X4CPSsHOk8CpxmBeIS/vIXYewsoM8XflXNhpzMe1gfIckQyuRKyORlGaNFEBr4WrPjpZ159bS/Q==",
  4162. "path": "microsoft.extensions.configuration.fileextensions/2.1.1",
  4163. "hashPath": "microsoft.extensions.configuration.fileextensions.2.1.1.nupkg.sha512"
  4164. },
  4165. "Microsoft.Extensions.Configuration.Ini/2.1.1": {
  4166. "type": "package",
  4167. "serviceable": true,
  4168. "sha512": "sha512-7ioG8k0YazFgodMBc1ATX+7KgLktQeczJjBY4sjVrKvA3b0QLi438Q4XLnQemdFJZnvQYUf6rjuu1tWz3xslPw==",
  4169. "path": "microsoft.extensions.configuration.ini/2.1.1",
  4170. "hashPath": "microsoft.extensions.configuration.ini.2.1.1.nupkg.sha512"
  4171. },
  4172. "Microsoft.Extensions.Configuration.Json/2.1.1": {
  4173. "type": "package",
  4174. "serviceable": true,
  4175. "sha512": "sha512-f6KcI9v0GVA4YL/ExoxrEfeQv9La3hyQnySfgxGkFtMeDJIUun0ANoMjspbdpXXnuaScwgbQ2mFE3lJHt9lpJw==",
  4176. "path": "microsoft.extensions.configuration.json/2.1.1",
  4177. "hashPath": "microsoft.extensions.configuration.json.2.1.1.nupkg.sha512"
  4178. },
  4179. "Microsoft.Extensions.Configuration.KeyPerFile/2.1.1": {
  4180. "type": "package",
  4181. "serviceable": true,
  4182. "sha512": "sha512-Qet/MJCnaTOws1FRGu3l7Y5Ob2WZVN2guuViLKZTBjZhyZ7AWtnerJ6K1jfVSVplNp/dfsesu2T+7wTtySjwYw==",
  4183. "path": "microsoft.extensions.configuration.keyperfile/2.1.1",
  4184. "hashPath": "microsoft.extensions.configuration.keyperfile.2.1.1.nupkg.sha512"
  4185. },
  4186. "Microsoft.Extensions.Configuration.UserSecrets/2.1.1": {
  4187. "type": "package",
  4188. "serviceable": true,
  4189. "sha512": "sha512-a/VCXjvqr0+e1fBHyeRFKenhr8zfDiqGSL0I7xncDjZyj40bRUlTJhzX8BbgPkbA8F1EOxsOrWbSClap8LsYKg==",
  4190. "path": "microsoft.extensions.configuration.usersecrets/2.1.1",
  4191. "hashPath": "microsoft.extensions.configuration.usersecrets.2.1.1.nupkg.sha512"
  4192. },
  4193. "Microsoft.Extensions.Configuration.Xml/2.1.1": {
  4194. "type": "package",
  4195. "serviceable": true,
  4196. "sha512": "sha512-Bs2wJX9BbtXcwAL2KlUNMKyVQfy2r5Iq9pweMaPFN5aCB719YCnOK4dT3tyZfvrtN9XxlJUZ2DeJjNsFxklexA==",
  4197. "path": "microsoft.extensions.configuration.xml/2.1.1",
  4198. "hashPath": "microsoft.extensions.configuration.xml.2.1.1.nupkg.sha512"
  4199. },
  4200. "Microsoft.Extensions.DependencyInjection/2.1.1": {
  4201. "type": "package",
  4202. "serviceable": true,
  4203. "sha512": "sha512-2nshYaLTn73Ie+/yTkb7EZIXwQeFIXsYCBy/jSY9bMayYykGNjdWa25frayhuPAGVbZpEgfgp3d4JRVEuVyEqQ==",
  4204. "path": "microsoft.extensions.dependencyinjection/2.1.1",
  4205. "hashPath": "microsoft.extensions.dependencyinjection.2.1.1.nupkg.sha512"
  4206. },
  4207. "Microsoft.Extensions.DependencyModel/2.1.0": {
  4208. "type": "package",
  4209. "serviceable": true,
  4210. "sha512": "sha512-3KPT6CLH0VEGr2um9aG1rYTmqfMVlkRuueFpN6AxeIKpcMA4OVHf4aNpgYXZ6oF+x4uh9VhK/66FgPCd1mMlnQ==",
  4211. "path": "microsoft.extensions.dependencymodel/2.1.0",
  4212. "hashPath": "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512"
  4213. },
  4214. "Microsoft.Extensions.DiagnosticAdapter/2.1.0": {
  4215. "type": "package",
  4216. "serviceable": true,
  4217. "sha512": "sha512-ZZeKarCCSZujTN2h4fZv6/tAjz9Ra5EyGaRYEXYd65YxwEDpIbx11rIoE0e1h5HBsB6Rsd345zV0LAajUzX8Qg==",
  4218. "path": "microsoft.extensions.diagnosticadapter/2.1.0",
  4219. "hashPath": "microsoft.extensions.diagnosticadapter.2.1.0.nupkg.sha512"
  4220. },
  4221. "Microsoft.Extensions.FileProviders.Composite/2.1.1": {
  4222. "type": "package",
  4223. "serviceable": true,
  4224. "sha512": "sha512-SovLUACJ3C+iRlHo4VdZw0IDX+v7+32paTJf7v5ZyzyWqijUkDYXr81gL7tkCfCkJmBYnrc6bScoj2Eaxlrudw==",
  4225. "path": "microsoft.extensions.fileproviders.composite/2.1.1",
  4226. "hashPath": "microsoft.extensions.fileproviders.composite.2.1.1.nupkg.sha512"
  4227. },
  4228. "Microsoft.Extensions.FileProviders.Embedded/2.1.1": {
  4229. "type": "package",
  4230. "serviceable": true,
  4231. "sha512": "sha512-LHf10DjPIUj3mR0FfsTAisO0Cx6iRT+I15LlYY0zDz8US24I8NEdSG9vceXwLFuHiWrrr2/gFQ3uX7fPsBNmag==",
  4232. "path": "microsoft.extensions.fileproviders.embedded/2.1.1",
  4233. "hashPath": "microsoft.extensions.fileproviders.embedded.2.1.1.nupkg.sha512"
  4234. },
  4235. "Microsoft.Extensions.FileProviders.Physical/2.1.1": {
  4236. "type": "package",
  4237. "serviceable": true,
  4238. "sha512": "sha512-pbT/J3B686Xgktv5WH11FbcbZXDmBQuCN3ce8IKIF+DpOk3p0RgUPrOXcYNp81TyH+K/5Cosr4VFVjYMoirNDg==",
  4239. "path": "microsoft.extensions.fileproviders.physical/2.1.1",
  4240. "hashPath": "microsoft.extensions.fileproviders.physical.2.1.1.nupkg.sha512"
  4241. },
  4242. "Microsoft.Extensions.FileSystemGlobbing/2.1.1": {
  4243. "type": "package",
  4244. "serviceable": true,
  4245. "sha512": "sha512-Pu/O8jBc7QlEmqmbDGVosuDlyzGspMuKc71rOsJigwGMF5574aWYw9uRMX+ho1dmbnL502ZYHo6PlBP3IXkm5A==",
  4246. "path": "microsoft.extensions.filesystemglobbing/2.1.1",
  4247. "hashPath": "microsoft.extensions.filesystemglobbing.2.1.1.nupkg.sha512"
  4248. },
  4249. "Microsoft.Extensions.Hosting/2.1.1": {
  4250. "type": "package",
  4251. "serviceable": true,
  4252. "sha512": "sha512-JCQMO9b49MO7b2e3myP6b0KsAJvRL9auv0A/Pn4w2Q1dt9D29tWvuji8b2jGfHVZcal9GRbtwwdnAD1mN4x3VQ==",
  4253. "path": "microsoft.extensions.hosting/2.1.1",
  4254. "hashPath": "microsoft.extensions.hosting.2.1.1.nupkg.sha512"
  4255. },
  4256. "Microsoft.Extensions.Http/2.1.1": {
  4257. "type": "package",
  4258. "serviceable": true,
  4259. "sha512": "sha512-mDh9zlNwbdvb3BXjJejdcdovI5nsJZ4y0IU84QPFS9OB0q3e8BUVknTKr1Mub1nWQGEt6ZZDkP5vYf0KM7wVRw==",
  4260. "path": "microsoft.extensions.http/2.1.1",
  4261. "hashPath": "microsoft.extensions.http.2.1.1.nupkg.sha512"
  4262. },
  4263. "Microsoft.Extensions.Identity.Core/2.1.1": {
  4264. "type": "package",
  4265. "serviceable": true,
  4266. "sha512": "sha512-Ob9ms69b2qhQhi3SMNhE3SPsCIWhyC4e3IZWSRWxWXwfVLcOfrjaC3qJDPiTOE6Gs7QB/A7jM16i86v6TZ2g5A==",
  4267. "path": "microsoft.extensions.identity.core/2.1.1",
  4268. "hashPath": "microsoft.extensions.identity.core.2.1.1.nupkg.sha512"
  4269. },
  4270. "Microsoft.Extensions.Identity.Stores/2.1.1": {
  4271. "type": "package",
  4272. "serviceable": true,
  4273. "sha512": "sha512-SYqJ9R96S27fv7gWmnUFW+YF5Rd6mKYTETZo+j5WVXXxowojwsn9lkm/6EvyhIwKFbhR5SLw7Y+ajnzlVRua3g==",
  4274. "path": "microsoft.extensions.identity.stores/2.1.1",
  4275. "hashPath": "microsoft.extensions.identity.stores.2.1.1.nupkg.sha512"
  4276. },
  4277. "Microsoft.Extensions.Localization/2.1.1": {
  4278. "type": "package",
  4279. "serviceable": true,
  4280. "sha512": "sha512-XPVATgcnzWwo6NYXsZfiEBSSFWWOEdFMn099BIlJCgwVSTLdZD130xRFH4wGXg5sMos3xXsBLv1fffQ67Ju+qg==",
  4281. "path": "microsoft.extensions.localization/2.1.1",
  4282. "hashPath": "microsoft.extensions.localization.2.1.1.nupkg.sha512"
  4283. },
  4284. "Microsoft.Extensions.Localization.Abstractions/2.1.1": {
  4285. "type": "package",
  4286. "serviceable": true,
  4287. "sha512": "sha512-V1znqxUEDHAfnCDXLsfrbY+RmtrFkJqOFhVBOIrcqQMp6MFJvIV9QpDTMq8JzqYc++aAraIoUEAsAwoa8otlOw==",
  4288. "path": "microsoft.extensions.localization.abstractions/2.1.1",
  4289. "hashPath": "microsoft.extensions.localization.abstractions.2.1.1.nupkg.sha512"
  4290. },
  4291. "Microsoft.Extensions.Logging/2.1.1": {
  4292. "type": "package",
  4293. "serviceable": true,
  4294. "sha512": "sha512-x4/RzeReQSIi4nVpOjXEySm/xUSr6lBjuecdYnlUboWxbLSm2j3vhFV5OLGRp3gfte3cRMdysMNa/wyZN0t/Tw==",
  4295. "path": "microsoft.extensions.logging/2.1.1",
  4296. "hashPath": "microsoft.extensions.logging.2.1.1.nupkg.sha512"
  4297. },
  4298. "Microsoft.Extensions.Logging.Configuration/2.1.1": {
  4299. "type": "package",
  4300. "serviceable": true,
  4301. "sha512": "sha512-eWFdWiyDpzXrzIOQlNUIJ5Tv1nTkxDGEdaxFqcBmCKs5USFBEtwlmSSg06Z2EZ06aQKtWLLi9KjARdlh62zDIQ==",
  4302. "path": "microsoft.extensions.logging.configuration/2.1.1",
  4303. "hashPath": "microsoft.extensions.logging.configuration.2.1.1.nupkg.sha512"
  4304. },
  4305. "Microsoft.Extensions.Logging.Console/2.1.1": {
  4306. "type": "package",
  4307. "serviceable": true,
  4308. "sha512": "sha512-38NHT66tf9+0Sq28TbhayRS1+LrybqFz9oycPyYDm+sQID47tsPoQA/ZqPIK81zsA1z5r+7BrUflXwmNmvzW4A==",
  4309. "path": "microsoft.extensions.logging.console/2.1.1",
  4310. "hashPath": "microsoft.extensions.logging.console.2.1.1.nupkg.sha512"
  4311. },
  4312. "Microsoft.Extensions.Logging.Debug/2.1.1": {
  4313. "type": "package",
  4314. "serviceable": true,
  4315. "sha512": "sha512-JP/wI5pbt+7r6U80lfsHimQp1qJN6v97XG2dzgH8O1hv5zNhYvB9m1EeARJruppcTXrXrgBIl8Hjeh5Mvu/AyQ==",
  4316. "path": "microsoft.extensions.logging.debug/2.1.1",
  4317. "hashPath": "microsoft.extensions.logging.debug.2.1.1.nupkg.sha512"
  4318. },
  4319. "Microsoft.Extensions.Logging.EventSource/2.1.1": {
  4320. "type": "package",
  4321. "serviceable": true,
  4322. "sha512": "sha512-+9wgYYIct5VlfOGGAYeIFEFDy1sLtUc3pJxwZap4FDnpjcViHJwI0Uq9GMz6w+PgasjfiRLCDxu339VikVS09Q==",
  4323. "path": "microsoft.extensions.logging.eventsource/2.1.1",
  4324. "hashPath": "microsoft.extensions.logging.eventsource.2.1.1.nupkg.sha512"
  4325. },
  4326. "Microsoft.Extensions.Logging.TraceSource/2.1.1": {
  4327. "type": "package",
  4328. "serviceable": true,
  4329. "sha512": "sha512-lPUHCOezUB7W9hvfJL/5Zaggpy0plgOaqHLM2T5Lv+v3/B4ISWTc4Pd1l33R5dv9v0MF6I4u3Kf732wEX6OPdg==",
  4330. "path": "microsoft.extensions.logging.tracesource/2.1.1",
  4331. "hashPath": "microsoft.extensions.logging.tracesource.2.1.1.nupkg.sha512"
  4332. },
  4333. "Microsoft.Extensions.ObjectPool/2.1.1": {
  4334. "type": "package",
  4335. "serviceable": true,
  4336. "sha512": "sha512-FE4JmV6FEZdmqSKqvld5TRnvHfJfrw9QzvvZlAiTn+FCiq/1ZaQDpcYBRH7dMHFWIsYD6Z2UTsufdbCGznox8g==",
  4337. "path": "microsoft.extensions.objectpool/2.1.1",
  4338. "hashPath": "microsoft.extensions.objectpool.2.1.1.nupkg.sha512"
  4339. },
  4340. "Microsoft.Extensions.Options.ConfigurationExtensions/2.1.1": {
  4341. "type": "package",
  4342. "serviceable": true,
  4343. "sha512": "sha512-rRGENwWe/jAfAKWYV/P0TQW5T8zsQv+Cx3lfUgQrdP4YLHx/fPIs3hQplMklawcdzAGTR4FN4e4xU7Qgk5KHnA==",
  4344. "path": "microsoft.extensions.options.configurationextensions/2.1.1",
  4345. "hashPath": "microsoft.extensions.options.configurationextensions.2.1.1.nupkg.sha512"
  4346. },
  4347. "Microsoft.IdentityModel.Logging/5.2.0": {
  4348. "type": "package",
  4349. "serviceable": true,
  4350. "sha512": "sha512-OgiaeDGsuTpXrx77a4gyN6Flp4y7jro4La92UtVEEVxnRb+TnRxawVYY3Z5EVme5fSwvE31vo2iNAwI/jBKjPg==",
  4351. "path": "microsoft.identitymodel.logging/5.2.0",
  4352. "hashPath": "microsoft.identitymodel.logging.5.2.0.nupkg.sha512"
  4353. },
  4354. "Microsoft.IdentityModel.Protocols/5.2.0": {
  4355. "type": "package",
  4356. "serviceable": true,
  4357. "sha512": "sha512-pakGqbE3FRort3vb0qqWI0Qfy84IOXs8sG7ygANUpoRT+544svQ62JfvCX4UPnqf5bCUpSxVc3rDh8yCQBtc7w==",
  4358. "path": "microsoft.identitymodel.protocols/5.2.0",
  4359. "hashPath": "microsoft.identitymodel.protocols.5.2.0.nupkg.sha512"
  4360. },
  4361. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.2.0": {
  4362. "type": "package",
  4363. "serviceable": true,
  4364. "sha512": "sha512-hMjsfdvgI/Gk/HWPgyVnju6fy3iULralgn1XU6eL17KkkFN2rJ1fDzJX3RKrjr888Y5S+hTSQAUcGzb4Fe3aBA==",
  4365. "path": "microsoft.identitymodel.protocols.openidconnect/5.2.0",
  4366. "hashPath": "microsoft.identitymodel.protocols.openidconnect.5.2.0.nupkg.sha512"
  4367. },
  4368. "Microsoft.IdentityModel.Protocols.WsFederation/5.2.0": {
  4369. "type": "package",
  4370. "serviceable": true,
  4371. "sha512": "sha512-7yohKgLzTObwy+Yq/WNshe2ar+9MZJischkn+L+IIQhpZCKWixr0QFR0V/1TzvGVeXBR/AJY/luZRLx84RlzJw==",
  4372. "path": "microsoft.identitymodel.protocols.wsfederation/5.2.0",
  4373. "hashPath": "microsoft.identitymodel.protocols.wsfederation.5.2.0.nupkg.sha512"
  4374. },
  4375. "Microsoft.IdentityModel.Tokens/5.2.0": {
  4376. "type": "package",
  4377. "serviceable": true,
  4378. "sha512": "sha512-Uz1Dk5Gw/jgIHEzac9cXhq7pH0Hf5P73vf23hR6QJn0IamLbPG4qoHnGyPMn9qQXc+jDb/j3fWOhvWGrteJXtA==",
  4379. "path": "microsoft.identitymodel.tokens/5.2.0",
  4380. "hashPath": "microsoft.identitymodel.tokens.5.2.0.nupkg.sha512"
  4381. },
  4382. "Microsoft.IdentityModel.Tokens.Saml/5.2.0": {
  4383. "type": "package",
  4384. "serviceable": true,
  4385. "sha512": "sha512-db9y9zHTxeVwTi91mqBu4u1h5tlseQxhXMlGBd7bousED/FcEuhRiVK1maXjoHyQTnYbFDGPvYKXxznDI5jBGQ==",
  4386. "path": "microsoft.identitymodel.tokens.saml/5.2.0",
  4387. "hashPath": "microsoft.identitymodel.tokens.saml.5.2.0.nupkg.sha512"
  4388. },
  4389. "Microsoft.IdentityModel.Xml/5.2.0": {
  4390. "type": "package",
  4391. "serviceable": true,
  4392. "sha512": "sha512-0WB90AfR16LT0ANCQTb+183yWrusPt4QK1F3f9eL59ZiDKeZLx2AeXgrkDUO+7kG55nCPqmeOUDjHDVK4gsRgA==",
  4393. "path": "microsoft.identitymodel.xml/5.2.0",
  4394. "hashPath": "microsoft.identitymodel.xml.5.2.0.nupkg.sha512"
  4395. },
  4396. "Microsoft.Win32.Registry/4.5.0": {
  4397. "type": "package",
  4398. "serviceable": true,
  4399. "sha512": "sha512-vduxuHEqRgRrTE8wYG8Wxj/+6wwzddOmZzjKZx6rFMc/91aUBxI5etAFYxesoNaIja5NpgSTcnk6cN8BeYXf9A==",
  4400. "path": "microsoft.win32.registry/4.5.0",
  4401. "hashPath": "microsoft.win32.registry.4.5.0.nupkg.sha512"
  4402. },
  4403. "Newtonsoft.Json/11.0.2": {
  4404. "type": "package",
  4405. "serviceable": true,
  4406. "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
  4407. "path": "newtonsoft.json/11.0.2",
  4408. "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
  4409. },
  4410. "Newtonsoft.Json.Bson/1.0.1": {
  4411. "type": "package",
  4412. "serviceable": true,
  4413. "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
  4414. "path": "newtonsoft.json.bson/1.0.1",
  4415. "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512"
  4416. },
  4417. "Remotion.Linq/2.2.0": {
  4418. "type": "package",
  4419. "serviceable": true,
  4420. "sha512": "sha512-fK/76UmpC0FXBlGDFVPLJHQlDLYnGC+XY3eoDgCgbtrhi0vzbXDQ3n/IYHhqSKqXQfGw/u04A1drWs7rFVkRjw==",
  4421. "path": "remotion.linq/2.2.0",
  4422. "hashPath": "remotion.linq.2.2.0.nupkg.sha512"
  4423. },
  4424. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4425. "type": "package",
  4426. "serviceable": true,
  4427. "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4428. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4429. "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4430. },
  4431. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4432. "type": "package",
  4433. "serviceable": true,
  4434. "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4435. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4436. "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4437. },
  4438. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4439. "type": "package",
  4440. "serviceable": true,
  4441. "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4442. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4443. "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4444. },
  4445. "runtime.native.System/4.3.0": {
  4446. "type": "package",
  4447. "serviceable": true,
  4448. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4449. "path": "runtime.native.system/4.3.0",
  4450. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  4451. },
  4452. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4453. "type": "package",
  4454. "serviceable": true,
  4455. "sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
  4456. "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
  4457. "hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
  4458. },
  4459. "runtime.native.System.IO.Compression/4.3.0": {
  4460. "type": "package",
  4461. "serviceable": true,
  4462. "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4463. "path": "runtime.native.system.io.compression/4.3.0",
  4464. "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
  4465. },
  4466. "runtime.native.System.Net.Http/4.3.0": {
  4467. "type": "package",
  4468. "serviceable": true,
  4469. "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4470. "path": "runtime.native.system.net.http/4.3.0",
  4471. "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
  4472. },
  4473. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4474. "type": "package",
  4475. "serviceable": true,
  4476. "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4477. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4478. "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  4479. },
  4480. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4481. "type": "package",
  4482. "serviceable": true,
  4483. "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4484. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4485. "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4486. },
  4487. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4488. "type": "package",
  4489. "serviceable": true,
  4490. "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4491. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4492. "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4493. },
  4494. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4495. "type": "package",
  4496. "serviceable": true,
  4497. "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4498. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4499. "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4500. },
  4501. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4502. "type": "package",
  4503. "serviceable": true,
  4504. "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4505. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4506. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  4507. },
  4508. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4509. "type": "package",
  4510. "serviceable": true,
  4511. "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4512. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4513. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4514. },
  4515. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4516. "type": "package",
  4517. "serviceable": true,
  4518. "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4519. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4520. "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4521. },
  4522. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4523. "type": "package",
  4524. "serviceable": true,
  4525. "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4526. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4527. "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4528. },
  4529. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4530. "type": "package",
  4531. "serviceable": true,
  4532. "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4533. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4534. "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4535. },
  4536. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4537. "type": "package",
  4538. "serviceable": true,
  4539. "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4540. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4541. "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4542. },
  4543. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4544. "type": "package",
  4545. "serviceable": true,
  4546. "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  4547. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4548. "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
  4549. },
  4550. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4551. "type": "package",
  4552. "serviceable": true,
  4553. "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  4554. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4555. "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
  4556. },
  4557. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4558. "type": "package",
  4559. "serviceable": true,
  4560. "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  4561. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  4562. "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
  4563. },
  4564. "System.AppContext/4.3.0": {
  4565. "type": "package",
  4566. "serviceable": true,
  4567. "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4568. "path": "system.appcontext/4.3.0",
  4569. "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
  4570. },
  4571. "System.Buffers/4.5.0": {
  4572. "type": "package",
  4573. "serviceable": true,
  4574. "sha512": "sha512-xpHYjjtyTEpzMwtSQBWdVc3dPjLdQtvyUg6fBlBqcLl1r2Y7gDG/W/enAYOB98nG3oD3Q153Y2FBO8JDWd+0Xw==",
  4575. "path": "system.buffers/4.5.0",
  4576. "hashPath": "system.buffers.4.5.0.nupkg.sha512"
  4577. },
  4578. "System.Collections/4.3.0": {
  4579. "type": "package",
  4580. "serviceable": true,
  4581. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4582. "path": "system.collections/4.3.0",
  4583. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  4584. },
  4585. "System.Collections.Concurrent/4.3.0": {
  4586. "type": "package",
  4587. "serviceable": true,
  4588. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4589. "path": "system.collections.concurrent/4.3.0",
  4590. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  4591. },
  4592. "System.Collections.Immutable/1.5.0": {
  4593. "type": "package",
  4594. "serviceable": true,
  4595. "sha512": "sha512-RGxi2aQoXgZ5ge0zxrKqI4PU9LrYYoLC+cnEnWXKsSduCOUhE1GEAAoTexUVT8RZOILQyy1B27HC8Xw/XLGzdQ==",
  4596. "path": "system.collections.immutable/1.5.0",
  4597. "hashPath": "system.collections.immutable.1.5.0.nupkg.sha512"
  4598. },
  4599. "System.Collections.NonGeneric/4.3.0": {
  4600. "type": "package",
  4601. "serviceable": true,
  4602. "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  4603. "path": "system.collections.nongeneric/4.3.0",
  4604. "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
  4605. },
  4606. "System.Collections.Specialized/4.3.0": {
  4607. "type": "package",
  4608. "serviceable": true,
  4609. "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  4610. "path": "system.collections.specialized/4.3.0",
  4611. "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
  4612. },
  4613. "System.ComponentModel.Annotations/4.5.0": {
  4614. "type": "package",
  4615. "serviceable": true,
  4616. "sha512": "sha512-IjDa643EO77A4CL9dhxfZ6zzGu+pM8Ar0NYPRMN3TvDiga4uGDzFHOj/ArpyNxxKyO5IFT2LZ0rK3kUog7g3jA==",
  4617. "path": "system.componentmodel.annotations/4.5.0",
  4618. "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512"
  4619. },
  4620. "System.Console/4.3.0": {
  4621. "type": "package",
  4622. "serviceable": true,
  4623. "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  4624. "path": "system.console/4.3.0",
  4625. "hashPath": "system.console.4.3.0.nupkg.sha512"
  4626. },
  4627. "System.Data.SqlClient/4.5.1": {
  4628. "type": "package",
  4629. "serviceable": true,
  4630. "sha512": "sha512-qXTvTFkBds7bnN+ntBMHGvmH3pCAkfT4TE1z2Xvfqo4wKMQC77O4aXsYCc7dzCESC+/Gom6l0GLuebpFx7MDvg==",
  4631. "path": "system.data.sqlclient/4.5.1",
  4632. "hashPath": "system.data.sqlclient.4.5.1.nupkg.sha512"
  4633. },
  4634. "System.Diagnostics.Contracts/4.3.0": {
  4635. "type": "package",
  4636. "serviceable": true,
  4637. "sha512": "sha512-eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==",
  4638. "path": "system.diagnostics.contracts/4.3.0",
  4639. "hashPath": "system.diagnostics.contracts.4.3.0.nupkg.sha512"
  4640. },
  4641. "System.Diagnostics.Debug/4.3.0": {
  4642. "type": "package",
  4643. "serviceable": true,
  4644. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  4645. "path": "system.diagnostics.debug/4.3.0",
  4646. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  4647. },
  4648. "System.Diagnostics.DiagnosticSource/4.5.0": {
  4649. "type": "package",
  4650. "serviceable": true,
  4651. "sha512": "sha512-UumL3CJklk5WyEt0eImPmjeuyY1JgJ7Thmg2hAeZGKCv+9iuuAsoc2wcXjypdo3J8VNEmVCH2Bgn/kIw8NI2bA==",
  4652. "path": "system.diagnostics.diagnosticsource/4.5.0",
  4653. "hashPath": "system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512"
  4654. },
  4655. "System.Diagnostics.FileVersionInfo/4.3.0": {
  4656. "type": "package",
  4657. "serviceable": true,
  4658. "sha512": "sha512-omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==",
  4659. "path": "system.diagnostics.fileversioninfo/4.3.0",
  4660. "hashPath": "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512"
  4661. },
  4662. "System.Diagnostics.StackTrace/4.3.0": {
  4663. "type": "package",
  4664. "serviceable": true,
  4665. "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
  4666. "path": "system.diagnostics.stacktrace/4.3.0",
  4667. "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512"
  4668. },
  4669. "System.Diagnostics.Tools/4.3.0": {
  4670. "type": "package",
  4671. "serviceable": true,
  4672. "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  4673. "path": "system.diagnostics.tools/4.3.0",
  4674. "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
  4675. },
  4676. "System.Diagnostics.Tracing/4.3.0": {
  4677. "type": "package",
  4678. "serviceable": true,
  4679. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  4680. "path": "system.diagnostics.tracing/4.3.0",
  4681. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  4682. },
  4683. "System.Dynamic.Runtime/4.3.0": {
  4684. "type": "package",
  4685. "serviceable": true,
  4686. "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  4687. "path": "system.dynamic.runtime/4.3.0",
  4688. "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
  4689. },
  4690. "System.Globalization/4.3.0": {
  4691. "type": "package",
  4692. "serviceable": true,
  4693. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  4694. "path": "system.globalization/4.3.0",
  4695. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  4696. },
  4697. "System.Globalization.Calendars/4.3.0": {
  4698. "type": "package",
  4699. "serviceable": true,
  4700. "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  4701. "path": "system.globalization.calendars/4.3.0",
  4702. "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
  4703. },
  4704. "System.Globalization.Extensions/4.3.0": {
  4705. "type": "package",
  4706. "serviceable": true,
  4707. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  4708. "path": "system.globalization.extensions/4.3.0",
  4709. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  4710. },
  4711. "System.IdentityModel.Tokens.Jwt/5.2.0": {
  4712. "type": "package",
  4713. "serviceable": true,
  4714. "sha512": "sha512-E8tNMfMWPvlSF5fvmMIVZZHlGuIZzE5uktuR+GN2gFdngh0k6xoZquxfjKC02d0NqfsshNQVTCdSKXD5e9/lpA==",
  4715. "path": "system.identitymodel.tokens.jwt/5.2.0",
  4716. "hashPath": "system.identitymodel.tokens.jwt.5.2.0.nupkg.sha512"
  4717. },
  4718. "System.Interactive.Async/3.1.1": {
  4719. "type": "package",
  4720. "serviceable": true,
  4721. "sha512": "sha512-hZccYiIE5RS1/J9Tb/BNtosAGVggdlsJm4Ojdu+gDV0p4AIi+LUfUogMKkRacljQEJd2AG6vYzvcjhQFkqoZmw==",
  4722. "path": "system.interactive.async/3.1.1",
  4723. "hashPath": "system.interactive.async.3.1.1.nupkg.sha512"
  4724. },
  4725. "System.IO/4.3.0": {
  4726. "type": "package",
  4727. "serviceable": true,
  4728. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4729. "path": "system.io/4.3.0",
  4730. "hashPath": "system.io.4.3.0.nupkg.sha512"
  4731. },
  4732. "System.IO.Compression/4.3.0": {
  4733. "type": "package",
  4734. "serviceable": true,
  4735. "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  4736. "path": "system.io.compression/4.3.0",
  4737. "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
  4738. },
  4739. "System.IO.FileSystem/4.3.0": {
  4740. "type": "package",
  4741. "serviceable": true,
  4742. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  4743. "path": "system.io.filesystem/4.3.0",
  4744. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  4745. },
  4746. "System.IO.FileSystem.Primitives/4.3.0": {
  4747. "type": "package",
  4748. "serviceable": true,
  4749. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  4750. "path": "system.io.filesystem.primitives/4.3.0",
  4751. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  4752. },
  4753. "System.IO.Pipelines/4.5.0": {
  4754. "type": "package",
  4755. "serviceable": true,
  4756. "sha512": "sha512-Kq9eZWVKN9khHhkatLWLLxYCs3j9qSNMZELqn2YG1YsCMv6bPmAtaN0CfA6l7vxFbiV02C996Dy7yHO8DkaJLg==",
  4757. "path": "system.io.pipelines/4.5.0",
  4758. "hashPath": "system.io.pipelines.4.5.0.nupkg.sha512"
  4759. },
  4760. "System.Linq/4.3.0": {
  4761. "type": "package",
  4762. "serviceable": true,
  4763. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  4764. "path": "system.linq/4.3.0",
  4765. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  4766. },
  4767. "System.Linq.Expressions/4.3.0": {
  4768. "type": "package",
  4769. "serviceable": true,
  4770. "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  4771. "path": "system.linq.expressions/4.3.0",
  4772. "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
  4773. },
  4774. "System.Linq.Queryable/4.0.1": {
  4775. "type": "package",
  4776. "serviceable": true,
  4777. "sha512": "sha512-Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
  4778. "path": "system.linq.queryable/4.0.1",
  4779. "hashPath": "system.linq.queryable.4.0.1.nupkg.sha512"
  4780. },
  4781. "System.Memory/4.5.1": {
  4782. "type": "package",
  4783. "serviceable": true,
  4784. "sha512": "sha512-vcG3/MbfpxznMkkkaAblJi7RHOmuP7kawQMhDgLSuA1tRpRQYsFSCTxRSINDUgn2QNn2jWeLxv8er5BXbyACkw==",
  4785. "path": "system.memory/4.5.1",
  4786. "hashPath": "system.memory.4.5.1.nupkg.sha512"
  4787. },
  4788. "System.Net.Http/4.3.0": {
  4789. "type": "package",
  4790. "serviceable": true,
  4791. "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  4792. "path": "system.net.http/4.3.0",
  4793. "hashPath": "system.net.http.4.3.0.nupkg.sha512"
  4794. },
  4795. "System.Net.Primitives/4.3.0": {
  4796. "type": "package",
  4797. "serviceable": true,
  4798. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  4799. "path": "system.net.primitives/4.3.0",
  4800. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  4801. },
  4802. "System.Net.WebSockets.WebSocketProtocol/4.5.1": {
  4803. "type": "package",
  4804. "serviceable": true,
  4805. "sha512": "sha512-ME9tj5H/VM0SJW1Qq9zGcUxILhR+OBCNQEmEocoVxRwh5Y/H+Azob2dCP/7Tfk1ag7PmKZ1f5Iqv1ptgDYTHlQ==",
  4806. "path": "system.net.websockets.websocketprotocol/4.5.1",
  4807. "hashPath": "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512"
  4808. },
  4809. "System.Numerics.Vectors/4.5.0": {
  4810. "type": "package",
  4811. "serviceable": true,
  4812. "sha512": "sha512-MNcaYxUJvUcoXOa+jgKl/GDw/Mh+wMrxDjW4dre7qrp35LUGTjUBNtZsNjxsWX592ocdyqt1X5hMJB+5OStoYw==",
  4813. "path": "system.numerics.vectors/4.5.0",
  4814. "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
  4815. },
  4816. "System.ObjectModel/4.3.0": {
  4817. "type": "package",
  4818. "serviceable": true,
  4819. "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  4820. "path": "system.objectmodel/4.3.0",
  4821. "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
  4822. },
  4823. "System.Private.DataContractSerialization/4.3.0": {
  4824. "type": "package",
  4825. "serviceable": true,
  4826. "sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
  4827. "path": "system.private.datacontractserialization/4.3.0",
  4828. "hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512"
  4829. },
  4830. "System.Reflection/4.3.0": {
  4831. "type": "package",
  4832. "serviceable": true,
  4833. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  4834. "path": "system.reflection/4.3.0",
  4835. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  4836. },
  4837. "System.Reflection.Emit/4.3.0": {
  4838. "type": "package",
  4839. "serviceable": true,
  4840. "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  4841. "path": "system.reflection.emit/4.3.0",
  4842. "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
  4843. },
  4844. "System.Reflection.Emit.ILGeneration/4.3.0": {
  4845. "type": "package",
  4846. "serviceable": true,
  4847. "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  4848. "path": "system.reflection.emit.ilgeneration/4.3.0",
  4849. "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
  4850. },
  4851. "System.Reflection.Emit.Lightweight/4.3.0": {
  4852. "type": "package",
  4853. "serviceable": true,
  4854. "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  4855. "path": "system.reflection.emit.lightweight/4.3.0",
  4856. "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
  4857. },
  4858. "System.Reflection.Extensions/4.3.0": {
  4859. "type": "package",
  4860. "serviceable": true,
  4861. "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  4862. "path": "system.reflection.extensions/4.3.0",
  4863. "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
  4864. },
  4865. "System.Reflection.Metadata/1.6.0": {
  4866. "type": "package",
  4867. "serviceable": true,
  4868. "sha512": "sha512-I4aWCii7N1bmn43vviRfJQYW6UAco1G/CcjJouvgGdb/sr2BRTSnddhaPMg2oxu9VHFn8T1z3dTLq0pna8zmtA==",
  4869. "path": "system.reflection.metadata/1.6.0",
  4870. "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
  4871. },
  4872. "System.Reflection.Primitives/4.3.0": {
  4873. "type": "package",
  4874. "serviceable": true,
  4875. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  4876. "path": "system.reflection.primitives/4.3.0",
  4877. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  4878. },
  4879. "System.Reflection.TypeExtensions/4.3.0": {
  4880. "type": "package",
  4881. "serviceable": true,
  4882. "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  4883. "path": "system.reflection.typeextensions/4.3.0",
  4884. "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
  4885. },
  4886. "System.Resources.ResourceManager/4.3.0": {
  4887. "type": "package",
  4888. "serviceable": true,
  4889. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  4890. "path": "system.resources.resourcemanager/4.3.0",
  4891. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  4892. },
  4893. "System.Runtime/4.3.0": {
  4894. "type": "package",
  4895. "serviceable": true,
  4896. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  4897. "path": "system.runtime/4.3.0",
  4898. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  4899. },
  4900. "System.Runtime.CompilerServices.Unsafe/4.5.1": {
  4901. "type": "package",
  4902. "serviceable": true,
  4903. "sha512": "sha512-qUJMNWhbm9oZ3XaMFiEMiYmRPszbnXIkRIi7+4b2Md2xZ6JUOepf0/kY3S85qistRohl9OdMe4PsO+RdG2kTIQ==",
  4904. "path": "system.runtime.compilerservices.unsafe/4.5.1",
  4905. "hashPath": "system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512"
  4906. },
  4907. "System.Runtime.Extensions/4.3.0": {
  4908. "type": "package",
  4909. "serviceable": true,
  4910. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  4911. "path": "system.runtime.extensions/4.3.0",
  4912. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  4913. },
  4914. "System.Runtime.Handles/4.3.0": {
  4915. "type": "package",
  4916. "serviceable": true,
  4917. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  4918. "path": "system.runtime.handles/4.3.0",
  4919. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  4920. },
  4921. "System.Runtime.InteropServices/4.3.0": {
  4922. "type": "package",
  4923. "serviceable": true,
  4924. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  4925. "path": "system.runtime.interopservices/4.3.0",
  4926. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  4927. },
  4928. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  4929. "type": "package",
  4930. "serviceable": true,
  4931. "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  4932. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  4933. "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
  4934. },
  4935. "System.Runtime.Numerics/4.3.0": {
  4936. "type": "package",
  4937. "serviceable": true,
  4938. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  4939. "path": "system.runtime.numerics/4.3.0",
  4940. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  4941. },
  4942. "System.Runtime.Serialization.Primitives/4.3.0": {
  4943. "type": "package",
  4944. "serviceable": true,
  4945. "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  4946. "path": "system.runtime.serialization.primitives/4.3.0",
  4947. "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
  4948. },
  4949. "System.Runtime.Serialization.Xml/4.3.0": {
  4950. "type": "package",
  4951. "serviceable": true,
  4952. "sha512": "sha512-nUQx/5OVgrqEba3+j7OdiofvVq9koWZAC7Z3xGI8IIViZqApWnZ5+lLcwYgTlbkobrl/Rat+Jb8GeD4WQESD2A==",
  4953. "path": "system.runtime.serialization.xml/4.3.0",
  4954. "hashPath": "system.runtime.serialization.xml.4.3.0.nupkg.sha512"
  4955. },
  4956. "System.Security.AccessControl/4.5.0": {
  4957. "type": "package",
  4958. "serviceable": true,
  4959. "sha512": "sha512-aVjTe36YkO8FzfNhMLoPEzv3gF9rphoW9ngFhG/MH4zzEPLx07sNrgCLwMP4Wx2leI6qarMrGv21OwQXYUKLmw==",
  4960. "path": "system.security.accesscontrol/4.5.0",
  4961. "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512"
  4962. },
  4963. "System.Security.Claims/4.3.0": {
  4964. "type": "package",
  4965. "serviceable": true,
  4966. "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  4967. "path": "system.security.claims/4.3.0",
  4968. "hashPath": "system.security.claims.4.3.0.nupkg.sha512"
  4969. },
  4970. "System.Security.Cryptography.Algorithms/4.3.0": {
  4971. "type": "package",
  4972. "serviceable": true,
  4973. "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  4974. "path": "system.security.cryptography.algorithms/4.3.0",
  4975. "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
  4976. },
  4977. "System.Security.Cryptography.Cng/4.5.0": {
  4978. "type": "package",
  4979. "serviceable": true,
  4980. "sha512": "sha512-O4tqXxWCD8y1IU1VTgzbuBFwoRahrADhDUxHjwezhHCsqyFNyQ5EytjWBxu0EsZuH14b4UO2pFkG063K2h/9Ug==",
  4981. "path": "system.security.cryptography.cng/4.5.0",
  4982. "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
  4983. },
  4984. "System.Security.Cryptography.Csp/4.3.0": {
  4985. "type": "package",
  4986. "serviceable": true,
  4987. "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  4988. "path": "system.security.cryptography.csp/4.3.0",
  4989. "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
  4990. },
  4991. "System.Security.Cryptography.Encoding/4.3.0": {
  4992. "type": "package",
  4993. "serviceable": true,
  4994. "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  4995. "path": "system.security.cryptography.encoding/4.3.0",
  4996. "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
  4997. },
  4998. "System.Security.Cryptography.OpenSsl/4.3.0": {
  4999. "type": "package",
  5000. "serviceable": true,
  5001. "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  5002. "path": "system.security.cryptography.openssl/4.3.0",
  5003. "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  5004. },
  5005. "System.Security.Cryptography.Pkcs/4.5.0": {
  5006. "type": "package",
  5007. "serviceable": true,
  5008. "sha512": "sha512-1vv2x8cok3NAolee/nb6X/6PnTx+OBKUM3kt1Rlgg04uQ+IMwjc88xFIfJdwbYcvjlOtzT7CHba1pqVAu9tj/w==",
  5009. "path": "system.security.cryptography.pkcs/4.5.0",
  5010. "hashPath": "system.security.cryptography.pkcs.4.5.0.nupkg.sha512"
  5011. },
  5012. "System.Security.Cryptography.Primitives/4.3.0": {
  5013. "type": "package",
  5014. "serviceable": true,
  5015. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  5016. "path": "system.security.cryptography.primitives/4.3.0",
  5017. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  5018. },
  5019. "System.Security.Cryptography.X509Certificates/4.3.0": {
  5020. "type": "package",
  5021. "serviceable": true,
  5022. "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  5023. "path": "system.security.cryptography.x509certificates/4.3.0",
  5024. "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
  5025. },
  5026. "System.Security.Cryptography.Xml/4.5.0": {
  5027. "type": "package",
  5028. "serviceable": true,
  5029. "sha512": "sha512-UvxfrEg7YG7U6BQO8WdQ4Nu1LFt2lqYQnoZefaK/2RDvjYdJ+norsVe4dwOqo14XiipgYY5xNUo6VhQXNbl2vg==",
  5030. "path": "system.security.cryptography.xml/4.5.0",
  5031. "hashPath": "system.security.cryptography.xml.4.5.0.nupkg.sha512"
  5032. },
  5033. "System.Security.Permissions/4.5.0": {
  5034. "type": "package",
  5035. "serviceable": true,
  5036. "sha512": "sha512-vDQ7q30Soe0a1cPhvxn+7IFmMeTG5IP+hTQrnKQDjTNpD2epqwbZSzMM2Git5TXBr4Kwwhc/0SEtJY0qPoiegA==",
  5037. "path": "system.security.permissions/4.5.0",
  5038. "hashPath": "system.security.permissions.4.5.0.nupkg.sha512"
  5039. },
  5040. "System.Security.Principal/4.3.0": {
  5041. "type": "package",
  5042. "serviceable": true,
  5043. "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  5044. "path": "system.security.principal/4.3.0",
  5045. "hashPath": "system.security.principal.4.3.0.nupkg.sha512"
  5046. },
  5047. "System.Security.Principal.Windows/4.5.0": {
  5048. "type": "package",
  5049. "serviceable": true,
  5050. "sha512": "sha512-WA9ETb/pY3BjnxKjBUHEgO59B7d/nnmjHFsqjJ2eDT780nD769CT1/bw2ia0Z6W7NqlcqokE6sKGKa6uw88XGA==",
  5051. "path": "system.security.principal.windows/4.5.0",
  5052. "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512"
  5053. },
  5054. "System.Text.Encoding/4.3.0": {
  5055. "type": "package",
  5056. "serviceable": true,
  5057. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  5058. "path": "system.text.encoding/4.3.0",
  5059. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  5060. },
  5061. "System.Text.Encoding.CodePages/4.5.0": {
  5062. "type": "package",
  5063. "serviceable": true,
  5064. "sha512": "sha512-16EVkWmNnoH3/Yj9c5s5VuLK5Uv/Dnkc3P2kMmnD7wJcUuvcHVvM2IhVJanf2hHRZUitH+cIkPCPHrBoCXc7Rw==",
  5065. "path": "system.text.encoding.codepages/4.5.0",
  5066. "hashPath": "system.text.encoding.codepages.4.5.0.nupkg.sha512"
  5067. },
  5068. "System.Text.Encoding.Extensions/4.3.0": {
  5069. "type": "package",
  5070. "serviceable": true,
  5071. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  5072. "path": "system.text.encoding.extensions/4.3.0",
  5073. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  5074. },
  5075. "System.Text.Encodings.Web/4.5.0": {
  5076. "type": "package",
  5077. "serviceable": true,
  5078. "sha512": "sha512-JF+wDdfFiRl3rz3dPMfR6aR568AW2J5CUMmhSflgHDz4zbVK4/00ax8UHnHyEMvblPewgNugjuA4oyoL8Pex2g==",
  5079. "path": "system.text.encodings.web/4.5.0",
  5080. "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
  5081. },
  5082. "System.Text.RegularExpressions/4.3.0": {
  5083. "type": "package",
  5084. "serviceable": true,
  5085. "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  5086. "path": "system.text.regularexpressions/4.3.0",
  5087. "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
  5088. },
  5089. "System.Threading/4.3.0": {
  5090. "type": "package",
  5091. "serviceable": true,
  5092. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  5093. "path": "system.threading/4.3.0",
  5094. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  5095. },
  5096. "System.Threading.Channels/4.5.0": {
  5097. "type": "package",
  5098. "serviceable": true,
  5099. "sha512": "sha512-Js7f30DXMo1plMo32fOpKF7AhCmuKyOKDT1fSayntGGOVfF5V/xKVu1UPI3N+/hTXuqKKgB++eACPZ120uLpGg==",
  5100. "path": "system.threading.channels/4.5.0",
  5101. "hashPath": "system.threading.channels.4.5.0.nupkg.sha512"
  5102. },
  5103. "System.Threading.Tasks/4.3.0": {
  5104. "type": "package",
  5105. "serviceable": true,
  5106. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  5107. "path": "system.threading.tasks/4.3.0",
  5108. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  5109. },
  5110. "System.Threading.Tasks.Extensions/4.5.1": {
  5111. "type": "package",
  5112. "serviceable": true,
  5113. "sha512": "sha512-rckdhLJtzQ3EI+0BGuq7dUVtCSnerqAoAmL3S6oMRZ4VMZTL3Rq9DS8IDW57c6PYVebA4O0NbSA1BDvyE18UMA==",
  5114. "path": "system.threading.tasks.extensions/4.5.1",
  5115. "hashPath": "system.threading.tasks.extensions.4.5.1.nupkg.sha512"
  5116. },
  5117. "System.Threading.Tasks.Parallel/4.3.0": {
  5118. "type": "package",
  5119. "serviceable": true,
  5120. "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
  5121. "path": "system.threading.tasks.parallel/4.3.0",
  5122. "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512"
  5123. },
  5124. "System.Threading.Thread/4.3.0": {
  5125. "type": "package",
  5126. "serviceable": true,
  5127. "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  5128. "path": "system.threading.thread/4.3.0",
  5129. "hashPath": "system.threading.thread.4.3.0.nupkg.sha512"
  5130. },
  5131. "System.ValueTuple/4.3.0": {
  5132. "type": "package",
  5133. "serviceable": true,
  5134. "sha512": "sha512-cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==",
  5135. "path": "system.valuetuple/4.3.0",
  5136. "hashPath": "system.valuetuple.4.3.0.nupkg.sha512"
  5137. },
  5138. "System.Xml.ReaderWriter/4.3.0": {
  5139. "type": "package",
  5140. "serviceable": true,
  5141. "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  5142. "path": "system.xml.readerwriter/4.3.0",
  5143. "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
  5144. },
  5145. "System.Xml.XDocument/4.3.0": {
  5146. "type": "package",
  5147. "serviceable": true,
  5148. "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  5149. "path": "system.xml.xdocument/4.3.0",
  5150. "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
  5151. },
  5152. "System.Xml.XmlDocument/4.3.0": {
  5153. "type": "package",
  5154. "serviceable": true,
  5155. "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  5156. "path": "system.xml.xmldocument/4.3.0",
  5157. "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
  5158. },
  5159. "System.Xml.XmlSerializer/4.3.0": {
  5160. "type": "package",
  5161. "serviceable": true,
  5162. "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
  5163. "path": "system.xml.xmlserializer/4.3.0",
  5164. "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
  5165. },
  5166. "System.Xml.XPath/4.3.0": {
  5167. "type": "package",
  5168. "serviceable": true,
  5169. "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
  5170. "path": "system.xml.xpath/4.3.0",
  5171. "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512"
  5172. },
  5173. "System.Xml.XPath.XDocument/4.3.0": {
  5174. "type": "package",
  5175. "serviceable": true,
  5176. "sha512": "sha512-jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==",
  5177. "path": "system.xml.xpath.xdocument/4.3.0",
  5178. "hashPath": "system.xml.xpath.xdocument.4.3.0.nupkg.sha512"
  5179. }
  5180. }
  5181. }