MqttServerApp.deps.json 169 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v3.1",
  4. "signature": ""
  5. },
  6. "compilationOptions": {
  7. "defines": [
  8. "TRACE",
  9. "RELEASE",
  10. "NETCOREAPP",
  11. "NETCOREAPP3_1"
  12. ],
  13. "languageVersion": "",
  14. "platform": "",
  15. "allowUnsafe": false,
  16. "warningsAsErrors": false,
  17. "optimize": true,
  18. "keyFile": "",
  19. "emitEntryPoint": true,
  20. "xmlDoc": false,
  21. "debugType": "portable"
  22. },
  23. "targets": {
  24. ".NETCoreApp,Version=v3.1": {
  25. "MqttServerApp/1.0.0": {
  26. "dependencies": {
  27. "MQTTnet.AspNetCore": "3.0.8",
  28. "Microsoft.AspNetCore.Antiforgery": "3.1.0.0",
  29. "Microsoft.AspNetCore.Authentication.Abstractions.Reference": "3.1.0.0",
  30. "Microsoft.AspNetCore.Authentication.Cookies": "3.1.0.0",
  31. "Microsoft.AspNetCore.Authentication.Core": "3.1.0.0",
  32. "Microsoft.AspNetCore.Authentication": "3.1.0.0",
  33. "Microsoft.AspNetCore.Authentication.OAuth": "3.1.0.0",
  34. "Microsoft.AspNetCore.Authorization.Reference": "3.1.0.0",
  35. "Microsoft.AspNetCore.Authorization.Policy.Reference": "3.1.0.0",
  36. "Microsoft.AspNetCore.Components.Authorization": "3.1.0.0",
  37. "Microsoft.AspNetCore.Components": "3.1.0.0",
  38. "Microsoft.AspNetCore.Components.Forms": "3.1.0.0",
  39. "Microsoft.AspNetCore.Components.Server": "3.1.0.0",
  40. "Microsoft.AspNetCore.Components.Web": "3.1.0.0",
  41. "Microsoft.AspNetCore.Connections.Abstractions.Reference": "3.1.0.0",
  42. "Microsoft.AspNetCore.CookiePolicy": "3.1.0.0",
  43. "Microsoft.AspNetCore.Cors": "3.1.0.0",
  44. "Microsoft.AspNetCore.Cryptography.Internal": "3.1.0.0",
  45. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.0.0",
  46. "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.0.0",
  47. "Microsoft.AspNetCore.DataProtection": "3.1.0.0",
  48. "Microsoft.AspNetCore.DataProtection.Extensions": "3.1.0.0",
  49. "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.1.0.0",
  50. "Microsoft.AspNetCore.Diagnostics": "3.1.0.0",
  51. "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.1.0.0",
  52. "Microsoft.AspNetCore": "3.1.0.0",
  53. "Microsoft.AspNetCore.HostFiltering": "3.1.0.0",
  54. "Microsoft.AspNetCore.Hosting.Abstractions.Reference": "3.1.0.0",
  55. "Microsoft.AspNetCore.Hosting": "3.1.0.0",
  56. "Microsoft.AspNetCore.Hosting.Server.Abstractions.Reference": "3.1.0.0",
  57. "Microsoft.AspNetCore.Html.Abstractions": "3.1.0.0",
  58. "Microsoft.AspNetCore.Http.Abstractions.Reference": "3.1.0.0",
  59. "Microsoft.AspNetCore.Http.Connections.Common.Reference": "3.1.0.0",
  60. "Microsoft.AspNetCore.Http.Connections.Reference": "3.1.0.0",
  61. "Microsoft.AspNetCore.Http.Reference": "3.1.0.0",
  62. "Microsoft.AspNetCore.Http.Extensions.Reference": "3.1.0.0",
  63. "Microsoft.AspNetCore.Http.Features.Reference": "3.1.0.0",
  64. "Microsoft.AspNetCore.HttpOverrides": "3.1.0.0",
  65. "Microsoft.AspNetCore.HttpsPolicy": "3.1.0.0",
  66. "Microsoft.AspNetCore.Identity": "3.1.0.0",
  67. "Microsoft.AspNetCore.Localization": "3.1.0.0",
  68. "Microsoft.AspNetCore.Localization.Routing": "3.1.0.0",
  69. "Microsoft.AspNetCore.Metadata": "3.1.0.0",
  70. "Microsoft.AspNetCore.Mvc.Abstractions": "3.1.0.0",
  71. "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.1.0.0",
  72. "Microsoft.AspNetCore.Mvc.Core": "3.1.0.0",
  73. "Microsoft.AspNetCore.Mvc.Cors": "3.1.0.0",
  74. "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.1.0.0",
  75. "Microsoft.AspNetCore.Mvc": "3.1.0.0",
  76. "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.1.0.0",
  77. "Microsoft.AspNetCore.Mvc.Formatters.Xml": "3.1.0.0",
  78. "Microsoft.AspNetCore.Mvc.Localization": "3.1.0.0",
  79. "Microsoft.AspNetCore.Mvc.Razor": "3.1.0.0",
  80. "Microsoft.AspNetCore.Mvc.RazorPages": "3.1.0.0",
  81. "Microsoft.AspNetCore.Mvc.TagHelpers": "3.1.0.0",
  82. "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.1.0.0",
  83. "Microsoft.AspNetCore.Razor": "3.1.0.0",
  84. "Microsoft.AspNetCore.Razor.Runtime": "3.1.0.0",
  85. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "3.1.0.0",
  86. "Microsoft.AspNetCore.ResponseCaching": "3.1.0.0",
  87. "Microsoft.AspNetCore.ResponseCompression": "3.1.0.0",
  88. "Microsoft.AspNetCore.Rewrite": "3.1.0.0",
  89. "Microsoft.AspNetCore.Routing.Abstractions.Reference": "3.1.0.0",
  90. "Microsoft.AspNetCore.Routing.Reference": "3.1.0.0",
  91. "Microsoft.AspNetCore.Server.HttpSys": "3.1.0.0",
  92. "Microsoft.AspNetCore.Server.IIS": "3.1.0.0",
  93. "Microsoft.AspNetCore.Server.IISIntegration": "3.1.0.0",
  94. "Microsoft.AspNetCore.Server.Kestrel.Core": "3.1.0.0",
  95. "Microsoft.AspNetCore.Server.Kestrel": "3.1.0.0",
  96. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.1.0.0",
  97. "Microsoft.AspNetCore.Session": "3.1.0.0",
  98. "Microsoft.AspNetCore.SignalR.Common": "3.1.0.0",
  99. "Microsoft.AspNetCore.SignalR.Core": "3.1.0.0",
  100. "Microsoft.AspNetCore.SignalR": "3.1.0.0",
  101. "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.0.0",
  102. "Microsoft.AspNetCore.StaticFiles": "3.1.0.0",
  103. "Microsoft.AspNetCore.WebSockets.Reference": "3.1.0.0",
  104. "Microsoft.AspNetCore.WebUtilities.Reference": "3.1.0.0",
  105. "Microsoft.CSharp": "4.0.0.0",
  106. "Microsoft.Extensions.Caching.Abstractions": "3.1.0.0",
  107. "Microsoft.Extensions.Caching.Memory": "3.1.0.0",
  108. "Microsoft.Extensions.Configuration.Abstractions.Reference": "3.1.0.0",
  109. "Microsoft.Extensions.Configuration.Binder": "3.1.0.0",
  110. "Microsoft.Extensions.Configuration.CommandLine": "3.1.0.0",
  111. "Microsoft.Extensions.Configuration": "3.1.0.0",
  112. "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.0.0",
  113. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.0.0",
  114. "Microsoft.Extensions.Configuration.Ini": "3.1.0.0",
  115. "Microsoft.Extensions.Configuration.Json": "3.1.0.0",
  116. "Microsoft.Extensions.Configuration.KeyPerFile": "3.1.0.0",
  117. "Microsoft.Extensions.Configuration.UserSecrets": "3.1.0.0",
  118. "Microsoft.Extensions.Configuration.Xml": "3.1.0.0",
  119. "Microsoft.Extensions.DependencyInjection.Abstractions.Reference": "3.1.0.0",
  120. "Microsoft.Extensions.DependencyInjection": "3.1.0.0",
  121. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.1.0.0",
  122. "Microsoft.Extensions.Diagnostics.HealthChecks": "3.1.0.0",
  123. "Microsoft.Extensions.FileProviders.Abstractions.Reference": "3.1.0.0",
  124. "Microsoft.Extensions.FileProviders.Composite": "3.1.0.0",
  125. "Microsoft.Extensions.FileProviders.Embedded": "3.1.0.0",
  126. "Microsoft.Extensions.FileProviders.Physical": "3.1.0.0",
  127. "Microsoft.Extensions.FileSystemGlobbing": "3.1.0.0",
  128. "Microsoft.Extensions.Hosting.Abstractions.Reference": "3.1.0.0",
  129. "Microsoft.Extensions.Hosting": "3.1.0.0",
  130. "Microsoft.Extensions.Http": "3.1.0.0",
  131. "Microsoft.Extensions.Identity.Core": "3.1.0.0",
  132. "Microsoft.Extensions.Identity.Stores": "3.1.0.0",
  133. "Microsoft.Extensions.Localization.Abstractions": "3.1.0.0",
  134. "Microsoft.Extensions.Localization": "3.1.0.0",
  135. "Microsoft.Extensions.Logging.Abstractions.Reference": "3.1.0.0",
  136. "Microsoft.Extensions.Logging.Configuration": "3.1.0.0",
  137. "Microsoft.Extensions.Logging.Console": "3.1.0.0",
  138. "Microsoft.Extensions.Logging.Debug": "3.1.0.0",
  139. "Microsoft.Extensions.Logging": "3.1.0.0",
  140. "Microsoft.Extensions.Logging.EventLog": "3.1.0.0",
  141. "Microsoft.Extensions.Logging.EventSource": "3.1.0.0",
  142. "Microsoft.Extensions.Logging.TraceSource": "3.1.0.0",
  143. "Microsoft.Extensions.ObjectPool.Reference": "3.1.0.0",
  144. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0.0",
  145. "Microsoft.Extensions.Options.DataAnnotations": "3.1.0.0",
  146. "Microsoft.Extensions.Options.Reference": "3.1.0.0",
  147. "Microsoft.Extensions.Primitives.Reference": "3.1.0.0",
  148. "Microsoft.Extensions.WebEncoders": "3.1.0.0",
  149. "Microsoft.JSInterop": "3.1.0.0",
  150. "Microsoft.Net.Http.Headers.Reference": "3.1.0.0",
  151. "Microsoft.VisualBasic.Core": "10.0.5.0",
  152. "Microsoft.VisualBasic": "10.0.0.0",
  153. "Microsoft.Win32.Primitives.Reference": "4.1.2.0",
  154. "Microsoft.Win32.Registry": "4.1.3.0",
  155. "mscorlib": "4.0.0.0",
  156. "netstandard": "2.1.0.0",
  157. "System.AppContext": "4.2.2.0",
  158. "System.Buffers.Reference": "4.0.2.0",
  159. "System.Collections.Concurrent.Reference": "4.0.15.0",
  160. "System.Collections.Reference": "4.1.2.0",
  161. "System.Collections.Immutable": "1.2.5.0",
  162. "System.Collections.NonGeneric": "4.1.2.0",
  163. "System.Collections.Specialized": "4.1.2.0",
  164. "System.ComponentModel.Annotations": "4.3.1.0",
  165. "System.ComponentModel.DataAnnotations": "4.0.0.0",
  166. "System.ComponentModel": "4.0.4.0",
  167. "System.ComponentModel.EventBasedAsync": "4.1.2.0",
  168. "System.ComponentModel.Primitives": "4.2.2.0",
  169. "System.ComponentModel.TypeConverter": "4.2.2.0",
  170. "System.Configuration": "4.0.0.0",
  171. "System.Console": "4.1.2.0",
  172. "System.Core": "4.0.0.0",
  173. "System.Data.Common": "4.2.2.0",
  174. "System.Data.DataSetExtensions": "4.0.1.0",
  175. "System.Data": "4.0.0.0",
  176. "System.Diagnostics.Contracts": "4.0.4.0",
  177. "System.Diagnostics.Debug.Reference": "4.1.2.0",
  178. "System.Diagnostics.DiagnosticSource": "4.0.5.0",
  179. "System.Diagnostics.EventLog": "4.0.2.0",
  180. "System.Diagnostics.FileVersionInfo": "4.0.4.0",
  181. "System.Diagnostics.Process": "4.2.2.0",
  182. "System.Diagnostics.StackTrace": "4.1.2.0",
  183. "System.Diagnostics.TextWriterTraceListener": "4.1.2.0",
  184. "System.Diagnostics.Tools": "4.1.2.0",
  185. "System.Diagnostics.TraceSource": "4.1.2.0",
  186. "System.Diagnostics.Tracing.Reference": "4.2.2.0",
  187. "System": "4.0.0.0",
  188. "System.Drawing": "4.0.0.0",
  189. "System.Drawing.Primitives": "4.2.1.0",
  190. "System.Dynamic.Runtime": "4.1.2.0",
  191. "System.Globalization.Calendars.Reference": "4.1.2.0",
  192. "System.Globalization.Reference": "4.1.2.0",
  193. "System.Globalization.Extensions.Reference": "4.1.2.0",
  194. "System.IO.Compression.Brotli": "4.2.2.0",
  195. "System.IO.Compression": "4.2.2.0",
  196. "System.IO.Compression.FileSystem": "4.0.0.0",
  197. "System.IO.Compression.ZipFile": "4.0.5.0",
  198. "System.IO.Reference": "4.2.2.0",
  199. "System.IO.FileSystem.Reference": "4.1.2.0",
  200. "System.IO.FileSystem.DriveInfo": "4.1.2.0",
  201. "System.IO.FileSystem.Primitives.Reference": "4.1.2.0",
  202. "System.IO.FileSystem.Watcher": "4.1.2.0",
  203. "System.IO.IsolatedStorage": "4.1.2.0",
  204. "System.IO.MemoryMappedFiles": "4.1.2.0",
  205. "System.IO.Pipelines.Reference": "4.0.2.0",
  206. "System.IO.Pipes": "4.1.2.0",
  207. "System.IO.UnmanagedMemoryStream": "4.1.2.0",
  208. "System.Linq.Reference": "4.2.2.0",
  209. "System.Linq.Expressions": "4.2.2.0",
  210. "System.Linq.Parallel": "4.0.4.0",
  211. "System.Linq.Queryable": "4.0.4.0",
  212. "System.Memory.Reference": "4.2.1.0",
  213. "System.Net": "4.0.0.0",
  214. "System.Net.Http": "4.2.2.0",
  215. "System.Net.HttpListener": "4.0.2.0",
  216. "System.Net.Mail": "4.0.2.0",
  217. "System.Net.NameResolution.Reference": "4.1.2.0",
  218. "System.Net.NetworkInformation": "4.2.2.0",
  219. "System.Net.Ping": "4.1.2.0",
  220. "System.Net.Primitives.Reference": "4.1.2.0",
  221. "System.Net.Requests": "4.1.2.0",
  222. "System.Net.Security.Reference": "4.1.2.0",
  223. "System.Net.ServicePoint": "4.0.2.0",
  224. "System.Net.Sockets.Reference": "4.2.2.0",
  225. "System.Net.WebClient": "4.0.2.0",
  226. "System.Net.WebHeaderCollection.Reference": "4.1.2.0",
  227. "System.Net.WebProxy": "4.0.2.0",
  228. "System.Net.WebSockets.Client.Reference": "4.1.2.0",
  229. "System.Net.WebSockets.Reference": "4.1.2.0",
  230. "System.Numerics": "4.0.0.0",
  231. "System.Numerics.Vectors": "4.1.6.0",
  232. "System.ObjectModel": "4.1.2.0",
  233. "System.Reflection.DispatchProxy": "4.0.6.0",
  234. "System.Reflection.Reference": "4.2.2.0",
  235. "System.Reflection.Emit": "4.1.2.0",
  236. "System.Reflection.Emit.ILGeneration": "4.1.1.0",
  237. "System.Reflection.Emit.Lightweight": "4.1.1.0",
  238. "System.Reflection.Extensions": "4.1.2.0",
  239. "System.Reflection.Metadata": "1.4.5.0",
  240. "System.Reflection.Primitives.Reference": "4.1.2.0",
  241. "System.Reflection.TypeExtensions": "4.1.2.0",
  242. "System.Resources.Reader": "4.1.2.0",
  243. "System.Resources.ResourceManager.Reference": "4.1.2.0",
  244. "System.Resources.Writer": "4.1.2.0",
  245. "System.Runtime.CompilerServices.Unsafe.Reference": "4.0.6.0",
  246. "System.Runtime.CompilerServices.VisualC": "4.1.2.0",
  247. "System.Runtime.Reference": "4.2.2.0",
  248. "System.Runtime.Extensions.Reference": "4.2.2.0",
  249. "System.Runtime.Handles.Reference": "4.1.2.0",
  250. "System.Runtime.InteropServices.Reference": "4.2.2.0",
  251. "System.Runtime.InteropServices.RuntimeInformation": "4.0.4.0",
  252. "System.Runtime.InteropServices.WindowsRuntime": "4.0.4.0",
  253. "System.Runtime.Intrinsics": "4.0.1.0",
  254. "System.Runtime.Loader": "4.1.1.0",
  255. "System.Runtime.Numerics.Reference": "4.1.2.0",
  256. "System.Runtime.Serialization": "4.0.0.0",
  257. "System.Runtime.Serialization.Formatters": "4.0.4.0",
  258. "System.Runtime.Serialization.Json": "4.0.5.0",
  259. "System.Runtime.Serialization.Primitives": "4.2.2.0",
  260. "System.Runtime.Serialization.Xml": "4.1.5.0",
  261. "System.Security.AccessControl": "4.1.1.0",
  262. "System.Security.Claims.Reference": "4.1.2.0",
  263. "System.Security.Cryptography.Algorithms.Reference": "4.3.2.0",
  264. "System.Security.Cryptography.Cng.Reference": "4.3.3.0",
  265. "System.Security.Cryptography.Csp.Reference": "4.1.2.0",
  266. "System.Security.Cryptography.Encoding.Reference": "4.1.2.0",
  267. "System.Security.Cryptography.Primitives.Reference": "4.1.2.0",
  268. "System.Security.Cryptography.X509Certificates.Reference": "4.2.2.0",
  269. "System.Security.Cryptography.Xml": "4.0.3.0",
  270. "System.Security": "4.0.0.0",
  271. "System.Security.Permissions": "4.0.3.0",
  272. "System.Security.Principal.Reference": "4.1.2.0",
  273. "System.Security.Principal.Windows.Reference": "4.1.1.0",
  274. "System.Security.SecureString": "4.1.2.0",
  275. "System.ServiceModel.Web": "4.0.0.0",
  276. "System.ServiceProcess": "4.0.0.0",
  277. "System.Text.Encoding.CodePages": "4.1.3.0",
  278. "System.Text.Encoding.Reference": "4.1.2.0",
  279. "System.Text.Encoding.Extensions.Reference": "4.1.2.0",
  280. "System.Text.Encodings.Web.Reference": "4.0.5.0",
  281. "System.Text.Json": "4.0.1.0",
  282. "System.Text.RegularExpressions": "4.2.2.0",
  283. "System.Threading.Channels": "4.0.2.0",
  284. "System.Threading.Reference": "4.1.2.0",
  285. "System.Threading.Overlapped": "4.1.2.0",
  286. "System.Threading.Tasks.Dataflow": "4.6.5.0",
  287. "System.Threading.Tasks.Reference": "4.1.2.0",
  288. "System.Threading.Tasks.Extensions": "4.3.1.0",
  289. "System.Threading.Tasks.Parallel": "4.0.4.0",
  290. "System.Threading.Thread": "4.1.2.0",
  291. "System.Threading.ThreadPool.Reference": "4.1.2.0",
  292. "System.Threading.Timer.Reference": "4.1.2.0",
  293. "System.Transactions": "4.0.0.0",
  294. "System.Transactions.Local": "4.0.2.0",
  295. "System.ValueTuple": "4.0.3.0",
  296. "System.Web": "4.0.0.0",
  297. "System.Web.HttpUtility": "4.0.2.0",
  298. "System.Windows": "4.0.0.0",
  299. "System.Windows.Extensions": "4.0.1.0",
  300. "System.Xml": "4.0.0.0",
  301. "System.Xml.Linq": "4.0.0.0",
  302. "System.Xml.ReaderWriter": "4.2.2.0",
  303. "System.Xml.Serialization": "4.0.0.0",
  304. "System.Xml.XDocument": "4.1.2.0",
  305. "System.Xml.XmlDocument": "4.1.2.0",
  306. "System.Xml.XmlSerializer": "4.1.2.0",
  307. "System.Xml.XPath": "4.1.2.0",
  308. "System.Xml.XPath.XDocument": "4.1.2.0",
  309. "WindowsBase": "4.0.0.0"
  310. },
  311. "runtime": {
  312. "MqttServerApp.dll": {}
  313. },
  314. "compile": {
  315. "MqttServerApp.dll": {}
  316. }
  317. },
  318. "Microsoft.AspNetCore.Authentication.Abstractions/2.1.1": {
  319. "dependencies": {
  320. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  321. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  322. "Microsoft.Extensions.Options": "2.1.1"
  323. }
  324. },
  325. "Microsoft.AspNetCore.Authorization/2.1.1": {
  326. "dependencies": {
  327. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  328. "Microsoft.Extensions.Options": "2.1.1"
  329. }
  330. },
  331. "Microsoft.AspNetCore.Authorization.Policy/2.1.1": {
  332. "dependencies": {
  333. "Microsoft.AspNetCore.Authentication.Abstractions": "2.1.1",
  334. "Microsoft.AspNetCore.Authorization": "2.1.1"
  335. }
  336. },
  337. "Microsoft.AspNetCore.Connections.Abstractions/2.1.3": {
  338. "dependencies": {
  339. "Microsoft.AspNetCore.Http.Features": "2.1.1",
  340. "System.IO.Pipelines": "4.5.0"
  341. }
  342. },
  343. "Microsoft.AspNetCore.Hosting.Abstractions/2.1.1": {
  344. "dependencies": {
  345. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.1.1",
  346. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  347. "Microsoft.Extensions.Hosting.Abstractions": "2.1.1"
  348. }
  349. },
  350. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.1": {
  351. "dependencies": {
  352. "Microsoft.AspNetCore.Http.Features": "2.1.1",
  353. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
  354. }
  355. },
  356. "Microsoft.AspNetCore.Http/2.1.1": {
  357. "dependencies": {
  358. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  359. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  360. "Microsoft.Extensions.ObjectPool": "2.1.1",
  361. "Microsoft.Extensions.Options": "2.1.1",
  362. "Microsoft.Net.Http.Headers": "2.1.1"
  363. }
  364. },
  365. "Microsoft.AspNetCore.Http.Abstractions/2.1.1": {
  366. "dependencies": {
  367. "Microsoft.AspNetCore.Http.Features": "2.1.1",
  368. "System.Text.Encodings.Web": "4.5.0"
  369. }
  370. },
  371. "Microsoft.AspNetCore.Http.Connections/1.0.3": {
  372. "dependencies": {
  373. "Microsoft.AspNetCore.Authorization.Policy": "2.1.1",
  374. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  375. "Microsoft.AspNetCore.Http": "2.1.1",
  376. "Microsoft.AspNetCore.Http.Connections.Common": "1.0.3",
  377. "Microsoft.AspNetCore.Routing": "2.1.1",
  378. "Microsoft.AspNetCore.WebSockets": "2.1.1",
  379. "Newtonsoft.Json": "11.0.2"
  380. }
  381. },
  382. "Microsoft.AspNetCore.Http.Connections.Common/1.0.3": {
  383. "dependencies": {
  384. "Microsoft.AspNetCore.Connections.Abstractions": "2.1.3",
  385. "Newtonsoft.Json": "11.0.2",
  386. "System.Buffers": "4.5.0"
  387. }
  388. },
  389. "Microsoft.AspNetCore.Http.Extensions/2.1.1": {
  390. "dependencies": {
  391. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  392. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  393. "Microsoft.Net.Http.Headers": "2.1.1",
  394. "System.Buffers": "4.5.0"
  395. }
  396. },
  397. "Microsoft.AspNetCore.Http.Features/2.1.1": {
  398. "dependencies": {
  399. "Microsoft.Extensions.Primitives": "2.1.1"
  400. }
  401. },
  402. "Microsoft.AspNetCore.Routing/2.1.1": {
  403. "dependencies": {
  404. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  405. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1",
  406. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  407. "Microsoft.Extensions.ObjectPool": "2.1.1",
  408. "Microsoft.Extensions.Options": "2.1.1"
  409. }
  410. },
  411. "Microsoft.AspNetCore.Routing.Abstractions/2.1.1": {
  412. "dependencies": {
  413. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1"
  414. }
  415. },
  416. "Microsoft.AspNetCore.WebSockets/2.1.1": {
  417. "dependencies": {
  418. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  419. "Microsoft.Extensions.Options": "2.1.1",
  420. "System.Net.WebSockets.WebSocketProtocol": "4.5.1"
  421. }
  422. },
  423. "Microsoft.AspNetCore.WebUtilities/2.1.1": {
  424. "dependencies": {
  425. "Microsoft.Net.Http.Headers": "2.1.1",
  426. "System.Text.Encodings.Web": "4.5.0"
  427. }
  428. },
  429. "Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
  430. "dependencies": {
  431. "Microsoft.Extensions.Primitives": "2.1.1"
  432. }
  433. },
  434. "Microsoft.Extensions.DependencyInjection.Abstractions/2.1.1": {},
  435. "Microsoft.Extensions.FileProviders.Abstractions/2.1.1": {
  436. "dependencies": {
  437. "Microsoft.Extensions.Primitives": "2.1.1"
  438. }
  439. },
  440. "Microsoft.Extensions.Hosting.Abstractions/2.1.1": {
  441. "dependencies": {
  442. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
  443. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  444. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  445. "Microsoft.Extensions.Logging.Abstractions": "2.1.1"
  446. }
  447. },
  448. "Microsoft.Extensions.Logging.Abstractions/2.1.1": {},
  449. "Microsoft.Extensions.ObjectPool/2.1.1": {},
  450. "Microsoft.Extensions.Options/2.1.1": {
  451. "dependencies": {
  452. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  453. "Microsoft.Extensions.Primitives": "2.1.1"
  454. }
  455. },
  456. "Microsoft.Extensions.Primitives/2.1.1": {
  457. "dependencies": {
  458. "System.Memory": "4.5.1",
  459. "System.Runtime.CompilerServices.Unsafe": "4.5.1"
  460. }
  461. },
  462. "Microsoft.Net.Http.Headers/2.1.1": {
  463. "dependencies": {
  464. "Microsoft.Extensions.Primitives": "2.1.1",
  465. "System.Buffers": "4.5.0"
  466. }
  467. },
  468. "Microsoft.NETCore.Platforms/1.1.0": {},
  469. "Microsoft.NETCore.Targets/1.1.0": {},
  470. "Microsoft.Win32.Primitives/4.3.0": {
  471. "dependencies": {
  472. "Microsoft.NETCore.Platforms": "1.1.0",
  473. "Microsoft.NETCore.Targets": "1.1.0",
  474. "System.Runtime": "4.3.0"
  475. }
  476. },
  477. "MQTTnet/3.0.8": {
  478. "dependencies": {
  479. "NETStandard.Library": "2.0.0",
  480. "System.Net.Security": "4.3.2",
  481. "System.Net.WebSockets": "4.3.0",
  482. "System.Net.WebSockets.Client": "4.3.2"
  483. },
  484. "runtime": {
  485. "lib/netstandard2.0/MQTTnet.dll": {
  486. "assemblyVersion": "3.0.8.0",
  487. "fileVersion": "3.0.8.0"
  488. }
  489. },
  490. "compile": {
  491. "lib/netstandard2.0/MQTTnet.dll": {}
  492. }
  493. },
  494. "MQTTnet.AspNetCore/3.0.8": {
  495. "dependencies": {
  496. "MQTTnet": "3.0.8",
  497. "Microsoft.AspNetCore.Connections.Abstractions": "2.1.3",
  498. "Microsoft.AspNetCore.Http.Connections": "1.0.3",
  499. "Microsoft.AspNetCore.WebSockets": "2.1.1",
  500. "Microsoft.Extensions.Hosting.Abstractions": "2.1.1"
  501. },
  502. "runtime": {
  503. "lib/netstandard2.0/MQTTnet.AspNetCore.dll": {
  504. "assemblyVersion": "3.0.8.0",
  505. "fileVersion": "3.0.8.0"
  506. }
  507. },
  508. "compile": {
  509. "lib/netstandard2.0/MQTTnet.AspNetCore.dll": {}
  510. }
  511. },
  512. "NETStandard.Library/2.0.0": {
  513. "dependencies": {
  514. "Microsoft.NETCore.Platforms": "1.1.0"
  515. }
  516. },
  517. "Newtonsoft.Json/11.0.2": {
  518. "runtime": {
  519. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  520. "assemblyVersion": "11.0.0.0",
  521. "fileVersion": "11.0.2.21924"
  522. }
  523. },
  524. "compile": {
  525. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  526. }
  527. },
  528. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  529. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  530. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  531. "runtime.native.System/4.3.0": {
  532. "dependencies": {
  533. "Microsoft.NETCore.Platforms": "1.1.0",
  534. "Microsoft.NETCore.Targets": "1.1.0"
  535. }
  536. },
  537. "runtime.native.System.Net.Http/4.3.0": {
  538. "dependencies": {
  539. "Microsoft.NETCore.Platforms": "1.1.0",
  540. "Microsoft.NETCore.Targets": "1.1.0"
  541. }
  542. },
  543. "runtime.native.System.Net.Security/4.3.0": {
  544. "dependencies": {
  545. "Microsoft.NETCore.Platforms": "1.1.0",
  546. "Microsoft.NETCore.Targets": "1.1.0"
  547. }
  548. },
  549. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  550. "dependencies": {
  551. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  552. }
  553. },
  554. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  555. "dependencies": {
  556. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  557. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  558. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  559. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  560. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  561. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  562. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  563. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  564. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  565. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  566. }
  567. },
  568. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  569. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  570. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
  571. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  572. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  573. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  574. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  575. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
  576. "System.Buffers/4.5.0": {},
  577. "System.Collections/4.3.0": {
  578. "dependencies": {
  579. "Microsoft.NETCore.Platforms": "1.1.0",
  580. "Microsoft.NETCore.Targets": "1.1.0",
  581. "System.Runtime": "4.3.0"
  582. }
  583. },
  584. "System.Collections.Concurrent/4.3.0": {
  585. "dependencies": {
  586. "System.Collections": "4.3.0",
  587. "System.Diagnostics.Debug": "4.3.0",
  588. "System.Diagnostics.Tracing": "4.3.0",
  589. "System.Globalization": "4.3.0",
  590. "System.Reflection": "4.3.0",
  591. "System.Resources.ResourceManager": "4.3.0",
  592. "System.Runtime": "4.3.0",
  593. "System.Runtime.Extensions": "4.3.0",
  594. "System.Threading": "4.3.0",
  595. "System.Threading.Tasks": "4.3.0"
  596. }
  597. },
  598. "System.Diagnostics.Debug/4.3.0": {
  599. "dependencies": {
  600. "Microsoft.NETCore.Platforms": "1.1.0",
  601. "Microsoft.NETCore.Targets": "1.1.0",
  602. "System.Runtime": "4.3.0"
  603. }
  604. },
  605. "System.Diagnostics.Tracing/4.3.0": {
  606. "dependencies": {
  607. "Microsoft.NETCore.Platforms": "1.1.0",
  608. "Microsoft.NETCore.Targets": "1.1.0",
  609. "System.Runtime": "4.3.0"
  610. }
  611. },
  612. "System.Globalization/4.3.0": {
  613. "dependencies": {
  614. "Microsoft.NETCore.Platforms": "1.1.0",
  615. "Microsoft.NETCore.Targets": "1.1.0",
  616. "System.Runtime": "4.3.0"
  617. }
  618. },
  619. "System.Globalization.Calendars/4.3.0": {
  620. "dependencies": {
  621. "Microsoft.NETCore.Platforms": "1.1.0",
  622. "Microsoft.NETCore.Targets": "1.1.0",
  623. "System.Globalization": "4.3.0",
  624. "System.Runtime": "4.3.0"
  625. }
  626. },
  627. "System.Globalization.Extensions/4.3.0": {
  628. "dependencies": {
  629. "Microsoft.NETCore.Platforms": "1.1.0",
  630. "System.Globalization": "4.3.0",
  631. "System.Resources.ResourceManager": "4.3.0",
  632. "System.Runtime": "4.3.0",
  633. "System.Runtime.Extensions": "4.3.0",
  634. "System.Runtime.InteropServices": "4.3.0"
  635. }
  636. },
  637. "System.IO/4.3.0": {
  638. "dependencies": {
  639. "Microsoft.NETCore.Platforms": "1.1.0",
  640. "Microsoft.NETCore.Targets": "1.1.0",
  641. "System.Runtime": "4.3.0",
  642. "System.Text.Encoding": "4.3.0",
  643. "System.Threading.Tasks": "4.3.0"
  644. }
  645. },
  646. "System.IO.FileSystem/4.3.0": {
  647. "dependencies": {
  648. "Microsoft.NETCore.Platforms": "1.1.0",
  649. "Microsoft.NETCore.Targets": "1.1.0",
  650. "System.IO": "4.3.0",
  651. "System.IO.FileSystem.Primitives": "4.3.0",
  652. "System.Runtime": "4.3.0",
  653. "System.Runtime.Handles": "4.3.0",
  654. "System.Text.Encoding": "4.3.0",
  655. "System.Threading.Tasks": "4.3.0"
  656. }
  657. },
  658. "System.IO.FileSystem.Primitives/4.3.0": {
  659. "dependencies": {
  660. "System.Runtime": "4.3.0"
  661. }
  662. },
  663. "System.IO.Pipelines/4.5.0": {},
  664. "System.Linq/4.3.0": {
  665. "dependencies": {
  666. "System.Collections": "4.3.0",
  667. "System.Diagnostics.Debug": "4.3.0",
  668. "System.Resources.ResourceManager": "4.3.0",
  669. "System.Runtime": "4.3.0",
  670. "System.Runtime.Extensions": "4.3.0"
  671. }
  672. },
  673. "System.Memory/4.5.1": {},
  674. "System.Net.NameResolution/4.3.0": {
  675. "dependencies": {
  676. "Microsoft.NETCore.Platforms": "1.1.0",
  677. "System.Collections": "4.3.0",
  678. "System.Diagnostics.Tracing": "4.3.0",
  679. "System.Globalization": "4.3.0",
  680. "System.Net.Primitives": "4.3.0",
  681. "System.Resources.ResourceManager": "4.3.0",
  682. "System.Runtime": "4.3.0",
  683. "System.Runtime.Extensions": "4.3.0",
  684. "System.Runtime.Handles": "4.3.0",
  685. "System.Runtime.InteropServices": "4.3.0",
  686. "System.Security.Principal.Windows": "4.3.0",
  687. "System.Threading": "4.3.0",
  688. "System.Threading.Tasks": "4.3.0",
  689. "runtime.native.System": "4.3.0"
  690. }
  691. },
  692. "System.Net.Primitives/4.3.0": {
  693. "dependencies": {
  694. "Microsoft.NETCore.Platforms": "1.1.0",
  695. "Microsoft.NETCore.Targets": "1.1.0",
  696. "System.Runtime": "4.3.0",
  697. "System.Runtime.Handles": "4.3.0"
  698. }
  699. },
  700. "System.Net.Security/4.3.2": {
  701. "dependencies": {
  702. "Microsoft.NETCore.Platforms": "1.1.0",
  703. "Microsoft.Win32.Primitives": "4.3.0",
  704. "System.Collections": "4.3.0",
  705. "System.Collections.Concurrent": "4.3.0",
  706. "System.Diagnostics.Tracing": "4.3.0",
  707. "System.Globalization": "4.3.0",
  708. "System.Globalization.Extensions": "4.3.0",
  709. "System.IO": "4.3.0",
  710. "System.Net.Primitives": "4.3.0",
  711. "System.Resources.ResourceManager": "4.3.0",
  712. "System.Runtime": "4.3.0",
  713. "System.Runtime.Extensions": "4.3.0",
  714. "System.Runtime.Handles": "4.3.0",
  715. "System.Runtime.InteropServices": "4.3.0",
  716. "System.Security.Claims": "4.3.0",
  717. "System.Security.Cryptography.Algorithms": "4.3.0",
  718. "System.Security.Cryptography.Encoding": "4.3.0",
  719. "System.Security.Cryptography.OpenSsl": "4.3.0",
  720. "System.Security.Cryptography.Primitives": "4.3.0",
  721. "System.Security.Cryptography.X509Certificates": "4.3.0",
  722. "System.Security.Principal": "4.3.0",
  723. "System.Text.Encoding": "4.3.0",
  724. "System.Threading": "4.3.0",
  725. "System.Threading.Tasks": "4.3.0",
  726. "System.Threading.ThreadPool": "4.3.0",
  727. "runtime.native.System": "4.3.0",
  728. "runtime.native.System.Net.Security": "4.3.0",
  729. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  730. }
  731. },
  732. "System.Net.Sockets/4.3.0": {
  733. "dependencies": {
  734. "Microsoft.NETCore.Platforms": "1.1.0",
  735. "Microsoft.NETCore.Targets": "1.1.0",
  736. "System.IO": "4.3.0",
  737. "System.Net.Primitives": "4.3.0",
  738. "System.Runtime": "4.3.0",
  739. "System.Threading.Tasks": "4.3.0"
  740. }
  741. },
  742. "System.Net.WebHeaderCollection/4.3.0": {
  743. "dependencies": {
  744. "System.Collections": "4.3.0",
  745. "System.Resources.ResourceManager": "4.3.0",
  746. "System.Runtime": "4.3.0",
  747. "System.Runtime.Extensions": "4.3.0"
  748. }
  749. },
  750. "System.Net.WebSockets/4.3.0": {
  751. "dependencies": {
  752. "Microsoft.Win32.Primitives": "4.3.0",
  753. "System.Resources.ResourceManager": "4.3.0",
  754. "System.Runtime": "4.3.0",
  755. "System.Threading.Tasks": "4.3.0"
  756. }
  757. },
  758. "System.Net.WebSockets.Client/4.3.2": {
  759. "dependencies": {
  760. "Microsoft.NETCore.Platforms": "1.1.0",
  761. "Microsoft.Win32.Primitives": "4.3.0",
  762. "System.Collections": "4.3.0",
  763. "System.Diagnostics.Debug": "4.3.0",
  764. "System.Diagnostics.Tracing": "4.3.0",
  765. "System.Globalization": "4.3.0",
  766. "System.IO": "4.3.0",
  767. "System.Net.NameResolution": "4.3.0",
  768. "System.Net.Primitives": "4.3.0",
  769. "System.Net.Security": "4.3.2",
  770. "System.Net.Sockets": "4.3.0",
  771. "System.Net.WebHeaderCollection": "4.3.0",
  772. "System.Net.WebSockets": "4.3.0",
  773. "System.Resources.ResourceManager": "4.3.0",
  774. "System.Runtime": "4.3.0",
  775. "System.Runtime.Extensions": "4.3.0",
  776. "System.Runtime.Handles": "4.3.0",
  777. "System.Runtime.InteropServices": "4.3.0",
  778. "System.Security.Cryptography.Algorithms": "4.3.0",
  779. "System.Security.Cryptography.Primitives": "4.3.0",
  780. "System.Security.Cryptography.X509Certificates": "4.3.0",
  781. "System.Text.Encoding": "4.3.0",
  782. "System.Text.Encoding.Extensions": "4.3.0",
  783. "System.Threading": "4.3.0",
  784. "System.Threading.Tasks": "4.3.0",
  785. "System.Threading.Timer": "4.3.0"
  786. }
  787. },
  788. "System.Net.WebSockets.WebSocketProtocol/4.5.1": {
  789. "runtime": {
  790. "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": {
  791. "assemblyVersion": "4.0.0.0",
  792. "fileVersion": "4.6.26606.5"
  793. }
  794. },
  795. "compile": {
  796. "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": {}
  797. }
  798. },
  799. "System.Reflection/4.3.0": {
  800. "dependencies": {
  801. "Microsoft.NETCore.Platforms": "1.1.0",
  802. "Microsoft.NETCore.Targets": "1.1.0",
  803. "System.IO": "4.3.0",
  804. "System.Reflection.Primitives": "4.3.0",
  805. "System.Runtime": "4.3.0"
  806. }
  807. },
  808. "System.Reflection.Primitives/4.3.0": {
  809. "dependencies": {
  810. "Microsoft.NETCore.Platforms": "1.1.0",
  811. "Microsoft.NETCore.Targets": "1.1.0",
  812. "System.Runtime": "4.3.0"
  813. }
  814. },
  815. "System.Resources.ResourceManager/4.3.0": {
  816. "dependencies": {
  817. "Microsoft.NETCore.Platforms": "1.1.0",
  818. "Microsoft.NETCore.Targets": "1.1.0",
  819. "System.Globalization": "4.3.0",
  820. "System.Reflection": "4.3.0",
  821. "System.Runtime": "4.3.0"
  822. }
  823. },
  824. "System.Runtime/4.3.0": {
  825. "dependencies": {
  826. "Microsoft.NETCore.Platforms": "1.1.0",
  827. "Microsoft.NETCore.Targets": "1.1.0"
  828. }
  829. },
  830. "System.Runtime.CompilerServices.Unsafe/4.5.1": {},
  831. "System.Runtime.Extensions/4.3.0": {
  832. "dependencies": {
  833. "Microsoft.NETCore.Platforms": "1.1.0",
  834. "Microsoft.NETCore.Targets": "1.1.0",
  835. "System.Runtime": "4.3.0"
  836. }
  837. },
  838. "System.Runtime.Handles/4.3.0": {
  839. "dependencies": {
  840. "Microsoft.NETCore.Platforms": "1.1.0",
  841. "Microsoft.NETCore.Targets": "1.1.0",
  842. "System.Runtime": "4.3.0"
  843. }
  844. },
  845. "System.Runtime.InteropServices/4.3.0": {
  846. "dependencies": {
  847. "Microsoft.NETCore.Platforms": "1.1.0",
  848. "Microsoft.NETCore.Targets": "1.1.0",
  849. "System.Reflection": "4.3.0",
  850. "System.Reflection.Primitives": "4.3.0",
  851. "System.Runtime": "4.3.0",
  852. "System.Runtime.Handles": "4.3.0"
  853. }
  854. },
  855. "System.Runtime.Numerics/4.3.0": {
  856. "dependencies": {
  857. "System.Globalization": "4.3.0",
  858. "System.Resources.ResourceManager": "4.3.0",
  859. "System.Runtime": "4.3.0",
  860. "System.Runtime.Extensions": "4.3.0"
  861. }
  862. },
  863. "System.Security.Claims/4.3.0": {
  864. "dependencies": {
  865. "System.Collections": "4.3.0",
  866. "System.Globalization": "4.3.0",
  867. "System.IO": "4.3.0",
  868. "System.Resources.ResourceManager": "4.3.0",
  869. "System.Runtime": "4.3.0",
  870. "System.Runtime.Extensions": "4.3.0",
  871. "System.Security.Principal": "4.3.0"
  872. }
  873. },
  874. "System.Security.Cryptography.Algorithms/4.3.0": {
  875. "dependencies": {
  876. "Microsoft.NETCore.Platforms": "1.1.0",
  877. "System.Collections": "4.3.0",
  878. "System.IO": "4.3.0",
  879. "System.Resources.ResourceManager": "4.3.0",
  880. "System.Runtime": "4.3.0",
  881. "System.Runtime.Extensions": "4.3.0",
  882. "System.Runtime.Handles": "4.3.0",
  883. "System.Runtime.InteropServices": "4.3.0",
  884. "System.Runtime.Numerics": "4.3.0",
  885. "System.Security.Cryptography.Encoding": "4.3.0",
  886. "System.Security.Cryptography.Primitives": "4.3.0",
  887. "System.Text.Encoding": "4.3.0",
  888. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  889. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  890. }
  891. },
  892. "System.Security.Cryptography.Cng/4.3.0": {
  893. "dependencies": {
  894. "Microsoft.NETCore.Platforms": "1.1.0",
  895. "System.IO": "4.3.0",
  896. "System.Resources.ResourceManager": "4.3.0",
  897. "System.Runtime": "4.3.0",
  898. "System.Runtime.Extensions": "4.3.0",
  899. "System.Runtime.Handles": "4.3.0",
  900. "System.Runtime.InteropServices": "4.3.0",
  901. "System.Security.Cryptography.Algorithms": "4.3.0",
  902. "System.Security.Cryptography.Encoding": "4.3.0",
  903. "System.Security.Cryptography.Primitives": "4.3.0",
  904. "System.Text.Encoding": "4.3.0"
  905. }
  906. },
  907. "System.Security.Cryptography.Csp/4.3.0": {
  908. "dependencies": {
  909. "Microsoft.NETCore.Platforms": "1.1.0",
  910. "System.IO": "4.3.0",
  911. "System.Reflection": "4.3.0",
  912. "System.Resources.ResourceManager": "4.3.0",
  913. "System.Runtime": "4.3.0",
  914. "System.Runtime.Extensions": "4.3.0",
  915. "System.Runtime.Handles": "4.3.0",
  916. "System.Runtime.InteropServices": "4.3.0",
  917. "System.Security.Cryptography.Algorithms": "4.3.0",
  918. "System.Security.Cryptography.Encoding": "4.3.0",
  919. "System.Security.Cryptography.Primitives": "4.3.0",
  920. "System.Text.Encoding": "4.3.0",
  921. "System.Threading": "4.3.0"
  922. }
  923. },
  924. "System.Security.Cryptography.Encoding/4.3.0": {
  925. "dependencies": {
  926. "Microsoft.NETCore.Platforms": "1.1.0",
  927. "System.Collections": "4.3.0",
  928. "System.Collections.Concurrent": "4.3.0",
  929. "System.Linq": "4.3.0",
  930. "System.Resources.ResourceManager": "4.3.0",
  931. "System.Runtime": "4.3.0",
  932. "System.Runtime.Extensions": "4.3.0",
  933. "System.Runtime.Handles": "4.3.0",
  934. "System.Runtime.InteropServices": "4.3.0",
  935. "System.Security.Cryptography.Primitives": "4.3.0",
  936. "System.Text.Encoding": "4.3.0",
  937. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  938. }
  939. },
  940. "System.Security.Cryptography.OpenSsl/4.3.0": {
  941. "dependencies": {
  942. "System.Collections": "4.3.0",
  943. "System.IO": "4.3.0",
  944. "System.Resources.ResourceManager": "4.3.0",
  945. "System.Runtime": "4.3.0",
  946. "System.Runtime.Extensions": "4.3.0",
  947. "System.Runtime.Handles": "4.3.0",
  948. "System.Runtime.InteropServices": "4.3.0",
  949. "System.Runtime.Numerics": "4.3.0",
  950. "System.Security.Cryptography.Algorithms": "4.3.0",
  951. "System.Security.Cryptography.Encoding": "4.3.0",
  952. "System.Security.Cryptography.Primitives": "4.3.0",
  953. "System.Text.Encoding": "4.3.0",
  954. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  955. }
  956. },
  957. "System.Security.Cryptography.Primitives/4.3.0": {
  958. "dependencies": {
  959. "System.Diagnostics.Debug": "4.3.0",
  960. "System.Globalization": "4.3.0",
  961. "System.IO": "4.3.0",
  962. "System.Resources.ResourceManager": "4.3.0",
  963. "System.Runtime": "4.3.0",
  964. "System.Threading": "4.3.0",
  965. "System.Threading.Tasks": "4.3.0"
  966. }
  967. },
  968. "System.Security.Cryptography.X509Certificates/4.3.0": {
  969. "dependencies": {
  970. "Microsoft.NETCore.Platforms": "1.1.0",
  971. "System.Collections": "4.3.0",
  972. "System.Diagnostics.Debug": "4.3.0",
  973. "System.Globalization": "4.3.0",
  974. "System.Globalization.Calendars": "4.3.0",
  975. "System.IO": "4.3.0",
  976. "System.IO.FileSystem": "4.3.0",
  977. "System.IO.FileSystem.Primitives": "4.3.0",
  978. "System.Resources.ResourceManager": "4.3.0",
  979. "System.Runtime": "4.3.0",
  980. "System.Runtime.Extensions": "4.3.0",
  981. "System.Runtime.Handles": "4.3.0",
  982. "System.Runtime.InteropServices": "4.3.0",
  983. "System.Runtime.Numerics": "4.3.0",
  984. "System.Security.Cryptography.Algorithms": "4.3.0",
  985. "System.Security.Cryptography.Cng": "4.3.0",
  986. "System.Security.Cryptography.Csp": "4.3.0",
  987. "System.Security.Cryptography.Encoding": "4.3.0",
  988. "System.Security.Cryptography.OpenSsl": "4.3.0",
  989. "System.Security.Cryptography.Primitives": "4.3.0",
  990. "System.Text.Encoding": "4.3.0",
  991. "System.Threading": "4.3.0",
  992. "runtime.native.System": "4.3.0",
  993. "runtime.native.System.Net.Http": "4.3.0",
  994. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  995. }
  996. },
  997. "System.Security.Principal/4.3.0": {
  998. "dependencies": {
  999. "System.Runtime": "4.3.0"
  1000. }
  1001. },
  1002. "System.Security.Principal.Windows/4.3.0": {
  1003. "dependencies": {
  1004. "Microsoft.NETCore.Platforms": "1.1.0",
  1005. "Microsoft.Win32.Primitives": "4.3.0",
  1006. "System.Collections": "4.3.0",
  1007. "System.Diagnostics.Debug": "4.3.0",
  1008. "System.Reflection": "4.3.0",
  1009. "System.Resources.ResourceManager": "4.3.0",
  1010. "System.Runtime": "4.3.0",
  1011. "System.Runtime.Extensions": "4.3.0",
  1012. "System.Runtime.Handles": "4.3.0",
  1013. "System.Runtime.InteropServices": "4.3.0",
  1014. "System.Security.Claims": "4.3.0",
  1015. "System.Security.Principal": "4.3.0",
  1016. "System.Text.Encoding": "4.3.0",
  1017. "System.Threading": "4.3.0"
  1018. }
  1019. },
  1020. "System.Text.Encoding/4.3.0": {
  1021. "dependencies": {
  1022. "Microsoft.NETCore.Platforms": "1.1.0",
  1023. "Microsoft.NETCore.Targets": "1.1.0",
  1024. "System.Runtime": "4.3.0"
  1025. }
  1026. },
  1027. "System.Text.Encoding.Extensions/4.3.0": {
  1028. "dependencies": {
  1029. "Microsoft.NETCore.Platforms": "1.1.0",
  1030. "Microsoft.NETCore.Targets": "1.1.0",
  1031. "System.Runtime": "4.3.0",
  1032. "System.Text.Encoding": "4.3.0"
  1033. }
  1034. },
  1035. "System.Text.Encodings.Web/4.5.0": {},
  1036. "System.Threading/4.3.0": {
  1037. "dependencies": {
  1038. "System.Runtime": "4.3.0",
  1039. "System.Threading.Tasks": "4.3.0"
  1040. }
  1041. },
  1042. "System.Threading.Tasks/4.3.0": {
  1043. "dependencies": {
  1044. "Microsoft.NETCore.Platforms": "1.1.0",
  1045. "Microsoft.NETCore.Targets": "1.1.0",
  1046. "System.Runtime": "4.3.0"
  1047. }
  1048. },
  1049. "System.Threading.ThreadPool/4.3.0": {
  1050. "dependencies": {
  1051. "System.Runtime": "4.3.0",
  1052. "System.Runtime.Handles": "4.3.0"
  1053. }
  1054. },
  1055. "System.Threading.Timer/4.3.0": {
  1056. "dependencies": {
  1057. "Microsoft.NETCore.Platforms": "1.1.0",
  1058. "Microsoft.NETCore.Targets": "1.1.0",
  1059. "System.Runtime": "4.3.0"
  1060. }
  1061. },
  1062. "Microsoft.AspNetCore.Antiforgery/3.1.0.0": {
  1063. "compile": {
  1064. "Microsoft.AspNetCore.Antiforgery.dll": {}
  1065. },
  1066. "compileOnly": true
  1067. },
  1068. "Microsoft.AspNetCore.Authentication.Abstractions.Reference/3.1.0.0": {
  1069. "compile": {
  1070. "Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
  1071. },
  1072. "compileOnly": true
  1073. },
  1074. "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": {
  1075. "compile": {
  1076. "Microsoft.AspNetCore.Authentication.Cookies.dll": {}
  1077. },
  1078. "compileOnly": true
  1079. },
  1080. "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": {
  1081. "compile": {
  1082. "Microsoft.AspNetCore.Authentication.Core.dll": {}
  1083. },
  1084. "compileOnly": true
  1085. },
  1086. "Microsoft.AspNetCore.Authentication/3.1.0.0": {
  1087. "compile": {
  1088. "Microsoft.AspNetCore.Authentication.dll": {}
  1089. },
  1090. "compileOnly": true
  1091. },
  1092. "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": {
  1093. "compile": {
  1094. "Microsoft.AspNetCore.Authentication.OAuth.dll": {}
  1095. },
  1096. "compileOnly": true
  1097. },
  1098. "Microsoft.AspNetCore.Authorization.Reference/3.1.0.0": {
  1099. "compile": {
  1100. "Microsoft.AspNetCore.Authorization.dll": {}
  1101. },
  1102. "compileOnly": true
  1103. },
  1104. "Microsoft.AspNetCore.Authorization.Policy.Reference/3.1.0.0": {
  1105. "compile": {
  1106. "Microsoft.AspNetCore.Authorization.Policy.dll": {}
  1107. },
  1108. "compileOnly": true
  1109. },
  1110. "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": {
  1111. "compile": {
  1112. "Microsoft.AspNetCore.Components.Authorization.dll": {}
  1113. },
  1114. "compileOnly": true
  1115. },
  1116. "Microsoft.AspNetCore.Components/3.1.0.0": {
  1117. "compile": {
  1118. "Microsoft.AspNetCore.Components.dll": {}
  1119. },
  1120. "compileOnly": true
  1121. },
  1122. "Microsoft.AspNetCore.Components.Forms/3.1.0.0": {
  1123. "compile": {
  1124. "Microsoft.AspNetCore.Components.Forms.dll": {}
  1125. },
  1126. "compileOnly": true
  1127. },
  1128. "Microsoft.AspNetCore.Components.Server/3.1.0.0": {
  1129. "compile": {
  1130. "Microsoft.AspNetCore.Components.Server.dll": {}
  1131. },
  1132. "compileOnly": true
  1133. },
  1134. "Microsoft.AspNetCore.Components.Web/3.1.0.0": {
  1135. "compile": {
  1136. "Microsoft.AspNetCore.Components.Web.dll": {}
  1137. },
  1138. "compileOnly": true
  1139. },
  1140. "Microsoft.AspNetCore.Connections.Abstractions.Reference/3.1.0.0": {
  1141. "compile": {
  1142. "Microsoft.AspNetCore.Connections.Abstractions.dll": {}
  1143. },
  1144. "compileOnly": true
  1145. },
  1146. "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": {
  1147. "compile": {
  1148. "Microsoft.AspNetCore.CookiePolicy.dll": {}
  1149. },
  1150. "compileOnly": true
  1151. },
  1152. "Microsoft.AspNetCore.Cors/3.1.0.0": {
  1153. "compile": {
  1154. "Microsoft.AspNetCore.Cors.dll": {}
  1155. },
  1156. "compileOnly": true
  1157. },
  1158. "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": {
  1159. "compile": {
  1160. "Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  1161. },
  1162. "compileOnly": true
  1163. },
  1164. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": {
  1165. "compile": {
  1166. "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  1167. },
  1168. "compileOnly": true
  1169. },
  1170. "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": {
  1171. "compile": {
  1172. "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  1173. },
  1174. "compileOnly": true
  1175. },
  1176. "Microsoft.AspNetCore.DataProtection/3.1.0.0": {
  1177. "compile": {
  1178. "Microsoft.AspNetCore.DataProtection.dll": {}
  1179. },
  1180. "compileOnly": true
  1181. },
  1182. "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": {
  1183. "compile": {
  1184. "Microsoft.AspNetCore.DataProtection.Extensions.dll": {}
  1185. },
  1186. "compileOnly": true
  1187. },
  1188. "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": {
  1189. "compile": {
  1190. "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  1191. },
  1192. "compileOnly": true
  1193. },
  1194. "Microsoft.AspNetCore.Diagnostics/3.1.0.0": {
  1195. "compile": {
  1196. "Microsoft.AspNetCore.Diagnostics.dll": {}
  1197. },
  1198. "compileOnly": true
  1199. },
  1200. "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": {
  1201. "compile": {
  1202. "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {}
  1203. },
  1204. "compileOnly": true
  1205. },
  1206. "Microsoft.AspNetCore/3.1.0.0": {
  1207. "compile": {
  1208. "Microsoft.AspNetCore.dll": {}
  1209. },
  1210. "compileOnly": true
  1211. },
  1212. "Microsoft.AspNetCore.HostFiltering/3.1.0.0": {
  1213. "compile": {
  1214. "Microsoft.AspNetCore.HostFiltering.dll": {}
  1215. },
  1216. "compileOnly": true
  1217. },
  1218. "Microsoft.AspNetCore.Hosting.Abstractions.Reference/3.1.0.0": {
  1219. "compile": {
  1220. "Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  1221. },
  1222. "compileOnly": true
  1223. },
  1224. "Microsoft.AspNetCore.Hosting/3.1.0.0": {
  1225. "compile": {
  1226. "Microsoft.AspNetCore.Hosting.dll": {}
  1227. },
  1228. "compileOnly": true
  1229. },
  1230. "Microsoft.AspNetCore.Hosting.Server.Abstractions.Reference/3.1.0.0": {
  1231. "compile": {
  1232. "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  1233. },
  1234. "compileOnly": true
  1235. },
  1236. "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": {
  1237. "compile": {
  1238. "Microsoft.AspNetCore.Html.Abstractions.dll": {}
  1239. },
  1240. "compileOnly": true
  1241. },
  1242. "Microsoft.AspNetCore.Http.Abstractions.Reference/3.1.0.0": {
  1243. "compile": {
  1244. "Microsoft.AspNetCore.Http.Abstractions.dll": {}
  1245. },
  1246. "compileOnly": true
  1247. },
  1248. "Microsoft.AspNetCore.Http.Connections.Common.Reference/3.1.0.0": {
  1249. "compile": {
  1250. "Microsoft.AspNetCore.Http.Connections.Common.dll": {}
  1251. },
  1252. "compileOnly": true
  1253. },
  1254. "Microsoft.AspNetCore.Http.Connections.Reference/3.1.0.0": {
  1255. "compile": {
  1256. "Microsoft.AspNetCore.Http.Connections.dll": {}
  1257. },
  1258. "compileOnly": true
  1259. },
  1260. "Microsoft.AspNetCore.Http.Reference/3.1.0.0": {
  1261. "compile": {
  1262. "Microsoft.AspNetCore.Http.dll": {}
  1263. },
  1264. "compileOnly": true
  1265. },
  1266. "Microsoft.AspNetCore.Http.Extensions.Reference/3.1.0.0": {
  1267. "compile": {
  1268. "Microsoft.AspNetCore.Http.Extensions.dll": {}
  1269. },
  1270. "compileOnly": true
  1271. },
  1272. "Microsoft.AspNetCore.Http.Features.Reference/3.1.0.0": {
  1273. "compile": {
  1274. "Microsoft.AspNetCore.Http.Features.dll": {}
  1275. },
  1276. "compileOnly": true
  1277. },
  1278. "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": {
  1279. "compile": {
  1280. "Microsoft.AspNetCore.HttpOverrides.dll": {}
  1281. },
  1282. "compileOnly": true
  1283. },
  1284. "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": {
  1285. "compile": {
  1286. "Microsoft.AspNetCore.HttpsPolicy.dll": {}
  1287. },
  1288. "compileOnly": true
  1289. },
  1290. "Microsoft.AspNetCore.Identity/3.1.0.0": {
  1291. "compile": {
  1292. "Microsoft.AspNetCore.Identity.dll": {}
  1293. },
  1294. "compileOnly": true
  1295. },
  1296. "Microsoft.AspNetCore.Localization/3.1.0.0": {
  1297. "compile": {
  1298. "Microsoft.AspNetCore.Localization.dll": {}
  1299. },
  1300. "compileOnly": true
  1301. },
  1302. "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": {
  1303. "compile": {
  1304. "Microsoft.AspNetCore.Localization.Routing.dll": {}
  1305. },
  1306. "compileOnly": true
  1307. },
  1308. "Microsoft.AspNetCore.Metadata/3.1.0.0": {
  1309. "compile": {
  1310. "Microsoft.AspNetCore.Metadata.dll": {}
  1311. },
  1312. "compileOnly": true
  1313. },
  1314. "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": {
  1315. "compile": {
  1316. "Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  1317. },
  1318. "compileOnly": true
  1319. },
  1320. "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": {
  1321. "compile": {
  1322. "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
  1323. },
  1324. "compileOnly": true
  1325. },
  1326. "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": {
  1327. "compile": {
  1328. "Microsoft.AspNetCore.Mvc.Core.dll": {}
  1329. },
  1330. "compileOnly": true
  1331. },
  1332. "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": {
  1333. "compile": {
  1334. "Microsoft.AspNetCore.Mvc.Cors.dll": {}
  1335. },
  1336. "compileOnly": true
  1337. },
  1338. "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": {
  1339. "compile": {
  1340. "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  1341. },
  1342. "compileOnly": true
  1343. },
  1344. "Microsoft.AspNetCore.Mvc/3.1.0.0": {
  1345. "compile": {
  1346. "Microsoft.AspNetCore.Mvc.dll": {}
  1347. },
  1348. "compileOnly": true
  1349. },
  1350. "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": {
  1351. "compile": {
  1352. "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  1353. },
  1354. "compileOnly": true
  1355. },
  1356. "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": {
  1357. "compile": {
  1358. "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {}
  1359. },
  1360. "compileOnly": true
  1361. },
  1362. "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": {
  1363. "compile": {
  1364. "Microsoft.AspNetCore.Mvc.Localization.dll": {}
  1365. },
  1366. "compileOnly": true
  1367. },
  1368. "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": {
  1369. "compile": {
  1370. "Microsoft.AspNetCore.Mvc.Razor.dll": {}
  1371. },
  1372. "compileOnly": true
  1373. },
  1374. "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": {
  1375. "compile": {
  1376. "Microsoft.AspNetCore.Mvc.RazorPages.dll": {}
  1377. },
  1378. "compileOnly": true
  1379. },
  1380. "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": {
  1381. "compile": {
  1382. "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
  1383. },
  1384. "compileOnly": true
  1385. },
  1386. "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": {
  1387. "compile": {
  1388. "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  1389. },
  1390. "compileOnly": true
  1391. },
  1392. "Microsoft.AspNetCore.Razor/3.1.0.0": {
  1393. "compile": {
  1394. "Microsoft.AspNetCore.Razor.dll": {}
  1395. },
  1396. "compileOnly": true
  1397. },
  1398. "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": {
  1399. "compile": {
  1400. "Microsoft.AspNetCore.Razor.Runtime.dll": {}
  1401. },
  1402. "compileOnly": true
  1403. },
  1404. "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": {
  1405. "compile": {
  1406. "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
  1407. },
  1408. "compileOnly": true
  1409. },
  1410. "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": {
  1411. "compile": {
  1412. "Microsoft.AspNetCore.ResponseCaching.dll": {}
  1413. },
  1414. "compileOnly": true
  1415. },
  1416. "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": {
  1417. "compile": {
  1418. "Microsoft.AspNetCore.ResponseCompression.dll": {}
  1419. },
  1420. "compileOnly": true
  1421. },
  1422. "Microsoft.AspNetCore.Rewrite/3.1.0.0": {
  1423. "compile": {
  1424. "Microsoft.AspNetCore.Rewrite.dll": {}
  1425. },
  1426. "compileOnly": true
  1427. },
  1428. "Microsoft.AspNetCore.Routing.Abstractions.Reference/3.1.0.0": {
  1429. "compile": {
  1430. "Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  1431. },
  1432. "compileOnly": true
  1433. },
  1434. "Microsoft.AspNetCore.Routing.Reference/3.1.0.0": {
  1435. "compile": {
  1436. "Microsoft.AspNetCore.Routing.dll": {}
  1437. },
  1438. "compileOnly": true
  1439. },
  1440. "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": {
  1441. "compile": {
  1442. "Microsoft.AspNetCore.Server.HttpSys.dll": {}
  1443. },
  1444. "compileOnly": true
  1445. },
  1446. "Microsoft.AspNetCore.Server.IIS/3.1.0.0": {
  1447. "compile": {
  1448. "Microsoft.AspNetCore.Server.IIS.dll": {}
  1449. },
  1450. "compileOnly": true
  1451. },
  1452. "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": {
  1453. "compile": {
  1454. "Microsoft.AspNetCore.Server.IISIntegration.dll": {}
  1455. },
  1456. "compileOnly": true
  1457. },
  1458. "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": {
  1459. "compile": {
  1460. "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
  1461. },
  1462. "compileOnly": true
  1463. },
  1464. "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": {
  1465. "compile": {
  1466. "Microsoft.AspNetCore.Server.Kestrel.dll": {}
  1467. },
  1468. "compileOnly": true
  1469. },
  1470. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": {
  1471. "compile": {
  1472. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
  1473. },
  1474. "compileOnly": true
  1475. },
  1476. "Microsoft.AspNetCore.Session/3.1.0.0": {
  1477. "compile": {
  1478. "Microsoft.AspNetCore.Session.dll": {}
  1479. },
  1480. "compileOnly": true
  1481. },
  1482. "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": {
  1483. "compile": {
  1484. "Microsoft.AspNetCore.SignalR.Common.dll": {}
  1485. },
  1486. "compileOnly": true
  1487. },
  1488. "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": {
  1489. "compile": {
  1490. "Microsoft.AspNetCore.SignalR.Core.dll": {}
  1491. },
  1492. "compileOnly": true
  1493. },
  1494. "Microsoft.AspNetCore.SignalR/3.1.0.0": {
  1495. "compile": {
  1496. "Microsoft.AspNetCore.SignalR.dll": {}
  1497. },
  1498. "compileOnly": true
  1499. },
  1500. "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": {
  1501. "compile": {
  1502. "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {}
  1503. },
  1504. "compileOnly": true
  1505. },
  1506. "Microsoft.AspNetCore.StaticFiles/3.1.0.0": {
  1507. "compile": {
  1508. "Microsoft.AspNetCore.StaticFiles.dll": {}
  1509. },
  1510. "compileOnly": true
  1511. },
  1512. "Microsoft.AspNetCore.WebSockets.Reference/3.1.0.0": {
  1513. "compile": {
  1514. "Microsoft.AspNetCore.WebSockets.dll": {}
  1515. },
  1516. "compileOnly": true
  1517. },
  1518. "Microsoft.AspNetCore.WebUtilities.Reference/3.1.0.0": {
  1519. "compile": {
  1520. "Microsoft.AspNetCore.WebUtilities.dll": {}
  1521. },
  1522. "compileOnly": true
  1523. },
  1524. "Microsoft.CSharp/4.0.0.0": {
  1525. "compile": {
  1526. "Microsoft.CSharp.dll": {}
  1527. },
  1528. "compileOnly": true
  1529. },
  1530. "Microsoft.Extensions.Caching.Abstractions/3.1.0.0": {
  1531. "compile": {
  1532. "Microsoft.Extensions.Caching.Abstractions.dll": {}
  1533. },
  1534. "compileOnly": true
  1535. },
  1536. "Microsoft.Extensions.Caching.Memory/3.1.0.0": {
  1537. "compile": {
  1538. "Microsoft.Extensions.Caching.Memory.dll": {}
  1539. },
  1540. "compileOnly": true
  1541. },
  1542. "Microsoft.Extensions.Configuration.Abstractions.Reference/3.1.0.0": {
  1543. "compile": {
  1544. "Microsoft.Extensions.Configuration.Abstractions.dll": {}
  1545. },
  1546. "compileOnly": true
  1547. },
  1548. "Microsoft.Extensions.Configuration.Binder/3.1.0.0": {
  1549. "compile": {
  1550. "Microsoft.Extensions.Configuration.Binder.dll": {}
  1551. },
  1552. "compileOnly": true
  1553. },
  1554. "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": {
  1555. "compile": {
  1556. "Microsoft.Extensions.Configuration.CommandLine.dll": {}
  1557. },
  1558. "compileOnly": true
  1559. },
  1560. "Microsoft.Extensions.Configuration/3.1.0.0": {
  1561. "compile": {
  1562. "Microsoft.Extensions.Configuration.dll": {}
  1563. },
  1564. "compileOnly": true
  1565. },
  1566. "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": {
  1567. "compile": {
  1568. "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  1569. },
  1570. "compileOnly": true
  1571. },
  1572. "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": {
  1573. "compile": {
  1574. "Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  1575. },
  1576. "compileOnly": true
  1577. },
  1578. "Microsoft.Extensions.Configuration.Ini/3.1.0.0": {
  1579. "compile": {
  1580. "Microsoft.Extensions.Configuration.Ini.dll": {}
  1581. },
  1582. "compileOnly": true
  1583. },
  1584. "Microsoft.Extensions.Configuration.Json/3.1.0.0": {
  1585. "compile": {
  1586. "Microsoft.Extensions.Configuration.Json.dll": {}
  1587. },
  1588. "compileOnly": true
  1589. },
  1590. "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": {
  1591. "compile": {
  1592. "Microsoft.Extensions.Configuration.KeyPerFile.dll": {}
  1593. },
  1594. "compileOnly": true
  1595. },
  1596. "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": {
  1597. "compile": {
  1598. "Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  1599. },
  1600. "compileOnly": true
  1601. },
  1602. "Microsoft.Extensions.Configuration.Xml/3.1.0.0": {
  1603. "compile": {
  1604. "Microsoft.Extensions.Configuration.Xml.dll": {}
  1605. },
  1606. "compileOnly": true
  1607. },
  1608. "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/3.1.0.0": {
  1609. "compile": {
  1610. "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  1611. },
  1612. "compileOnly": true
  1613. },
  1614. "Microsoft.Extensions.DependencyInjection/3.1.0.0": {
  1615. "compile": {
  1616. "Microsoft.Extensions.DependencyInjection.dll": {}
  1617. },
  1618. "compileOnly": true
  1619. },
  1620. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": {
  1621. "compile": {
  1622. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {}
  1623. },
  1624. "compileOnly": true
  1625. },
  1626. "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": {
  1627. "compile": {
  1628. "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {}
  1629. },
  1630. "compileOnly": true
  1631. },
  1632. "Microsoft.Extensions.FileProviders.Abstractions.Reference/3.1.0.0": {
  1633. "compile": {
  1634. "Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  1635. },
  1636. "compileOnly": true
  1637. },
  1638. "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": {
  1639. "compile": {
  1640. "Microsoft.Extensions.FileProviders.Composite.dll": {}
  1641. },
  1642. "compileOnly": true
  1643. },
  1644. "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": {
  1645. "compile": {
  1646. "Microsoft.Extensions.FileProviders.Embedded.dll": {}
  1647. },
  1648. "compileOnly": true
  1649. },
  1650. "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": {
  1651. "compile": {
  1652. "Microsoft.Extensions.FileProviders.Physical.dll": {}
  1653. },
  1654. "compileOnly": true
  1655. },
  1656. "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": {
  1657. "compile": {
  1658. "Microsoft.Extensions.FileSystemGlobbing.dll": {}
  1659. },
  1660. "compileOnly": true
  1661. },
  1662. "Microsoft.Extensions.Hosting.Abstractions.Reference/3.1.0.0": {
  1663. "compile": {
  1664. "Microsoft.Extensions.Hosting.Abstractions.dll": {}
  1665. },
  1666. "compileOnly": true
  1667. },
  1668. "Microsoft.Extensions.Hosting/3.1.0.0": {
  1669. "compile": {
  1670. "Microsoft.Extensions.Hosting.dll": {}
  1671. },
  1672. "compileOnly": true
  1673. },
  1674. "Microsoft.Extensions.Http/3.1.0.0": {
  1675. "compile": {
  1676. "Microsoft.Extensions.Http.dll": {}
  1677. },
  1678. "compileOnly": true
  1679. },
  1680. "Microsoft.Extensions.Identity.Core/3.1.0.0": {
  1681. "compile": {
  1682. "Microsoft.Extensions.Identity.Core.dll": {}
  1683. },
  1684. "compileOnly": true
  1685. },
  1686. "Microsoft.Extensions.Identity.Stores/3.1.0.0": {
  1687. "compile": {
  1688. "Microsoft.Extensions.Identity.Stores.dll": {}
  1689. },
  1690. "compileOnly": true
  1691. },
  1692. "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": {
  1693. "compile": {
  1694. "Microsoft.Extensions.Localization.Abstractions.dll": {}
  1695. },
  1696. "compileOnly": true
  1697. },
  1698. "Microsoft.Extensions.Localization/3.1.0.0": {
  1699. "compile": {
  1700. "Microsoft.Extensions.Localization.dll": {}
  1701. },
  1702. "compileOnly": true
  1703. },
  1704. "Microsoft.Extensions.Logging.Abstractions.Reference/3.1.0.0": {
  1705. "compile": {
  1706. "Microsoft.Extensions.Logging.Abstractions.dll": {}
  1707. },
  1708. "compileOnly": true
  1709. },
  1710. "Microsoft.Extensions.Logging.Configuration/3.1.0.0": {
  1711. "compile": {
  1712. "Microsoft.Extensions.Logging.Configuration.dll": {}
  1713. },
  1714. "compileOnly": true
  1715. },
  1716. "Microsoft.Extensions.Logging.Console/3.1.0.0": {
  1717. "compile": {
  1718. "Microsoft.Extensions.Logging.Console.dll": {}
  1719. },
  1720. "compileOnly": true
  1721. },
  1722. "Microsoft.Extensions.Logging.Debug/3.1.0.0": {
  1723. "compile": {
  1724. "Microsoft.Extensions.Logging.Debug.dll": {}
  1725. },
  1726. "compileOnly": true
  1727. },
  1728. "Microsoft.Extensions.Logging/3.1.0.0": {
  1729. "compile": {
  1730. "Microsoft.Extensions.Logging.dll": {}
  1731. },
  1732. "compileOnly": true
  1733. },
  1734. "Microsoft.Extensions.Logging.EventLog/3.1.0.0": {
  1735. "compile": {
  1736. "Microsoft.Extensions.Logging.EventLog.dll": {}
  1737. },
  1738. "compileOnly": true
  1739. },
  1740. "Microsoft.Extensions.Logging.EventSource/3.1.0.0": {
  1741. "compile": {
  1742. "Microsoft.Extensions.Logging.EventSource.dll": {}
  1743. },
  1744. "compileOnly": true
  1745. },
  1746. "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": {
  1747. "compile": {
  1748. "Microsoft.Extensions.Logging.TraceSource.dll": {}
  1749. },
  1750. "compileOnly": true
  1751. },
  1752. "Microsoft.Extensions.ObjectPool.Reference/3.1.0.0": {
  1753. "compile": {
  1754. "Microsoft.Extensions.ObjectPool.dll": {}
  1755. },
  1756. "compileOnly": true
  1757. },
  1758. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": {
  1759. "compile": {
  1760. "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  1761. },
  1762. "compileOnly": true
  1763. },
  1764. "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": {
  1765. "compile": {
  1766. "Microsoft.Extensions.Options.DataAnnotations.dll": {}
  1767. },
  1768. "compileOnly": true
  1769. },
  1770. "Microsoft.Extensions.Options.Reference/3.1.0.0": {
  1771. "compile": {
  1772. "Microsoft.Extensions.Options.dll": {}
  1773. },
  1774. "compileOnly": true
  1775. },
  1776. "Microsoft.Extensions.Primitives.Reference/3.1.0.0": {
  1777. "compile": {
  1778. "Microsoft.Extensions.Primitives.dll": {}
  1779. },
  1780. "compileOnly": true
  1781. },
  1782. "Microsoft.Extensions.WebEncoders/3.1.0.0": {
  1783. "compile": {
  1784. "Microsoft.Extensions.WebEncoders.dll": {}
  1785. },
  1786. "compileOnly": true
  1787. },
  1788. "Microsoft.JSInterop/3.1.0.0": {
  1789. "compile": {
  1790. "Microsoft.JSInterop.dll": {}
  1791. },
  1792. "compileOnly": true
  1793. },
  1794. "Microsoft.Net.Http.Headers.Reference/3.1.0.0": {
  1795. "compile": {
  1796. "Microsoft.Net.Http.Headers.dll": {}
  1797. },
  1798. "compileOnly": true
  1799. },
  1800. "Microsoft.VisualBasic.Core/10.0.5.0": {
  1801. "compile": {
  1802. "Microsoft.VisualBasic.Core.dll": {}
  1803. },
  1804. "compileOnly": true
  1805. },
  1806. "Microsoft.VisualBasic/10.0.0.0": {
  1807. "compile": {
  1808. "Microsoft.VisualBasic.dll": {}
  1809. },
  1810. "compileOnly": true
  1811. },
  1812. "Microsoft.Win32.Primitives.Reference/4.1.2.0": {
  1813. "compile": {
  1814. "Microsoft.Win32.Primitives.dll": {}
  1815. },
  1816. "compileOnly": true
  1817. },
  1818. "Microsoft.Win32.Registry/4.1.3.0": {
  1819. "compile": {
  1820. "Microsoft.Win32.Registry.dll": {}
  1821. },
  1822. "compileOnly": true
  1823. },
  1824. "mscorlib/4.0.0.0": {
  1825. "compile": {
  1826. "mscorlib.dll": {}
  1827. },
  1828. "compileOnly": true
  1829. },
  1830. "netstandard/2.1.0.0": {
  1831. "compile": {
  1832. "netstandard.dll": {}
  1833. },
  1834. "compileOnly": true
  1835. },
  1836. "System.AppContext/4.2.2.0": {
  1837. "compile": {
  1838. "System.AppContext.dll": {}
  1839. },
  1840. "compileOnly": true
  1841. },
  1842. "System.Buffers.Reference/4.0.2.0": {
  1843. "compile": {
  1844. "System.Buffers.dll": {}
  1845. },
  1846. "compileOnly": true
  1847. },
  1848. "System.Collections.Concurrent.Reference/4.0.15.0": {
  1849. "compile": {
  1850. "System.Collections.Concurrent.dll": {}
  1851. },
  1852. "compileOnly": true
  1853. },
  1854. "System.Collections.Reference/4.1.2.0": {
  1855. "compile": {
  1856. "System.Collections.dll": {}
  1857. },
  1858. "compileOnly": true
  1859. },
  1860. "System.Collections.Immutable/1.2.5.0": {
  1861. "compile": {
  1862. "System.Collections.Immutable.dll": {}
  1863. },
  1864. "compileOnly": true
  1865. },
  1866. "System.Collections.NonGeneric/4.1.2.0": {
  1867. "compile": {
  1868. "System.Collections.NonGeneric.dll": {}
  1869. },
  1870. "compileOnly": true
  1871. },
  1872. "System.Collections.Specialized/4.1.2.0": {
  1873. "compile": {
  1874. "System.Collections.Specialized.dll": {}
  1875. },
  1876. "compileOnly": true
  1877. },
  1878. "System.ComponentModel.Annotations/4.3.1.0": {
  1879. "compile": {
  1880. "System.ComponentModel.Annotations.dll": {}
  1881. },
  1882. "compileOnly": true
  1883. },
  1884. "System.ComponentModel.DataAnnotations/4.0.0.0": {
  1885. "compile": {
  1886. "System.ComponentModel.DataAnnotations.dll": {}
  1887. },
  1888. "compileOnly": true
  1889. },
  1890. "System.ComponentModel/4.0.4.0": {
  1891. "compile": {
  1892. "System.ComponentModel.dll": {}
  1893. },
  1894. "compileOnly": true
  1895. },
  1896. "System.ComponentModel.EventBasedAsync/4.1.2.0": {
  1897. "compile": {
  1898. "System.ComponentModel.EventBasedAsync.dll": {}
  1899. },
  1900. "compileOnly": true
  1901. },
  1902. "System.ComponentModel.Primitives/4.2.2.0": {
  1903. "compile": {
  1904. "System.ComponentModel.Primitives.dll": {}
  1905. },
  1906. "compileOnly": true
  1907. },
  1908. "System.ComponentModel.TypeConverter/4.2.2.0": {
  1909. "compile": {
  1910. "System.ComponentModel.TypeConverter.dll": {}
  1911. },
  1912. "compileOnly": true
  1913. },
  1914. "System.Configuration/4.0.0.0": {
  1915. "compile": {
  1916. "System.Configuration.dll": {}
  1917. },
  1918. "compileOnly": true
  1919. },
  1920. "System.Console/4.1.2.0": {
  1921. "compile": {
  1922. "System.Console.dll": {}
  1923. },
  1924. "compileOnly": true
  1925. },
  1926. "System.Core/4.0.0.0": {
  1927. "compile": {
  1928. "System.Core.dll": {}
  1929. },
  1930. "compileOnly": true
  1931. },
  1932. "System.Data.Common/4.2.2.0": {
  1933. "compile": {
  1934. "System.Data.Common.dll": {}
  1935. },
  1936. "compileOnly": true
  1937. },
  1938. "System.Data.DataSetExtensions/4.0.1.0": {
  1939. "compile": {
  1940. "System.Data.DataSetExtensions.dll": {}
  1941. },
  1942. "compileOnly": true
  1943. },
  1944. "System.Data/4.0.0.0": {
  1945. "compile": {
  1946. "System.Data.dll": {}
  1947. },
  1948. "compileOnly": true
  1949. },
  1950. "System.Diagnostics.Contracts/4.0.4.0": {
  1951. "compile": {
  1952. "System.Diagnostics.Contracts.dll": {}
  1953. },
  1954. "compileOnly": true
  1955. },
  1956. "System.Diagnostics.Debug.Reference/4.1.2.0": {
  1957. "compile": {
  1958. "System.Diagnostics.Debug.dll": {}
  1959. },
  1960. "compileOnly": true
  1961. },
  1962. "System.Diagnostics.DiagnosticSource/4.0.5.0": {
  1963. "compile": {
  1964. "System.Diagnostics.DiagnosticSource.dll": {}
  1965. },
  1966. "compileOnly": true
  1967. },
  1968. "System.Diagnostics.EventLog/4.0.2.0": {
  1969. "compile": {
  1970. "System.Diagnostics.EventLog.dll": {}
  1971. },
  1972. "compileOnly": true
  1973. },
  1974. "System.Diagnostics.FileVersionInfo/4.0.4.0": {
  1975. "compile": {
  1976. "System.Diagnostics.FileVersionInfo.dll": {}
  1977. },
  1978. "compileOnly": true
  1979. },
  1980. "System.Diagnostics.Process/4.2.2.0": {
  1981. "compile": {
  1982. "System.Diagnostics.Process.dll": {}
  1983. },
  1984. "compileOnly": true
  1985. },
  1986. "System.Diagnostics.StackTrace/4.1.2.0": {
  1987. "compile": {
  1988. "System.Diagnostics.StackTrace.dll": {}
  1989. },
  1990. "compileOnly": true
  1991. },
  1992. "System.Diagnostics.TextWriterTraceListener/4.1.2.0": {
  1993. "compile": {
  1994. "System.Diagnostics.TextWriterTraceListener.dll": {}
  1995. },
  1996. "compileOnly": true
  1997. },
  1998. "System.Diagnostics.Tools/4.1.2.0": {
  1999. "compile": {
  2000. "System.Diagnostics.Tools.dll": {}
  2001. },
  2002. "compileOnly": true
  2003. },
  2004. "System.Diagnostics.TraceSource/4.1.2.0": {
  2005. "compile": {
  2006. "System.Diagnostics.TraceSource.dll": {}
  2007. },
  2008. "compileOnly": true
  2009. },
  2010. "System.Diagnostics.Tracing.Reference/4.2.2.0": {
  2011. "compile": {
  2012. "System.Diagnostics.Tracing.dll": {}
  2013. },
  2014. "compileOnly": true
  2015. },
  2016. "System/4.0.0.0": {
  2017. "compile": {
  2018. "System.dll": {}
  2019. },
  2020. "compileOnly": true
  2021. },
  2022. "System.Drawing/4.0.0.0": {
  2023. "compile": {
  2024. "System.Drawing.dll": {}
  2025. },
  2026. "compileOnly": true
  2027. },
  2028. "System.Drawing.Primitives/4.2.1.0": {
  2029. "compile": {
  2030. "System.Drawing.Primitives.dll": {}
  2031. },
  2032. "compileOnly": true
  2033. },
  2034. "System.Dynamic.Runtime/4.1.2.0": {
  2035. "compile": {
  2036. "System.Dynamic.Runtime.dll": {}
  2037. },
  2038. "compileOnly": true
  2039. },
  2040. "System.Globalization.Calendars.Reference/4.1.2.0": {
  2041. "compile": {
  2042. "System.Globalization.Calendars.dll": {}
  2043. },
  2044. "compileOnly": true
  2045. },
  2046. "System.Globalization.Reference/4.1.2.0": {
  2047. "compile": {
  2048. "System.Globalization.dll": {}
  2049. },
  2050. "compileOnly": true
  2051. },
  2052. "System.Globalization.Extensions.Reference/4.1.2.0": {
  2053. "compile": {
  2054. "System.Globalization.Extensions.dll": {}
  2055. },
  2056. "compileOnly": true
  2057. },
  2058. "System.IO.Compression.Brotli/4.2.2.0": {
  2059. "compile": {
  2060. "System.IO.Compression.Brotli.dll": {}
  2061. },
  2062. "compileOnly": true
  2063. },
  2064. "System.IO.Compression/4.2.2.0": {
  2065. "compile": {
  2066. "System.IO.Compression.dll": {}
  2067. },
  2068. "compileOnly": true
  2069. },
  2070. "System.IO.Compression.FileSystem/4.0.0.0": {
  2071. "compile": {
  2072. "System.IO.Compression.FileSystem.dll": {}
  2073. },
  2074. "compileOnly": true
  2075. },
  2076. "System.IO.Compression.ZipFile/4.0.5.0": {
  2077. "compile": {
  2078. "System.IO.Compression.ZipFile.dll": {}
  2079. },
  2080. "compileOnly": true
  2081. },
  2082. "System.IO.Reference/4.2.2.0": {
  2083. "compile": {
  2084. "System.IO.dll": {}
  2085. },
  2086. "compileOnly": true
  2087. },
  2088. "System.IO.FileSystem.Reference/4.1.2.0": {
  2089. "compile": {
  2090. "System.IO.FileSystem.dll": {}
  2091. },
  2092. "compileOnly": true
  2093. },
  2094. "System.IO.FileSystem.DriveInfo/4.1.2.0": {
  2095. "compile": {
  2096. "System.IO.FileSystem.DriveInfo.dll": {}
  2097. },
  2098. "compileOnly": true
  2099. },
  2100. "System.IO.FileSystem.Primitives.Reference/4.1.2.0": {
  2101. "compile": {
  2102. "System.IO.FileSystem.Primitives.dll": {}
  2103. },
  2104. "compileOnly": true
  2105. },
  2106. "System.IO.FileSystem.Watcher/4.1.2.0": {
  2107. "compile": {
  2108. "System.IO.FileSystem.Watcher.dll": {}
  2109. },
  2110. "compileOnly": true
  2111. },
  2112. "System.IO.IsolatedStorage/4.1.2.0": {
  2113. "compile": {
  2114. "System.IO.IsolatedStorage.dll": {}
  2115. },
  2116. "compileOnly": true
  2117. },
  2118. "System.IO.MemoryMappedFiles/4.1.2.0": {
  2119. "compile": {
  2120. "System.IO.MemoryMappedFiles.dll": {}
  2121. },
  2122. "compileOnly": true
  2123. },
  2124. "System.IO.Pipelines.Reference/4.0.2.0": {
  2125. "compile": {
  2126. "System.IO.Pipelines.dll": {}
  2127. },
  2128. "compileOnly": true
  2129. },
  2130. "System.IO.Pipes/4.1.2.0": {
  2131. "compile": {
  2132. "System.IO.Pipes.dll": {}
  2133. },
  2134. "compileOnly": true
  2135. },
  2136. "System.IO.UnmanagedMemoryStream/4.1.2.0": {
  2137. "compile": {
  2138. "System.IO.UnmanagedMemoryStream.dll": {}
  2139. },
  2140. "compileOnly": true
  2141. },
  2142. "System.Linq.Reference/4.2.2.0": {
  2143. "compile": {
  2144. "System.Linq.dll": {}
  2145. },
  2146. "compileOnly": true
  2147. },
  2148. "System.Linq.Expressions/4.2.2.0": {
  2149. "compile": {
  2150. "System.Linq.Expressions.dll": {}
  2151. },
  2152. "compileOnly": true
  2153. },
  2154. "System.Linq.Parallel/4.0.4.0": {
  2155. "compile": {
  2156. "System.Linq.Parallel.dll": {}
  2157. },
  2158. "compileOnly": true
  2159. },
  2160. "System.Linq.Queryable/4.0.4.0": {
  2161. "compile": {
  2162. "System.Linq.Queryable.dll": {}
  2163. },
  2164. "compileOnly": true
  2165. },
  2166. "System.Memory.Reference/4.2.1.0": {
  2167. "compile": {
  2168. "System.Memory.dll": {}
  2169. },
  2170. "compileOnly": true
  2171. },
  2172. "System.Net/4.0.0.0": {
  2173. "compile": {
  2174. "System.Net.dll": {}
  2175. },
  2176. "compileOnly": true
  2177. },
  2178. "System.Net.Http/4.2.2.0": {
  2179. "compile": {
  2180. "System.Net.Http.dll": {}
  2181. },
  2182. "compileOnly": true
  2183. },
  2184. "System.Net.HttpListener/4.0.2.0": {
  2185. "compile": {
  2186. "System.Net.HttpListener.dll": {}
  2187. },
  2188. "compileOnly": true
  2189. },
  2190. "System.Net.Mail/4.0.2.0": {
  2191. "compile": {
  2192. "System.Net.Mail.dll": {}
  2193. },
  2194. "compileOnly": true
  2195. },
  2196. "System.Net.NameResolution.Reference/4.1.2.0": {
  2197. "compile": {
  2198. "System.Net.NameResolution.dll": {}
  2199. },
  2200. "compileOnly": true
  2201. },
  2202. "System.Net.NetworkInformation/4.2.2.0": {
  2203. "compile": {
  2204. "System.Net.NetworkInformation.dll": {}
  2205. },
  2206. "compileOnly": true
  2207. },
  2208. "System.Net.Ping/4.1.2.0": {
  2209. "compile": {
  2210. "System.Net.Ping.dll": {}
  2211. },
  2212. "compileOnly": true
  2213. },
  2214. "System.Net.Primitives.Reference/4.1.2.0": {
  2215. "compile": {
  2216. "System.Net.Primitives.dll": {}
  2217. },
  2218. "compileOnly": true
  2219. },
  2220. "System.Net.Requests/4.1.2.0": {
  2221. "compile": {
  2222. "System.Net.Requests.dll": {}
  2223. },
  2224. "compileOnly": true
  2225. },
  2226. "System.Net.Security.Reference/4.1.2.0": {
  2227. "compile": {
  2228. "System.Net.Security.dll": {}
  2229. },
  2230. "compileOnly": true
  2231. },
  2232. "System.Net.ServicePoint/4.0.2.0": {
  2233. "compile": {
  2234. "System.Net.ServicePoint.dll": {}
  2235. },
  2236. "compileOnly": true
  2237. },
  2238. "System.Net.Sockets.Reference/4.2.2.0": {
  2239. "compile": {
  2240. "System.Net.Sockets.dll": {}
  2241. },
  2242. "compileOnly": true
  2243. },
  2244. "System.Net.WebClient/4.0.2.0": {
  2245. "compile": {
  2246. "System.Net.WebClient.dll": {}
  2247. },
  2248. "compileOnly": true
  2249. },
  2250. "System.Net.WebHeaderCollection.Reference/4.1.2.0": {
  2251. "compile": {
  2252. "System.Net.WebHeaderCollection.dll": {}
  2253. },
  2254. "compileOnly": true
  2255. },
  2256. "System.Net.WebProxy/4.0.2.0": {
  2257. "compile": {
  2258. "System.Net.WebProxy.dll": {}
  2259. },
  2260. "compileOnly": true
  2261. },
  2262. "System.Net.WebSockets.Client.Reference/4.1.2.0": {
  2263. "compile": {
  2264. "System.Net.WebSockets.Client.dll": {}
  2265. },
  2266. "compileOnly": true
  2267. },
  2268. "System.Net.WebSockets.Reference/4.1.2.0": {
  2269. "compile": {
  2270. "System.Net.WebSockets.dll": {}
  2271. },
  2272. "compileOnly": true
  2273. },
  2274. "System.Numerics/4.0.0.0": {
  2275. "compile": {
  2276. "System.Numerics.dll": {}
  2277. },
  2278. "compileOnly": true
  2279. },
  2280. "System.Numerics.Vectors/4.1.6.0": {
  2281. "compile": {
  2282. "System.Numerics.Vectors.dll": {}
  2283. },
  2284. "compileOnly": true
  2285. },
  2286. "System.ObjectModel/4.1.2.0": {
  2287. "compile": {
  2288. "System.ObjectModel.dll": {}
  2289. },
  2290. "compileOnly": true
  2291. },
  2292. "System.Reflection.DispatchProxy/4.0.6.0": {
  2293. "compile": {
  2294. "System.Reflection.DispatchProxy.dll": {}
  2295. },
  2296. "compileOnly": true
  2297. },
  2298. "System.Reflection.Reference/4.2.2.0": {
  2299. "compile": {
  2300. "System.Reflection.dll": {}
  2301. },
  2302. "compileOnly": true
  2303. },
  2304. "System.Reflection.Emit/4.1.2.0": {
  2305. "compile": {
  2306. "System.Reflection.Emit.dll": {}
  2307. },
  2308. "compileOnly": true
  2309. },
  2310. "System.Reflection.Emit.ILGeneration/4.1.1.0": {
  2311. "compile": {
  2312. "System.Reflection.Emit.ILGeneration.dll": {}
  2313. },
  2314. "compileOnly": true
  2315. },
  2316. "System.Reflection.Emit.Lightweight/4.1.1.0": {
  2317. "compile": {
  2318. "System.Reflection.Emit.Lightweight.dll": {}
  2319. },
  2320. "compileOnly": true
  2321. },
  2322. "System.Reflection.Extensions/4.1.2.0": {
  2323. "compile": {
  2324. "System.Reflection.Extensions.dll": {}
  2325. },
  2326. "compileOnly": true
  2327. },
  2328. "System.Reflection.Metadata/1.4.5.0": {
  2329. "compile": {
  2330. "System.Reflection.Metadata.dll": {}
  2331. },
  2332. "compileOnly": true
  2333. },
  2334. "System.Reflection.Primitives.Reference/4.1.2.0": {
  2335. "compile": {
  2336. "System.Reflection.Primitives.dll": {}
  2337. },
  2338. "compileOnly": true
  2339. },
  2340. "System.Reflection.TypeExtensions/4.1.2.0": {
  2341. "compile": {
  2342. "System.Reflection.TypeExtensions.dll": {}
  2343. },
  2344. "compileOnly": true
  2345. },
  2346. "System.Resources.Reader/4.1.2.0": {
  2347. "compile": {
  2348. "System.Resources.Reader.dll": {}
  2349. },
  2350. "compileOnly": true
  2351. },
  2352. "System.Resources.ResourceManager.Reference/4.1.2.0": {
  2353. "compile": {
  2354. "System.Resources.ResourceManager.dll": {}
  2355. },
  2356. "compileOnly": true
  2357. },
  2358. "System.Resources.Writer/4.1.2.0": {
  2359. "compile": {
  2360. "System.Resources.Writer.dll": {}
  2361. },
  2362. "compileOnly": true
  2363. },
  2364. "System.Runtime.CompilerServices.Unsafe.Reference/4.0.6.0": {
  2365. "compile": {
  2366. "System.Runtime.CompilerServices.Unsafe.dll": {}
  2367. },
  2368. "compileOnly": true
  2369. },
  2370. "System.Runtime.CompilerServices.VisualC/4.1.2.0": {
  2371. "compile": {
  2372. "System.Runtime.CompilerServices.VisualC.dll": {}
  2373. },
  2374. "compileOnly": true
  2375. },
  2376. "System.Runtime.Reference/4.2.2.0": {
  2377. "compile": {
  2378. "System.Runtime.dll": {}
  2379. },
  2380. "compileOnly": true
  2381. },
  2382. "System.Runtime.Extensions.Reference/4.2.2.0": {
  2383. "compile": {
  2384. "System.Runtime.Extensions.dll": {}
  2385. },
  2386. "compileOnly": true
  2387. },
  2388. "System.Runtime.Handles.Reference/4.1.2.0": {
  2389. "compile": {
  2390. "System.Runtime.Handles.dll": {}
  2391. },
  2392. "compileOnly": true
  2393. },
  2394. "System.Runtime.InteropServices.Reference/4.2.2.0": {
  2395. "compile": {
  2396. "System.Runtime.InteropServices.dll": {}
  2397. },
  2398. "compileOnly": true
  2399. },
  2400. "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": {
  2401. "compile": {
  2402. "System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2403. },
  2404. "compileOnly": true
  2405. },
  2406. "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": {
  2407. "compile": {
  2408. "System.Runtime.InteropServices.WindowsRuntime.dll": {}
  2409. },
  2410. "compileOnly": true
  2411. },
  2412. "System.Runtime.Intrinsics/4.0.1.0": {
  2413. "compile": {
  2414. "System.Runtime.Intrinsics.dll": {}
  2415. },
  2416. "compileOnly": true
  2417. },
  2418. "System.Runtime.Loader/4.1.1.0": {
  2419. "compile": {
  2420. "System.Runtime.Loader.dll": {}
  2421. },
  2422. "compileOnly": true
  2423. },
  2424. "System.Runtime.Numerics.Reference/4.1.2.0": {
  2425. "compile": {
  2426. "System.Runtime.Numerics.dll": {}
  2427. },
  2428. "compileOnly": true
  2429. },
  2430. "System.Runtime.Serialization/4.0.0.0": {
  2431. "compile": {
  2432. "System.Runtime.Serialization.dll": {}
  2433. },
  2434. "compileOnly": true
  2435. },
  2436. "System.Runtime.Serialization.Formatters/4.0.4.0": {
  2437. "compile": {
  2438. "System.Runtime.Serialization.Formatters.dll": {}
  2439. },
  2440. "compileOnly": true
  2441. },
  2442. "System.Runtime.Serialization.Json/4.0.5.0": {
  2443. "compile": {
  2444. "System.Runtime.Serialization.Json.dll": {}
  2445. },
  2446. "compileOnly": true
  2447. },
  2448. "System.Runtime.Serialization.Primitives/4.2.2.0": {
  2449. "compile": {
  2450. "System.Runtime.Serialization.Primitives.dll": {}
  2451. },
  2452. "compileOnly": true
  2453. },
  2454. "System.Runtime.Serialization.Xml/4.1.5.0": {
  2455. "compile": {
  2456. "System.Runtime.Serialization.Xml.dll": {}
  2457. },
  2458. "compileOnly": true
  2459. },
  2460. "System.Security.AccessControl/4.1.1.0": {
  2461. "compile": {
  2462. "System.Security.AccessControl.dll": {}
  2463. },
  2464. "compileOnly": true
  2465. },
  2466. "System.Security.Claims.Reference/4.1.2.0": {
  2467. "compile": {
  2468. "System.Security.Claims.dll": {}
  2469. },
  2470. "compileOnly": true
  2471. },
  2472. "System.Security.Cryptography.Algorithms.Reference/4.3.2.0": {
  2473. "compile": {
  2474. "System.Security.Cryptography.Algorithms.dll": {}
  2475. },
  2476. "compileOnly": true
  2477. },
  2478. "System.Security.Cryptography.Cng.Reference/4.3.3.0": {
  2479. "compile": {
  2480. "System.Security.Cryptography.Cng.dll": {}
  2481. },
  2482. "compileOnly": true
  2483. },
  2484. "System.Security.Cryptography.Csp.Reference/4.1.2.0": {
  2485. "compile": {
  2486. "System.Security.Cryptography.Csp.dll": {}
  2487. },
  2488. "compileOnly": true
  2489. },
  2490. "System.Security.Cryptography.Encoding.Reference/4.1.2.0": {
  2491. "compile": {
  2492. "System.Security.Cryptography.Encoding.dll": {}
  2493. },
  2494. "compileOnly": true
  2495. },
  2496. "System.Security.Cryptography.Primitives.Reference/4.1.2.0": {
  2497. "compile": {
  2498. "System.Security.Cryptography.Primitives.dll": {}
  2499. },
  2500. "compileOnly": true
  2501. },
  2502. "System.Security.Cryptography.X509Certificates.Reference/4.2.2.0": {
  2503. "compile": {
  2504. "System.Security.Cryptography.X509Certificates.dll": {}
  2505. },
  2506. "compileOnly": true
  2507. },
  2508. "System.Security.Cryptography.Xml/4.0.3.0": {
  2509. "compile": {
  2510. "System.Security.Cryptography.Xml.dll": {}
  2511. },
  2512. "compileOnly": true
  2513. },
  2514. "System.Security/4.0.0.0": {
  2515. "compile": {
  2516. "System.Security.dll": {}
  2517. },
  2518. "compileOnly": true
  2519. },
  2520. "System.Security.Permissions/4.0.3.0": {
  2521. "compile": {
  2522. "System.Security.Permissions.dll": {}
  2523. },
  2524. "compileOnly": true
  2525. },
  2526. "System.Security.Principal.Reference/4.1.2.0": {
  2527. "compile": {
  2528. "System.Security.Principal.dll": {}
  2529. },
  2530. "compileOnly": true
  2531. },
  2532. "System.Security.Principal.Windows.Reference/4.1.1.0": {
  2533. "compile": {
  2534. "System.Security.Principal.Windows.dll": {}
  2535. },
  2536. "compileOnly": true
  2537. },
  2538. "System.Security.SecureString/4.1.2.0": {
  2539. "compile": {
  2540. "System.Security.SecureString.dll": {}
  2541. },
  2542. "compileOnly": true
  2543. },
  2544. "System.ServiceModel.Web/4.0.0.0": {
  2545. "compile": {
  2546. "System.ServiceModel.Web.dll": {}
  2547. },
  2548. "compileOnly": true
  2549. },
  2550. "System.ServiceProcess/4.0.0.0": {
  2551. "compile": {
  2552. "System.ServiceProcess.dll": {}
  2553. },
  2554. "compileOnly": true
  2555. },
  2556. "System.Text.Encoding.CodePages/4.1.3.0": {
  2557. "compile": {
  2558. "System.Text.Encoding.CodePages.dll": {}
  2559. },
  2560. "compileOnly": true
  2561. },
  2562. "System.Text.Encoding.Reference/4.1.2.0": {
  2563. "compile": {
  2564. "System.Text.Encoding.dll": {}
  2565. },
  2566. "compileOnly": true
  2567. },
  2568. "System.Text.Encoding.Extensions.Reference/4.1.2.0": {
  2569. "compile": {
  2570. "System.Text.Encoding.Extensions.dll": {}
  2571. },
  2572. "compileOnly": true
  2573. },
  2574. "System.Text.Encodings.Web.Reference/4.0.5.0": {
  2575. "compile": {
  2576. "System.Text.Encodings.Web.dll": {}
  2577. },
  2578. "compileOnly": true
  2579. },
  2580. "System.Text.Json/4.0.1.0": {
  2581. "compile": {
  2582. "System.Text.Json.dll": {}
  2583. },
  2584. "compileOnly": true
  2585. },
  2586. "System.Text.RegularExpressions/4.2.2.0": {
  2587. "compile": {
  2588. "System.Text.RegularExpressions.dll": {}
  2589. },
  2590. "compileOnly": true
  2591. },
  2592. "System.Threading.Channels/4.0.2.0": {
  2593. "compile": {
  2594. "System.Threading.Channels.dll": {}
  2595. },
  2596. "compileOnly": true
  2597. },
  2598. "System.Threading.Reference/4.1.2.0": {
  2599. "compile": {
  2600. "System.Threading.dll": {}
  2601. },
  2602. "compileOnly": true
  2603. },
  2604. "System.Threading.Overlapped/4.1.2.0": {
  2605. "compile": {
  2606. "System.Threading.Overlapped.dll": {}
  2607. },
  2608. "compileOnly": true
  2609. },
  2610. "System.Threading.Tasks.Dataflow/4.6.5.0": {
  2611. "compile": {
  2612. "System.Threading.Tasks.Dataflow.dll": {}
  2613. },
  2614. "compileOnly": true
  2615. },
  2616. "System.Threading.Tasks.Reference/4.1.2.0": {
  2617. "compile": {
  2618. "System.Threading.Tasks.dll": {}
  2619. },
  2620. "compileOnly": true
  2621. },
  2622. "System.Threading.Tasks.Extensions/4.3.1.0": {
  2623. "compile": {
  2624. "System.Threading.Tasks.Extensions.dll": {}
  2625. },
  2626. "compileOnly": true
  2627. },
  2628. "System.Threading.Tasks.Parallel/4.0.4.0": {
  2629. "compile": {
  2630. "System.Threading.Tasks.Parallel.dll": {}
  2631. },
  2632. "compileOnly": true
  2633. },
  2634. "System.Threading.Thread/4.1.2.0": {
  2635. "compile": {
  2636. "System.Threading.Thread.dll": {}
  2637. },
  2638. "compileOnly": true
  2639. },
  2640. "System.Threading.ThreadPool.Reference/4.1.2.0": {
  2641. "compile": {
  2642. "System.Threading.ThreadPool.dll": {}
  2643. },
  2644. "compileOnly": true
  2645. },
  2646. "System.Threading.Timer.Reference/4.1.2.0": {
  2647. "compile": {
  2648. "System.Threading.Timer.dll": {}
  2649. },
  2650. "compileOnly": true
  2651. },
  2652. "System.Transactions/4.0.0.0": {
  2653. "compile": {
  2654. "System.Transactions.dll": {}
  2655. },
  2656. "compileOnly": true
  2657. },
  2658. "System.Transactions.Local/4.0.2.0": {
  2659. "compile": {
  2660. "System.Transactions.Local.dll": {}
  2661. },
  2662. "compileOnly": true
  2663. },
  2664. "System.ValueTuple/4.0.3.0": {
  2665. "compile": {
  2666. "System.ValueTuple.dll": {}
  2667. },
  2668. "compileOnly": true
  2669. },
  2670. "System.Web/4.0.0.0": {
  2671. "compile": {
  2672. "System.Web.dll": {}
  2673. },
  2674. "compileOnly": true
  2675. },
  2676. "System.Web.HttpUtility/4.0.2.0": {
  2677. "compile": {
  2678. "System.Web.HttpUtility.dll": {}
  2679. },
  2680. "compileOnly": true
  2681. },
  2682. "System.Windows/4.0.0.0": {
  2683. "compile": {
  2684. "System.Windows.dll": {}
  2685. },
  2686. "compileOnly": true
  2687. },
  2688. "System.Windows.Extensions/4.0.1.0": {
  2689. "compile": {
  2690. "System.Windows.Extensions.dll": {}
  2691. },
  2692. "compileOnly": true
  2693. },
  2694. "System.Xml/4.0.0.0": {
  2695. "compile": {
  2696. "System.Xml.dll": {}
  2697. },
  2698. "compileOnly": true
  2699. },
  2700. "System.Xml.Linq/4.0.0.0": {
  2701. "compile": {
  2702. "System.Xml.Linq.dll": {}
  2703. },
  2704. "compileOnly": true
  2705. },
  2706. "System.Xml.ReaderWriter/4.2.2.0": {
  2707. "compile": {
  2708. "System.Xml.ReaderWriter.dll": {}
  2709. },
  2710. "compileOnly": true
  2711. },
  2712. "System.Xml.Serialization/4.0.0.0": {
  2713. "compile": {
  2714. "System.Xml.Serialization.dll": {}
  2715. },
  2716. "compileOnly": true
  2717. },
  2718. "System.Xml.XDocument/4.1.2.0": {
  2719. "compile": {
  2720. "System.Xml.XDocument.dll": {}
  2721. },
  2722. "compileOnly": true
  2723. },
  2724. "System.Xml.XmlDocument/4.1.2.0": {
  2725. "compile": {
  2726. "System.Xml.XmlDocument.dll": {}
  2727. },
  2728. "compileOnly": true
  2729. },
  2730. "System.Xml.XmlSerializer/4.1.2.0": {
  2731. "compile": {
  2732. "System.Xml.XmlSerializer.dll": {}
  2733. },
  2734. "compileOnly": true
  2735. },
  2736. "System.Xml.XPath/4.1.2.0": {
  2737. "compile": {
  2738. "System.Xml.XPath.dll": {}
  2739. },
  2740. "compileOnly": true
  2741. },
  2742. "System.Xml.XPath.XDocument/4.1.2.0": {
  2743. "compile": {
  2744. "System.Xml.XPath.XDocument.dll": {}
  2745. },
  2746. "compileOnly": true
  2747. },
  2748. "WindowsBase/4.0.0.0": {
  2749. "compile": {
  2750. "WindowsBase.dll": {}
  2751. },
  2752. "compileOnly": true
  2753. }
  2754. }
  2755. },
  2756. "libraries": {
  2757. "MqttServerApp/1.0.0": {
  2758. "type": "project",
  2759. "serviceable": false,
  2760. "sha512": ""
  2761. },
  2762. "Microsoft.AspNetCore.Authentication.Abstractions/2.1.1": {
  2763. "type": "package",
  2764. "serviceable": true,
  2765. "sha512": "sha512-Smj5TGeE9629+hGHPk/DZUfCMYGvQwCajAsU/OVExRb8JXfeua4uXZFzT9Kh3pJY2MThPSt1lbDnkL2KaDyw/A==",
  2766. "path": "microsoft.aspnetcore.authentication.abstractions/2.1.1",
  2767. "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.1.1.nupkg.sha512"
  2768. },
  2769. "Microsoft.AspNetCore.Authorization/2.1.1": {
  2770. "type": "package",
  2771. "serviceable": true,
  2772. "sha512": "sha512-rsxgcq+BU7VDGOZ0DdyPQOSE+jw5Bb4nk6PQpG70U/ZhgKFaAnnLeEnCfHgnCBUy3kn2ZtH3ZKJL+sh9MYzR4w==",
  2773. "path": "microsoft.aspnetcore.authorization/2.1.1",
  2774. "hashPath": "microsoft.aspnetcore.authorization.2.1.1.nupkg.sha512"
  2775. },
  2776. "Microsoft.AspNetCore.Authorization.Policy/2.1.1": {
  2777. "type": "package",
  2778. "serviceable": true,
  2779. "sha512": "sha512-6Gy9rFN1/4pKgjcbb2yaOmwpjV282dGnl7ewcCvcLxQmywpolkwxe5PPI6K/VPC2sovL5BtzhxnRl3OkwJZxwg==",
  2780. "path": "microsoft.aspnetcore.authorization.policy/2.1.1",
  2781. "hashPath": "microsoft.aspnetcore.authorization.policy.2.1.1.nupkg.sha512"
  2782. },
  2783. "Microsoft.AspNetCore.Connections.Abstractions/2.1.3": {
  2784. "type": "package",
  2785. "serviceable": true,
  2786. "sha512": "sha512-ZpizM+XToYZUBK9F/V5mVgQ5yFA8H7t9Ba4UiDrBuYkzBGVh/e+87A29OHZSaJh+dns8GUTP6IucQ6713ZQwQQ==",
  2787. "path": "microsoft.aspnetcore.connections.abstractions/2.1.3",
  2788. "hashPath": "microsoft.aspnetcore.connections.abstractions.2.1.3.nupkg.sha512"
  2789. },
  2790. "Microsoft.AspNetCore.Hosting.Abstractions/2.1.1": {
  2791. "type": "package",
  2792. "serviceable": true,
  2793. "sha512": "sha512-76cKcp2pWhvdV2TXTqMg/DyW7N6cDzTEhtL8vVWFShQN+Ylwv3eO/vUQr2BS3Hz4IZHEpL+FOo2T+MtymHDqDQ==",
  2794. "path": "microsoft.aspnetcore.hosting.abstractions/2.1.1",
  2795. "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.1.1.nupkg.sha512"
  2796. },
  2797. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.1": {
  2798. "type": "package",
  2799. "serviceable": true,
  2800. "sha512": "sha512-+vD7HJYzAXNq17t+NgRkpS38cxuAyOBu8ixruOiA3nWsybozolUdALWiZ5QFtGRzajSLPFA2YsbO3NPcqoUwcw==",
  2801. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.1.1",
  2802. "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.1.1.nupkg.sha512"
  2803. },
  2804. "Microsoft.AspNetCore.Http/2.1.1": {
  2805. "type": "package",
  2806. "serviceable": true,
  2807. "sha512": "sha512-pPDcCW8spnyibK3krpxrOpaFHf5fjV6k1Hsl6gfh77N/8gRYlLU7MOQDUnjpEwdlHmtxwJKQJNxZqVQOmJGRUw==",
  2808. "path": "microsoft.aspnetcore.http/2.1.1",
  2809. "hashPath": "microsoft.aspnetcore.http.2.1.1.nupkg.sha512"
  2810. },
  2811. "Microsoft.AspNetCore.Http.Abstractions/2.1.1": {
  2812. "type": "package",
  2813. "serviceable": true,
  2814. "sha512": "sha512-kQUEVOU4loc8CPSb2WoHFTESqwIa8Ik7ysCBfTwzHAd0moWovc9JQLmhDIHlYLjHbyexqZAlkq/FPRUZqokebw==",
  2815. "path": "microsoft.aspnetcore.http.abstractions/2.1.1",
  2816. "hashPath": "microsoft.aspnetcore.http.abstractions.2.1.1.nupkg.sha512"
  2817. },
  2818. "Microsoft.AspNetCore.Http.Connections/1.0.3": {
  2819. "type": "package",
  2820. "serviceable": true,
  2821. "sha512": "sha512-tcXwyIaWepIQ1DeLVprAQ3KrQjCodlCOoCeJ+bm5iJCRYbVZECdAHqq0MKXmR7svF2WJ7V4AA9r7slJUtJErwA==",
  2822. "path": "microsoft.aspnetcore.http.connections/1.0.3",
  2823. "hashPath": "microsoft.aspnetcore.http.connections.1.0.3.nupkg.sha512"
  2824. },
  2825. "Microsoft.AspNetCore.Http.Connections.Common/1.0.3": {
  2826. "type": "package",
  2827. "serviceable": true,
  2828. "sha512": "sha512-EMwKzAW/6kQ/mm7HJ6lCmuj3InDraTSb5KoN2HiGlQFn0lGzf/vvs35iTf4VYdQW5wwTuOVnB3JsrVUCoPVPuA==",
  2829. "path": "microsoft.aspnetcore.http.connections.common/1.0.3",
  2830. "hashPath": "microsoft.aspnetcore.http.connections.common.1.0.3.nupkg.sha512"
  2831. },
  2832. "Microsoft.AspNetCore.Http.Extensions/2.1.1": {
  2833. "type": "package",
  2834. "serviceable": true,
  2835. "sha512": "sha512-ncAgV+cqsWSqjLXFUTyObGh4Tr7ShYYs3uW8Q/YpRwZn7eLV7dux5Z6GLY+rsdzmIHiia3Q2NWbLULQi7aziHw==",
  2836. "path": "microsoft.aspnetcore.http.extensions/2.1.1",
  2837. "hashPath": "microsoft.aspnetcore.http.extensions.2.1.1.nupkg.sha512"
  2838. },
  2839. "Microsoft.AspNetCore.Http.Features/2.1.1": {
  2840. "type": "package",
  2841. "serviceable": true,
  2842. "sha512": "sha512-VklZ7hWgSvHBcDtwYYkdMdI/adlf7ebxTZ9kdzAhX+gUs5jSHE9mZlTamdgf9miSsxc1QjNazHXTDJdVPZKKTw==",
  2843. "path": "microsoft.aspnetcore.http.features/2.1.1",
  2844. "hashPath": "microsoft.aspnetcore.http.features.2.1.1.nupkg.sha512"
  2845. },
  2846. "Microsoft.AspNetCore.Routing/2.1.1": {
  2847. "type": "package",
  2848. "serviceable": true,
  2849. "sha512": "sha512-U39z3M0oTrquVBohK32Nh20PWQkb9fuO1dbVPTI43Dr3n6qCx6vAFNGWuCzFeINLy152LivmVlLn4rMOzWudug==",
  2850. "path": "microsoft.aspnetcore.routing/2.1.1",
  2851. "hashPath": "microsoft.aspnetcore.routing.2.1.1.nupkg.sha512"
  2852. },
  2853. "Microsoft.AspNetCore.Routing.Abstractions/2.1.1": {
  2854. "type": "package",
  2855. "serviceable": true,
  2856. "sha512": "sha512-Aa88Bi0/HI8dPReC0XqByPiVGYDRfj6Xh2eVsNCisnlgFHonDdW9CQsNPhVSK+uWQl3kDMFxFpeJ1ktz/wUHsQ==",
  2857. "path": "microsoft.aspnetcore.routing.abstractions/2.1.1",
  2858. "hashPath": "microsoft.aspnetcore.routing.abstractions.2.1.1.nupkg.sha512"
  2859. },
  2860. "Microsoft.AspNetCore.WebSockets/2.1.1": {
  2861. "type": "package",
  2862. "serviceable": true,
  2863. "sha512": "sha512-InTyU1ByPgd3UKJn1z9rAfiClNS/spE2VEjhqgNu0ZIC2LmBJtYo92YU9VNWMsiGDNH6sS4d4bQdabfEvP/StA==",
  2864. "path": "microsoft.aspnetcore.websockets/2.1.1",
  2865. "hashPath": "microsoft.aspnetcore.websockets.2.1.1.nupkg.sha512"
  2866. },
  2867. "Microsoft.AspNetCore.WebUtilities/2.1.1": {
  2868. "type": "package",
  2869. "serviceable": true,
  2870. "sha512": "sha512-PGKIZt4+412Z/XPoSjvYu/QIbTxcAQuEFNoA1Pw8a9mgmO0ZhNBmfaNyhgXFf7Rq62kP0tT/2WXpxdcQhkFUPA==",
  2871. "path": "microsoft.aspnetcore.webutilities/2.1.1",
  2872. "hashPath": "microsoft.aspnetcore.webutilities.2.1.1.nupkg.sha512"
  2873. },
  2874. "Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
  2875. "type": "package",
  2876. "serviceable": true,
  2877. "sha512": "sha512-VfuZJNa0WUshZ/+8BFZAhwFKiKuu/qOUCFntfdLpHj7vcRnsGHqd3G2Hse78DM+pgozczGM63lGPRLmy+uhUOA==",
  2878. "path": "microsoft.extensions.configuration.abstractions/2.1.1",
  2879. "hashPath": "microsoft.extensions.configuration.abstractions.2.1.1.nupkg.sha512"
  2880. },
  2881. "Microsoft.Extensions.DependencyInjection.Abstractions/2.1.1": {
  2882. "type": "package",
  2883. "serviceable": true,
  2884. "sha512": "sha512-MgYpU5cwZohUMKKg3sbPhvGG+eAZ/59E9UwPwlrUkyXU+PGzqwZg9yyQNjhxuAWmoNoFReoemeCku50prYSGzA==",
  2885. "path": "microsoft.extensions.dependencyinjection.abstractions/2.1.1",
  2886. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.1.1.nupkg.sha512"
  2887. },
  2888. "Microsoft.Extensions.FileProviders.Abstractions/2.1.1": {
  2889. "type": "package",
  2890. "serviceable": true,
  2891. "sha512": "sha512-UEQB5/QPuLYaCvScZQ9llhcks5xyEUKh41D615FoehRAF9UgGVmXHcCSOH8idHHLRoKm+OJJjEy1oywvuaL33w==",
  2892. "path": "microsoft.extensions.fileproviders.abstractions/2.1.1",
  2893. "hashPath": "microsoft.extensions.fileproviders.abstractions.2.1.1.nupkg.sha512"
  2894. },
  2895. "Microsoft.Extensions.Hosting.Abstractions/2.1.1": {
  2896. "type": "package",
  2897. "serviceable": true,
  2898. "sha512": "sha512-JapUdfaknf5UQ9KcCLkIKp+pe68OkXM0pdYX/WgCL5Xaun/PVwCoTqtL4/NXiY3ssNvrl5gQ8mnzFCxX6mvALQ==",
  2899. "path": "microsoft.extensions.hosting.abstractions/2.1.1",
  2900. "hashPath": "microsoft.extensions.hosting.abstractions.2.1.1.nupkg.sha512"
  2901. },
  2902. "Microsoft.Extensions.Logging.Abstractions/2.1.1": {
  2903. "type": "package",
  2904. "serviceable": true,
  2905. "sha512": "sha512-XRzK7ZF+O6FzdfWrlFTi1Rgj2080ZDsd46vzOjadHUB0Cz5kOvDG8vI7caa5YFrsHQpcfn0DxtjS4E46N4FZsA==",
  2906. "path": "microsoft.extensions.logging.abstractions/2.1.1",
  2907. "hashPath": "microsoft.extensions.logging.abstractions.2.1.1.nupkg.sha512"
  2908. },
  2909. "Microsoft.Extensions.ObjectPool/2.1.1": {
  2910. "type": "package",
  2911. "serviceable": true,
  2912. "sha512": "sha512-SErON45qh4ogDp6lr6UvVmFYW0FERihW+IQ+2JyFv1PUyWktcJytFaWH5zarufJvZwhci7Rf1IyGXr9pVEadTw==",
  2913. "path": "microsoft.extensions.objectpool/2.1.1",
  2914. "hashPath": "microsoft.extensions.objectpool.2.1.1.nupkg.sha512"
  2915. },
  2916. "Microsoft.Extensions.Options/2.1.1": {
  2917. "type": "package",
  2918. "serviceable": true,
  2919. "sha512": "sha512-V7lXCU78lAbzaulCGFKojcCyG8RTJicEbiBkPJjFqiqXwndEBBIehdXRMWEVU3UtzQ1yDvphiWUL9th6/4gJ7w==",
  2920. "path": "microsoft.extensions.options/2.1.1",
  2921. "hashPath": "microsoft.extensions.options.2.1.1.nupkg.sha512"
  2922. },
  2923. "Microsoft.Extensions.Primitives/2.1.1": {
  2924. "type": "package",
  2925. "serviceable": true,
  2926. "sha512": "sha512-scJ1GZNIxMmjpENh0UZ8XCQ6vzr/LzeF9WvEA51Ix2OQGAs9WPgPu8ABVUdvpKPLuor/t05gm6menJK3PwqOXg==",
  2927. "path": "microsoft.extensions.primitives/2.1.1",
  2928. "hashPath": "microsoft.extensions.primitives.2.1.1.nupkg.sha512"
  2929. },
  2930. "Microsoft.Net.Http.Headers/2.1.1": {
  2931. "type": "package",
  2932. "serviceable": true,
  2933. "sha512": "sha512-lPNIphl8b2EuhOE9dMH6EZDmu7pS882O+HMi5BJNsigxHaWlBrYxZHFZgE18cyaPp6SSZcTkKkuzfjV/RRQKlA==",
  2934. "path": "microsoft.net.http.headers/2.1.1",
  2935. "hashPath": "microsoft.net.http.headers.2.1.1.nupkg.sha512"
  2936. },
  2937. "Microsoft.NETCore.Platforms/1.1.0": {
  2938. "type": "package",
  2939. "serviceable": true,
  2940. "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  2941. "path": "microsoft.netcore.platforms/1.1.0",
  2942. "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
  2943. },
  2944. "Microsoft.NETCore.Targets/1.1.0": {
  2945. "type": "package",
  2946. "serviceable": true,
  2947. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  2948. "path": "microsoft.netcore.targets/1.1.0",
  2949. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  2950. },
  2951. "Microsoft.Win32.Primitives/4.3.0": {
  2952. "type": "package",
  2953. "serviceable": true,
  2954. "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  2955. "path": "microsoft.win32.primitives/4.3.0",
  2956. "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
  2957. },
  2958. "MQTTnet/3.0.8": {
  2959. "type": "package",
  2960. "serviceable": true,
  2961. "sha512": "sha512-obMCW3VPxmb/Mpy/1Rvmt0l9p+EYcTUgC+HYN4B4/Dz8B93JhWEiy3VAvJfzTAb/onjwxbe53bD3bv2COVZyqA==",
  2962. "path": "mqttnet/3.0.8",
  2963. "hashPath": "mqttnet.3.0.8.nupkg.sha512"
  2964. },
  2965. "MQTTnet.AspNetCore/3.0.8": {
  2966. "type": "package",
  2967. "serviceable": true,
  2968. "sha512": "sha512-brRCOKbX9lg2zrvhkBTlkZLGd9JzZQYYoz5xD0nH97K9ElQokdXgMiJQWvCEIYaShtkUcD7cNNFb8piALJtxfA==",
  2969. "path": "mqttnet.aspnetcore/3.0.8",
  2970. "hashPath": "mqttnet.aspnetcore.3.0.8.nupkg.sha512"
  2971. },
  2972. "NETStandard.Library/2.0.0": {
  2973. "type": "package",
  2974. "serviceable": true,
  2975. "sha512": "sha512-7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==",
  2976. "path": "netstandard.library/2.0.0",
  2977. "hashPath": "netstandard.library.2.0.0.nupkg.sha512"
  2978. },
  2979. "Newtonsoft.Json/11.0.2": {
  2980. "type": "package",
  2981. "serviceable": true,
  2982. "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
  2983. "path": "newtonsoft.json/11.0.2",
  2984. "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
  2985. },
  2986. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  2987. "type": "package",
  2988. "serviceable": true,
  2989. "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  2990. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  2991. "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  2992. },
  2993. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  2994. "type": "package",
  2995. "serviceable": true,
  2996. "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  2997. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  2998. "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  2999. },
  3000. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3001. "type": "package",
  3002. "serviceable": true,
  3003. "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  3004. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  3005. "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  3006. },
  3007. "runtime.native.System/4.3.0": {
  3008. "type": "package",
  3009. "serviceable": true,
  3010. "sha512": "sha512-VQvlY5obpsj2o+xsv7NtGe34vLH/uOGMcxozriINt/UK17+dFhiN2glQQFKiOXQyQlSqUxfGG2R02ezRzO445w==",
  3011. "path": "runtime.native.system/4.3.0",
  3012. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  3013. },
  3014. "runtime.native.System.Net.Http/4.3.0": {
  3015. "type": "package",
  3016. "serviceable": true,
  3017. "sha512": "sha512-t548kzYl7M1iSbj0sbit3wScsuB79Fb3PoF48c2GbnIH6Ya0zc1qqGYk7TwmERvNicXHhHw6e0k64KY2BA+KOA==",
  3018. "path": "runtime.native.system.net.http/4.3.0",
  3019. "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
  3020. },
  3021. "runtime.native.System.Net.Security/4.3.0": {
  3022. "type": "package",
  3023. "serviceable": true,
  3024. "sha512": "sha512-rxZJQdxTlM1G5BEcyOCvZekryjsh82qbD37Xg5N/l8jb/LxwWgxF2WWycQ49/CgS+w0kSNKqC5DAR6BULCwiYQ==",
  3025. "path": "runtime.native.system.net.security/4.3.0",
  3026. "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512"
  3027. },
  3028. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3029. "type": "package",
  3030. "serviceable": true,
  3031. "sha512": "sha512-wGZPAsRA4X8YXfJuO5UGd0PAzVHdKvrQrle9FD2ZrwPljGJmz6iRPqwngq1+r116n4GYKSFze7ONU9z5QJ91+Q==",
  3032. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  3033. "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  3034. },
  3035. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3036. "type": "package",
  3037. "serviceable": true,
  3038. "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  3039. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  3040. "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  3041. },
  3042. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3043. "type": "package",
  3044. "serviceable": true,
  3045. "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  3046. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  3047. "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  3048. },
  3049. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3050. "type": "package",
  3051. "serviceable": true,
  3052. "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  3053. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  3054. "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  3055. },
  3056. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  3057. "type": "package",
  3058. "serviceable": true,
  3059. "sha512": "sha512-MNRLytp+FXy7497mYfXIvoWnFgGlGH7O5AcFfrSRFK3nI7Z+FWEAVeqROComCwCQ1EzitiUlX/nJxTNz6ILaVA==",
  3060. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  3061. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  3062. },
  3063. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3064. "type": "package",
  3065. "serviceable": true,
  3066. "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  3067. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  3068. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  3069. },
  3070. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3071. "type": "package",
  3072. "serviceable": true,
  3073. "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  3074. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  3075. "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  3076. },
  3077. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3078. "type": "package",
  3079. "serviceable": true,
  3080. "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  3081. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  3082. "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  3083. },
  3084. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3085. "type": "package",
  3086. "serviceable": true,
  3087. "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  3088. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  3089. "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  3090. },
  3091. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  3092. "type": "package",
  3093. "serviceable": true,
  3094. "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  3095. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  3096. "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
  3097. },
  3098. "System.Buffers/4.5.0": {
  3099. "type": "package",
  3100. "serviceable": true,
  3101. "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
  3102. "path": "system.buffers/4.5.0",
  3103. "hashPath": "system.buffers.4.5.0.nupkg.sha512"
  3104. },
  3105. "System.Collections/4.3.0": {
  3106. "type": "package",
  3107. "serviceable": true,
  3108. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  3109. "path": "system.collections/4.3.0",
  3110. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  3111. },
  3112. "System.Collections.Concurrent/4.3.0": {
  3113. "type": "package",
  3114. "serviceable": true,
  3115. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  3116. "path": "system.collections.concurrent/4.3.0",
  3117. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  3118. },
  3119. "System.Diagnostics.Debug/4.3.0": {
  3120. "type": "package",
  3121. "serviceable": true,
  3122. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  3123. "path": "system.diagnostics.debug/4.3.0",
  3124. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  3125. },
  3126. "System.Diagnostics.Tracing/4.3.0": {
  3127. "type": "package",
  3128. "serviceable": true,
  3129. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  3130. "path": "system.diagnostics.tracing/4.3.0",
  3131. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  3132. },
  3133. "System.Globalization/4.3.0": {
  3134. "type": "package",
  3135. "serviceable": true,
  3136. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  3137. "path": "system.globalization/4.3.0",
  3138. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  3139. },
  3140. "System.Globalization.Calendars/4.3.0": {
  3141. "type": "package",
  3142. "serviceable": true,
  3143. "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  3144. "path": "system.globalization.calendars/4.3.0",
  3145. "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
  3146. },
  3147. "System.Globalization.Extensions/4.3.0": {
  3148. "type": "package",
  3149. "serviceable": true,
  3150. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  3151. "path": "system.globalization.extensions/4.3.0",
  3152. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  3153. },
  3154. "System.IO/4.3.0": {
  3155. "type": "package",
  3156. "serviceable": true,
  3157. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  3158. "path": "system.io/4.3.0",
  3159. "hashPath": "system.io.4.3.0.nupkg.sha512"
  3160. },
  3161. "System.IO.FileSystem/4.3.0": {
  3162. "type": "package",
  3163. "serviceable": true,
  3164. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  3165. "path": "system.io.filesystem/4.3.0",
  3166. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  3167. },
  3168. "System.IO.FileSystem.Primitives/4.3.0": {
  3169. "type": "package",
  3170. "serviceable": true,
  3171. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  3172. "path": "system.io.filesystem.primitives/4.3.0",
  3173. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  3174. },
  3175. "System.IO.Pipelines/4.5.0": {
  3176. "type": "package",
  3177. "serviceable": true,
  3178. "sha512": "sha512-1GB2tHmb/qRzCF6NX7+1LU6/IKPt8QKm6hHt7Vmyt/olg3XJIwwRzNwdfG0gKgPzNTIj0eOFk6UpVHrVMDrY0w==",
  3179. "path": "system.io.pipelines/4.5.0",
  3180. "hashPath": "system.io.pipelines.4.5.0.nupkg.sha512"
  3181. },
  3182. "System.Linq/4.3.0": {
  3183. "type": "package",
  3184. "serviceable": true,
  3185. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  3186. "path": "system.linq/4.3.0",
  3187. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  3188. },
  3189. "System.Memory/4.5.1": {
  3190. "type": "package",
  3191. "serviceable": true,
  3192. "sha512": "sha512-sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==",
  3193. "path": "system.memory/4.5.1",
  3194. "hashPath": "system.memory.4.5.1.nupkg.sha512"
  3195. },
  3196. "System.Net.NameResolution/4.3.0": {
  3197. "type": "package",
  3198. "serviceable": true,
  3199. "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  3200. "path": "system.net.nameresolution/4.3.0",
  3201. "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
  3202. },
  3203. "System.Net.Primitives/4.3.0": {
  3204. "type": "package",
  3205. "serviceable": true,
  3206. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  3207. "path": "system.net.primitives/4.3.0",
  3208. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  3209. },
  3210. "System.Net.Security/4.3.2": {
  3211. "type": "package",
  3212. "serviceable": true,
  3213. "sha512": "sha512-xT2jbYpbBo3ha87rViHoTA6WdvqOAW37drmqyx/6LD8p7HEPT2qgdxoimRzWtPg8Jh4X5G9BV2seeTv4x6FYlA==",
  3214. "path": "system.net.security/4.3.2",
  3215. "hashPath": "system.net.security.4.3.2.nupkg.sha512"
  3216. },
  3217. "System.Net.Sockets/4.3.0": {
  3218. "type": "package",
  3219. "serviceable": true,
  3220. "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  3221. "path": "system.net.sockets/4.3.0",
  3222. "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
  3223. },
  3224. "System.Net.WebHeaderCollection/4.3.0": {
  3225. "type": "package",
  3226. "serviceable": true,
  3227. "sha512": "sha512-XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==",
  3228. "path": "system.net.webheadercollection/4.3.0",
  3229. "hashPath": "system.net.webheadercollection.4.3.0.nupkg.sha512"
  3230. },
  3231. "System.Net.WebSockets/4.3.0": {
  3232. "type": "package",
  3233. "serviceable": true,
  3234. "sha512": "sha512-u6fFNY5q4T8KerUAVbya7bR6b7muBuSTAersyrihkcmE5QhEOiH3t5rh4il15SexbVlpXFHGuMwr/m8fDrnkQg==",
  3235. "path": "system.net.websockets/4.3.0",
  3236. "hashPath": "system.net.websockets.4.3.0.nupkg.sha512"
  3237. },
  3238. "System.Net.WebSockets.Client/4.3.2": {
  3239. "type": "package",
  3240. "serviceable": true,
  3241. "sha512": "sha512-LqSrocFY47SxEmu1fYWbUmXcFJ2B/PqnMtc6zudOTUhNINgo75hgmoHv46ynkJLmqjkpxPzl251SGWHc+jofFQ==",
  3242. "path": "system.net.websockets.client/4.3.2",
  3243. "hashPath": "system.net.websockets.client.4.3.2.nupkg.sha512"
  3244. },
  3245. "System.Net.WebSockets.WebSocketProtocol/4.5.1": {
  3246. "type": "package",
  3247. "serviceable": true,
  3248. "sha512": "sha512-FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==",
  3249. "path": "system.net.websockets.websocketprotocol/4.5.1",
  3250. "hashPath": "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512"
  3251. },
  3252. "System.Reflection/4.3.0": {
  3253. "type": "package",
  3254. "serviceable": true,
  3255. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  3256. "path": "system.reflection/4.3.0",
  3257. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  3258. },
  3259. "System.Reflection.Primitives/4.3.0": {
  3260. "type": "package",
  3261. "serviceable": true,
  3262. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  3263. "path": "system.reflection.primitives/4.3.0",
  3264. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  3265. },
  3266. "System.Resources.ResourceManager/4.3.0": {
  3267. "type": "package",
  3268. "serviceable": true,
  3269. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  3270. "path": "system.resources.resourcemanager/4.3.0",
  3271. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  3272. },
  3273. "System.Runtime/4.3.0": {
  3274. "type": "package",
  3275. "serviceable": true,
  3276. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  3277. "path": "system.runtime/4.3.0",
  3278. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  3279. },
  3280. "System.Runtime.CompilerServices.Unsafe/4.5.1": {
  3281. "type": "package",
  3282. "serviceable": true,
  3283. "sha512": "sha512-Zh8t8oqolRaFa9vmOZfdQm/qKejdqz0J9kr7o2Fu0vPeoH3BL1EOXipKWwkWtLT1JPzjByrF19fGuFlNbmPpiw==",
  3284. "path": "system.runtime.compilerservices.unsafe/4.5.1",
  3285. "hashPath": "system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512"
  3286. },
  3287. "System.Runtime.Extensions/4.3.0": {
  3288. "type": "package",
  3289. "serviceable": true,
  3290. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  3291. "path": "system.runtime.extensions/4.3.0",
  3292. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  3293. },
  3294. "System.Runtime.Handles/4.3.0": {
  3295. "type": "package",
  3296. "serviceable": true,
  3297. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  3298. "path": "system.runtime.handles/4.3.0",
  3299. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  3300. },
  3301. "System.Runtime.InteropServices/4.3.0": {
  3302. "type": "package",
  3303. "serviceable": true,
  3304. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  3305. "path": "system.runtime.interopservices/4.3.0",
  3306. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  3307. },
  3308. "System.Runtime.Numerics/4.3.0": {
  3309. "type": "package",
  3310. "serviceable": true,
  3311. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  3312. "path": "system.runtime.numerics/4.3.0",
  3313. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  3314. },
  3315. "System.Security.Claims/4.3.0": {
  3316. "type": "package",
  3317. "serviceable": true,
  3318. "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  3319. "path": "system.security.claims/4.3.0",
  3320. "hashPath": "system.security.claims.4.3.0.nupkg.sha512"
  3321. },
  3322. "System.Security.Cryptography.Algorithms/4.3.0": {
  3323. "type": "package",
  3324. "serviceable": true,
  3325. "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  3326. "path": "system.security.cryptography.algorithms/4.3.0",
  3327. "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
  3328. },
  3329. "System.Security.Cryptography.Cng/4.3.0": {
  3330. "type": "package",
  3331. "serviceable": true,
  3332. "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  3333. "path": "system.security.cryptography.cng/4.3.0",
  3334. "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
  3335. },
  3336. "System.Security.Cryptography.Csp/4.3.0": {
  3337. "type": "package",
  3338. "serviceable": true,
  3339. "sha512": "sha512-z4PTjBOsfUXx1kR02kwgiVfBCzVXIxQOV1KPNPOfJL8bB0++GR5vmsOyGt5PGGDJ9vFFxsYmQ9R0f7x8Kk3Dsg==",
  3340. "path": "system.security.cryptography.csp/4.3.0",
  3341. "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
  3342. },
  3343. "System.Security.Cryptography.Encoding/4.3.0": {
  3344. "type": "package",
  3345. "serviceable": true,
  3346. "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  3347. "path": "system.security.cryptography.encoding/4.3.0",
  3348. "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
  3349. },
  3350. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3351. "type": "package",
  3352. "serviceable": true,
  3353. "sha512": "sha512-bmERglz75T8ZKtvbAKA+JtNJVUxHDOGTHzItWCPG6ILy7yfGMUDVt/U05vFLRTcbFM5i3qxaQy21YdpANsrRmw==",
  3354. "path": "system.security.cryptography.openssl/4.3.0",
  3355. "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  3356. },
  3357. "System.Security.Cryptography.Primitives/4.3.0": {
  3358. "type": "package",
  3359. "serviceable": true,
  3360. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  3361. "path": "system.security.cryptography.primitives/4.3.0",
  3362. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  3363. },
  3364. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3365. "type": "package",
  3366. "serviceable": true,
  3367. "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  3368. "path": "system.security.cryptography.x509certificates/4.3.0",
  3369. "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
  3370. },
  3371. "System.Security.Principal/4.3.0": {
  3372. "type": "package",
  3373. "serviceable": true,
  3374. "sha512": "sha512-heTF3FLSXmFJFQ95QfDSJg17Jtu4VuzQeJ3m7uBBpjSTHSaZxMUCSbYDJLg0qBvy4VbsctjfESPEJhAAVYtYVQ==",
  3375. "path": "system.security.principal/4.3.0",
  3376. "hashPath": "system.security.principal.4.3.0.nupkg.sha512"
  3377. },
  3378. "System.Security.Principal.Windows/4.3.0": {
  3379. "type": "package",
  3380. "serviceable": true,
  3381. "sha512": "sha512-047eCYjb6ZprfSAg0c+LFIye9EHuJ4dCz/eOokrvEcjS3mZgb9xdQSnGR1YFGSodn3ICAeQzZqSCPbRUxtYAlw==",
  3382. "path": "system.security.principal.windows/4.3.0",
  3383. "hashPath": "system.security.principal.windows.4.3.0.nupkg.sha512"
  3384. },
  3385. "System.Text.Encoding/4.3.0": {
  3386. "type": "package",
  3387. "serviceable": true,
  3388. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  3389. "path": "system.text.encoding/4.3.0",
  3390. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  3391. },
  3392. "System.Text.Encoding.Extensions/4.3.0": {
  3393. "type": "package",
  3394. "serviceable": true,
  3395. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  3396. "path": "system.text.encoding.extensions/4.3.0",
  3397. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  3398. },
  3399. "System.Text.Encodings.Web/4.5.0": {
  3400. "type": "package",
  3401. "serviceable": true,
  3402. "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  3403. "path": "system.text.encodings.web/4.5.0",
  3404. "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
  3405. },
  3406. "System.Threading/4.3.0": {
  3407. "type": "package",
  3408. "serviceable": true,
  3409. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  3410. "path": "system.threading/4.3.0",
  3411. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  3412. },
  3413. "System.Threading.Tasks/4.3.0": {
  3414. "type": "package",
  3415. "serviceable": true,
  3416. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  3417. "path": "system.threading.tasks/4.3.0",
  3418. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  3419. },
  3420. "System.Threading.ThreadPool/4.3.0": {
  3421. "type": "package",
  3422. "serviceable": true,
  3423. "sha512": "sha512-UtU7v22a6qCs9r0SlmCJITJSqbMfNoKn1YiPTS14udd14zV8geiDHKpk0u7T2nQE82pDGQKsrwQRBr6bEcpz6w==",
  3424. "path": "system.threading.threadpool/4.3.0",
  3425. "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
  3426. },
  3427. "System.Threading.Timer/4.3.0": {
  3428. "type": "package",
  3429. "serviceable": true,
  3430. "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  3431. "path": "system.threading.timer/4.3.0",
  3432. "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
  3433. },
  3434. "Microsoft.AspNetCore.Antiforgery/3.1.0.0": {
  3435. "type": "referenceassembly",
  3436. "serviceable": false,
  3437. "sha512": ""
  3438. },
  3439. "Microsoft.AspNetCore.Authentication.Abstractions.Reference/3.1.0.0": {
  3440. "type": "referenceassembly",
  3441. "serviceable": false,
  3442. "sha512": ""
  3443. },
  3444. "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": {
  3445. "type": "referenceassembly",
  3446. "serviceable": false,
  3447. "sha512": ""
  3448. },
  3449. "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": {
  3450. "type": "referenceassembly",
  3451. "serviceable": false,
  3452. "sha512": ""
  3453. },
  3454. "Microsoft.AspNetCore.Authentication/3.1.0.0": {
  3455. "type": "referenceassembly",
  3456. "serviceable": false,
  3457. "sha512": ""
  3458. },
  3459. "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": {
  3460. "type": "referenceassembly",
  3461. "serviceable": false,
  3462. "sha512": ""
  3463. },
  3464. "Microsoft.AspNetCore.Authorization.Reference/3.1.0.0": {
  3465. "type": "referenceassembly",
  3466. "serviceable": false,
  3467. "sha512": ""
  3468. },
  3469. "Microsoft.AspNetCore.Authorization.Policy.Reference/3.1.0.0": {
  3470. "type": "referenceassembly",
  3471. "serviceable": false,
  3472. "sha512": ""
  3473. },
  3474. "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": {
  3475. "type": "referenceassembly",
  3476. "serviceable": false,
  3477. "sha512": ""
  3478. },
  3479. "Microsoft.AspNetCore.Components/3.1.0.0": {
  3480. "type": "referenceassembly",
  3481. "serviceable": false,
  3482. "sha512": ""
  3483. },
  3484. "Microsoft.AspNetCore.Components.Forms/3.1.0.0": {
  3485. "type": "referenceassembly",
  3486. "serviceable": false,
  3487. "sha512": ""
  3488. },
  3489. "Microsoft.AspNetCore.Components.Server/3.1.0.0": {
  3490. "type": "referenceassembly",
  3491. "serviceable": false,
  3492. "sha512": ""
  3493. },
  3494. "Microsoft.AspNetCore.Components.Web/3.1.0.0": {
  3495. "type": "referenceassembly",
  3496. "serviceable": false,
  3497. "sha512": ""
  3498. },
  3499. "Microsoft.AspNetCore.Connections.Abstractions.Reference/3.1.0.0": {
  3500. "type": "referenceassembly",
  3501. "serviceable": false,
  3502. "sha512": ""
  3503. },
  3504. "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": {
  3505. "type": "referenceassembly",
  3506. "serviceable": false,
  3507. "sha512": ""
  3508. },
  3509. "Microsoft.AspNetCore.Cors/3.1.0.0": {
  3510. "type": "referenceassembly",
  3511. "serviceable": false,
  3512. "sha512": ""
  3513. },
  3514. "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": {
  3515. "type": "referenceassembly",
  3516. "serviceable": false,
  3517. "sha512": ""
  3518. },
  3519. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": {
  3520. "type": "referenceassembly",
  3521. "serviceable": false,
  3522. "sha512": ""
  3523. },
  3524. "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": {
  3525. "type": "referenceassembly",
  3526. "serviceable": false,
  3527. "sha512": ""
  3528. },
  3529. "Microsoft.AspNetCore.DataProtection/3.1.0.0": {
  3530. "type": "referenceassembly",
  3531. "serviceable": false,
  3532. "sha512": ""
  3533. },
  3534. "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": {
  3535. "type": "referenceassembly",
  3536. "serviceable": false,
  3537. "sha512": ""
  3538. },
  3539. "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": {
  3540. "type": "referenceassembly",
  3541. "serviceable": false,
  3542. "sha512": ""
  3543. },
  3544. "Microsoft.AspNetCore.Diagnostics/3.1.0.0": {
  3545. "type": "referenceassembly",
  3546. "serviceable": false,
  3547. "sha512": ""
  3548. },
  3549. "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": {
  3550. "type": "referenceassembly",
  3551. "serviceable": false,
  3552. "sha512": ""
  3553. },
  3554. "Microsoft.AspNetCore/3.1.0.0": {
  3555. "type": "referenceassembly",
  3556. "serviceable": false,
  3557. "sha512": ""
  3558. },
  3559. "Microsoft.AspNetCore.HostFiltering/3.1.0.0": {
  3560. "type": "referenceassembly",
  3561. "serviceable": false,
  3562. "sha512": ""
  3563. },
  3564. "Microsoft.AspNetCore.Hosting.Abstractions.Reference/3.1.0.0": {
  3565. "type": "referenceassembly",
  3566. "serviceable": false,
  3567. "sha512": ""
  3568. },
  3569. "Microsoft.AspNetCore.Hosting/3.1.0.0": {
  3570. "type": "referenceassembly",
  3571. "serviceable": false,
  3572. "sha512": ""
  3573. },
  3574. "Microsoft.AspNetCore.Hosting.Server.Abstractions.Reference/3.1.0.0": {
  3575. "type": "referenceassembly",
  3576. "serviceable": false,
  3577. "sha512": ""
  3578. },
  3579. "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": {
  3580. "type": "referenceassembly",
  3581. "serviceable": false,
  3582. "sha512": ""
  3583. },
  3584. "Microsoft.AspNetCore.Http.Abstractions.Reference/3.1.0.0": {
  3585. "type": "referenceassembly",
  3586. "serviceable": false,
  3587. "sha512": ""
  3588. },
  3589. "Microsoft.AspNetCore.Http.Connections.Common.Reference/3.1.0.0": {
  3590. "type": "referenceassembly",
  3591. "serviceable": false,
  3592. "sha512": ""
  3593. },
  3594. "Microsoft.AspNetCore.Http.Connections.Reference/3.1.0.0": {
  3595. "type": "referenceassembly",
  3596. "serviceable": false,
  3597. "sha512": ""
  3598. },
  3599. "Microsoft.AspNetCore.Http.Reference/3.1.0.0": {
  3600. "type": "referenceassembly",
  3601. "serviceable": false,
  3602. "sha512": ""
  3603. },
  3604. "Microsoft.AspNetCore.Http.Extensions.Reference/3.1.0.0": {
  3605. "type": "referenceassembly",
  3606. "serviceable": false,
  3607. "sha512": ""
  3608. },
  3609. "Microsoft.AspNetCore.Http.Features.Reference/3.1.0.0": {
  3610. "type": "referenceassembly",
  3611. "serviceable": false,
  3612. "sha512": ""
  3613. },
  3614. "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": {
  3615. "type": "referenceassembly",
  3616. "serviceable": false,
  3617. "sha512": ""
  3618. },
  3619. "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": {
  3620. "type": "referenceassembly",
  3621. "serviceable": false,
  3622. "sha512": ""
  3623. },
  3624. "Microsoft.AspNetCore.Identity/3.1.0.0": {
  3625. "type": "referenceassembly",
  3626. "serviceable": false,
  3627. "sha512": ""
  3628. },
  3629. "Microsoft.AspNetCore.Localization/3.1.0.0": {
  3630. "type": "referenceassembly",
  3631. "serviceable": false,
  3632. "sha512": ""
  3633. },
  3634. "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": {
  3635. "type": "referenceassembly",
  3636. "serviceable": false,
  3637. "sha512": ""
  3638. },
  3639. "Microsoft.AspNetCore.Metadata/3.1.0.0": {
  3640. "type": "referenceassembly",
  3641. "serviceable": false,
  3642. "sha512": ""
  3643. },
  3644. "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": {
  3645. "type": "referenceassembly",
  3646. "serviceable": false,
  3647. "sha512": ""
  3648. },
  3649. "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": {
  3650. "type": "referenceassembly",
  3651. "serviceable": false,
  3652. "sha512": ""
  3653. },
  3654. "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": {
  3655. "type": "referenceassembly",
  3656. "serviceable": false,
  3657. "sha512": ""
  3658. },
  3659. "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": {
  3660. "type": "referenceassembly",
  3661. "serviceable": false,
  3662. "sha512": ""
  3663. },
  3664. "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": {
  3665. "type": "referenceassembly",
  3666. "serviceable": false,
  3667. "sha512": ""
  3668. },
  3669. "Microsoft.AspNetCore.Mvc/3.1.0.0": {
  3670. "type": "referenceassembly",
  3671. "serviceable": false,
  3672. "sha512": ""
  3673. },
  3674. "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": {
  3675. "type": "referenceassembly",
  3676. "serviceable": false,
  3677. "sha512": ""
  3678. },
  3679. "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": {
  3680. "type": "referenceassembly",
  3681. "serviceable": false,
  3682. "sha512": ""
  3683. },
  3684. "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": {
  3685. "type": "referenceassembly",
  3686. "serviceable": false,
  3687. "sha512": ""
  3688. },
  3689. "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": {
  3690. "type": "referenceassembly",
  3691. "serviceable": false,
  3692. "sha512": ""
  3693. },
  3694. "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": {
  3695. "type": "referenceassembly",
  3696. "serviceable": false,
  3697. "sha512": ""
  3698. },
  3699. "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": {
  3700. "type": "referenceassembly",
  3701. "serviceable": false,
  3702. "sha512": ""
  3703. },
  3704. "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": {
  3705. "type": "referenceassembly",
  3706. "serviceable": false,
  3707. "sha512": ""
  3708. },
  3709. "Microsoft.AspNetCore.Razor/3.1.0.0": {
  3710. "type": "referenceassembly",
  3711. "serviceable": false,
  3712. "sha512": ""
  3713. },
  3714. "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": {
  3715. "type": "referenceassembly",
  3716. "serviceable": false,
  3717. "sha512": ""
  3718. },
  3719. "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": {
  3720. "type": "referenceassembly",
  3721. "serviceable": false,
  3722. "sha512": ""
  3723. },
  3724. "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": {
  3725. "type": "referenceassembly",
  3726. "serviceable": false,
  3727. "sha512": ""
  3728. },
  3729. "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": {
  3730. "type": "referenceassembly",
  3731. "serviceable": false,
  3732. "sha512": ""
  3733. },
  3734. "Microsoft.AspNetCore.Rewrite/3.1.0.0": {
  3735. "type": "referenceassembly",
  3736. "serviceable": false,
  3737. "sha512": ""
  3738. },
  3739. "Microsoft.AspNetCore.Routing.Abstractions.Reference/3.1.0.0": {
  3740. "type": "referenceassembly",
  3741. "serviceable": false,
  3742. "sha512": ""
  3743. },
  3744. "Microsoft.AspNetCore.Routing.Reference/3.1.0.0": {
  3745. "type": "referenceassembly",
  3746. "serviceable": false,
  3747. "sha512": ""
  3748. },
  3749. "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": {
  3750. "type": "referenceassembly",
  3751. "serviceable": false,
  3752. "sha512": ""
  3753. },
  3754. "Microsoft.AspNetCore.Server.IIS/3.1.0.0": {
  3755. "type": "referenceassembly",
  3756. "serviceable": false,
  3757. "sha512": ""
  3758. },
  3759. "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": {
  3760. "type": "referenceassembly",
  3761. "serviceable": false,
  3762. "sha512": ""
  3763. },
  3764. "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": {
  3765. "type": "referenceassembly",
  3766. "serviceable": false,
  3767. "sha512": ""
  3768. },
  3769. "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": {
  3770. "type": "referenceassembly",
  3771. "serviceable": false,
  3772. "sha512": ""
  3773. },
  3774. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": {
  3775. "type": "referenceassembly",
  3776. "serviceable": false,
  3777. "sha512": ""
  3778. },
  3779. "Microsoft.AspNetCore.Session/3.1.0.0": {
  3780. "type": "referenceassembly",
  3781. "serviceable": false,
  3782. "sha512": ""
  3783. },
  3784. "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": {
  3785. "type": "referenceassembly",
  3786. "serviceable": false,
  3787. "sha512": ""
  3788. },
  3789. "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": {
  3790. "type": "referenceassembly",
  3791. "serviceable": false,
  3792. "sha512": ""
  3793. },
  3794. "Microsoft.AspNetCore.SignalR/3.1.0.0": {
  3795. "type": "referenceassembly",
  3796. "serviceable": false,
  3797. "sha512": ""
  3798. },
  3799. "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": {
  3800. "type": "referenceassembly",
  3801. "serviceable": false,
  3802. "sha512": ""
  3803. },
  3804. "Microsoft.AspNetCore.StaticFiles/3.1.0.0": {
  3805. "type": "referenceassembly",
  3806. "serviceable": false,
  3807. "sha512": ""
  3808. },
  3809. "Microsoft.AspNetCore.WebSockets.Reference/3.1.0.0": {
  3810. "type": "referenceassembly",
  3811. "serviceable": false,
  3812. "sha512": ""
  3813. },
  3814. "Microsoft.AspNetCore.WebUtilities.Reference/3.1.0.0": {
  3815. "type": "referenceassembly",
  3816. "serviceable": false,
  3817. "sha512": ""
  3818. },
  3819. "Microsoft.CSharp/4.0.0.0": {
  3820. "type": "referenceassembly",
  3821. "serviceable": false,
  3822. "sha512": ""
  3823. },
  3824. "Microsoft.Extensions.Caching.Abstractions/3.1.0.0": {
  3825. "type": "referenceassembly",
  3826. "serviceable": false,
  3827. "sha512": ""
  3828. },
  3829. "Microsoft.Extensions.Caching.Memory/3.1.0.0": {
  3830. "type": "referenceassembly",
  3831. "serviceable": false,
  3832. "sha512": ""
  3833. },
  3834. "Microsoft.Extensions.Configuration.Abstractions.Reference/3.1.0.0": {
  3835. "type": "referenceassembly",
  3836. "serviceable": false,
  3837. "sha512": ""
  3838. },
  3839. "Microsoft.Extensions.Configuration.Binder/3.1.0.0": {
  3840. "type": "referenceassembly",
  3841. "serviceable": false,
  3842. "sha512": ""
  3843. },
  3844. "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": {
  3845. "type": "referenceassembly",
  3846. "serviceable": false,
  3847. "sha512": ""
  3848. },
  3849. "Microsoft.Extensions.Configuration/3.1.0.0": {
  3850. "type": "referenceassembly",
  3851. "serviceable": false,
  3852. "sha512": ""
  3853. },
  3854. "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": {
  3855. "type": "referenceassembly",
  3856. "serviceable": false,
  3857. "sha512": ""
  3858. },
  3859. "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": {
  3860. "type": "referenceassembly",
  3861. "serviceable": false,
  3862. "sha512": ""
  3863. },
  3864. "Microsoft.Extensions.Configuration.Ini/3.1.0.0": {
  3865. "type": "referenceassembly",
  3866. "serviceable": false,
  3867. "sha512": ""
  3868. },
  3869. "Microsoft.Extensions.Configuration.Json/3.1.0.0": {
  3870. "type": "referenceassembly",
  3871. "serviceable": false,
  3872. "sha512": ""
  3873. },
  3874. "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": {
  3875. "type": "referenceassembly",
  3876. "serviceable": false,
  3877. "sha512": ""
  3878. },
  3879. "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": {
  3880. "type": "referenceassembly",
  3881. "serviceable": false,
  3882. "sha512": ""
  3883. },
  3884. "Microsoft.Extensions.Configuration.Xml/3.1.0.0": {
  3885. "type": "referenceassembly",
  3886. "serviceable": false,
  3887. "sha512": ""
  3888. },
  3889. "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/3.1.0.0": {
  3890. "type": "referenceassembly",
  3891. "serviceable": false,
  3892. "sha512": ""
  3893. },
  3894. "Microsoft.Extensions.DependencyInjection/3.1.0.0": {
  3895. "type": "referenceassembly",
  3896. "serviceable": false,
  3897. "sha512": ""
  3898. },
  3899. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": {
  3900. "type": "referenceassembly",
  3901. "serviceable": false,
  3902. "sha512": ""
  3903. },
  3904. "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": {
  3905. "type": "referenceassembly",
  3906. "serviceable": false,
  3907. "sha512": ""
  3908. },
  3909. "Microsoft.Extensions.FileProviders.Abstractions.Reference/3.1.0.0": {
  3910. "type": "referenceassembly",
  3911. "serviceable": false,
  3912. "sha512": ""
  3913. },
  3914. "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": {
  3915. "type": "referenceassembly",
  3916. "serviceable": false,
  3917. "sha512": ""
  3918. },
  3919. "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": {
  3920. "type": "referenceassembly",
  3921. "serviceable": false,
  3922. "sha512": ""
  3923. },
  3924. "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": {
  3925. "type": "referenceassembly",
  3926. "serviceable": false,
  3927. "sha512": ""
  3928. },
  3929. "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": {
  3930. "type": "referenceassembly",
  3931. "serviceable": false,
  3932. "sha512": ""
  3933. },
  3934. "Microsoft.Extensions.Hosting.Abstractions.Reference/3.1.0.0": {
  3935. "type": "referenceassembly",
  3936. "serviceable": false,
  3937. "sha512": ""
  3938. },
  3939. "Microsoft.Extensions.Hosting/3.1.0.0": {
  3940. "type": "referenceassembly",
  3941. "serviceable": false,
  3942. "sha512": ""
  3943. },
  3944. "Microsoft.Extensions.Http/3.1.0.0": {
  3945. "type": "referenceassembly",
  3946. "serviceable": false,
  3947. "sha512": ""
  3948. },
  3949. "Microsoft.Extensions.Identity.Core/3.1.0.0": {
  3950. "type": "referenceassembly",
  3951. "serviceable": false,
  3952. "sha512": ""
  3953. },
  3954. "Microsoft.Extensions.Identity.Stores/3.1.0.0": {
  3955. "type": "referenceassembly",
  3956. "serviceable": false,
  3957. "sha512": ""
  3958. },
  3959. "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": {
  3960. "type": "referenceassembly",
  3961. "serviceable": false,
  3962. "sha512": ""
  3963. },
  3964. "Microsoft.Extensions.Localization/3.1.0.0": {
  3965. "type": "referenceassembly",
  3966. "serviceable": false,
  3967. "sha512": ""
  3968. },
  3969. "Microsoft.Extensions.Logging.Abstractions.Reference/3.1.0.0": {
  3970. "type": "referenceassembly",
  3971. "serviceable": false,
  3972. "sha512": ""
  3973. },
  3974. "Microsoft.Extensions.Logging.Configuration/3.1.0.0": {
  3975. "type": "referenceassembly",
  3976. "serviceable": false,
  3977. "sha512": ""
  3978. },
  3979. "Microsoft.Extensions.Logging.Console/3.1.0.0": {
  3980. "type": "referenceassembly",
  3981. "serviceable": false,
  3982. "sha512": ""
  3983. },
  3984. "Microsoft.Extensions.Logging.Debug/3.1.0.0": {
  3985. "type": "referenceassembly",
  3986. "serviceable": false,
  3987. "sha512": ""
  3988. },
  3989. "Microsoft.Extensions.Logging/3.1.0.0": {
  3990. "type": "referenceassembly",
  3991. "serviceable": false,
  3992. "sha512": ""
  3993. },
  3994. "Microsoft.Extensions.Logging.EventLog/3.1.0.0": {
  3995. "type": "referenceassembly",
  3996. "serviceable": false,
  3997. "sha512": ""
  3998. },
  3999. "Microsoft.Extensions.Logging.EventSource/3.1.0.0": {
  4000. "type": "referenceassembly",
  4001. "serviceable": false,
  4002. "sha512": ""
  4003. },
  4004. "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": {
  4005. "type": "referenceassembly",
  4006. "serviceable": false,
  4007. "sha512": ""
  4008. },
  4009. "Microsoft.Extensions.ObjectPool.Reference/3.1.0.0": {
  4010. "type": "referenceassembly",
  4011. "serviceable": false,
  4012. "sha512": ""
  4013. },
  4014. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": {
  4015. "type": "referenceassembly",
  4016. "serviceable": false,
  4017. "sha512": ""
  4018. },
  4019. "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": {
  4020. "type": "referenceassembly",
  4021. "serviceable": false,
  4022. "sha512": ""
  4023. },
  4024. "Microsoft.Extensions.Options.Reference/3.1.0.0": {
  4025. "type": "referenceassembly",
  4026. "serviceable": false,
  4027. "sha512": ""
  4028. },
  4029. "Microsoft.Extensions.Primitives.Reference/3.1.0.0": {
  4030. "type": "referenceassembly",
  4031. "serviceable": false,
  4032. "sha512": ""
  4033. },
  4034. "Microsoft.Extensions.WebEncoders/3.1.0.0": {
  4035. "type": "referenceassembly",
  4036. "serviceable": false,
  4037. "sha512": ""
  4038. },
  4039. "Microsoft.JSInterop/3.1.0.0": {
  4040. "type": "referenceassembly",
  4041. "serviceable": false,
  4042. "sha512": ""
  4043. },
  4044. "Microsoft.Net.Http.Headers.Reference/3.1.0.0": {
  4045. "type": "referenceassembly",
  4046. "serviceable": false,
  4047. "sha512": ""
  4048. },
  4049. "Microsoft.VisualBasic.Core/10.0.5.0": {
  4050. "type": "referenceassembly",
  4051. "serviceable": false,
  4052. "sha512": ""
  4053. },
  4054. "Microsoft.VisualBasic/10.0.0.0": {
  4055. "type": "referenceassembly",
  4056. "serviceable": false,
  4057. "sha512": ""
  4058. },
  4059. "Microsoft.Win32.Primitives.Reference/4.1.2.0": {
  4060. "type": "referenceassembly",
  4061. "serviceable": false,
  4062. "sha512": ""
  4063. },
  4064. "Microsoft.Win32.Registry/4.1.3.0": {
  4065. "type": "referenceassembly",
  4066. "serviceable": false,
  4067. "sha512": ""
  4068. },
  4069. "mscorlib/4.0.0.0": {
  4070. "type": "referenceassembly",
  4071. "serviceable": false,
  4072. "sha512": ""
  4073. },
  4074. "netstandard/2.1.0.0": {
  4075. "type": "referenceassembly",
  4076. "serviceable": false,
  4077. "sha512": ""
  4078. },
  4079. "System.AppContext/4.2.2.0": {
  4080. "type": "referenceassembly",
  4081. "serviceable": false,
  4082. "sha512": ""
  4083. },
  4084. "System.Buffers.Reference/4.0.2.0": {
  4085. "type": "referenceassembly",
  4086. "serviceable": false,
  4087. "sha512": ""
  4088. },
  4089. "System.Collections.Concurrent.Reference/4.0.15.0": {
  4090. "type": "referenceassembly",
  4091. "serviceable": false,
  4092. "sha512": ""
  4093. },
  4094. "System.Collections.Reference/4.1.2.0": {
  4095. "type": "referenceassembly",
  4096. "serviceable": false,
  4097. "sha512": ""
  4098. },
  4099. "System.Collections.Immutable/1.2.5.0": {
  4100. "type": "referenceassembly",
  4101. "serviceable": false,
  4102. "sha512": ""
  4103. },
  4104. "System.Collections.NonGeneric/4.1.2.0": {
  4105. "type": "referenceassembly",
  4106. "serviceable": false,
  4107. "sha512": ""
  4108. },
  4109. "System.Collections.Specialized/4.1.2.0": {
  4110. "type": "referenceassembly",
  4111. "serviceable": false,
  4112. "sha512": ""
  4113. },
  4114. "System.ComponentModel.Annotations/4.3.1.0": {
  4115. "type": "referenceassembly",
  4116. "serviceable": false,
  4117. "sha512": ""
  4118. },
  4119. "System.ComponentModel.DataAnnotations/4.0.0.0": {
  4120. "type": "referenceassembly",
  4121. "serviceable": false,
  4122. "sha512": ""
  4123. },
  4124. "System.ComponentModel/4.0.4.0": {
  4125. "type": "referenceassembly",
  4126. "serviceable": false,
  4127. "sha512": ""
  4128. },
  4129. "System.ComponentModel.EventBasedAsync/4.1.2.0": {
  4130. "type": "referenceassembly",
  4131. "serviceable": false,
  4132. "sha512": ""
  4133. },
  4134. "System.ComponentModel.Primitives/4.2.2.0": {
  4135. "type": "referenceassembly",
  4136. "serviceable": false,
  4137. "sha512": ""
  4138. },
  4139. "System.ComponentModel.TypeConverter/4.2.2.0": {
  4140. "type": "referenceassembly",
  4141. "serviceable": false,
  4142. "sha512": ""
  4143. },
  4144. "System.Configuration/4.0.0.0": {
  4145. "type": "referenceassembly",
  4146. "serviceable": false,
  4147. "sha512": ""
  4148. },
  4149. "System.Console/4.1.2.0": {
  4150. "type": "referenceassembly",
  4151. "serviceable": false,
  4152. "sha512": ""
  4153. },
  4154. "System.Core/4.0.0.0": {
  4155. "type": "referenceassembly",
  4156. "serviceable": false,
  4157. "sha512": ""
  4158. },
  4159. "System.Data.Common/4.2.2.0": {
  4160. "type": "referenceassembly",
  4161. "serviceable": false,
  4162. "sha512": ""
  4163. },
  4164. "System.Data.DataSetExtensions/4.0.1.0": {
  4165. "type": "referenceassembly",
  4166. "serviceable": false,
  4167. "sha512": ""
  4168. },
  4169. "System.Data/4.0.0.0": {
  4170. "type": "referenceassembly",
  4171. "serviceable": false,
  4172. "sha512": ""
  4173. },
  4174. "System.Diagnostics.Contracts/4.0.4.0": {
  4175. "type": "referenceassembly",
  4176. "serviceable": false,
  4177. "sha512": ""
  4178. },
  4179. "System.Diagnostics.Debug.Reference/4.1.2.0": {
  4180. "type": "referenceassembly",
  4181. "serviceable": false,
  4182. "sha512": ""
  4183. },
  4184. "System.Diagnostics.DiagnosticSource/4.0.5.0": {
  4185. "type": "referenceassembly",
  4186. "serviceable": false,
  4187. "sha512": ""
  4188. },
  4189. "System.Diagnostics.EventLog/4.0.2.0": {
  4190. "type": "referenceassembly",
  4191. "serviceable": false,
  4192. "sha512": ""
  4193. },
  4194. "System.Diagnostics.FileVersionInfo/4.0.4.0": {
  4195. "type": "referenceassembly",
  4196. "serviceable": false,
  4197. "sha512": ""
  4198. },
  4199. "System.Diagnostics.Process/4.2.2.0": {
  4200. "type": "referenceassembly",
  4201. "serviceable": false,
  4202. "sha512": ""
  4203. },
  4204. "System.Diagnostics.StackTrace/4.1.2.0": {
  4205. "type": "referenceassembly",
  4206. "serviceable": false,
  4207. "sha512": ""
  4208. },
  4209. "System.Diagnostics.TextWriterTraceListener/4.1.2.0": {
  4210. "type": "referenceassembly",
  4211. "serviceable": false,
  4212. "sha512": ""
  4213. },
  4214. "System.Diagnostics.Tools/4.1.2.0": {
  4215. "type": "referenceassembly",
  4216. "serviceable": false,
  4217. "sha512": ""
  4218. },
  4219. "System.Diagnostics.TraceSource/4.1.2.0": {
  4220. "type": "referenceassembly",
  4221. "serviceable": false,
  4222. "sha512": ""
  4223. },
  4224. "System.Diagnostics.Tracing.Reference/4.2.2.0": {
  4225. "type": "referenceassembly",
  4226. "serviceable": false,
  4227. "sha512": ""
  4228. },
  4229. "System/4.0.0.0": {
  4230. "type": "referenceassembly",
  4231. "serviceable": false,
  4232. "sha512": ""
  4233. },
  4234. "System.Drawing/4.0.0.0": {
  4235. "type": "referenceassembly",
  4236. "serviceable": false,
  4237. "sha512": ""
  4238. },
  4239. "System.Drawing.Primitives/4.2.1.0": {
  4240. "type": "referenceassembly",
  4241. "serviceable": false,
  4242. "sha512": ""
  4243. },
  4244. "System.Dynamic.Runtime/4.1.2.0": {
  4245. "type": "referenceassembly",
  4246. "serviceable": false,
  4247. "sha512": ""
  4248. },
  4249. "System.Globalization.Calendars.Reference/4.1.2.0": {
  4250. "type": "referenceassembly",
  4251. "serviceable": false,
  4252. "sha512": ""
  4253. },
  4254. "System.Globalization.Reference/4.1.2.0": {
  4255. "type": "referenceassembly",
  4256. "serviceable": false,
  4257. "sha512": ""
  4258. },
  4259. "System.Globalization.Extensions.Reference/4.1.2.0": {
  4260. "type": "referenceassembly",
  4261. "serviceable": false,
  4262. "sha512": ""
  4263. },
  4264. "System.IO.Compression.Brotli/4.2.2.0": {
  4265. "type": "referenceassembly",
  4266. "serviceable": false,
  4267. "sha512": ""
  4268. },
  4269. "System.IO.Compression/4.2.2.0": {
  4270. "type": "referenceassembly",
  4271. "serviceable": false,
  4272. "sha512": ""
  4273. },
  4274. "System.IO.Compression.FileSystem/4.0.0.0": {
  4275. "type": "referenceassembly",
  4276. "serviceable": false,
  4277. "sha512": ""
  4278. },
  4279. "System.IO.Compression.ZipFile/4.0.5.0": {
  4280. "type": "referenceassembly",
  4281. "serviceable": false,
  4282. "sha512": ""
  4283. },
  4284. "System.IO.Reference/4.2.2.0": {
  4285. "type": "referenceassembly",
  4286. "serviceable": false,
  4287. "sha512": ""
  4288. },
  4289. "System.IO.FileSystem.Reference/4.1.2.0": {
  4290. "type": "referenceassembly",
  4291. "serviceable": false,
  4292. "sha512": ""
  4293. },
  4294. "System.IO.FileSystem.DriveInfo/4.1.2.0": {
  4295. "type": "referenceassembly",
  4296. "serviceable": false,
  4297. "sha512": ""
  4298. },
  4299. "System.IO.FileSystem.Primitives.Reference/4.1.2.0": {
  4300. "type": "referenceassembly",
  4301. "serviceable": false,
  4302. "sha512": ""
  4303. },
  4304. "System.IO.FileSystem.Watcher/4.1.2.0": {
  4305. "type": "referenceassembly",
  4306. "serviceable": false,
  4307. "sha512": ""
  4308. },
  4309. "System.IO.IsolatedStorage/4.1.2.0": {
  4310. "type": "referenceassembly",
  4311. "serviceable": false,
  4312. "sha512": ""
  4313. },
  4314. "System.IO.MemoryMappedFiles/4.1.2.0": {
  4315. "type": "referenceassembly",
  4316. "serviceable": false,
  4317. "sha512": ""
  4318. },
  4319. "System.IO.Pipelines.Reference/4.0.2.0": {
  4320. "type": "referenceassembly",
  4321. "serviceable": false,
  4322. "sha512": ""
  4323. },
  4324. "System.IO.Pipes/4.1.2.0": {
  4325. "type": "referenceassembly",
  4326. "serviceable": false,
  4327. "sha512": ""
  4328. },
  4329. "System.IO.UnmanagedMemoryStream/4.1.2.0": {
  4330. "type": "referenceassembly",
  4331. "serviceable": false,
  4332. "sha512": ""
  4333. },
  4334. "System.Linq.Reference/4.2.2.0": {
  4335. "type": "referenceassembly",
  4336. "serviceable": false,
  4337. "sha512": ""
  4338. },
  4339. "System.Linq.Expressions/4.2.2.0": {
  4340. "type": "referenceassembly",
  4341. "serviceable": false,
  4342. "sha512": ""
  4343. },
  4344. "System.Linq.Parallel/4.0.4.0": {
  4345. "type": "referenceassembly",
  4346. "serviceable": false,
  4347. "sha512": ""
  4348. },
  4349. "System.Linq.Queryable/4.0.4.0": {
  4350. "type": "referenceassembly",
  4351. "serviceable": false,
  4352. "sha512": ""
  4353. },
  4354. "System.Memory.Reference/4.2.1.0": {
  4355. "type": "referenceassembly",
  4356. "serviceable": false,
  4357. "sha512": ""
  4358. },
  4359. "System.Net/4.0.0.0": {
  4360. "type": "referenceassembly",
  4361. "serviceable": false,
  4362. "sha512": ""
  4363. },
  4364. "System.Net.Http/4.2.2.0": {
  4365. "type": "referenceassembly",
  4366. "serviceable": false,
  4367. "sha512": ""
  4368. },
  4369. "System.Net.HttpListener/4.0.2.0": {
  4370. "type": "referenceassembly",
  4371. "serviceable": false,
  4372. "sha512": ""
  4373. },
  4374. "System.Net.Mail/4.0.2.0": {
  4375. "type": "referenceassembly",
  4376. "serviceable": false,
  4377. "sha512": ""
  4378. },
  4379. "System.Net.NameResolution.Reference/4.1.2.0": {
  4380. "type": "referenceassembly",
  4381. "serviceable": false,
  4382. "sha512": ""
  4383. },
  4384. "System.Net.NetworkInformation/4.2.2.0": {
  4385. "type": "referenceassembly",
  4386. "serviceable": false,
  4387. "sha512": ""
  4388. },
  4389. "System.Net.Ping/4.1.2.0": {
  4390. "type": "referenceassembly",
  4391. "serviceable": false,
  4392. "sha512": ""
  4393. },
  4394. "System.Net.Primitives.Reference/4.1.2.0": {
  4395. "type": "referenceassembly",
  4396. "serviceable": false,
  4397. "sha512": ""
  4398. },
  4399. "System.Net.Requests/4.1.2.0": {
  4400. "type": "referenceassembly",
  4401. "serviceable": false,
  4402. "sha512": ""
  4403. },
  4404. "System.Net.Security.Reference/4.1.2.0": {
  4405. "type": "referenceassembly",
  4406. "serviceable": false,
  4407. "sha512": ""
  4408. },
  4409. "System.Net.ServicePoint/4.0.2.0": {
  4410. "type": "referenceassembly",
  4411. "serviceable": false,
  4412. "sha512": ""
  4413. },
  4414. "System.Net.Sockets.Reference/4.2.2.0": {
  4415. "type": "referenceassembly",
  4416. "serviceable": false,
  4417. "sha512": ""
  4418. },
  4419. "System.Net.WebClient/4.0.2.0": {
  4420. "type": "referenceassembly",
  4421. "serviceable": false,
  4422. "sha512": ""
  4423. },
  4424. "System.Net.WebHeaderCollection.Reference/4.1.2.0": {
  4425. "type": "referenceassembly",
  4426. "serviceable": false,
  4427. "sha512": ""
  4428. },
  4429. "System.Net.WebProxy/4.0.2.0": {
  4430. "type": "referenceassembly",
  4431. "serviceable": false,
  4432. "sha512": ""
  4433. },
  4434. "System.Net.WebSockets.Client.Reference/4.1.2.0": {
  4435. "type": "referenceassembly",
  4436. "serviceable": false,
  4437. "sha512": ""
  4438. },
  4439. "System.Net.WebSockets.Reference/4.1.2.0": {
  4440. "type": "referenceassembly",
  4441. "serviceable": false,
  4442. "sha512": ""
  4443. },
  4444. "System.Numerics/4.0.0.0": {
  4445. "type": "referenceassembly",
  4446. "serviceable": false,
  4447. "sha512": ""
  4448. },
  4449. "System.Numerics.Vectors/4.1.6.0": {
  4450. "type": "referenceassembly",
  4451. "serviceable": false,
  4452. "sha512": ""
  4453. },
  4454. "System.ObjectModel/4.1.2.0": {
  4455. "type": "referenceassembly",
  4456. "serviceable": false,
  4457. "sha512": ""
  4458. },
  4459. "System.Reflection.DispatchProxy/4.0.6.0": {
  4460. "type": "referenceassembly",
  4461. "serviceable": false,
  4462. "sha512": ""
  4463. },
  4464. "System.Reflection.Reference/4.2.2.0": {
  4465. "type": "referenceassembly",
  4466. "serviceable": false,
  4467. "sha512": ""
  4468. },
  4469. "System.Reflection.Emit/4.1.2.0": {
  4470. "type": "referenceassembly",
  4471. "serviceable": false,
  4472. "sha512": ""
  4473. },
  4474. "System.Reflection.Emit.ILGeneration/4.1.1.0": {
  4475. "type": "referenceassembly",
  4476. "serviceable": false,
  4477. "sha512": ""
  4478. },
  4479. "System.Reflection.Emit.Lightweight/4.1.1.0": {
  4480. "type": "referenceassembly",
  4481. "serviceable": false,
  4482. "sha512": ""
  4483. },
  4484. "System.Reflection.Extensions/4.1.2.0": {
  4485. "type": "referenceassembly",
  4486. "serviceable": false,
  4487. "sha512": ""
  4488. },
  4489. "System.Reflection.Metadata/1.4.5.0": {
  4490. "type": "referenceassembly",
  4491. "serviceable": false,
  4492. "sha512": ""
  4493. },
  4494. "System.Reflection.Primitives.Reference/4.1.2.0": {
  4495. "type": "referenceassembly",
  4496. "serviceable": false,
  4497. "sha512": ""
  4498. },
  4499. "System.Reflection.TypeExtensions/4.1.2.0": {
  4500. "type": "referenceassembly",
  4501. "serviceable": false,
  4502. "sha512": ""
  4503. },
  4504. "System.Resources.Reader/4.1.2.0": {
  4505. "type": "referenceassembly",
  4506. "serviceable": false,
  4507. "sha512": ""
  4508. },
  4509. "System.Resources.ResourceManager.Reference/4.1.2.0": {
  4510. "type": "referenceassembly",
  4511. "serviceable": false,
  4512. "sha512": ""
  4513. },
  4514. "System.Resources.Writer/4.1.2.0": {
  4515. "type": "referenceassembly",
  4516. "serviceable": false,
  4517. "sha512": ""
  4518. },
  4519. "System.Runtime.CompilerServices.Unsafe.Reference/4.0.6.0": {
  4520. "type": "referenceassembly",
  4521. "serviceable": false,
  4522. "sha512": ""
  4523. },
  4524. "System.Runtime.CompilerServices.VisualC/4.1.2.0": {
  4525. "type": "referenceassembly",
  4526. "serviceable": false,
  4527. "sha512": ""
  4528. },
  4529. "System.Runtime.Reference/4.2.2.0": {
  4530. "type": "referenceassembly",
  4531. "serviceable": false,
  4532. "sha512": ""
  4533. },
  4534. "System.Runtime.Extensions.Reference/4.2.2.0": {
  4535. "type": "referenceassembly",
  4536. "serviceable": false,
  4537. "sha512": ""
  4538. },
  4539. "System.Runtime.Handles.Reference/4.1.2.0": {
  4540. "type": "referenceassembly",
  4541. "serviceable": false,
  4542. "sha512": ""
  4543. },
  4544. "System.Runtime.InteropServices.Reference/4.2.2.0": {
  4545. "type": "referenceassembly",
  4546. "serviceable": false,
  4547. "sha512": ""
  4548. },
  4549. "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": {
  4550. "type": "referenceassembly",
  4551. "serviceable": false,
  4552. "sha512": ""
  4553. },
  4554. "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": {
  4555. "type": "referenceassembly",
  4556. "serviceable": false,
  4557. "sha512": ""
  4558. },
  4559. "System.Runtime.Intrinsics/4.0.1.0": {
  4560. "type": "referenceassembly",
  4561. "serviceable": false,
  4562. "sha512": ""
  4563. },
  4564. "System.Runtime.Loader/4.1.1.0": {
  4565. "type": "referenceassembly",
  4566. "serviceable": false,
  4567. "sha512": ""
  4568. },
  4569. "System.Runtime.Numerics.Reference/4.1.2.0": {
  4570. "type": "referenceassembly",
  4571. "serviceable": false,
  4572. "sha512": ""
  4573. },
  4574. "System.Runtime.Serialization/4.0.0.0": {
  4575. "type": "referenceassembly",
  4576. "serviceable": false,
  4577. "sha512": ""
  4578. },
  4579. "System.Runtime.Serialization.Formatters/4.0.4.0": {
  4580. "type": "referenceassembly",
  4581. "serviceable": false,
  4582. "sha512": ""
  4583. },
  4584. "System.Runtime.Serialization.Json/4.0.5.0": {
  4585. "type": "referenceassembly",
  4586. "serviceable": false,
  4587. "sha512": ""
  4588. },
  4589. "System.Runtime.Serialization.Primitives/4.2.2.0": {
  4590. "type": "referenceassembly",
  4591. "serviceable": false,
  4592. "sha512": ""
  4593. },
  4594. "System.Runtime.Serialization.Xml/4.1.5.0": {
  4595. "type": "referenceassembly",
  4596. "serviceable": false,
  4597. "sha512": ""
  4598. },
  4599. "System.Security.AccessControl/4.1.1.0": {
  4600. "type": "referenceassembly",
  4601. "serviceable": false,
  4602. "sha512": ""
  4603. },
  4604. "System.Security.Claims.Reference/4.1.2.0": {
  4605. "type": "referenceassembly",
  4606. "serviceable": false,
  4607. "sha512": ""
  4608. },
  4609. "System.Security.Cryptography.Algorithms.Reference/4.3.2.0": {
  4610. "type": "referenceassembly",
  4611. "serviceable": false,
  4612. "sha512": ""
  4613. },
  4614. "System.Security.Cryptography.Cng.Reference/4.3.3.0": {
  4615. "type": "referenceassembly",
  4616. "serviceable": false,
  4617. "sha512": ""
  4618. },
  4619. "System.Security.Cryptography.Csp.Reference/4.1.2.0": {
  4620. "type": "referenceassembly",
  4621. "serviceable": false,
  4622. "sha512": ""
  4623. },
  4624. "System.Security.Cryptography.Encoding.Reference/4.1.2.0": {
  4625. "type": "referenceassembly",
  4626. "serviceable": false,
  4627. "sha512": ""
  4628. },
  4629. "System.Security.Cryptography.Primitives.Reference/4.1.2.0": {
  4630. "type": "referenceassembly",
  4631. "serviceable": false,
  4632. "sha512": ""
  4633. },
  4634. "System.Security.Cryptography.X509Certificates.Reference/4.2.2.0": {
  4635. "type": "referenceassembly",
  4636. "serviceable": false,
  4637. "sha512": ""
  4638. },
  4639. "System.Security.Cryptography.Xml/4.0.3.0": {
  4640. "type": "referenceassembly",
  4641. "serviceable": false,
  4642. "sha512": ""
  4643. },
  4644. "System.Security/4.0.0.0": {
  4645. "type": "referenceassembly",
  4646. "serviceable": false,
  4647. "sha512": ""
  4648. },
  4649. "System.Security.Permissions/4.0.3.0": {
  4650. "type": "referenceassembly",
  4651. "serviceable": false,
  4652. "sha512": ""
  4653. },
  4654. "System.Security.Principal.Reference/4.1.2.0": {
  4655. "type": "referenceassembly",
  4656. "serviceable": false,
  4657. "sha512": ""
  4658. },
  4659. "System.Security.Principal.Windows.Reference/4.1.1.0": {
  4660. "type": "referenceassembly",
  4661. "serviceable": false,
  4662. "sha512": ""
  4663. },
  4664. "System.Security.SecureString/4.1.2.0": {
  4665. "type": "referenceassembly",
  4666. "serviceable": false,
  4667. "sha512": ""
  4668. },
  4669. "System.ServiceModel.Web/4.0.0.0": {
  4670. "type": "referenceassembly",
  4671. "serviceable": false,
  4672. "sha512": ""
  4673. },
  4674. "System.ServiceProcess/4.0.0.0": {
  4675. "type": "referenceassembly",
  4676. "serviceable": false,
  4677. "sha512": ""
  4678. },
  4679. "System.Text.Encoding.CodePages/4.1.3.0": {
  4680. "type": "referenceassembly",
  4681. "serviceable": false,
  4682. "sha512": ""
  4683. },
  4684. "System.Text.Encoding.Reference/4.1.2.0": {
  4685. "type": "referenceassembly",
  4686. "serviceable": false,
  4687. "sha512": ""
  4688. },
  4689. "System.Text.Encoding.Extensions.Reference/4.1.2.0": {
  4690. "type": "referenceassembly",
  4691. "serviceable": false,
  4692. "sha512": ""
  4693. },
  4694. "System.Text.Encodings.Web.Reference/4.0.5.0": {
  4695. "type": "referenceassembly",
  4696. "serviceable": false,
  4697. "sha512": ""
  4698. },
  4699. "System.Text.Json/4.0.1.0": {
  4700. "type": "referenceassembly",
  4701. "serviceable": false,
  4702. "sha512": ""
  4703. },
  4704. "System.Text.RegularExpressions/4.2.2.0": {
  4705. "type": "referenceassembly",
  4706. "serviceable": false,
  4707. "sha512": ""
  4708. },
  4709. "System.Threading.Channels/4.0.2.0": {
  4710. "type": "referenceassembly",
  4711. "serviceable": false,
  4712. "sha512": ""
  4713. },
  4714. "System.Threading.Reference/4.1.2.0": {
  4715. "type": "referenceassembly",
  4716. "serviceable": false,
  4717. "sha512": ""
  4718. },
  4719. "System.Threading.Overlapped/4.1.2.0": {
  4720. "type": "referenceassembly",
  4721. "serviceable": false,
  4722. "sha512": ""
  4723. },
  4724. "System.Threading.Tasks.Dataflow/4.6.5.0": {
  4725. "type": "referenceassembly",
  4726. "serviceable": false,
  4727. "sha512": ""
  4728. },
  4729. "System.Threading.Tasks.Reference/4.1.2.0": {
  4730. "type": "referenceassembly",
  4731. "serviceable": false,
  4732. "sha512": ""
  4733. },
  4734. "System.Threading.Tasks.Extensions/4.3.1.0": {
  4735. "type": "referenceassembly",
  4736. "serviceable": false,
  4737. "sha512": ""
  4738. },
  4739. "System.Threading.Tasks.Parallel/4.0.4.0": {
  4740. "type": "referenceassembly",
  4741. "serviceable": false,
  4742. "sha512": ""
  4743. },
  4744. "System.Threading.Thread/4.1.2.0": {
  4745. "type": "referenceassembly",
  4746. "serviceable": false,
  4747. "sha512": ""
  4748. },
  4749. "System.Threading.ThreadPool.Reference/4.1.2.0": {
  4750. "type": "referenceassembly",
  4751. "serviceable": false,
  4752. "sha512": ""
  4753. },
  4754. "System.Threading.Timer.Reference/4.1.2.0": {
  4755. "type": "referenceassembly",
  4756. "serviceable": false,
  4757. "sha512": ""
  4758. },
  4759. "System.Transactions/4.0.0.0": {
  4760. "type": "referenceassembly",
  4761. "serviceable": false,
  4762. "sha512": ""
  4763. },
  4764. "System.Transactions.Local/4.0.2.0": {
  4765. "type": "referenceassembly",
  4766. "serviceable": false,
  4767. "sha512": ""
  4768. },
  4769. "System.ValueTuple/4.0.3.0": {
  4770. "type": "referenceassembly",
  4771. "serviceable": false,
  4772. "sha512": ""
  4773. },
  4774. "System.Web/4.0.0.0": {
  4775. "type": "referenceassembly",
  4776. "serviceable": false,
  4777. "sha512": ""
  4778. },
  4779. "System.Web.HttpUtility/4.0.2.0": {
  4780. "type": "referenceassembly",
  4781. "serviceable": false,
  4782. "sha512": ""
  4783. },
  4784. "System.Windows/4.0.0.0": {
  4785. "type": "referenceassembly",
  4786. "serviceable": false,
  4787. "sha512": ""
  4788. },
  4789. "System.Windows.Extensions/4.0.1.0": {
  4790. "type": "referenceassembly",
  4791. "serviceable": false,
  4792. "sha512": ""
  4793. },
  4794. "System.Xml/4.0.0.0": {
  4795. "type": "referenceassembly",
  4796. "serviceable": false,
  4797. "sha512": ""
  4798. },
  4799. "System.Xml.Linq/4.0.0.0": {
  4800. "type": "referenceassembly",
  4801. "serviceable": false,
  4802. "sha512": ""
  4803. },
  4804. "System.Xml.ReaderWriter/4.2.2.0": {
  4805. "type": "referenceassembly",
  4806. "serviceable": false,
  4807. "sha512": ""
  4808. },
  4809. "System.Xml.Serialization/4.0.0.0": {
  4810. "type": "referenceassembly",
  4811. "serviceable": false,
  4812. "sha512": ""
  4813. },
  4814. "System.Xml.XDocument/4.1.2.0": {
  4815. "type": "referenceassembly",
  4816. "serviceable": false,
  4817. "sha512": ""
  4818. },
  4819. "System.Xml.XmlDocument/4.1.2.0": {
  4820. "type": "referenceassembly",
  4821. "serviceable": false,
  4822. "sha512": ""
  4823. },
  4824. "System.Xml.XmlSerializer/4.1.2.0": {
  4825. "type": "referenceassembly",
  4826. "serviceable": false,
  4827. "sha512": ""
  4828. },
  4829. "System.Xml.XPath/4.1.2.0": {
  4830. "type": "referenceassembly",
  4831. "serviceable": false,
  4832. "sha512": ""
  4833. },
  4834. "System.Xml.XPath.XDocument/4.1.2.0": {
  4835. "type": "referenceassembly",
  4836. "serviceable": false,
  4837. "sha512": ""
  4838. },
  4839. "WindowsBase/4.0.0.0": {
  4840. "type": "referenceassembly",
  4841. "serviceable": false,
  4842. "sha512": ""
  4843. }
  4844. }
  4845. }