Ropin.IOT.MqttService.deps.json 228 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v5.0",
  4. "signature": ""
  5. },
  6. "compilationOptions": {
  7. "defines": [
  8. "TRACE",
  9. "DEBUG",
  10. "NET",
  11. "NET5_0",
  12. "NETCOREAPP",
  13. "NET5_0_OR_GREATER",
  14. "NETCOREAPP1_0_OR_GREATER",
  15. "NETCOREAPP1_1_OR_GREATER",
  16. "NETCOREAPP2_0_OR_GREATER",
  17. "NETCOREAPP2_1_OR_GREATER",
  18. "NETCOREAPP2_2_OR_GREATER",
  19. "NETCOREAPP3_0_OR_GREATER",
  20. "NETCOREAPP3_1_OR_GREATER"
  21. ],
  22. "languageVersion": "9.0",
  23. "platform": "",
  24. "allowUnsafe": false,
  25. "warningsAsErrors": false,
  26. "optimize": false,
  27. "keyFile": "",
  28. "emitEntryPoint": true,
  29. "xmlDoc": false,
  30. "debugType": "portable"
  31. },
  32. "targets": {
  33. ".NETCoreApp,Version=v5.0": {
  34. "Ropin.IOT.MqttService/1.0.0": {
  35. "dependencies": {
  36. "MQTTnet.AspNetCore": "4.2.1.781",
  37. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.17.2",
  38. "Newtonsoft.Json": "13.0.3",
  39. "Ropin.Core.Common": "1.0.0",
  40. "Ropin.Core.Extensions": "1.0.0",
  41. "Ropin.Inspection.Model": "1.0.0",
  42. "Ropin.Inspection.Repository": "1.0.0",
  43. "Swashbuckle.AspNetCore": "5.6.3",
  44. "Microsoft.AspNetCore.Antiforgery": "5.0.0.0",
  45. "Microsoft.AspNetCore.Authentication.Abstractions": "5.0.0.0",
  46. "Microsoft.AspNetCore.Authentication.Cookies": "5.0.0.0",
  47. "Microsoft.AspNetCore.Authentication.Core": "5.0.0.0",
  48. "Microsoft.AspNetCore.Authentication": "5.0.0.0",
  49. "Microsoft.AspNetCore.Authentication.OAuth": "5.0.0.0",
  50. "Microsoft.AspNetCore.Authorization": "5.0.0.0",
  51. "Microsoft.AspNetCore.Authorization.Policy": "5.0.0.0",
  52. "Microsoft.AspNetCore.Components.Authorization": "5.0.0.0",
  53. "Microsoft.AspNetCore.Components": "5.0.0.0",
  54. "Microsoft.AspNetCore.Components.Forms": "5.0.0.0",
  55. "Microsoft.AspNetCore.Components.Server": "5.0.0.0",
  56. "Microsoft.AspNetCore.Components.Web": "5.0.0.0",
  57. "Microsoft.AspNetCore.Connections.Abstractions": "5.0.0.0",
  58. "Microsoft.AspNetCore.CookiePolicy": "5.0.0.0",
  59. "Microsoft.AspNetCore.Cors": "5.0.0.0",
  60. "Microsoft.AspNetCore.Cryptography.Internal": "5.0.0.0",
  61. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "5.0.0.0",
  62. "Microsoft.AspNetCore.DataProtection.Abstractions": "5.0.0.0",
  63. "Microsoft.AspNetCore.DataProtection": "5.0.0.0",
  64. "Microsoft.AspNetCore.DataProtection.Extensions": "5.0.0.0",
  65. "Microsoft.AspNetCore.Diagnostics.Abstractions": "5.0.0.0",
  66. "Microsoft.AspNetCore.Diagnostics": "5.0.0.0",
  67. "Microsoft.AspNetCore.Diagnostics.HealthChecks": "5.0.0.0",
  68. "Microsoft.AspNetCore": "5.0.0.0",
  69. "Microsoft.AspNetCore.HostFiltering": "5.0.0.0",
  70. "Microsoft.AspNetCore.Hosting.Abstractions": "5.0.0.0",
  71. "Microsoft.AspNetCore.Hosting": "5.0.0.0",
  72. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "5.0.0.0",
  73. "Microsoft.AspNetCore.Html.Abstractions": "5.0.0.0",
  74. "Microsoft.AspNetCore.Http.Abstractions.Reference": "5.0.0.0",
  75. "Microsoft.AspNetCore.Http.Connections.Common": "5.0.0.0",
  76. "Microsoft.AspNetCore.Http.Connections": "5.0.0.0",
  77. "Microsoft.AspNetCore.Http": "5.0.0.0",
  78. "Microsoft.AspNetCore.Http.Extensions": "5.0.0.0",
  79. "Microsoft.AspNetCore.Http.Features.Reference": "5.0.0.0",
  80. "Microsoft.AspNetCore.HttpOverrides": "5.0.0.0",
  81. "Microsoft.AspNetCore.HttpsPolicy": "5.0.0.0",
  82. "Microsoft.AspNetCore.Identity": "5.0.0.0",
  83. "Microsoft.AspNetCore.Localization": "5.0.0.0",
  84. "Microsoft.AspNetCore.Localization.Routing": "5.0.0.0",
  85. "Microsoft.AspNetCore.Metadata": "5.0.0.0",
  86. "Microsoft.AspNetCore.Mvc.Abstractions": "5.0.0.0",
  87. "Microsoft.AspNetCore.Mvc.ApiExplorer": "5.0.0.0",
  88. "Microsoft.AspNetCore.Mvc.Core": "5.0.0.0",
  89. "Microsoft.AspNetCore.Mvc.Cors": "5.0.0.0",
  90. "Microsoft.AspNetCore.Mvc.DataAnnotations": "5.0.0.0",
  91. "Microsoft.AspNetCore.Mvc": "5.0.0.0",
  92. "Microsoft.AspNetCore.Mvc.Formatters.Json": "5.0.0.0",
  93. "Microsoft.AspNetCore.Mvc.Formatters.Xml": "5.0.0.0",
  94. "Microsoft.AspNetCore.Mvc.Localization": "5.0.0.0",
  95. "Microsoft.AspNetCore.Mvc.Razor": "5.0.0.0",
  96. "Microsoft.AspNetCore.Mvc.RazorPages": "5.0.0.0",
  97. "Microsoft.AspNetCore.Mvc.TagHelpers": "5.0.0.0",
  98. "Microsoft.AspNetCore.Mvc.ViewFeatures": "5.0.0.0",
  99. "Microsoft.AspNetCore.Razor": "5.0.0.0",
  100. "Microsoft.AspNetCore.Razor.Runtime": "5.0.0.0",
  101. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "5.0.0.0",
  102. "Microsoft.AspNetCore.ResponseCaching": "5.0.0.0",
  103. "Microsoft.AspNetCore.ResponseCompression": "5.0.0.0",
  104. "Microsoft.AspNetCore.Rewrite": "5.0.0.0",
  105. "Microsoft.AspNetCore.Routing.Abstractions": "5.0.0.0",
  106. "Microsoft.AspNetCore.Routing": "5.0.0.0",
  107. "Microsoft.AspNetCore.Server.HttpSys": "5.0.0.0",
  108. "Microsoft.AspNetCore.Server.IIS": "5.0.0.0",
  109. "Microsoft.AspNetCore.Server.IISIntegration": "5.0.0.0",
  110. "Microsoft.AspNetCore.Server.Kestrel.Core": "5.0.0.0",
  111. "Microsoft.AspNetCore.Server.Kestrel": "5.0.0.0",
  112. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "5.0.0.0",
  113. "Microsoft.AspNetCore.Session": "5.0.0.0",
  114. "Microsoft.AspNetCore.SignalR.Common": "5.0.0.0",
  115. "Microsoft.AspNetCore.SignalR.Core": "5.0.0.0",
  116. "Microsoft.AspNetCore.SignalR": "5.0.0.0",
  117. "Microsoft.AspNetCore.SignalR.Protocols.Json": "5.0.0.0",
  118. "Microsoft.AspNetCore.StaticFiles": "5.0.0.0",
  119. "Microsoft.AspNetCore.WebSockets": "5.0.0.0",
  120. "Microsoft.AspNetCore.WebUtilities": "5.0.0.0",
  121. "Microsoft.CSharp.Reference": "5.0.0.0",
  122. "Microsoft.Extensions.Caching.Abstractions.Reference": "5.0.0.0",
  123. "Microsoft.Extensions.Caching.Memory.Reference": "5.0.0.0",
  124. "Microsoft.Extensions.Configuration.Abstractions.Reference": "5.0.0.0",
  125. "Microsoft.Extensions.Configuration.Binder.Reference": "5.0.0.0",
  126. "Microsoft.Extensions.Configuration.CommandLine": "5.0.0.0",
  127. "Microsoft.Extensions.Configuration.Reference": "5.0.0.0",
  128. "Microsoft.Extensions.Configuration.EnvironmentVariables": "5.0.0.0",
  129. "Microsoft.Extensions.Configuration.FileExtensions.Reference": "5.0.0.0",
  130. "Microsoft.Extensions.Configuration.Ini": "5.0.0.0",
  131. "Microsoft.Extensions.Configuration.Json.Reference": "5.0.0.0",
  132. "Microsoft.Extensions.Configuration.KeyPerFile": "5.0.0.0",
  133. "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0.0",
  134. "Microsoft.Extensions.Configuration.Xml": "5.0.0.0",
  135. "Microsoft.Extensions.DependencyInjection.Abstractions.Reference": "5.0.0.0",
  136. "Microsoft.Extensions.DependencyInjection.Reference": "5.0.0.0",
  137. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "5.0.0.0",
  138. "Microsoft.Extensions.Diagnostics.HealthChecks": "5.0.0.0",
  139. "Microsoft.Extensions.FileProviders.Abstractions.Reference": "5.0.0.0",
  140. "Microsoft.Extensions.FileProviders.Composite": "5.0.0.0",
  141. "Microsoft.Extensions.FileProviders.Embedded": "5.0.0.0",
  142. "Microsoft.Extensions.FileProviders.Physical.Reference": "5.0.0.0",
  143. "Microsoft.Extensions.FileSystemGlobbing.Reference": "5.0.0.0",
  144. "Microsoft.Extensions.Hosting.Abstractions.Reference": "5.0.0.0",
  145. "Microsoft.Extensions.Hosting": "5.0.0.0",
  146. "Microsoft.Extensions.Http.Reference": "5.0.0.0",
  147. "Microsoft.Extensions.Identity.Core": "5.0.0.0",
  148. "Microsoft.Extensions.Identity.Stores": "5.0.0.0",
  149. "Microsoft.Extensions.Localization.Abstractions": "5.0.0.0",
  150. "Microsoft.Extensions.Localization": "5.0.0.0",
  151. "Microsoft.Extensions.Logging.Abstractions.Reference": "5.0.0.0",
  152. "Microsoft.Extensions.Logging.Configuration.Reference": "5.0.0.0",
  153. "Microsoft.Extensions.Logging.Console.Reference": "5.0.0.0",
  154. "Microsoft.Extensions.Logging.Debug": "5.0.0.0",
  155. "Microsoft.Extensions.Logging.Reference": "5.0.0.0",
  156. "Microsoft.Extensions.Logging.EventLog": "5.0.0.0",
  157. "Microsoft.Extensions.Logging.EventSource": "5.0.0.0",
  158. "Microsoft.Extensions.Logging.TraceSource": "5.0.0.0",
  159. "Microsoft.Extensions.ObjectPool": "5.0.0.0",
  160. "Microsoft.Extensions.Options.ConfigurationExtensions.Reference": "5.0.0.0",
  161. "Microsoft.Extensions.Options.DataAnnotations": "5.0.0.0",
  162. "Microsoft.Extensions.Options.Reference": "5.0.0.0",
  163. "Microsoft.Extensions.Primitives.Reference": "5.0.0.0",
  164. "Microsoft.Extensions.WebEncoders": "5.0.0.0",
  165. "Microsoft.JSInterop": "5.0.0.0",
  166. "Microsoft.Net.Http.Headers": "5.0.0.0",
  167. "Microsoft.VisualBasic.Core": "10.0.6.0",
  168. "Microsoft.VisualBasic": "10.0.0.0",
  169. "Microsoft.Win32.Primitives.Reference": "5.0.0.0",
  170. "Microsoft.Win32.Registry": "5.0.0.0",
  171. "mscorlib": "4.0.0.0",
  172. "netstandard": "2.1.0.0",
  173. "System.AppContext.Reference": "5.0.0.0",
  174. "System.Buffers.Reference": "5.0.0.0",
  175. "System.Collections.Concurrent.Reference": "5.0.0.0",
  176. "System.Collections.Reference": "5.0.0.0",
  177. "System.Collections.Immutable.Reference": "5.0.0.0",
  178. "System.Collections.NonGeneric.Reference": "5.0.0.0",
  179. "System.Collections.Specialized.Reference": "5.0.0.0",
  180. "System.ComponentModel.Annotations.Reference": "5.0.0.0",
  181. "System.ComponentModel.DataAnnotations": "4.0.0.0",
  182. "System.ComponentModel.Reference": "5.0.0.0",
  183. "System.ComponentModel.EventBasedAsync": "5.0.0.0",
  184. "System.ComponentModel.Primitives.Reference": "5.0.0.0",
  185. "System.ComponentModel.TypeConverter.Reference": "5.0.0.0",
  186. "System.Configuration": "4.0.0.0",
  187. "System.Console.Reference": "5.0.0.0",
  188. "System.Core": "4.0.0.0",
  189. "System.Data.Common": "5.0.0.0",
  190. "System.Data.DataSetExtensions": "4.0.0.0",
  191. "System.Data": "4.0.0.0",
  192. "System.Diagnostics.Contracts": "5.0.0.0",
  193. "System.Diagnostics.Debug.Reference": "5.0.0.0",
  194. "System.Diagnostics.DiagnosticSource.Reference": "5.0.0.0",
  195. "System.Diagnostics.EventLog": "5.0.0.0",
  196. "System.Diagnostics.FileVersionInfo": "5.0.0.0",
  197. "System.Diagnostics.Process": "5.0.0.0",
  198. "System.Diagnostics.StackTrace": "5.0.0.0",
  199. "System.Diagnostics.TextWriterTraceListener": "5.0.0.0",
  200. "System.Diagnostics.Tools.Reference": "5.0.0.0",
  201. "System.Diagnostics.TraceSource.Reference": "5.0.0.0",
  202. "System.Diagnostics.Tracing.Reference": "5.0.0.0",
  203. "System": "4.0.0.0",
  204. "System.Drawing": "4.0.0.0",
  205. "System.Drawing.Primitives": "5.0.0.0",
  206. "System.Dynamic.Runtime.Reference": "5.0.0.0",
  207. "System.Formats.Asn1": "5.0.0.0",
  208. "System.Globalization.Calendars.Reference": "5.0.0.0",
  209. "System.Globalization.Reference": "5.0.0.0",
  210. "System.Globalization.Extensions.Reference": "5.0.0.0",
  211. "System.IO.Compression.Brotli": "5.0.0.0",
  212. "System.IO.Compression.Reference": "5.0.0.0",
  213. "System.IO.Compression.FileSystem": "4.0.0.0",
  214. "System.IO.Compression.ZipFile.Reference": "5.0.0.0",
  215. "System.IO.Reference": "5.0.0.0",
  216. "System.IO.FileSystem.Reference": "5.0.0.0",
  217. "System.IO.FileSystem.DriveInfo": "5.0.0.0",
  218. "System.IO.FileSystem.Primitives.Reference": "5.0.0.0",
  219. "System.IO.FileSystem.Watcher": "5.0.0.0",
  220. "System.IO.IsolatedStorage": "5.0.0.0",
  221. "System.IO.MemoryMappedFiles": "5.0.0.0",
  222. "System.IO.Pipelines.Reference": "5.0.0.0",
  223. "System.IO.Pipes": "5.0.0.0",
  224. "System.IO.UnmanagedMemoryStream": "5.0.0.0",
  225. "System.Linq.Reference": "5.0.0.0",
  226. "System.Linq.Expressions.Reference": "5.0.0.0",
  227. "System.Linq.Parallel": "5.0.0.0",
  228. "System.Linq.Queryable": "5.0.0.0",
  229. "System.Memory.Reference": "5.0.0.0",
  230. "System.Net": "4.0.0.0",
  231. "System.Net.Http.Reference": "5.0.0.0",
  232. "System.Net.Http.Json": "5.0.0.0",
  233. "System.Net.HttpListener": "5.0.0.0",
  234. "System.Net.Mail": "5.0.0.0",
  235. "System.Net.NameResolution.Reference": "5.0.0.0",
  236. "System.Net.NetworkInformation": "5.0.0.0",
  237. "System.Net.Ping": "5.0.0.0",
  238. "System.Net.Primitives.Reference": "5.0.0.0",
  239. "System.Net.Requests": "5.0.0.0",
  240. "System.Net.Security.Reference": "5.0.0.0",
  241. "System.Net.ServicePoint": "5.0.0.0",
  242. "System.Net.Sockets.Reference": "5.0.0.0",
  243. "System.Net.WebClient": "5.0.0.0",
  244. "System.Net.WebHeaderCollection": "5.0.0.0",
  245. "System.Net.WebProxy": "5.0.0.0",
  246. "System.Net.WebSockets.Client": "5.0.0.0",
  247. "System.Net.WebSockets": "5.0.0.0",
  248. "System.Numerics": "4.0.0.0",
  249. "System.Numerics.Vectors": "5.0.0.0",
  250. "System.ObjectModel.Reference": "5.0.0.0",
  251. "System.Reflection.DispatchProxy": "5.0.0.0",
  252. "System.Reflection.Reference": "5.0.0.0",
  253. "System.Reflection.Emit.Reference": "5.0.0.0",
  254. "System.Reflection.Emit.ILGeneration.Reference": "5.0.0.0",
  255. "System.Reflection.Emit.Lightweight.Reference": "5.0.0.0",
  256. "System.Reflection.Extensions.Reference": "5.0.0.0",
  257. "System.Reflection.Metadata": "5.0.0.0",
  258. "System.Reflection.Primitives.Reference": "5.0.0.0",
  259. "System.Reflection.TypeExtensions.Reference": "5.0.0.0",
  260. "System.Resources.Reader": "5.0.0.0",
  261. "System.Resources.ResourceManager.Reference": "5.0.0.0",
  262. "System.Resources.Writer": "5.0.0.0",
  263. "System.Runtime.CompilerServices.Unsafe.Reference": "5.0.0.0",
  264. "System.Runtime.CompilerServices.VisualC": "5.0.0.0",
  265. "System.Runtime.Reference": "5.0.0.0",
  266. "System.Runtime.Extensions.Reference": "5.0.0.0",
  267. "System.Runtime.Handles.Reference": "5.0.0.0",
  268. "System.Runtime.InteropServices.Reference": "5.0.0.0",
  269. "System.Runtime.InteropServices.RuntimeInformation.Reference": "5.0.0.0",
  270. "System.Runtime.Intrinsics": "5.0.0.0",
  271. "System.Runtime.Loader": "5.0.0.0",
  272. "System.Runtime.Numerics.Reference": "5.0.0.0",
  273. "System.Runtime.Serialization": "4.0.0.0",
  274. "System.Runtime.Serialization.Formatters": "5.0.0.0",
  275. "System.Runtime.Serialization.Json": "5.0.0.0",
  276. "System.Runtime.Serialization.Primitives": "5.0.0.0",
  277. "System.Runtime.Serialization.Xml": "5.0.0.0",
  278. "System.Security.AccessControl.Reference": "5.0.0.0",
  279. "System.Security.Claims.Reference": "5.0.0.0",
  280. "System.Security.Cryptography.Algorithms.Reference": "5.0.0.0",
  281. "System.Security.Cryptography.Cng.Reference": "5.0.0.0",
  282. "System.Security.Cryptography.Csp.Reference": "5.0.0.0",
  283. "System.Security.Cryptography.Encoding.Reference": "5.0.0.0",
  284. "System.Security.Cryptography.Primitives.Reference": "5.0.0.0",
  285. "System.Security.Cryptography.X509Certificates.Reference": "5.0.0.0",
  286. "System.Security.Cryptography.Xml": "5.0.0.0",
  287. "System.Security": "4.0.0.0",
  288. "System.Security.Permissions.Reference": "5.0.0.0",
  289. "System.Security.Principal.Reference": "5.0.0.0",
  290. "System.Security.Principal.Windows.Reference": "5.0.0.0",
  291. "System.Security.SecureString": "5.0.0.0",
  292. "System.ServiceModel.Web": "4.0.0.0",
  293. "System.ServiceProcess": "4.0.0.0",
  294. "System.Text.Encoding.CodePages.Reference": "5.0.0.0",
  295. "System.Text.Encoding.Reference": "5.0.0.0",
  296. "System.Text.Encoding.Extensions.Reference": "5.0.0.0",
  297. "System.Text.Encodings.Web.Reference": "5.0.0.0",
  298. "System.Text.Json": "5.0.0.0",
  299. "System.Text.RegularExpressions.Reference": "5.0.0.0",
  300. "System.Threading.Reference": "5.0.0.0",
  301. "System.Threading.Overlapped": "5.0.0.0",
  302. "System.Threading.Tasks.Dataflow": "5.0.0.0",
  303. "System.Threading.Tasks.Reference": "5.0.0.0",
  304. "System.Threading.Tasks.Extensions.Reference": "5.0.0.0",
  305. "System.Threading.Tasks.Parallel": "5.0.0.0",
  306. "System.Threading.Thread.Reference": "5.0.0.0",
  307. "System.Threading.ThreadPool.Reference": "5.0.0.0",
  308. "System.Threading.Timer.Reference": "5.0.0.0",
  309. "System.Transactions": "4.0.0.0",
  310. "System.Transactions.Local": "5.0.0.0",
  311. "System.ValueTuple": "4.0.3.0",
  312. "System.Web": "4.0.0.0",
  313. "System.Web.HttpUtility": "5.0.0.0",
  314. "System.Windows": "4.0.0.0",
  315. "System.Windows.Extensions.Reference": "5.0.0.0",
  316. "System.Xml": "4.0.0.0",
  317. "System.Xml.Linq": "4.0.0.0",
  318. "System.Xml.ReaderWriter.Reference": "5.0.0.0",
  319. "System.Xml.Serialization": "4.0.0.0",
  320. "System.Xml.XDocument.Reference": "5.0.0.0",
  321. "System.Xml.XmlDocument.Reference": "5.0.0.0",
  322. "System.Xml.XmlSerializer": "5.0.0.0",
  323. "System.Xml.XPath": "5.0.0.0",
  324. "System.Xml.XPath.XDocument": "5.0.0.0",
  325. "WindowsBase": "4.0.0.0"
  326. },
  327. "runtime": {
  328. "Ropin.IOT.MqttService.dll": {}
  329. },
  330. "compile": {
  331. "Ropin.IOT.MqttService.dll": {}
  332. }
  333. },
  334. "AdvancedStringBuilder/0.1.0": {
  335. "runtime": {
  336. "lib/netstandard2.0/AdvancedStringBuilder.dll": {
  337. "assemblyVersion": "0.1.0.0",
  338. "fileVersion": "0.1.0.0"
  339. }
  340. },
  341. "compile": {
  342. "lib/netstandard2.0/AdvancedStringBuilder.dll": {}
  343. }
  344. },
  345. "Autofac/6.2.0": {
  346. "dependencies": {
  347. "System.Diagnostics.DiagnosticSource": "5.0.0"
  348. },
  349. "runtime": {
  350. "lib/net5.0/Autofac.dll": {
  351. "assemblyVersion": "6.2.0.0",
  352. "fileVersion": "6.2.0.0"
  353. }
  354. },
  355. "compile": {
  356. "lib/net5.0/Autofac.dll": {}
  357. }
  358. },
  359. "Autofac.Extras.DynamicProxy/6.0.0": {
  360. "dependencies": {
  361. "Autofac": "6.2.0",
  362. "Castle.Core": "4.4.0"
  363. },
  364. "runtime": {
  365. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  366. "assemblyVersion": "6.0.0.0",
  367. "fileVersion": "6.0.0.0"
  368. }
  369. },
  370. "compile": {
  371. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {}
  372. }
  373. },
  374. "AutoMapper/10.1.1": {
  375. "dependencies": {
  376. "Microsoft.CSharp": "4.7.0",
  377. "System.Reflection.Emit": "4.7.0"
  378. },
  379. "runtime": {
  380. "lib/netstandard2.0/AutoMapper.dll": {
  381. "assemblyVersion": "10.0.0.0",
  382. "fileVersion": "10.1.1.0"
  383. }
  384. },
  385. "compile": {
  386. "lib/netstandard2.0/AutoMapper.dll": {}
  387. }
  388. },
  389. "BouncyCastle.NetCore/1.8.5": {
  390. "runtime": {
  391. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  392. "assemblyVersion": "1.8.5.0",
  393. "fileVersion": "1.8.19031.1"
  394. }
  395. },
  396. "compile": {
  397. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  398. }
  399. },
  400. "Castle.Core/4.4.0": {
  401. "dependencies": {
  402. "NETStandard.Library": "1.6.1",
  403. "System.Collections.Specialized": "4.3.0",
  404. "System.ComponentModel": "4.3.0",
  405. "System.ComponentModel.TypeConverter": "4.3.0",
  406. "System.Diagnostics.TraceSource": "4.3.0",
  407. "System.Dynamic.Runtime": "4.3.0",
  408. "System.Reflection": "4.3.0",
  409. "System.Reflection.Emit": "4.7.0",
  410. "System.Reflection.TypeExtensions": "4.3.0",
  411. "System.Xml.XmlDocument": "4.3.0"
  412. },
  413. "runtime": {
  414. "lib/netstandard1.5/Castle.Core.dll": {
  415. "assemblyVersion": "4.0.0.0",
  416. "fileVersion": "4.4.0.0"
  417. }
  418. },
  419. "compile": {
  420. "lib/netstandard1.5/Castle.Core.dll": {}
  421. }
  422. },
  423. "Coravel/4.2.1": {
  424. "dependencies": {
  425. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  426. "Microsoft.Extensions.Hosting.Abstractions": "3.1.0",
  427. "Microsoft.Extensions.Logging.Abstractions": "5.0.0"
  428. },
  429. "runtime": {
  430. "lib/netstandard2.0/Coravel.dll": {
  431. "assemblyVersion": "4.2.1.0",
  432. "fileVersion": "4.2.1.0"
  433. }
  434. },
  435. "compile": {
  436. "lib/netstandard2.0/Coravel.dll": {}
  437. }
  438. },
  439. "FluentEmail.Core/3.0.2": {
  440. "dependencies": {
  441. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  442. },
  443. "runtime": {
  444. "lib/netstandard2.0/FluentEmail.Core.dll": {
  445. "assemblyVersion": "3.0.2.0",
  446. "fileVersion": "3.0.2.0"
  447. }
  448. },
  449. "compile": {
  450. "lib/netstandard2.0/FluentEmail.Core.dll": {}
  451. }
  452. },
  453. "FluentEmail.Smtp/3.0.2": {
  454. "dependencies": {
  455. "FluentEmail.Core": "3.0.2"
  456. },
  457. "runtime": {
  458. "lib/netstandard2.0/FluentEmail.Smtp.dll": {
  459. "assemblyVersion": "3.0.2.0",
  460. "fileVersion": "3.0.2.0"
  461. }
  462. },
  463. "compile": {
  464. "lib/netstandard2.0/FluentEmail.Smtp.dll": {}
  465. }
  466. },
  467. "Google.Protobuf/3.11.4": {
  468. "dependencies": {
  469. "System.Memory": "4.5.5"
  470. },
  471. "runtime": {
  472. "lib/netstandard2.0/Google.Protobuf.dll": {
  473. "assemblyVersion": "3.11.4.0",
  474. "fileVersion": "3.11.4.0"
  475. }
  476. },
  477. "compile": {
  478. "lib/netstandard2.0/Google.Protobuf.dll": {}
  479. }
  480. },
  481. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  482. "dependencies": {
  483. "AdvancedStringBuilder": "0.1.0",
  484. "JavaScriptEngineSwitcher.Core": "3.21.0"
  485. },
  486. "runtime": {
  487. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {
  488. "assemblyVersion": "3.21.0.0",
  489. "fileVersion": "3.21.0.0"
  490. }
  491. },
  492. "resources": {
  493. "lib/netstandard2.1/ru-RU/JavaScriptEngineSwitcher.ChakraCore.resources.dll": {
  494. "locale": "ru-RU"
  495. }
  496. },
  497. "compile": {
  498. "lib/netstandard2.1/JavaScriptEngineSwitcher.ChakraCore.dll": {}
  499. }
  500. },
  501. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  502. "runtimeTargets": {
  503. "runtimes/linux-x64/native/libChakraCore.so": {
  504. "rid": "linux-x64",
  505. "assetType": "native",
  506. "fileVersion": "0.0.0.0"
  507. }
  508. }
  509. },
  510. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  511. "runtimeTargets": {
  512. "runtimes/win-x64/native/ChakraCore.dll": {
  513. "rid": "win-x64",
  514. "assetType": "native",
  515. "fileVersion": "1.13.0.0"
  516. }
  517. }
  518. },
  519. "JavaScriptEngineSwitcher.Core/3.21.0": {
  520. "dependencies": {
  521. "AdvancedStringBuilder": "0.1.0"
  522. },
  523. "runtime": {
  524. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {
  525. "assemblyVersion": "3.21.0.0",
  526. "fileVersion": "3.21.0.0"
  527. }
  528. },
  529. "resources": {
  530. "lib/netstandard2.0/ru-RU/JavaScriptEngineSwitcher.Core.resources.dll": {
  531. "locale": "ru-RU"
  532. }
  533. },
  534. "compile": {
  535. "lib/netstandard2.0/JavaScriptEngineSwitcher.Core.dll": {}
  536. }
  537. },
  538. "K4os.Compression.LZ4/1.1.11": {
  539. "dependencies": {
  540. "System.Memory": "4.5.5"
  541. },
  542. "runtime": {
  543. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  544. "assemblyVersion": "1.1.11.0",
  545. "fileVersion": "1.1.11.0"
  546. }
  547. },
  548. "compile": {
  549. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {}
  550. }
  551. },
  552. "K4os.Compression.LZ4.Streams/1.1.11": {
  553. "dependencies": {
  554. "K4os.Compression.LZ4": "1.1.11",
  555. "K4os.Hash.xxHash": "1.0.6"
  556. },
  557. "runtime": {
  558. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  559. "assemblyVersion": "1.1.11.0",
  560. "fileVersion": "1.1.11.0"
  561. }
  562. },
  563. "compile": {
  564. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {}
  565. }
  566. },
  567. "K4os.Hash.xxHash/1.0.6": {
  568. "dependencies": {
  569. "System.Memory": "4.5.5"
  570. },
  571. "runtime": {
  572. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  573. "assemblyVersion": "1.0.6.0",
  574. "fileVersion": "1.0.6.0"
  575. }
  576. },
  577. "compile": {
  578. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {}
  579. }
  580. },
  581. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  582. "dependencies": {
  583. "Microsoft.EntityFrameworkCore": "5.0.0"
  584. },
  585. "runtime": {
  586. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {
  587. "assemblyVersion": "5.0.24.0",
  588. "fileVersion": "5.0.24.0"
  589. }
  590. },
  591. "compile": {
  592. "lib/netstandard2.1/LinqKit.Microsoft.EntityFrameworkCore.dll": {}
  593. }
  594. },
  595. "log4net/2.0.17": {
  596. "dependencies": {
  597. "System.Configuration.ConfigurationManager": "4.7.0"
  598. },
  599. "runtime": {
  600. "lib/netstandard2.0/log4net.dll": {
  601. "assemblyVersion": "2.0.17.0",
  602. "fileVersion": "2.0.17.0"
  603. }
  604. },
  605. "compile": {
  606. "lib/netstandard2.0/log4net.dll": {}
  607. }
  608. },
  609. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  610. "dependencies": {
  611. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  612. "System.Text.Encodings.Web": "4.5.0"
  613. }
  614. },
  615. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  616. "dependencies": {
  617. "Microsoft.Extensions.Primitives": "5.0.0",
  618. "System.IO.Pipelines": "5.0.0"
  619. }
  620. },
  621. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  622. "dependencies": {
  623. "Microsoft.Extensions.Logging.Console": "3.1.30",
  624. "Newtonsoft.Json": "13.0.3"
  625. },
  626. "runtime": {
  627. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {
  628. "assemblyVersion": "3.1.30.0",
  629. "fileVersion": "3.100.3022.47624"
  630. }
  631. },
  632. "compile": {
  633. "lib/netcoreapp3.1/Microsoft.AspNetCore.NodeServices.dll": {}
  634. }
  635. },
  636. "Microsoft.CSharp/4.7.0": {},
  637. "Microsoft.EntityFrameworkCore/5.0.0": {
  638. "dependencies": {
  639. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  640. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  641. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  642. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  643. "Microsoft.Extensions.Logging": "5.0.0",
  644. "System.Collections.Immutable": "5.0.0",
  645. "System.ComponentModel.Annotations": "5.0.0",
  646. "System.Diagnostics.DiagnosticSource": "5.0.0"
  647. },
  648. "runtime": {
  649. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  650. "assemblyVersion": "5.0.0.0",
  651. "fileVersion": "5.0.20.52303"
  652. }
  653. },
  654. "compile": {
  655. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {}
  656. }
  657. },
  658. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  659. "runtime": {
  660. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  661. "assemblyVersion": "5.0.0.0",
  662. "fileVersion": "5.0.20.52303"
  663. }
  664. },
  665. "compile": {
  666. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  667. }
  668. },
  669. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {},
  670. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  671. "dependencies": {
  672. "Microsoft.EntityFrameworkCore": "5.0.0",
  673. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  674. },
  675. "runtime": {
  676. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  677. "assemblyVersion": "5.0.0.0",
  678. "fileVersion": "5.0.20.52303"
  679. }
  680. },
  681. "compile": {
  682. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {}
  683. }
  684. },
  685. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {},
  686. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  687. "dependencies": {
  688. "Microsoft.Extensions.Primitives": "5.0.0"
  689. }
  690. },
  691. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  692. "dependencies": {
  693. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  694. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  695. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  696. "Microsoft.Extensions.Options": "5.0.0",
  697. "Microsoft.Extensions.Primitives": "5.0.0"
  698. }
  699. },
  700. "Microsoft.Extensions.Configuration/5.0.0": {
  701. "dependencies": {
  702. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  703. "Microsoft.Extensions.Primitives": "5.0.0"
  704. }
  705. },
  706. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  707. "dependencies": {
  708. "Microsoft.Extensions.Primitives": "5.0.0"
  709. }
  710. },
  711. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  712. "dependencies": {
  713. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  714. }
  715. },
  716. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  717. "dependencies": {
  718. "Microsoft.Extensions.Configuration": "5.0.0",
  719. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  720. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  721. "Microsoft.Extensions.FileProviders.Physical": "5.0.0",
  722. "Microsoft.Extensions.Primitives": "5.0.0"
  723. }
  724. },
  725. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  726. "dependencies": {
  727. "Microsoft.Extensions.Configuration": "5.0.0",
  728. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  729. "Microsoft.Extensions.Configuration.FileExtensions": "5.0.0",
  730. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0"
  731. }
  732. },
  733. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  734. "dependencies": {
  735. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  736. }
  737. },
  738. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {},
  739. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  740. "dependencies": {
  741. "Microsoft.Extensions.Primitives": "5.0.0"
  742. }
  743. },
  744. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  745. "dependencies": {
  746. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  747. "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
  748. "Microsoft.Extensions.Primitives": "5.0.0"
  749. }
  750. },
  751. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {},
  752. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  753. "dependencies": {
  754. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  755. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  756. "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0",
  757. "Microsoft.Extensions.Logging.Abstractions": "5.0.0"
  758. }
  759. },
  760. "Microsoft.Extensions.Http/5.0.0": {
  761. "dependencies": {
  762. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  763. "Microsoft.Extensions.Logging": "5.0.0",
  764. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  765. "Microsoft.Extensions.Options": "5.0.0"
  766. }
  767. },
  768. "Microsoft.Extensions.Logging/5.0.0": {
  769. "dependencies": {
  770. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  771. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  772. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  773. "Microsoft.Extensions.Options": "5.0.0"
  774. }
  775. },
  776. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {},
  777. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  778. "dependencies": {
  779. "Microsoft.Extensions.Logging": "5.0.0",
  780. "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.30"
  781. }
  782. },
  783. "Microsoft.Extensions.Logging.Console/3.1.30": {
  784. "dependencies": {
  785. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  786. "Microsoft.Extensions.Logging": "5.0.0",
  787. "Microsoft.Extensions.Logging.Configuration": "3.1.30"
  788. }
  789. },
  790. "Microsoft.Extensions.Options/5.0.0": {
  791. "dependencies": {
  792. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  793. "Microsoft.Extensions.Primitives": "5.0.0"
  794. }
  795. },
  796. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  797. "dependencies": {
  798. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  799. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  800. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  801. "Microsoft.Extensions.Options": "5.0.0"
  802. }
  803. },
  804. "Microsoft.Extensions.Primitives/5.0.0": {},
  805. "Microsoft.NETCore.Platforms/5.0.0": {},
  806. "Microsoft.NETCore.Targets/1.1.0": {},
  807. "Microsoft.OpenApi/1.2.3": {
  808. "runtime": {
  809. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  810. "assemblyVersion": "1.2.3.0",
  811. "fileVersion": "1.2.3.0"
  812. }
  813. },
  814. "compile": {
  815. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  816. }
  817. },
  818. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {},
  819. "Microsoft.Win32.Primitives/4.3.0": {
  820. "dependencies": {
  821. "Microsoft.NETCore.Platforms": "5.0.0",
  822. "Microsoft.NETCore.Targets": "1.1.0",
  823. "System.Runtime": "4.3.0"
  824. }
  825. },
  826. "Microsoft.Win32.SystemEvents/5.0.0": {
  827. "dependencies": {
  828. "Microsoft.NETCore.Platforms": "5.0.0"
  829. }
  830. },
  831. "MQTTnet/4.2.1.781": {
  832. "runtime": {
  833. "lib/net5.0/MQTTnet.dll": {
  834. "assemblyVersion": "4.2.1.781",
  835. "fileVersion": "4.2.1.781"
  836. }
  837. },
  838. "compile": {
  839. "lib/net5.0/MQTTnet.dll": {}
  840. }
  841. },
  842. "MQTTnet.AspNetCore/4.2.1.781": {
  843. "dependencies": {
  844. "MQTTnet": "4.2.1.781"
  845. },
  846. "runtime": {
  847. "lib/net5.0/MQTTnet.AspNetCore.dll": {
  848. "assemblyVersion": "4.2.1.781",
  849. "fileVersion": "4.2.1.781"
  850. }
  851. },
  852. "compile": {
  853. "lib/net5.0/MQTTnet.AspNetCore.dll": {}
  854. }
  855. },
  856. "MySql.Data/8.0.23": {
  857. "dependencies": {
  858. "BouncyCastle.NetCore": "1.8.5",
  859. "Google.Protobuf": "3.11.4",
  860. "K4os.Compression.LZ4": "1.1.11",
  861. "K4os.Compression.LZ4.Streams": "1.1.11",
  862. "K4os.Hash.xxHash": "1.0.6",
  863. "SSH.NET": "2020.0.0-beta1",
  864. "System.Buffers": "4.5.1",
  865. "System.Configuration.ConfigurationManager": "4.7.0",
  866. "System.Security.Permissions": "4.7.0",
  867. "System.Text.Encoding.CodePages": "5.0.0"
  868. },
  869. "runtime": {
  870. "lib/net5.0/MySql.Data.dll": {
  871. "assemblyVersion": "8.0.23.0",
  872. "fileVersion": "8.0.23.0"
  873. },
  874. "lib/net5.0/Ubiety.Dns.Core.dll": {
  875. "assemblyVersion": "2.2.1.0",
  876. "fileVersion": "2.2.1.0"
  877. },
  878. "lib/net5.0/Zstandard.Net.dll": {
  879. "assemblyVersion": "1.1.7.0",
  880. "fileVersion": "1.1.7.0"
  881. }
  882. },
  883. "compile": {
  884. "lib/net5.0/MySql.Data.dll": {},
  885. "lib/net5.0/Ubiety.Dns.Core.dll": {},
  886. "lib/net5.0/Zstandard.Net.dll": {}
  887. }
  888. },
  889. "MySqlConnector/1.1.0": {
  890. "runtime": {
  891. "lib/net5.0/MySqlConnector.dll": {
  892. "assemblyVersion": "1.0.0.0",
  893. "fileVersion": "1.1.0.0"
  894. }
  895. },
  896. "compile": {
  897. "lib/net5.0/MySqlConnector.dll": {}
  898. }
  899. },
  900. "NETStandard.Library/1.6.1": {
  901. "dependencies": {
  902. "Microsoft.NETCore.Platforms": "5.0.0",
  903. "Microsoft.Win32.Primitives": "4.3.0",
  904. "System.AppContext": "4.3.0",
  905. "System.Collections": "4.3.0",
  906. "System.Collections.Concurrent": "4.3.0",
  907. "System.Console": "4.3.0",
  908. "System.Diagnostics.Debug": "4.3.0",
  909. "System.Diagnostics.Tools": "4.3.0",
  910. "System.Diagnostics.Tracing": "4.3.0",
  911. "System.Globalization": "4.3.0",
  912. "System.Globalization.Calendars": "4.3.0",
  913. "System.IO": "4.3.0",
  914. "System.IO.Compression": "4.3.0",
  915. "System.IO.Compression.ZipFile": "4.3.0",
  916. "System.IO.FileSystem": "4.3.0",
  917. "System.IO.FileSystem.Primitives": "4.3.0",
  918. "System.Linq": "4.3.0",
  919. "System.Linq.Expressions": "4.3.0",
  920. "System.Net.Http": "4.3.0",
  921. "System.Net.Primitives": "4.3.0",
  922. "System.Net.Sockets": "4.3.0",
  923. "System.ObjectModel": "4.3.0",
  924. "System.Reflection": "4.3.0",
  925. "System.Reflection.Extensions": "4.3.0",
  926. "System.Reflection.Primitives": "4.3.0",
  927. "System.Resources.ResourceManager": "4.3.0",
  928. "System.Runtime": "4.3.0",
  929. "System.Runtime.Extensions": "4.3.0",
  930. "System.Runtime.Handles": "4.3.0",
  931. "System.Runtime.InteropServices": "4.3.0",
  932. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  933. "System.Runtime.Numerics": "4.3.0",
  934. "System.Security.Cryptography.Algorithms": "4.3.0",
  935. "System.Security.Cryptography.Encoding": "4.3.0",
  936. "System.Security.Cryptography.Primitives": "4.3.0",
  937. "System.Security.Cryptography.X509Certificates": "4.3.0",
  938. "System.Text.Encoding": "4.3.0",
  939. "System.Text.Encoding.Extensions": "4.3.0",
  940. "System.Text.RegularExpressions": "4.3.0",
  941. "System.Threading": "4.3.0",
  942. "System.Threading.Tasks": "4.3.0",
  943. "System.Threading.Timer": "4.3.0",
  944. "System.Xml.ReaderWriter": "4.3.0",
  945. "System.Xml.XDocument": "4.3.0"
  946. }
  947. },
  948. "Newtonsoft.Json/13.0.3": {
  949. "runtime": {
  950. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  951. "assemblyVersion": "13.0.0.0",
  952. "fileVersion": "13.0.3.27908"
  953. }
  954. },
  955. "compile": {
  956. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  957. }
  958. },
  959. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  960. "dependencies": {
  961. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  962. "MySqlConnector": "1.1.0"
  963. },
  964. "runtime": {
  965. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  966. "assemblyVersion": "5.0.0.0",
  967. "fileVersion": "5.0.0.0"
  968. }
  969. },
  970. "compile": {
  971. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {}
  972. }
  973. },
  974. "QRCoder/1.4.3": {
  975. "dependencies": {
  976. "System.Drawing.Common": "5.0.3"
  977. },
  978. "runtime": {
  979. "lib/net5.0/QRCoder.dll": {
  980. "assemblyVersion": "1.4.3.0",
  981. "fileVersion": "1.4.3.0"
  982. }
  983. },
  984. "compile": {
  985. "lib/net5.0/QRCoder.dll": {}
  986. }
  987. },
  988. "Quartz/3.3.3": {
  989. "dependencies": {
  990. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  991. "System.Configuration.ConfigurationManager": "4.7.0",
  992. "System.Diagnostics.DiagnosticSource": "5.0.0"
  993. },
  994. "runtime": {
  995. "lib/netstandard2.0/Quartz.dll": {
  996. "assemblyVersion": "3.3.3.0",
  997. "fileVersion": "3.3.3.0"
  998. }
  999. },
  1000. "compile": {
  1001. "lib/netstandard2.0/Quartz.dll": {}
  1002. }
  1003. },
  1004. "RabbitMQ.Client/6.8.1": {
  1005. "dependencies": {
  1006. "System.Memory": "4.5.5",
  1007. "System.Threading.Channels": "7.0.0"
  1008. },
  1009. "runtime": {
  1010. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1011. "assemblyVersion": "6.0.0.0",
  1012. "fileVersion": "6.8.1.0"
  1013. }
  1014. },
  1015. "compile": {
  1016. "lib/netstandard2.0/RabbitMQ.Client.dll": {}
  1017. }
  1018. },
  1019. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1020. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1021. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1022. "runtime.native.System/4.3.0": {
  1023. "dependencies": {
  1024. "Microsoft.NETCore.Platforms": "5.0.0",
  1025. "Microsoft.NETCore.Targets": "1.1.0"
  1026. }
  1027. },
  1028. "runtime.native.System.IO.Compression/4.3.0": {
  1029. "dependencies": {
  1030. "Microsoft.NETCore.Platforms": "5.0.0",
  1031. "Microsoft.NETCore.Targets": "1.1.0"
  1032. }
  1033. },
  1034. "runtime.native.System.Net.Http/4.3.0": {
  1035. "dependencies": {
  1036. "Microsoft.NETCore.Platforms": "5.0.0",
  1037. "Microsoft.NETCore.Targets": "1.1.0"
  1038. }
  1039. },
  1040. "runtime.native.System.Net.Security/4.3.0": {
  1041. "dependencies": {
  1042. "Microsoft.NETCore.Platforms": "5.0.0",
  1043. "Microsoft.NETCore.Targets": "1.1.0"
  1044. }
  1045. },
  1046. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1047. "dependencies": {
  1048. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1049. }
  1050. },
  1051. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1052. "dependencies": {
  1053. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1054. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1055. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1056. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1057. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1058. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1059. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1060. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1061. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1062. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1063. }
  1064. },
  1065. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1066. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1067. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
  1068. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1069. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1070. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1071. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1072. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  1073. "SixLabors.ImageSharp/2.1.6": {
  1074. "dependencies": {
  1075. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1076. "System.Text.Encoding.CodePages": "5.0.0"
  1077. },
  1078. "runtime": {
  1079. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
  1080. "assemblyVersion": "2.0.0.0",
  1081. "fileVersion": "2.1.6.0"
  1082. }
  1083. },
  1084. "compile": {
  1085. "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {}
  1086. }
  1087. },
  1088. "SSH.NET/2020.0.0-beta1": {
  1089. "dependencies": {
  1090. "SshNet.Security.Cryptography": "1.3.0"
  1091. },
  1092. "runtime": {
  1093. "lib/netstandard2.0/Renci.SshNet.dll": {
  1094. "assemblyVersion": "2020.0.0.0",
  1095. "fileVersion": "2020.0.0.0"
  1096. }
  1097. },
  1098. "compile": {
  1099. "lib/netstandard2.0/Renci.SshNet.dll": {}
  1100. }
  1101. },
  1102. "SshNet.Security.Cryptography/1.3.0": {
  1103. "runtime": {
  1104. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {
  1105. "assemblyVersion": "1.3.0.0",
  1106. "fileVersion": "1.3.0.0"
  1107. }
  1108. },
  1109. "compile": {
  1110. "lib/netstandard2.0/SshNet.Security.Cryptography.dll": {}
  1111. }
  1112. },
  1113. "StackExchange.Redis/1.2.4": {
  1114. "dependencies": {
  1115. "NETStandard.Library": "1.6.1",
  1116. "System.Collections": "4.3.0",
  1117. "System.Collections.Concurrent": "4.3.0",
  1118. "System.Collections.NonGeneric": "4.3.0",
  1119. "System.Diagnostics.Tools": "4.3.0",
  1120. "System.IO.Compression": "4.3.0",
  1121. "System.IO.FileSystem": "4.3.0",
  1122. "System.Linq": "4.3.0",
  1123. "System.Net.NameResolution": "4.3.0",
  1124. "System.Net.Security": "4.3.0",
  1125. "System.Net.Sockets": "4.3.0",
  1126. "System.Reflection.Emit": "4.7.0",
  1127. "System.Reflection.Emit.Lightweight": "4.3.0",
  1128. "System.Reflection.TypeExtensions": "4.3.0",
  1129. "System.Runtime.Extensions": "4.3.0",
  1130. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1131. "System.Security.Cryptography.Algorithms": "4.3.0",
  1132. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1133. "System.Text.RegularExpressions": "4.3.0",
  1134. "System.Threading": "4.3.0",
  1135. "System.Threading.Thread": "4.3.0",
  1136. "System.Threading.ThreadPool": "4.3.0",
  1137. "System.Threading.Timer": "4.3.0"
  1138. },
  1139. "runtime": {
  1140. "lib/netstandard1.5/StackExchange.Redis.dll": {
  1141. "assemblyVersion": "1.2.4.0",
  1142. "fileVersion": "1.2.4.0"
  1143. }
  1144. },
  1145. "compile": {
  1146. "lib/netstandard1.5/StackExchange.Redis.dll": {}
  1147. }
  1148. },
  1149. "Swashbuckle.AspNetCore/5.6.3": {
  1150. "dependencies": {
  1151. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1152. "Swashbuckle.AspNetCore.Swagger": "5.6.3",
  1153. "Swashbuckle.AspNetCore.SwaggerGen": "5.6.3",
  1154. "Swashbuckle.AspNetCore.SwaggerUI": "5.6.3"
  1155. }
  1156. },
  1157. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  1158. "dependencies": {
  1159. "Microsoft.OpenApi": "1.2.3"
  1160. },
  1161. "runtime": {
  1162. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1163. "assemblyVersion": "5.6.3.0",
  1164. "fileVersion": "5.6.3.0"
  1165. }
  1166. },
  1167. "compile": {
  1168. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  1169. }
  1170. },
  1171. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  1172. "dependencies": {
  1173. "Swashbuckle.AspNetCore.Swagger": "5.6.3"
  1174. },
  1175. "runtime": {
  1176. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1177. "assemblyVersion": "5.6.3.0",
  1178. "fileVersion": "5.6.3.0"
  1179. }
  1180. },
  1181. "compile": {
  1182. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  1183. }
  1184. },
  1185. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  1186. "runtime": {
  1187. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1188. "assemblyVersion": "5.6.3.0",
  1189. "fileVersion": "5.6.3.0"
  1190. }
  1191. },
  1192. "compile": {
  1193. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  1194. }
  1195. },
  1196. "System.AppContext/4.3.0": {
  1197. "dependencies": {
  1198. "System.Runtime": "4.3.0"
  1199. }
  1200. },
  1201. "System.Buffers/4.5.1": {},
  1202. "System.Collections/4.3.0": {
  1203. "dependencies": {
  1204. "Microsoft.NETCore.Platforms": "5.0.0",
  1205. "Microsoft.NETCore.Targets": "1.1.0",
  1206. "System.Runtime": "4.3.0"
  1207. }
  1208. },
  1209. "System.Collections.Concurrent/4.3.0": {
  1210. "dependencies": {
  1211. "System.Collections": "4.3.0",
  1212. "System.Diagnostics.Debug": "4.3.0",
  1213. "System.Diagnostics.Tracing": "4.3.0",
  1214. "System.Globalization": "4.3.0",
  1215. "System.Reflection": "4.3.0",
  1216. "System.Resources.ResourceManager": "4.3.0",
  1217. "System.Runtime": "4.3.0",
  1218. "System.Runtime.Extensions": "4.3.0",
  1219. "System.Threading": "4.3.0",
  1220. "System.Threading.Tasks": "4.3.0"
  1221. }
  1222. },
  1223. "System.Collections.Immutable/5.0.0": {},
  1224. "System.Collections.NonGeneric/4.3.0": {
  1225. "dependencies": {
  1226. "System.Diagnostics.Debug": "4.3.0",
  1227. "System.Globalization": "4.3.0",
  1228. "System.Resources.ResourceManager": "4.3.0",
  1229. "System.Runtime": "4.3.0",
  1230. "System.Runtime.Extensions": "4.3.0",
  1231. "System.Threading": "4.3.0"
  1232. }
  1233. },
  1234. "System.Collections.Specialized/4.3.0": {
  1235. "dependencies": {
  1236. "System.Collections.NonGeneric": "4.3.0",
  1237. "System.Globalization": "4.3.0",
  1238. "System.Globalization.Extensions": "4.3.0",
  1239. "System.Resources.ResourceManager": "4.3.0",
  1240. "System.Runtime": "4.3.0",
  1241. "System.Runtime.Extensions": "4.3.0",
  1242. "System.Threading": "4.3.0"
  1243. }
  1244. },
  1245. "System.ComponentModel/4.3.0": {
  1246. "dependencies": {
  1247. "System.Runtime": "4.3.0"
  1248. }
  1249. },
  1250. "System.ComponentModel.Annotations/5.0.0": {},
  1251. "System.ComponentModel.Primitives/4.3.0": {
  1252. "dependencies": {
  1253. "System.ComponentModel": "4.3.0",
  1254. "System.Resources.ResourceManager": "4.3.0",
  1255. "System.Runtime": "4.3.0"
  1256. }
  1257. },
  1258. "System.ComponentModel.TypeConverter/4.3.0": {
  1259. "dependencies": {
  1260. "System.Collections": "4.3.0",
  1261. "System.Collections.NonGeneric": "4.3.0",
  1262. "System.Collections.Specialized": "4.3.0",
  1263. "System.ComponentModel": "4.3.0",
  1264. "System.ComponentModel.Primitives": "4.3.0",
  1265. "System.Globalization": "4.3.0",
  1266. "System.Linq": "4.3.0",
  1267. "System.Reflection": "4.3.0",
  1268. "System.Reflection.Extensions": "4.3.0",
  1269. "System.Reflection.Primitives": "4.3.0",
  1270. "System.Reflection.TypeExtensions": "4.3.0",
  1271. "System.Resources.ResourceManager": "4.3.0",
  1272. "System.Runtime": "4.3.0",
  1273. "System.Runtime.Extensions": "4.3.0",
  1274. "System.Threading": "4.3.0"
  1275. }
  1276. },
  1277. "System.Configuration.ConfigurationManager/4.7.0": {
  1278. "dependencies": {
  1279. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1280. "System.Security.Permissions": "4.7.0"
  1281. },
  1282. "runtime": {
  1283. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1284. "assemblyVersion": "4.0.3.0",
  1285. "fileVersion": "4.700.19.56404"
  1286. }
  1287. },
  1288. "compile": {
  1289. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1290. }
  1291. },
  1292. "System.Console/4.3.0": {
  1293. "dependencies": {
  1294. "Microsoft.NETCore.Platforms": "5.0.0",
  1295. "Microsoft.NETCore.Targets": "1.1.0",
  1296. "System.IO": "4.3.0",
  1297. "System.Runtime": "4.3.0",
  1298. "System.Text.Encoding": "4.3.0"
  1299. }
  1300. },
  1301. "System.Diagnostics.Debug/4.3.0": {
  1302. "dependencies": {
  1303. "Microsoft.NETCore.Platforms": "5.0.0",
  1304. "Microsoft.NETCore.Targets": "1.1.0",
  1305. "System.Runtime": "4.3.0"
  1306. }
  1307. },
  1308. "System.Diagnostics.DiagnosticSource/5.0.0": {},
  1309. "System.Diagnostics.Tools/4.3.0": {
  1310. "dependencies": {
  1311. "Microsoft.NETCore.Platforms": "5.0.0",
  1312. "Microsoft.NETCore.Targets": "1.1.0",
  1313. "System.Runtime": "4.3.0"
  1314. }
  1315. },
  1316. "System.Diagnostics.TraceSource/4.3.0": {
  1317. "dependencies": {
  1318. "Microsoft.NETCore.Platforms": "5.0.0",
  1319. "System.Collections": "4.3.0",
  1320. "System.Diagnostics.Debug": "4.3.0",
  1321. "System.Globalization": "4.3.0",
  1322. "System.Resources.ResourceManager": "4.3.0",
  1323. "System.Runtime": "4.3.0",
  1324. "System.Runtime.Extensions": "4.3.0",
  1325. "System.Threading": "4.3.0",
  1326. "runtime.native.System": "4.3.0"
  1327. }
  1328. },
  1329. "System.Diagnostics.Tracing/4.3.0": {
  1330. "dependencies": {
  1331. "Microsoft.NETCore.Platforms": "5.0.0",
  1332. "Microsoft.NETCore.Targets": "1.1.0",
  1333. "System.Runtime": "4.3.0"
  1334. }
  1335. },
  1336. "System.Drawing.Common/5.0.3": {
  1337. "dependencies": {
  1338. "Microsoft.Win32.SystemEvents": "5.0.0"
  1339. },
  1340. "runtime": {
  1341. "lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1342. "assemblyVersion": "5.0.0.2",
  1343. "fileVersion": "5.0.1221.52207"
  1344. }
  1345. },
  1346. "runtimeTargets": {
  1347. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1348. "rid": "unix",
  1349. "assetType": "runtime",
  1350. "assemblyVersion": "5.0.0.2",
  1351. "fileVersion": "5.0.1221.52207"
  1352. },
  1353. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1354. "rid": "win",
  1355. "assetType": "runtime",
  1356. "assemblyVersion": "5.0.0.2",
  1357. "fileVersion": "5.0.1221.52207"
  1358. }
  1359. },
  1360. "compile": {
  1361. "ref/netcoreapp3.0/System.Drawing.Common.dll": {}
  1362. }
  1363. },
  1364. "System.Dynamic.Runtime/4.3.0": {
  1365. "dependencies": {
  1366. "System.Collections": "4.3.0",
  1367. "System.Diagnostics.Debug": "4.3.0",
  1368. "System.Linq": "4.3.0",
  1369. "System.Linq.Expressions": "4.3.0",
  1370. "System.ObjectModel": "4.3.0",
  1371. "System.Reflection": "4.3.0",
  1372. "System.Reflection.Emit": "4.7.0",
  1373. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1374. "System.Reflection.Primitives": "4.3.0",
  1375. "System.Reflection.TypeExtensions": "4.3.0",
  1376. "System.Resources.ResourceManager": "4.3.0",
  1377. "System.Runtime": "4.3.0",
  1378. "System.Runtime.Extensions": "4.3.0",
  1379. "System.Threading": "4.3.0"
  1380. }
  1381. },
  1382. "System.Globalization/4.3.0": {
  1383. "dependencies": {
  1384. "Microsoft.NETCore.Platforms": "5.0.0",
  1385. "Microsoft.NETCore.Targets": "1.1.0",
  1386. "System.Runtime": "4.3.0"
  1387. }
  1388. },
  1389. "System.Globalization.Calendars/4.3.0": {
  1390. "dependencies": {
  1391. "Microsoft.NETCore.Platforms": "5.0.0",
  1392. "Microsoft.NETCore.Targets": "1.1.0",
  1393. "System.Globalization": "4.3.0",
  1394. "System.Runtime": "4.3.0"
  1395. }
  1396. },
  1397. "System.Globalization.Extensions/4.3.0": {
  1398. "dependencies": {
  1399. "Microsoft.NETCore.Platforms": "5.0.0",
  1400. "System.Globalization": "4.3.0",
  1401. "System.Resources.ResourceManager": "4.3.0",
  1402. "System.Runtime": "4.3.0",
  1403. "System.Runtime.Extensions": "4.3.0",
  1404. "System.Runtime.InteropServices": "4.3.0"
  1405. }
  1406. },
  1407. "System.IO/4.3.0": {
  1408. "dependencies": {
  1409. "Microsoft.NETCore.Platforms": "5.0.0",
  1410. "Microsoft.NETCore.Targets": "1.1.0",
  1411. "System.Runtime": "4.3.0",
  1412. "System.Text.Encoding": "4.3.0",
  1413. "System.Threading.Tasks": "4.3.0"
  1414. }
  1415. },
  1416. "System.IO.Compression/4.3.0": {
  1417. "dependencies": {
  1418. "Microsoft.NETCore.Platforms": "5.0.0",
  1419. "System.Buffers": "4.5.1",
  1420. "System.Collections": "4.3.0",
  1421. "System.Diagnostics.Debug": "4.3.0",
  1422. "System.IO": "4.3.0",
  1423. "System.Resources.ResourceManager": "4.3.0",
  1424. "System.Runtime": "4.3.0",
  1425. "System.Runtime.Extensions": "4.3.0",
  1426. "System.Runtime.Handles": "4.3.0",
  1427. "System.Runtime.InteropServices": "4.3.0",
  1428. "System.Text.Encoding": "4.3.0",
  1429. "System.Threading": "4.3.0",
  1430. "System.Threading.Tasks": "4.3.0",
  1431. "runtime.native.System": "4.3.0",
  1432. "runtime.native.System.IO.Compression": "4.3.0"
  1433. }
  1434. },
  1435. "System.IO.Compression.ZipFile/4.3.0": {
  1436. "dependencies": {
  1437. "System.Buffers": "4.5.1",
  1438. "System.IO": "4.3.0",
  1439. "System.IO.Compression": "4.3.0",
  1440. "System.IO.FileSystem": "4.3.0",
  1441. "System.IO.FileSystem.Primitives": "4.3.0",
  1442. "System.Resources.ResourceManager": "4.3.0",
  1443. "System.Runtime": "4.3.0",
  1444. "System.Runtime.Extensions": "4.3.0",
  1445. "System.Text.Encoding": "4.3.0"
  1446. }
  1447. },
  1448. "System.IO.FileSystem/4.3.0": {
  1449. "dependencies": {
  1450. "Microsoft.NETCore.Platforms": "5.0.0",
  1451. "Microsoft.NETCore.Targets": "1.1.0",
  1452. "System.IO": "4.3.0",
  1453. "System.IO.FileSystem.Primitives": "4.3.0",
  1454. "System.Runtime": "4.3.0",
  1455. "System.Runtime.Handles": "4.3.0",
  1456. "System.Text.Encoding": "4.3.0",
  1457. "System.Threading.Tasks": "4.3.0"
  1458. }
  1459. },
  1460. "System.IO.FileSystem.Primitives/4.3.0": {
  1461. "dependencies": {
  1462. "System.Runtime": "4.3.0"
  1463. }
  1464. },
  1465. "System.IO.Pipelines/5.0.0": {},
  1466. "System.Linq/4.3.0": {
  1467. "dependencies": {
  1468. "System.Collections": "4.3.0",
  1469. "System.Diagnostics.Debug": "4.3.0",
  1470. "System.Resources.ResourceManager": "4.3.0",
  1471. "System.Runtime": "4.3.0",
  1472. "System.Runtime.Extensions": "4.3.0"
  1473. }
  1474. },
  1475. "System.Linq.Expressions/4.3.0": {
  1476. "dependencies": {
  1477. "System.Collections": "4.3.0",
  1478. "System.Diagnostics.Debug": "4.3.0",
  1479. "System.Globalization": "4.3.0",
  1480. "System.IO": "4.3.0",
  1481. "System.Linq": "4.3.0",
  1482. "System.ObjectModel": "4.3.0",
  1483. "System.Reflection": "4.3.0",
  1484. "System.Reflection.Emit": "4.7.0",
  1485. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1486. "System.Reflection.Emit.Lightweight": "4.3.0",
  1487. "System.Reflection.Extensions": "4.3.0",
  1488. "System.Reflection.Primitives": "4.3.0",
  1489. "System.Reflection.TypeExtensions": "4.3.0",
  1490. "System.Resources.ResourceManager": "4.3.0",
  1491. "System.Runtime": "4.3.0",
  1492. "System.Runtime.Extensions": "4.3.0",
  1493. "System.Threading": "4.3.0"
  1494. }
  1495. },
  1496. "System.Memory/4.5.5": {},
  1497. "System.Net.Http/4.3.0": {
  1498. "dependencies": {
  1499. "Microsoft.NETCore.Platforms": "5.0.0",
  1500. "System.Collections": "4.3.0",
  1501. "System.Diagnostics.Debug": "4.3.0",
  1502. "System.Diagnostics.DiagnosticSource": "5.0.0",
  1503. "System.Diagnostics.Tracing": "4.3.0",
  1504. "System.Globalization": "4.3.0",
  1505. "System.Globalization.Extensions": "4.3.0",
  1506. "System.IO": "4.3.0",
  1507. "System.IO.FileSystem": "4.3.0",
  1508. "System.Net.Primitives": "4.3.0",
  1509. "System.Resources.ResourceManager": "4.3.0",
  1510. "System.Runtime": "4.3.0",
  1511. "System.Runtime.Extensions": "4.3.0",
  1512. "System.Runtime.Handles": "4.3.0",
  1513. "System.Runtime.InteropServices": "4.3.0",
  1514. "System.Security.Cryptography.Algorithms": "4.3.0",
  1515. "System.Security.Cryptography.Encoding": "4.3.0",
  1516. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1517. "System.Security.Cryptography.Primitives": "4.3.0",
  1518. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1519. "System.Text.Encoding": "4.3.0",
  1520. "System.Threading": "4.3.0",
  1521. "System.Threading.Tasks": "4.3.0",
  1522. "runtime.native.System": "4.3.0",
  1523. "runtime.native.System.Net.Http": "4.3.0",
  1524. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1525. }
  1526. },
  1527. "System.Net.NameResolution/4.3.0": {
  1528. "dependencies": {
  1529. "Microsoft.NETCore.Platforms": "5.0.0",
  1530. "System.Collections": "4.3.0",
  1531. "System.Diagnostics.Tracing": "4.3.0",
  1532. "System.Globalization": "4.3.0",
  1533. "System.Net.Primitives": "4.3.0",
  1534. "System.Resources.ResourceManager": "4.3.0",
  1535. "System.Runtime": "4.3.0",
  1536. "System.Runtime.Extensions": "4.3.0",
  1537. "System.Runtime.Handles": "4.3.0",
  1538. "System.Runtime.InteropServices": "4.3.0",
  1539. "System.Security.Principal.Windows": "4.7.0",
  1540. "System.Threading": "4.3.0",
  1541. "System.Threading.Tasks": "4.3.0",
  1542. "runtime.native.System": "4.3.0"
  1543. }
  1544. },
  1545. "System.Net.Primitives/4.3.0": {
  1546. "dependencies": {
  1547. "Microsoft.NETCore.Platforms": "5.0.0",
  1548. "Microsoft.NETCore.Targets": "1.1.0",
  1549. "System.Runtime": "4.3.0",
  1550. "System.Runtime.Handles": "4.3.0"
  1551. }
  1552. },
  1553. "System.Net.Security/4.3.0": {
  1554. "dependencies": {
  1555. "Microsoft.NETCore.Platforms": "5.0.0",
  1556. "Microsoft.Win32.Primitives": "4.3.0",
  1557. "System.Collections": "4.3.0",
  1558. "System.Collections.Concurrent": "4.3.0",
  1559. "System.Diagnostics.Tracing": "4.3.0",
  1560. "System.Globalization": "4.3.0",
  1561. "System.Globalization.Extensions": "4.3.0",
  1562. "System.IO": "4.3.0",
  1563. "System.Net.Primitives": "4.3.0",
  1564. "System.Resources.ResourceManager": "4.3.0",
  1565. "System.Runtime": "4.3.0",
  1566. "System.Runtime.Extensions": "4.3.0",
  1567. "System.Runtime.Handles": "4.3.0",
  1568. "System.Runtime.InteropServices": "4.3.0",
  1569. "System.Security.Claims": "4.3.0",
  1570. "System.Security.Cryptography.Algorithms": "4.3.0",
  1571. "System.Security.Cryptography.Encoding": "4.3.0",
  1572. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1573. "System.Security.Cryptography.Primitives": "4.3.0",
  1574. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1575. "System.Security.Principal": "4.3.0",
  1576. "System.Text.Encoding": "4.3.0",
  1577. "System.Threading": "4.3.0",
  1578. "System.Threading.Tasks": "4.3.0",
  1579. "System.Threading.ThreadPool": "4.3.0",
  1580. "runtime.native.System": "4.3.0",
  1581. "runtime.native.System.Net.Security": "4.3.0",
  1582. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1583. }
  1584. },
  1585. "System.Net.Sockets/4.3.0": {
  1586. "dependencies": {
  1587. "Microsoft.NETCore.Platforms": "5.0.0",
  1588. "Microsoft.NETCore.Targets": "1.1.0",
  1589. "System.IO": "4.3.0",
  1590. "System.Net.Primitives": "4.3.0",
  1591. "System.Runtime": "4.3.0",
  1592. "System.Threading.Tasks": "4.3.0"
  1593. }
  1594. },
  1595. "System.ObjectModel/4.3.0": {
  1596. "dependencies": {
  1597. "System.Collections": "4.3.0",
  1598. "System.Diagnostics.Debug": "4.3.0",
  1599. "System.Resources.ResourceManager": "4.3.0",
  1600. "System.Runtime": "4.3.0",
  1601. "System.Threading": "4.3.0"
  1602. }
  1603. },
  1604. "System.Reflection/4.3.0": {
  1605. "dependencies": {
  1606. "Microsoft.NETCore.Platforms": "5.0.0",
  1607. "Microsoft.NETCore.Targets": "1.1.0",
  1608. "System.IO": "4.3.0",
  1609. "System.Reflection.Primitives": "4.3.0",
  1610. "System.Runtime": "4.3.0"
  1611. }
  1612. },
  1613. "System.Reflection.Emit/4.7.0": {},
  1614. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1615. "dependencies": {
  1616. "System.Reflection": "4.3.0",
  1617. "System.Reflection.Primitives": "4.3.0",
  1618. "System.Runtime": "4.3.0"
  1619. }
  1620. },
  1621. "System.Reflection.Emit.Lightweight/4.3.0": {
  1622. "dependencies": {
  1623. "System.Reflection": "4.3.0",
  1624. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1625. "System.Reflection.Primitives": "4.3.0",
  1626. "System.Runtime": "4.3.0"
  1627. }
  1628. },
  1629. "System.Reflection.Extensions/4.3.0": {
  1630. "dependencies": {
  1631. "Microsoft.NETCore.Platforms": "5.0.0",
  1632. "Microsoft.NETCore.Targets": "1.1.0",
  1633. "System.Reflection": "4.3.0",
  1634. "System.Runtime": "4.3.0"
  1635. }
  1636. },
  1637. "System.Reflection.Primitives/4.3.0": {
  1638. "dependencies": {
  1639. "Microsoft.NETCore.Platforms": "5.0.0",
  1640. "Microsoft.NETCore.Targets": "1.1.0",
  1641. "System.Runtime": "4.3.0"
  1642. }
  1643. },
  1644. "System.Reflection.TypeExtensions/4.3.0": {
  1645. "dependencies": {
  1646. "System.Reflection": "4.3.0",
  1647. "System.Runtime": "4.3.0"
  1648. }
  1649. },
  1650. "System.Resources.ResourceManager/4.3.0": {
  1651. "dependencies": {
  1652. "Microsoft.NETCore.Platforms": "5.0.0",
  1653. "Microsoft.NETCore.Targets": "1.1.0",
  1654. "System.Globalization": "4.3.0",
  1655. "System.Reflection": "4.3.0",
  1656. "System.Runtime": "4.3.0"
  1657. }
  1658. },
  1659. "System.Runtime/4.3.0": {
  1660. "dependencies": {
  1661. "Microsoft.NETCore.Platforms": "5.0.0",
  1662. "Microsoft.NETCore.Targets": "1.1.0"
  1663. }
  1664. },
  1665. "System.Runtime.CompilerServices.Unsafe/5.0.0": {},
  1666. "System.Runtime.Extensions/4.3.0": {
  1667. "dependencies": {
  1668. "Microsoft.NETCore.Platforms": "5.0.0",
  1669. "Microsoft.NETCore.Targets": "1.1.0",
  1670. "System.Runtime": "4.3.0"
  1671. }
  1672. },
  1673. "System.Runtime.Handles/4.3.0": {
  1674. "dependencies": {
  1675. "Microsoft.NETCore.Platforms": "5.0.0",
  1676. "Microsoft.NETCore.Targets": "1.1.0",
  1677. "System.Runtime": "4.3.0"
  1678. }
  1679. },
  1680. "System.Runtime.InteropServices/4.3.0": {
  1681. "dependencies": {
  1682. "Microsoft.NETCore.Platforms": "5.0.0",
  1683. "Microsoft.NETCore.Targets": "1.1.0",
  1684. "System.Reflection": "4.3.0",
  1685. "System.Reflection.Primitives": "4.3.0",
  1686. "System.Runtime": "4.3.0",
  1687. "System.Runtime.Handles": "4.3.0"
  1688. }
  1689. },
  1690. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  1691. "dependencies": {
  1692. "System.Reflection": "4.3.0",
  1693. "System.Reflection.Extensions": "4.3.0",
  1694. "System.Resources.ResourceManager": "4.3.0",
  1695. "System.Runtime": "4.3.0",
  1696. "System.Runtime.InteropServices": "4.3.0",
  1697. "System.Threading": "4.3.0",
  1698. "runtime.native.System": "4.3.0"
  1699. }
  1700. },
  1701. "System.Runtime.Numerics/4.3.0": {
  1702. "dependencies": {
  1703. "System.Globalization": "4.3.0",
  1704. "System.Resources.ResourceManager": "4.3.0",
  1705. "System.Runtime": "4.3.0",
  1706. "System.Runtime.Extensions": "4.3.0"
  1707. }
  1708. },
  1709. "System.Security.AccessControl/4.7.0": {
  1710. "dependencies": {
  1711. "Microsoft.NETCore.Platforms": "5.0.0",
  1712. "System.Security.Principal.Windows": "4.7.0"
  1713. }
  1714. },
  1715. "System.Security.Claims/4.3.0": {
  1716. "dependencies": {
  1717. "System.Collections": "4.3.0",
  1718. "System.Globalization": "4.3.0",
  1719. "System.IO": "4.3.0",
  1720. "System.Resources.ResourceManager": "4.3.0",
  1721. "System.Runtime": "4.3.0",
  1722. "System.Runtime.Extensions": "4.3.0",
  1723. "System.Security.Principal": "4.3.0"
  1724. }
  1725. },
  1726. "System.Security.Cryptography.Algorithms/4.3.0": {
  1727. "dependencies": {
  1728. "Microsoft.NETCore.Platforms": "5.0.0",
  1729. "System.Collections": "4.3.0",
  1730. "System.IO": "4.3.0",
  1731. "System.Resources.ResourceManager": "4.3.0",
  1732. "System.Runtime": "4.3.0",
  1733. "System.Runtime.Extensions": "4.3.0",
  1734. "System.Runtime.Handles": "4.3.0",
  1735. "System.Runtime.InteropServices": "4.3.0",
  1736. "System.Runtime.Numerics": "4.3.0",
  1737. "System.Security.Cryptography.Encoding": "4.3.0",
  1738. "System.Security.Cryptography.Primitives": "4.3.0",
  1739. "System.Text.Encoding": "4.3.0",
  1740. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  1741. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1742. }
  1743. },
  1744. "System.Security.Cryptography.Cng/4.3.0": {
  1745. "dependencies": {
  1746. "Microsoft.NETCore.Platforms": "5.0.0",
  1747. "System.IO": "4.3.0",
  1748. "System.Resources.ResourceManager": "4.3.0",
  1749. "System.Runtime": "4.3.0",
  1750. "System.Runtime.Extensions": "4.3.0",
  1751. "System.Runtime.Handles": "4.3.0",
  1752. "System.Runtime.InteropServices": "4.3.0",
  1753. "System.Security.Cryptography.Algorithms": "4.3.0",
  1754. "System.Security.Cryptography.Encoding": "4.3.0",
  1755. "System.Security.Cryptography.Primitives": "4.3.0",
  1756. "System.Text.Encoding": "4.3.0"
  1757. }
  1758. },
  1759. "System.Security.Cryptography.Csp/4.3.0": {
  1760. "dependencies": {
  1761. "Microsoft.NETCore.Platforms": "5.0.0",
  1762. "System.IO": "4.3.0",
  1763. "System.Reflection": "4.3.0",
  1764. "System.Resources.ResourceManager": "4.3.0",
  1765. "System.Runtime": "4.3.0",
  1766. "System.Runtime.Extensions": "4.3.0",
  1767. "System.Runtime.Handles": "4.3.0",
  1768. "System.Runtime.InteropServices": "4.3.0",
  1769. "System.Security.Cryptography.Algorithms": "4.3.0",
  1770. "System.Security.Cryptography.Encoding": "4.3.0",
  1771. "System.Security.Cryptography.Primitives": "4.3.0",
  1772. "System.Text.Encoding": "4.3.0",
  1773. "System.Threading": "4.3.0"
  1774. }
  1775. },
  1776. "System.Security.Cryptography.Encoding/4.3.0": {
  1777. "dependencies": {
  1778. "Microsoft.NETCore.Platforms": "5.0.0",
  1779. "System.Collections": "4.3.0",
  1780. "System.Collections.Concurrent": "4.3.0",
  1781. "System.Linq": "4.3.0",
  1782. "System.Resources.ResourceManager": "4.3.0",
  1783. "System.Runtime": "4.3.0",
  1784. "System.Runtime.Extensions": "4.3.0",
  1785. "System.Runtime.Handles": "4.3.0",
  1786. "System.Runtime.InteropServices": "4.3.0",
  1787. "System.Security.Cryptography.Primitives": "4.3.0",
  1788. "System.Text.Encoding": "4.3.0",
  1789. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1790. }
  1791. },
  1792. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1793. "dependencies": {
  1794. "System.Collections": "4.3.0",
  1795. "System.IO": "4.3.0",
  1796. "System.Resources.ResourceManager": "4.3.0",
  1797. "System.Runtime": "4.3.0",
  1798. "System.Runtime.Extensions": "4.3.0",
  1799. "System.Runtime.Handles": "4.3.0",
  1800. "System.Runtime.InteropServices": "4.3.0",
  1801. "System.Runtime.Numerics": "4.3.0",
  1802. "System.Security.Cryptography.Algorithms": "4.3.0",
  1803. "System.Security.Cryptography.Encoding": "4.3.0",
  1804. "System.Security.Cryptography.Primitives": "4.3.0",
  1805. "System.Text.Encoding": "4.3.0",
  1806. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1807. }
  1808. },
  1809. "System.Security.Cryptography.Primitives/4.3.0": {
  1810. "dependencies": {
  1811. "System.Diagnostics.Debug": "4.3.0",
  1812. "System.Globalization": "4.3.0",
  1813. "System.IO": "4.3.0",
  1814. "System.Resources.ResourceManager": "4.3.0",
  1815. "System.Runtime": "4.3.0",
  1816. "System.Threading": "4.3.0",
  1817. "System.Threading.Tasks": "4.3.0"
  1818. }
  1819. },
  1820. "System.Security.Cryptography.ProtectedData/4.7.0": {
  1821. "runtime": {
  1822. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1823. "assemblyVersion": "4.0.5.0",
  1824. "fileVersion": "4.700.19.56404"
  1825. }
  1826. },
  1827. "runtimeTargets": {
  1828. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1829. "rid": "win",
  1830. "assetType": "runtime",
  1831. "assemblyVersion": "4.0.5.0",
  1832. "fileVersion": "4.700.19.56404"
  1833. }
  1834. }
  1835. },
  1836. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1837. "dependencies": {
  1838. "Microsoft.NETCore.Platforms": "5.0.0",
  1839. "System.Collections": "4.3.0",
  1840. "System.Diagnostics.Debug": "4.3.0",
  1841. "System.Globalization": "4.3.0",
  1842. "System.Globalization.Calendars": "4.3.0",
  1843. "System.IO": "4.3.0",
  1844. "System.IO.FileSystem": "4.3.0",
  1845. "System.IO.FileSystem.Primitives": "4.3.0",
  1846. "System.Resources.ResourceManager": "4.3.0",
  1847. "System.Runtime": "4.3.0",
  1848. "System.Runtime.Extensions": "4.3.0",
  1849. "System.Runtime.Handles": "4.3.0",
  1850. "System.Runtime.InteropServices": "4.3.0",
  1851. "System.Runtime.Numerics": "4.3.0",
  1852. "System.Security.Cryptography.Algorithms": "4.3.0",
  1853. "System.Security.Cryptography.Cng": "4.3.0",
  1854. "System.Security.Cryptography.Csp": "4.3.0",
  1855. "System.Security.Cryptography.Encoding": "4.3.0",
  1856. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1857. "System.Security.Cryptography.Primitives": "4.3.0",
  1858. "System.Text.Encoding": "4.3.0",
  1859. "System.Threading": "4.3.0",
  1860. "runtime.native.System": "4.3.0",
  1861. "runtime.native.System.Net.Http": "4.3.0",
  1862. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1863. }
  1864. },
  1865. "System.Security.Permissions/4.7.0": {
  1866. "dependencies": {
  1867. "System.Security.AccessControl": "4.7.0",
  1868. "System.Windows.Extensions": "4.7.0"
  1869. }
  1870. },
  1871. "System.Security.Principal/4.3.0": {
  1872. "dependencies": {
  1873. "System.Runtime": "4.3.0"
  1874. }
  1875. },
  1876. "System.Security.Principal.Windows/4.7.0": {},
  1877. "System.Text.Encoding/4.3.0": {
  1878. "dependencies": {
  1879. "Microsoft.NETCore.Platforms": "5.0.0",
  1880. "Microsoft.NETCore.Targets": "1.1.0",
  1881. "System.Runtime": "4.3.0"
  1882. }
  1883. },
  1884. "System.Text.Encoding.CodePages/5.0.0": {
  1885. "dependencies": {
  1886. "Microsoft.NETCore.Platforms": "5.0.0"
  1887. }
  1888. },
  1889. "System.Text.Encoding.Extensions/4.3.0": {
  1890. "dependencies": {
  1891. "Microsoft.NETCore.Platforms": "5.0.0",
  1892. "Microsoft.NETCore.Targets": "1.1.0",
  1893. "System.Runtime": "4.3.0",
  1894. "System.Text.Encoding": "4.3.0"
  1895. }
  1896. },
  1897. "System.Text.Encodings.Web/4.5.0": {},
  1898. "System.Text.RegularExpressions/4.3.0": {
  1899. "dependencies": {
  1900. "System.Runtime": "4.3.0"
  1901. }
  1902. },
  1903. "System.Threading/4.3.0": {
  1904. "dependencies": {
  1905. "System.Runtime": "4.3.0",
  1906. "System.Threading.Tasks": "4.3.0"
  1907. }
  1908. },
  1909. "System.Threading.Channels/7.0.0": {
  1910. "runtime": {
  1911. "lib/netstandard2.1/System.Threading.Channels.dll": {
  1912. "assemblyVersion": "7.0.0.0",
  1913. "fileVersion": "7.0.22.51805"
  1914. }
  1915. },
  1916. "compile": {
  1917. "lib/netstandard2.1/System.Threading.Channels.dll": {}
  1918. }
  1919. },
  1920. "System.Threading.Tasks/4.3.0": {
  1921. "dependencies": {
  1922. "Microsoft.NETCore.Platforms": "5.0.0",
  1923. "Microsoft.NETCore.Targets": "1.1.0",
  1924. "System.Runtime": "4.3.0"
  1925. }
  1926. },
  1927. "System.Threading.Tasks.Extensions/4.3.0": {
  1928. "dependencies": {
  1929. "System.Collections": "4.3.0",
  1930. "System.Runtime": "4.3.0",
  1931. "System.Threading.Tasks": "4.3.0"
  1932. }
  1933. },
  1934. "System.Threading.Thread/4.3.0": {
  1935. "dependencies": {
  1936. "System.Runtime": "4.3.0"
  1937. }
  1938. },
  1939. "System.Threading.ThreadPool/4.3.0": {
  1940. "dependencies": {
  1941. "System.Runtime": "4.3.0",
  1942. "System.Runtime.Handles": "4.3.0"
  1943. }
  1944. },
  1945. "System.Threading.Timer/4.3.0": {
  1946. "dependencies": {
  1947. "Microsoft.NETCore.Platforms": "5.0.0",
  1948. "Microsoft.NETCore.Targets": "1.1.0",
  1949. "System.Runtime": "4.3.0"
  1950. }
  1951. },
  1952. "System.Windows.Extensions/4.7.0": {
  1953. "dependencies": {
  1954. "System.Drawing.Common": "5.0.3"
  1955. }
  1956. },
  1957. "System.Xml.ReaderWriter/4.3.0": {
  1958. "dependencies": {
  1959. "System.Collections": "4.3.0",
  1960. "System.Diagnostics.Debug": "4.3.0",
  1961. "System.Globalization": "4.3.0",
  1962. "System.IO": "4.3.0",
  1963. "System.IO.FileSystem": "4.3.0",
  1964. "System.IO.FileSystem.Primitives": "4.3.0",
  1965. "System.Resources.ResourceManager": "4.3.0",
  1966. "System.Runtime": "4.3.0",
  1967. "System.Runtime.Extensions": "4.3.0",
  1968. "System.Runtime.InteropServices": "4.3.0",
  1969. "System.Text.Encoding": "4.3.0",
  1970. "System.Text.Encoding.Extensions": "4.3.0",
  1971. "System.Text.RegularExpressions": "4.3.0",
  1972. "System.Threading.Tasks": "4.3.0",
  1973. "System.Threading.Tasks.Extensions": "4.3.0"
  1974. }
  1975. },
  1976. "System.Xml.XDocument/4.3.0": {
  1977. "dependencies": {
  1978. "System.Collections": "4.3.0",
  1979. "System.Diagnostics.Debug": "4.3.0",
  1980. "System.Diagnostics.Tools": "4.3.0",
  1981. "System.Globalization": "4.3.0",
  1982. "System.IO": "4.3.0",
  1983. "System.Reflection": "4.3.0",
  1984. "System.Resources.ResourceManager": "4.3.0",
  1985. "System.Runtime": "4.3.0",
  1986. "System.Runtime.Extensions": "4.3.0",
  1987. "System.Text.Encoding": "4.3.0",
  1988. "System.Threading": "4.3.0",
  1989. "System.Xml.ReaderWriter": "4.3.0"
  1990. }
  1991. },
  1992. "System.Xml.XmlDocument/4.3.0": {
  1993. "dependencies": {
  1994. "System.Collections": "4.3.0",
  1995. "System.Diagnostics.Debug": "4.3.0",
  1996. "System.Globalization": "4.3.0",
  1997. "System.IO": "4.3.0",
  1998. "System.Resources.ResourceManager": "4.3.0",
  1999. "System.Runtime": "4.3.0",
  2000. "System.Runtime.Extensions": "4.3.0",
  2001. "System.Text.Encoding": "4.3.0",
  2002. "System.Threading": "4.3.0",
  2003. "System.Xml.ReaderWriter": "4.3.0"
  2004. }
  2005. },
  2006. "ZXing.Net/0.16.9": {
  2007. "runtime": {
  2008. "lib/net5.0/zxing.dll": {
  2009. "assemblyVersion": "0.16.9.0",
  2010. "fileVersion": "0.16.9.0"
  2011. }
  2012. },
  2013. "compile": {
  2014. "lib/net5.0/zxing.dll": {}
  2015. }
  2016. },
  2017. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  2018. "dependencies": {
  2019. "SixLabors.ImageSharp": "2.1.6",
  2020. "ZXing.Net": "0.16.9"
  2021. },
  2022. "runtime": {
  2023. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {
  2024. "assemblyVersion": "0.16.15.0",
  2025. "fileVersion": "0.16.15.0"
  2026. }
  2027. },
  2028. "compile": {
  2029. "lib/netcoreapp3.1/ZXing.ImageSharp.V2.dll": {}
  2030. }
  2031. },
  2032. "Ropin.Core.Common/1.0.0": {
  2033. "dependencies": {
  2034. "Coravel": "4.2.1",
  2035. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  2036. "Newtonsoft.Json": "13.0.3",
  2037. "QRCoder": "1.4.3",
  2038. "SixLabors.ImageSharp": "2.1.6",
  2039. "ZXing.Net.Bindings.ImageSharp.V2": "0.16.15"
  2040. },
  2041. "runtime": {
  2042. "Ropin.Core.Common.dll": {}
  2043. },
  2044. "compile": {
  2045. "Ropin.Core.Common.dll": {}
  2046. }
  2047. },
  2048. "Ropin.Core.Extensions/1.0.0": {
  2049. "dependencies": {
  2050. "Autofac": "6.2.0",
  2051. "Autofac.Extras.DynamicProxy": "6.0.0",
  2052. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  2053. "Ropin.Core.Common": "1.0.0",
  2054. "Ropin.Inspection.Common": "1.0.0",
  2055. "Ropin.Inspection.Service": "1.0.0",
  2056. "Ropin.Inspection.Tasks": "1.0.0",
  2057. "StackExchange.Redis": "1.2.4",
  2058. "log4net": "2.0.17"
  2059. },
  2060. "runtime": {
  2061. "Ropin.Core.Extensions.dll": {}
  2062. },
  2063. "compile": {
  2064. "Ropin.Core.Extensions.dll": {}
  2065. }
  2066. },
  2067. "Ropin.Inspection.Common/1.0.0": {
  2068. "dependencies": {
  2069. "FluentEmail.Smtp": "3.0.2",
  2070. "JavaScriptEngineSwitcher.ChakraCore": "3.21.0",
  2071. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64": "3.21.0",
  2072. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64": "3.21.0",
  2073. "JavaScriptEngineSwitcher.Core": "3.21.0",
  2074. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  2075. "Microsoft.AspNetCore.NodeServices": "3.1.30",
  2076. "Microsoft.Extensions.Configuration": "5.0.0",
  2077. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
  2078. "Microsoft.Extensions.Configuration.Binder": "5.0.0",
  2079. "Microsoft.Extensions.Configuration.Json": "5.0.0",
  2080. "Microsoft.Extensions.Http": "5.0.0",
  2081. "Newtonsoft.Json": "13.0.3",
  2082. "RabbitMQ.Client": "6.8.1",
  2083. "log4net": "2.0.17"
  2084. },
  2085. "runtime": {
  2086. "Ropin.Inspection.Common.dll": {}
  2087. },
  2088. "compile": {
  2089. "Ropin.Inspection.Common.dll": {}
  2090. }
  2091. },
  2092. "Ropin.Inspection.Model/1.0.0": {
  2093. "dependencies": {
  2094. "Microsoft.AspNetCore.Http.Features": "5.0.0",
  2095. "Microsoft.EntityFrameworkCore": "5.0.0",
  2096. "MySql.Data": "8.0.23",
  2097. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  2098. "Ropin.Inspection.Common": "1.0.0"
  2099. },
  2100. "runtime": {
  2101. "Ropin.Inspection.Model.dll": {}
  2102. },
  2103. "compile": {
  2104. "Ropin.Inspection.Model.dll": {}
  2105. }
  2106. },
  2107. "Ropin.Inspection.Repository/1.0.0": {
  2108. "dependencies": {
  2109. "LinqKit.Microsoft.EntityFrameworkCore": "5.0.24",
  2110. "Microsoft.EntityFrameworkCore": "5.0.0",
  2111. "Ropin.Inspection.Model": "1.0.0"
  2112. },
  2113. "runtime": {
  2114. "Ropin.Inspection.Repository.dll": {}
  2115. },
  2116. "compile": {
  2117. "Ropin.Inspection.Repository.dll": {}
  2118. }
  2119. },
  2120. "Ropin.Inspection.Service/1.0.0": {
  2121. "dependencies": {
  2122. "AutoMapper": "10.1.1",
  2123. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  2124. "Newtonsoft.Json": "13.0.3",
  2125. "Ropin.Core.Common": "1.0.0",
  2126. "Ropin.Inspection.Common": "1.0.0",
  2127. "Ropin.Inspection.Model": "1.0.0",
  2128. "Ropin.Inspection.Repository": "1.0.0",
  2129. "log4net": "2.0.17"
  2130. },
  2131. "runtime": {
  2132. "Ropin.Inspection.Service.dll": {}
  2133. },
  2134. "compile": {
  2135. "Ropin.Inspection.Service.dll": {}
  2136. }
  2137. },
  2138. "Ropin.Inspection.Tasks/1.0.0": {
  2139. "dependencies": {
  2140. "Quartz": "3.3.3",
  2141. "Ropin.Inspection.Common": "1.0.0",
  2142. "Ropin.Inspection.Model": "1.0.0",
  2143. "Ropin.Inspection.Service": "1.0.0"
  2144. },
  2145. "runtime": {
  2146. "Ropin.Inspection.Tasks.dll": {}
  2147. },
  2148. "compile": {
  2149. "Ropin.Inspection.Tasks.dll": {}
  2150. }
  2151. },
  2152. "Microsoft.AspNetCore.Antiforgery/5.0.0.0": {
  2153. "compile": {
  2154. "Microsoft.AspNetCore.Antiforgery.dll": {}
  2155. },
  2156. "compileOnly": true
  2157. },
  2158. "Microsoft.AspNetCore.Authentication.Abstractions/5.0.0.0": {
  2159. "compile": {
  2160. "Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
  2161. },
  2162. "compileOnly": true
  2163. },
  2164. "Microsoft.AspNetCore.Authentication.Cookies/5.0.0.0": {
  2165. "compile": {
  2166. "Microsoft.AspNetCore.Authentication.Cookies.dll": {}
  2167. },
  2168. "compileOnly": true
  2169. },
  2170. "Microsoft.AspNetCore.Authentication.Core/5.0.0.0": {
  2171. "compile": {
  2172. "Microsoft.AspNetCore.Authentication.Core.dll": {}
  2173. },
  2174. "compileOnly": true
  2175. },
  2176. "Microsoft.AspNetCore.Authentication/5.0.0.0": {
  2177. "compile": {
  2178. "Microsoft.AspNetCore.Authentication.dll": {}
  2179. },
  2180. "compileOnly": true
  2181. },
  2182. "Microsoft.AspNetCore.Authentication.OAuth/5.0.0.0": {
  2183. "compile": {
  2184. "Microsoft.AspNetCore.Authentication.OAuth.dll": {}
  2185. },
  2186. "compileOnly": true
  2187. },
  2188. "Microsoft.AspNetCore.Authorization/5.0.0.0": {
  2189. "compile": {
  2190. "Microsoft.AspNetCore.Authorization.dll": {}
  2191. },
  2192. "compileOnly": true
  2193. },
  2194. "Microsoft.AspNetCore.Authorization.Policy/5.0.0.0": {
  2195. "compile": {
  2196. "Microsoft.AspNetCore.Authorization.Policy.dll": {}
  2197. },
  2198. "compileOnly": true
  2199. },
  2200. "Microsoft.AspNetCore.Components.Authorization/5.0.0.0": {
  2201. "compile": {
  2202. "Microsoft.AspNetCore.Components.Authorization.dll": {}
  2203. },
  2204. "compileOnly": true
  2205. },
  2206. "Microsoft.AspNetCore.Components/5.0.0.0": {
  2207. "compile": {
  2208. "Microsoft.AspNetCore.Components.dll": {}
  2209. },
  2210. "compileOnly": true
  2211. },
  2212. "Microsoft.AspNetCore.Components.Forms/5.0.0.0": {
  2213. "compile": {
  2214. "Microsoft.AspNetCore.Components.Forms.dll": {}
  2215. },
  2216. "compileOnly": true
  2217. },
  2218. "Microsoft.AspNetCore.Components.Server/5.0.0.0": {
  2219. "compile": {
  2220. "Microsoft.AspNetCore.Components.Server.dll": {}
  2221. },
  2222. "compileOnly": true
  2223. },
  2224. "Microsoft.AspNetCore.Components.Web/5.0.0.0": {
  2225. "compile": {
  2226. "Microsoft.AspNetCore.Components.Web.dll": {}
  2227. },
  2228. "compileOnly": true
  2229. },
  2230. "Microsoft.AspNetCore.Connections.Abstractions/5.0.0.0": {
  2231. "compile": {
  2232. "Microsoft.AspNetCore.Connections.Abstractions.dll": {}
  2233. },
  2234. "compileOnly": true
  2235. },
  2236. "Microsoft.AspNetCore.CookiePolicy/5.0.0.0": {
  2237. "compile": {
  2238. "Microsoft.AspNetCore.CookiePolicy.dll": {}
  2239. },
  2240. "compileOnly": true
  2241. },
  2242. "Microsoft.AspNetCore.Cors/5.0.0.0": {
  2243. "compile": {
  2244. "Microsoft.AspNetCore.Cors.dll": {}
  2245. },
  2246. "compileOnly": true
  2247. },
  2248. "Microsoft.AspNetCore.Cryptography.Internal/5.0.0.0": {
  2249. "compile": {
  2250. "Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  2251. },
  2252. "compileOnly": true
  2253. },
  2254. "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.0.0": {
  2255. "compile": {
  2256. "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  2257. },
  2258. "compileOnly": true
  2259. },
  2260. "Microsoft.AspNetCore.DataProtection.Abstractions/5.0.0.0": {
  2261. "compile": {
  2262. "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  2263. },
  2264. "compileOnly": true
  2265. },
  2266. "Microsoft.AspNetCore.DataProtection/5.0.0.0": {
  2267. "compile": {
  2268. "Microsoft.AspNetCore.DataProtection.dll": {}
  2269. },
  2270. "compileOnly": true
  2271. },
  2272. "Microsoft.AspNetCore.DataProtection.Extensions/5.0.0.0": {
  2273. "compile": {
  2274. "Microsoft.AspNetCore.DataProtection.Extensions.dll": {}
  2275. },
  2276. "compileOnly": true
  2277. },
  2278. "Microsoft.AspNetCore.Diagnostics.Abstractions/5.0.0.0": {
  2279. "compile": {
  2280. "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  2281. },
  2282. "compileOnly": true
  2283. },
  2284. "Microsoft.AspNetCore.Diagnostics/5.0.0.0": {
  2285. "compile": {
  2286. "Microsoft.AspNetCore.Diagnostics.dll": {}
  2287. },
  2288. "compileOnly": true
  2289. },
  2290. "Microsoft.AspNetCore.Diagnostics.HealthChecks/5.0.0.0": {
  2291. "compile": {
  2292. "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {}
  2293. },
  2294. "compileOnly": true
  2295. },
  2296. "Microsoft.AspNetCore/5.0.0.0": {
  2297. "compile": {
  2298. "Microsoft.AspNetCore.dll": {}
  2299. },
  2300. "compileOnly": true
  2301. },
  2302. "Microsoft.AspNetCore.HostFiltering/5.0.0.0": {
  2303. "compile": {
  2304. "Microsoft.AspNetCore.HostFiltering.dll": {}
  2305. },
  2306. "compileOnly": true
  2307. },
  2308. "Microsoft.AspNetCore.Hosting.Abstractions/5.0.0.0": {
  2309. "compile": {
  2310. "Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  2311. },
  2312. "compileOnly": true
  2313. },
  2314. "Microsoft.AspNetCore.Hosting/5.0.0.0": {
  2315. "compile": {
  2316. "Microsoft.AspNetCore.Hosting.dll": {}
  2317. },
  2318. "compileOnly": true
  2319. },
  2320. "Microsoft.AspNetCore.Hosting.Server.Abstractions/5.0.0.0": {
  2321. "compile": {
  2322. "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  2323. },
  2324. "compileOnly": true
  2325. },
  2326. "Microsoft.AspNetCore.Html.Abstractions/5.0.0.0": {
  2327. "compile": {
  2328. "Microsoft.AspNetCore.Html.Abstractions.dll": {}
  2329. },
  2330. "compileOnly": true
  2331. },
  2332. "Microsoft.AspNetCore.Http.Abstractions.Reference/5.0.0.0": {
  2333. "compile": {
  2334. "Microsoft.AspNetCore.Http.Abstractions.dll": {}
  2335. },
  2336. "compileOnly": true
  2337. },
  2338. "Microsoft.AspNetCore.Http.Connections.Common/5.0.0.0": {
  2339. "compile": {
  2340. "Microsoft.AspNetCore.Http.Connections.Common.dll": {}
  2341. },
  2342. "compileOnly": true
  2343. },
  2344. "Microsoft.AspNetCore.Http.Connections/5.0.0.0": {
  2345. "compile": {
  2346. "Microsoft.AspNetCore.Http.Connections.dll": {}
  2347. },
  2348. "compileOnly": true
  2349. },
  2350. "Microsoft.AspNetCore.Http/5.0.0.0": {
  2351. "compile": {
  2352. "Microsoft.AspNetCore.Http.dll": {}
  2353. },
  2354. "compileOnly": true
  2355. },
  2356. "Microsoft.AspNetCore.Http.Extensions/5.0.0.0": {
  2357. "compile": {
  2358. "Microsoft.AspNetCore.Http.Extensions.dll": {}
  2359. },
  2360. "compileOnly": true
  2361. },
  2362. "Microsoft.AspNetCore.Http.Features.Reference/5.0.0.0": {
  2363. "compile": {
  2364. "Microsoft.AspNetCore.Http.Features.dll": {}
  2365. },
  2366. "compileOnly": true
  2367. },
  2368. "Microsoft.AspNetCore.HttpOverrides/5.0.0.0": {
  2369. "compile": {
  2370. "Microsoft.AspNetCore.HttpOverrides.dll": {}
  2371. },
  2372. "compileOnly": true
  2373. },
  2374. "Microsoft.AspNetCore.HttpsPolicy/5.0.0.0": {
  2375. "compile": {
  2376. "Microsoft.AspNetCore.HttpsPolicy.dll": {}
  2377. },
  2378. "compileOnly": true
  2379. },
  2380. "Microsoft.AspNetCore.Identity/5.0.0.0": {
  2381. "compile": {
  2382. "Microsoft.AspNetCore.Identity.dll": {}
  2383. },
  2384. "compileOnly": true
  2385. },
  2386. "Microsoft.AspNetCore.Localization/5.0.0.0": {
  2387. "compile": {
  2388. "Microsoft.AspNetCore.Localization.dll": {}
  2389. },
  2390. "compileOnly": true
  2391. },
  2392. "Microsoft.AspNetCore.Localization.Routing/5.0.0.0": {
  2393. "compile": {
  2394. "Microsoft.AspNetCore.Localization.Routing.dll": {}
  2395. },
  2396. "compileOnly": true
  2397. },
  2398. "Microsoft.AspNetCore.Metadata/5.0.0.0": {
  2399. "compile": {
  2400. "Microsoft.AspNetCore.Metadata.dll": {}
  2401. },
  2402. "compileOnly": true
  2403. },
  2404. "Microsoft.AspNetCore.Mvc.Abstractions/5.0.0.0": {
  2405. "compile": {
  2406. "Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  2407. },
  2408. "compileOnly": true
  2409. },
  2410. "Microsoft.AspNetCore.Mvc.ApiExplorer/5.0.0.0": {
  2411. "compile": {
  2412. "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
  2413. },
  2414. "compileOnly": true
  2415. },
  2416. "Microsoft.AspNetCore.Mvc.Core/5.0.0.0": {
  2417. "compile": {
  2418. "Microsoft.AspNetCore.Mvc.Core.dll": {}
  2419. },
  2420. "compileOnly": true
  2421. },
  2422. "Microsoft.AspNetCore.Mvc.Cors/5.0.0.0": {
  2423. "compile": {
  2424. "Microsoft.AspNetCore.Mvc.Cors.dll": {}
  2425. },
  2426. "compileOnly": true
  2427. },
  2428. "Microsoft.AspNetCore.Mvc.DataAnnotations/5.0.0.0": {
  2429. "compile": {
  2430. "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  2431. },
  2432. "compileOnly": true
  2433. },
  2434. "Microsoft.AspNetCore.Mvc/5.0.0.0": {
  2435. "compile": {
  2436. "Microsoft.AspNetCore.Mvc.dll": {}
  2437. },
  2438. "compileOnly": true
  2439. },
  2440. "Microsoft.AspNetCore.Mvc.Formatters.Json/5.0.0.0": {
  2441. "compile": {
  2442. "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  2443. },
  2444. "compileOnly": true
  2445. },
  2446. "Microsoft.AspNetCore.Mvc.Formatters.Xml/5.0.0.0": {
  2447. "compile": {
  2448. "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {}
  2449. },
  2450. "compileOnly": true
  2451. },
  2452. "Microsoft.AspNetCore.Mvc.Localization/5.0.0.0": {
  2453. "compile": {
  2454. "Microsoft.AspNetCore.Mvc.Localization.dll": {}
  2455. },
  2456. "compileOnly": true
  2457. },
  2458. "Microsoft.AspNetCore.Mvc.Razor/5.0.0.0": {
  2459. "compile": {
  2460. "Microsoft.AspNetCore.Mvc.Razor.dll": {}
  2461. },
  2462. "compileOnly": true
  2463. },
  2464. "Microsoft.AspNetCore.Mvc.RazorPages/5.0.0.0": {
  2465. "compile": {
  2466. "Microsoft.AspNetCore.Mvc.RazorPages.dll": {}
  2467. },
  2468. "compileOnly": true
  2469. },
  2470. "Microsoft.AspNetCore.Mvc.TagHelpers/5.0.0.0": {
  2471. "compile": {
  2472. "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
  2473. },
  2474. "compileOnly": true
  2475. },
  2476. "Microsoft.AspNetCore.Mvc.ViewFeatures/5.0.0.0": {
  2477. "compile": {
  2478. "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  2479. },
  2480. "compileOnly": true
  2481. },
  2482. "Microsoft.AspNetCore.Razor/5.0.0.0": {
  2483. "compile": {
  2484. "Microsoft.AspNetCore.Razor.dll": {}
  2485. },
  2486. "compileOnly": true
  2487. },
  2488. "Microsoft.AspNetCore.Razor.Runtime/5.0.0.0": {
  2489. "compile": {
  2490. "Microsoft.AspNetCore.Razor.Runtime.dll": {}
  2491. },
  2492. "compileOnly": true
  2493. },
  2494. "Microsoft.AspNetCore.ResponseCaching.Abstractions/5.0.0.0": {
  2495. "compile": {
  2496. "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
  2497. },
  2498. "compileOnly": true
  2499. },
  2500. "Microsoft.AspNetCore.ResponseCaching/5.0.0.0": {
  2501. "compile": {
  2502. "Microsoft.AspNetCore.ResponseCaching.dll": {}
  2503. },
  2504. "compileOnly": true
  2505. },
  2506. "Microsoft.AspNetCore.ResponseCompression/5.0.0.0": {
  2507. "compile": {
  2508. "Microsoft.AspNetCore.ResponseCompression.dll": {}
  2509. },
  2510. "compileOnly": true
  2511. },
  2512. "Microsoft.AspNetCore.Rewrite/5.0.0.0": {
  2513. "compile": {
  2514. "Microsoft.AspNetCore.Rewrite.dll": {}
  2515. },
  2516. "compileOnly": true
  2517. },
  2518. "Microsoft.AspNetCore.Routing.Abstractions/5.0.0.0": {
  2519. "compile": {
  2520. "Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  2521. },
  2522. "compileOnly": true
  2523. },
  2524. "Microsoft.AspNetCore.Routing/5.0.0.0": {
  2525. "compile": {
  2526. "Microsoft.AspNetCore.Routing.dll": {}
  2527. },
  2528. "compileOnly": true
  2529. },
  2530. "Microsoft.AspNetCore.Server.HttpSys/5.0.0.0": {
  2531. "compile": {
  2532. "Microsoft.AspNetCore.Server.HttpSys.dll": {}
  2533. },
  2534. "compileOnly": true
  2535. },
  2536. "Microsoft.AspNetCore.Server.IIS/5.0.0.0": {
  2537. "compile": {
  2538. "Microsoft.AspNetCore.Server.IIS.dll": {}
  2539. },
  2540. "compileOnly": true
  2541. },
  2542. "Microsoft.AspNetCore.Server.IISIntegration/5.0.0.0": {
  2543. "compile": {
  2544. "Microsoft.AspNetCore.Server.IISIntegration.dll": {}
  2545. },
  2546. "compileOnly": true
  2547. },
  2548. "Microsoft.AspNetCore.Server.Kestrel.Core/5.0.0.0": {
  2549. "compile": {
  2550. "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
  2551. },
  2552. "compileOnly": true
  2553. },
  2554. "Microsoft.AspNetCore.Server.Kestrel/5.0.0.0": {
  2555. "compile": {
  2556. "Microsoft.AspNetCore.Server.Kestrel.dll": {}
  2557. },
  2558. "compileOnly": true
  2559. },
  2560. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/5.0.0.0": {
  2561. "compile": {
  2562. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
  2563. },
  2564. "compileOnly": true
  2565. },
  2566. "Microsoft.AspNetCore.Session/5.0.0.0": {
  2567. "compile": {
  2568. "Microsoft.AspNetCore.Session.dll": {}
  2569. },
  2570. "compileOnly": true
  2571. },
  2572. "Microsoft.AspNetCore.SignalR.Common/5.0.0.0": {
  2573. "compile": {
  2574. "Microsoft.AspNetCore.SignalR.Common.dll": {}
  2575. },
  2576. "compileOnly": true
  2577. },
  2578. "Microsoft.AspNetCore.SignalR.Core/5.0.0.0": {
  2579. "compile": {
  2580. "Microsoft.AspNetCore.SignalR.Core.dll": {}
  2581. },
  2582. "compileOnly": true
  2583. },
  2584. "Microsoft.AspNetCore.SignalR/5.0.0.0": {
  2585. "compile": {
  2586. "Microsoft.AspNetCore.SignalR.dll": {}
  2587. },
  2588. "compileOnly": true
  2589. },
  2590. "Microsoft.AspNetCore.SignalR.Protocols.Json/5.0.0.0": {
  2591. "compile": {
  2592. "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {}
  2593. },
  2594. "compileOnly": true
  2595. },
  2596. "Microsoft.AspNetCore.StaticFiles/5.0.0.0": {
  2597. "compile": {
  2598. "Microsoft.AspNetCore.StaticFiles.dll": {}
  2599. },
  2600. "compileOnly": true
  2601. },
  2602. "Microsoft.AspNetCore.WebSockets/5.0.0.0": {
  2603. "compile": {
  2604. "Microsoft.AspNetCore.WebSockets.dll": {}
  2605. },
  2606. "compileOnly": true
  2607. },
  2608. "Microsoft.AspNetCore.WebUtilities/5.0.0.0": {
  2609. "compile": {
  2610. "Microsoft.AspNetCore.WebUtilities.dll": {}
  2611. },
  2612. "compileOnly": true
  2613. },
  2614. "Microsoft.CSharp.Reference/5.0.0.0": {
  2615. "compile": {
  2616. "Microsoft.CSharp.dll": {}
  2617. },
  2618. "compileOnly": true
  2619. },
  2620. "Microsoft.Extensions.Caching.Abstractions.Reference/5.0.0.0": {
  2621. "compile": {
  2622. "Microsoft.Extensions.Caching.Abstractions.dll": {}
  2623. },
  2624. "compileOnly": true
  2625. },
  2626. "Microsoft.Extensions.Caching.Memory.Reference/5.0.0.0": {
  2627. "compile": {
  2628. "Microsoft.Extensions.Caching.Memory.dll": {}
  2629. },
  2630. "compileOnly": true
  2631. },
  2632. "Microsoft.Extensions.Configuration.Abstractions.Reference/5.0.0.0": {
  2633. "compile": {
  2634. "Microsoft.Extensions.Configuration.Abstractions.dll": {}
  2635. },
  2636. "compileOnly": true
  2637. },
  2638. "Microsoft.Extensions.Configuration.Binder.Reference/5.0.0.0": {
  2639. "compile": {
  2640. "Microsoft.Extensions.Configuration.Binder.dll": {}
  2641. },
  2642. "compileOnly": true
  2643. },
  2644. "Microsoft.Extensions.Configuration.CommandLine/5.0.0.0": {
  2645. "compile": {
  2646. "Microsoft.Extensions.Configuration.CommandLine.dll": {}
  2647. },
  2648. "compileOnly": true
  2649. },
  2650. "Microsoft.Extensions.Configuration.Reference/5.0.0.0": {
  2651. "compile": {
  2652. "Microsoft.Extensions.Configuration.dll": {}
  2653. },
  2654. "compileOnly": true
  2655. },
  2656. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0.0": {
  2657. "compile": {
  2658. "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  2659. },
  2660. "compileOnly": true
  2661. },
  2662. "Microsoft.Extensions.Configuration.FileExtensions.Reference/5.0.0.0": {
  2663. "compile": {
  2664. "Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  2665. },
  2666. "compileOnly": true
  2667. },
  2668. "Microsoft.Extensions.Configuration.Ini/5.0.0.0": {
  2669. "compile": {
  2670. "Microsoft.Extensions.Configuration.Ini.dll": {}
  2671. },
  2672. "compileOnly": true
  2673. },
  2674. "Microsoft.Extensions.Configuration.Json.Reference/5.0.0.0": {
  2675. "compile": {
  2676. "Microsoft.Extensions.Configuration.Json.dll": {}
  2677. },
  2678. "compileOnly": true
  2679. },
  2680. "Microsoft.Extensions.Configuration.KeyPerFile/5.0.0.0": {
  2681. "compile": {
  2682. "Microsoft.Extensions.Configuration.KeyPerFile.dll": {}
  2683. },
  2684. "compileOnly": true
  2685. },
  2686. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0.0": {
  2687. "compile": {
  2688. "Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  2689. },
  2690. "compileOnly": true
  2691. },
  2692. "Microsoft.Extensions.Configuration.Xml/5.0.0.0": {
  2693. "compile": {
  2694. "Microsoft.Extensions.Configuration.Xml.dll": {}
  2695. },
  2696. "compileOnly": true
  2697. },
  2698. "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/5.0.0.0": {
  2699. "compile": {
  2700. "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  2701. },
  2702. "compileOnly": true
  2703. },
  2704. "Microsoft.Extensions.DependencyInjection.Reference/5.0.0.0": {
  2705. "compile": {
  2706. "Microsoft.Extensions.DependencyInjection.dll": {}
  2707. },
  2708. "compileOnly": true
  2709. },
  2710. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/5.0.0.0": {
  2711. "compile": {
  2712. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {}
  2713. },
  2714. "compileOnly": true
  2715. },
  2716. "Microsoft.Extensions.Diagnostics.HealthChecks/5.0.0.0": {
  2717. "compile": {
  2718. "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {}
  2719. },
  2720. "compileOnly": true
  2721. },
  2722. "Microsoft.Extensions.FileProviders.Abstractions.Reference/5.0.0.0": {
  2723. "compile": {
  2724. "Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  2725. },
  2726. "compileOnly": true
  2727. },
  2728. "Microsoft.Extensions.FileProviders.Composite/5.0.0.0": {
  2729. "compile": {
  2730. "Microsoft.Extensions.FileProviders.Composite.dll": {}
  2731. },
  2732. "compileOnly": true
  2733. },
  2734. "Microsoft.Extensions.FileProviders.Embedded/5.0.0.0": {
  2735. "compile": {
  2736. "Microsoft.Extensions.FileProviders.Embedded.dll": {}
  2737. },
  2738. "compileOnly": true
  2739. },
  2740. "Microsoft.Extensions.FileProviders.Physical.Reference/5.0.0.0": {
  2741. "compile": {
  2742. "Microsoft.Extensions.FileProviders.Physical.dll": {}
  2743. },
  2744. "compileOnly": true
  2745. },
  2746. "Microsoft.Extensions.FileSystemGlobbing.Reference/5.0.0.0": {
  2747. "compile": {
  2748. "Microsoft.Extensions.FileSystemGlobbing.dll": {}
  2749. },
  2750. "compileOnly": true
  2751. },
  2752. "Microsoft.Extensions.Hosting.Abstractions.Reference/5.0.0.0": {
  2753. "compile": {
  2754. "Microsoft.Extensions.Hosting.Abstractions.dll": {}
  2755. },
  2756. "compileOnly": true
  2757. },
  2758. "Microsoft.Extensions.Hosting/5.0.0.0": {
  2759. "compile": {
  2760. "Microsoft.Extensions.Hosting.dll": {}
  2761. },
  2762. "compileOnly": true
  2763. },
  2764. "Microsoft.Extensions.Http.Reference/5.0.0.0": {
  2765. "compile": {
  2766. "Microsoft.Extensions.Http.dll": {}
  2767. },
  2768. "compileOnly": true
  2769. },
  2770. "Microsoft.Extensions.Identity.Core/5.0.0.0": {
  2771. "compile": {
  2772. "Microsoft.Extensions.Identity.Core.dll": {}
  2773. },
  2774. "compileOnly": true
  2775. },
  2776. "Microsoft.Extensions.Identity.Stores/5.0.0.0": {
  2777. "compile": {
  2778. "Microsoft.Extensions.Identity.Stores.dll": {}
  2779. },
  2780. "compileOnly": true
  2781. },
  2782. "Microsoft.Extensions.Localization.Abstractions/5.0.0.0": {
  2783. "compile": {
  2784. "Microsoft.Extensions.Localization.Abstractions.dll": {}
  2785. },
  2786. "compileOnly": true
  2787. },
  2788. "Microsoft.Extensions.Localization/5.0.0.0": {
  2789. "compile": {
  2790. "Microsoft.Extensions.Localization.dll": {}
  2791. },
  2792. "compileOnly": true
  2793. },
  2794. "Microsoft.Extensions.Logging.Abstractions.Reference/5.0.0.0": {
  2795. "compile": {
  2796. "Microsoft.Extensions.Logging.Abstractions.dll": {}
  2797. },
  2798. "compileOnly": true
  2799. },
  2800. "Microsoft.Extensions.Logging.Configuration.Reference/5.0.0.0": {
  2801. "compile": {
  2802. "Microsoft.Extensions.Logging.Configuration.dll": {}
  2803. },
  2804. "compileOnly": true
  2805. },
  2806. "Microsoft.Extensions.Logging.Console.Reference/5.0.0.0": {
  2807. "compile": {
  2808. "Microsoft.Extensions.Logging.Console.dll": {}
  2809. },
  2810. "compileOnly": true
  2811. },
  2812. "Microsoft.Extensions.Logging.Debug/5.0.0.0": {
  2813. "compile": {
  2814. "Microsoft.Extensions.Logging.Debug.dll": {}
  2815. },
  2816. "compileOnly": true
  2817. },
  2818. "Microsoft.Extensions.Logging.Reference/5.0.0.0": {
  2819. "compile": {
  2820. "Microsoft.Extensions.Logging.dll": {}
  2821. },
  2822. "compileOnly": true
  2823. },
  2824. "Microsoft.Extensions.Logging.EventLog/5.0.0.0": {
  2825. "compile": {
  2826. "Microsoft.Extensions.Logging.EventLog.dll": {}
  2827. },
  2828. "compileOnly": true
  2829. },
  2830. "Microsoft.Extensions.Logging.EventSource/5.0.0.0": {
  2831. "compile": {
  2832. "Microsoft.Extensions.Logging.EventSource.dll": {}
  2833. },
  2834. "compileOnly": true
  2835. },
  2836. "Microsoft.Extensions.Logging.TraceSource/5.0.0.0": {
  2837. "compile": {
  2838. "Microsoft.Extensions.Logging.TraceSource.dll": {}
  2839. },
  2840. "compileOnly": true
  2841. },
  2842. "Microsoft.Extensions.ObjectPool/5.0.0.0": {
  2843. "compile": {
  2844. "Microsoft.Extensions.ObjectPool.dll": {}
  2845. },
  2846. "compileOnly": true
  2847. },
  2848. "Microsoft.Extensions.Options.ConfigurationExtensions.Reference/5.0.0.0": {
  2849. "compile": {
  2850. "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  2851. },
  2852. "compileOnly": true
  2853. },
  2854. "Microsoft.Extensions.Options.DataAnnotations/5.0.0.0": {
  2855. "compile": {
  2856. "Microsoft.Extensions.Options.DataAnnotations.dll": {}
  2857. },
  2858. "compileOnly": true
  2859. },
  2860. "Microsoft.Extensions.Options.Reference/5.0.0.0": {
  2861. "compile": {
  2862. "Microsoft.Extensions.Options.dll": {}
  2863. },
  2864. "compileOnly": true
  2865. },
  2866. "Microsoft.Extensions.Primitives.Reference/5.0.0.0": {
  2867. "compile": {
  2868. "Microsoft.Extensions.Primitives.dll": {}
  2869. },
  2870. "compileOnly": true
  2871. },
  2872. "Microsoft.Extensions.WebEncoders/5.0.0.0": {
  2873. "compile": {
  2874. "Microsoft.Extensions.WebEncoders.dll": {}
  2875. },
  2876. "compileOnly": true
  2877. },
  2878. "Microsoft.JSInterop/5.0.0.0": {
  2879. "compile": {
  2880. "Microsoft.JSInterop.dll": {}
  2881. },
  2882. "compileOnly": true
  2883. },
  2884. "Microsoft.Net.Http.Headers/5.0.0.0": {
  2885. "compile": {
  2886. "Microsoft.Net.Http.Headers.dll": {}
  2887. },
  2888. "compileOnly": true
  2889. },
  2890. "Microsoft.VisualBasic.Core/10.0.6.0": {
  2891. "compile": {
  2892. "Microsoft.VisualBasic.Core.dll": {}
  2893. },
  2894. "compileOnly": true
  2895. },
  2896. "Microsoft.VisualBasic/10.0.0.0": {
  2897. "compile": {
  2898. "Microsoft.VisualBasic.dll": {}
  2899. },
  2900. "compileOnly": true
  2901. },
  2902. "Microsoft.Win32.Primitives.Reference/5.0.0.0": {
  2903. "compile": {
  2904. "Microsoft.Win32.Primitives.dll": {}
  2905. },
  2906. "compileOnly": true
  2907. },
  2908. "Microsoft.Win32.Registry/5.0.0.0": {
  2909. "compile": {
  2910. "Microsoft.Win32.Registry.dll": {}
  2911. },
  2912. "compileOnly": true
  2913. },
  2914. "mscorlib/4.0.0.0": {
  2915. "compile": {
  2916. "mscorlib.dll": {}
  2917. },
  2918. "compileOnly": true
  2919. },
  2920. "netstandard/2.1.0.0": {
  2921. "compile": {
  2922. "netstandard.dll": {}
  2923. },
  2924. "compileOnly": true
  2925. },
  2926. "System.AppContext.Reference/5.0.0.0": {
  2927. "compile": {
  2928. "System.AppContext.dll": {}
  2929. },
  2930. "compileOnly": true
  2931. },
  2932. "System.Buffers.Reference/5.0.0.0": {
  2933. "compile": {
  2934. "System.Buffers.dll": {}
  2935. },
  2936. "compileOnly": true
  2937. },
  2938. "System.Collections.Concurrent.Reference/5.0.0.0": {
  2939. "compile": {
  2940. "System.Collections.Concurrent.dll": {}
  2941. },
  2942. "compileOnly": true
  2943. },
  2944. "System.Collections.Reference/5.0.0.0": {
  2945. "compile": {
  2946. "System.Collections.dll": {}
  2947. },
  2948. "compileOnly": true
  2949. },
  2950. "System.Collections.Immutable.Reference/5.0.0.0": {
  2951. "compile": {
  2952. "System.Collections.Immutable.dll": {}
  2953. },
  2954. "compileOnly": true
  2955. },
  2956. "System.Collections.NonGeneric.Reference/5.0.0.0": {
  2957. "compile": {
  2958. "System.Collections.NonGeneric.dll": {}
  2959. },
  2960. "compileOnly": true
  2961. },
  2962. "System.Collections.Specialized.Reference/5.0.0.0": {
  2963. "compile": {
  2964. "System.Collections.Specialized.dll": {}
  2965. },
  2966. "compileOnly": true
  2967. },
  2968. "System.ComponentModel.Annotations.Reference/5.0.0.0": {
  2969. "compile": {
  2970. "System.ComponentModel.Annotations.dll": {}
  2971. },
  2972. "compileOnly": true
  2973. },
  2974. "System.ComponentModel.DataAnnotations/4.0.0.0": {
  2975. "compile": {
  2976. "System.ComponentModel.DataAnnotations.dll": {}
  2977. },
  2978. "compileOnly": true
  2979. },
  2980. "System.ComponentModel.Reference/5.0.0.0": {
  2981. "compile": {
  2982. "System.ComponentModel.dll": {}
  2983. },
  2984. "compileOnly": true
  2985. },
  2986. "System.ComponentModel.EventBasedAsync/5.0.0.0": {
  2987. "compile": {
  2988. "System.ComponentModel.EventBasedAsync.dll": {}
  2989. },
  2990. "compileOnly": true
  2991. },
  2992. "System.ComponentModel.Primitives.Reference/5.0.0.0": {
  2993. "compile": {
  2994. "System.ComponentModel.Primitives.dll": {}
  2995. },
  2996. "compileOnly": true
  2997. },
  2998. "System.ComponentModel.TypeConverter.Reference/5.0.0.0": {
  2999. "compile": {
  3000. "System.ComponentModel.TypeConverter.dll": {}
  3001. },
  3002. "compileOnly": true
  3003. },
  3004. "System.Configuration/4.0.0.0": {
  3005. "compile": {
  3006. "System.Configuration.dll": {}
  3007. },
  3008. "compileOnly": true
  3009. },
  3010. "System.Console.Reference/5.0.0.0": {
  3011. "compile": {
  3012. "System.Console.dll": {}
  3013. },
  3014. "compileOnly": true
  3015. },
  3016. "System.Core/4.0.0.0": {
  3017. "compile": {
  3018. "System.Core.dll": {}
  3019. },
  3020. "compileOnly": true
  3021. },
  3022. "System.Data.Common/5.0.0.0": {
  3023. "compile": {
  3024. "System.Data.Common.dll": {}
  3025. },
  3026. "compileOnly": true
  3027. },
  3028. "System.Data.DataSetExtensions/4.0.0.0": {
  3029. "compile": {
  3030. "System.Data.DataSetExtensions.dll": {}
  3031. },
  3032. "compileOnly": true
  3033. },
  3034. "System.Data/4.0.0.0": {
  3035. "compile": {
  3036. "System.Data.dll": {}
  3037. },
  3038. "compileOnly": true
  3039. },
  3040. "System.Diagnostics.Contracts/5.0.0.0": {
  3041. "compile": {
  3042. "System.Diagnostics.Contracts.dll": {}
  3043. },
  3044. "compileOnly": true
  3045. },
  3046. "System.Diagnostics.Debug.Reference/5.0.0.0": {
  3047. "compile": {
  3048. "System.Diagnostics.Debug.dll": {}
  3049. },
  3050. "compileOnly": true
  3051. },
  3052. "System.Diagnostics.DiagnosticSource.Reference/5.0.0.0": {
  3053. "compile": {
  3054. "System.Diagnostics.DiagnosticSource.dll": {}
  3055. },
  3056. "compileOnly": true
  3057. },
  3058. "System.Diagnostics.EventLog/5.0.0.0": {
  3059. "compile": {
  3060. "System.Diagnostics.EventLog.dll": {}
  3061. },
  3062. "compileOnly": true
  3063. },
  3064. "System.Diagnostics.FileVersionInfo/5.0.0.0": {
  3065. "compile": {
  3066. "System.Diagnostics.FileVersionInfo.dll": {}
  3067. },
  3068. "compileOnly": true
  3069. },
  3070. "System.Diagnostics.Process/5.0.0.0": {
  3071. "compile": {
  3072. "System.Diagnostics.Process.dll": {}
  3073. },
  3074. "compileOnly": true
  3075. },
  3076. "System.Diagnostics.StackTrace/5.0.0.0": {
  3077. "compile": {
  3078. "System.Diagnostics.StackTrace.dll": {}
  3079. },
  3080. "compileOnly": true
  3081. },
  3082. "System.Diagnostics.TextWriterTraceListener/5.0.0.0": {
  3083. "compile": {
  3084. "System.Diagnostics.TextWriterTraceListener.dll": {}
  3085. },
  3086. "compileOnly": true
  3087. },
  3088. "System.Diagnostics.Tools.Reference/5.0.0.0": {
  3089. "compile": {
  3090. "System.Diagnostics.Tools.dll": {}
  3091. },
  3092. "compileOnly": true
  3093. },
  3094. "System.Diagnostics.TraceSource.Reference/5.0.0.0": {
  3095. "compile": {
  3096. "System.Diagnostics.TraceSource.dll": {}
  3097. },
  3098. "compileOnly": true
  3099. },
  3100. "System.Diagnostics.Tracing.Reference/5.0.0.0": {
  3101. "compile": {
  3102. "System.Diagnostics.Tracing.dll": {}
  3103. },
  3104. "compileOnly": true
  3105. },
  3106. "System/4.0.0.0": {
  3107. "compile": {
  3108. "System.dll": {}
  3109. },
  3110. "compileOnly": true
  3111. },
  3112. "System.Drawing/4.0.0.0": {
  3113. "compile": {
  3114. "System.Drawing.dll": {}
  3115. },
  3116. "compileOnly": true
  3117. },
  3118. "System.Drawing.Primitives/5.0.0.0": {
  3119. "compile": {
  3120. "System.Drawing.Primitives.dll": {}
  3121. },
  3122. "compileOnly": true
  3123. },
  3124. "System.Dynamic.Runtime.Reference/5.0.0.0": {
  3125. "compile": {
  3126. "System.Dynamic.Runtime.dll": {}
  3127. },
  3128. "compileOnly": true
  3129. },
  3130. "System.Formats.Asn1/5.0.0.0": {
  3131. "compile": {
  3132. "System.Formats.Asn1.dll": {}
  3133. },
  3134. "compileOnly": true
  3135. },
  3136. "System.Globalization.Calendars.Reference/5.0.0.0": {
  3137. "compile": {
  3138. "System.Globalization.Calendars.dll": {}
  3139. },
  3140. "compileOnly": true
  3141. },
  3142. "System.Globalization.Reference/5.0.0.0": {
  3143. "compile": {
  3144. "System.Globalization.dll": {}
  3145. },
  3146. "compileOnly": true
  3147. },
  3148. "System.Globalization.Extensions.Reference/5.0.0.0": {
  3149. "compile": {
  3150. "System.Globalization.Extensions.dll": {}
  3151. },
  3152. "compileOnly": true
  3153. },
  3154. "System.IO.Compression.Brotli/5.0.0.0": {
  3155. "compile": {
  3156. "System.IO.Compression.Brotli.dll": {}
  3157. },
  3158. "compileOnly": true
  3159. },
  3160. "System.IO.Compression.Reference/5.0.0.0": {
  3161. "compile": {
  3162. "System.IO.Compression.dll": {}
  3163. },
  3164. "compileOnly": true
  3165. },
  3166. "System.IO.Compression.FileSystem/4.0.0.0": {
  3167. "compile": {
  3168. "System.IO.Compression.FileSystem.dll": {}
  3169. },
  3170. "compileOnly": true
  3171. },
  3172. "System.IO.Compression.ZipFile.Reference/5.0.0.0": {
  3173. "compile": {
  3174. "System.IO.Compression.ZipFile.dll": {}
  3175. },
  3176. "compileOnly": true
  3177. },
  3178. "System.IO.Reference/5.0.0.0": {
  3179. "compile": {
  3180. "System.IO.dll": {}
  3181. },
  3182. "compileOnly": true
  3183. },
  3184. "System.IO.FileSystem.Reference/5.0.0.0": {
  3185. "compile": {
  3186. "System.IO.FileSystem.dll": {}
  3187. },
  3188. "compileOnly": true
  3189. },
  3190. "System.IO.FileSystem.DriveInfo/5.0.0.0": {
  3191. "compile": {
  3192. "System.IO.FileSystem.DriveInfo.dll": {}
  3193. },
  3194. "compileOnly": true
  3195. },
  3196. "System.IO.FileSystem.Primitives.Reference/5.0.0.0": {
  3197. "compile": {
  3198. "System.IO.FileSystem.Primitives.dll": {}
  3199. },
  3200. "compileOnly": true
  3201. },
  3202. "System.IO.FileSystem.Watcher/5.0.0.0": {
  3203. "compile": {
  3204. "System.IO.FileSystem.Watcher.dll": {}
  3205. },
  3206. "compileOnly": true
  3207. },
  3208. "System.IO.IsolatedStorage/5.0.0.0": {
  3209. "compile": {
  3210. "System.IO.IsolatedStorage.dll": {}
  3211. },
  3212. "compileOnly": true
  3213. },
  3214. "System.IO.MemoryMappedFiles/5.0.0.0": {
  3215. "compile": {
  3216. "System.IO.MemoryMappedFiles.dll": {}
  3217. },
  3218. "compileOnly": true
  3219. },
  3220. "System.IO.Pipelines.Reference/5.0.0.0": {
  3221. "compile": {
  3222. "System.IO.Pipelines.dll": {}
  3223. },
  3224. "compileOnly": true
  3225. },
  3226. "System.IO.Pipes/5.0.0.0": {
  3227. "compile": {
  3228. "System.IO.Pipes.dll": {}
  3229. },
  3230. "compileOnly": true
  3231. },
  3232. "System.IO.UnmanagedMemoryStream/5.0.0.0": {
  3233. "compile": {
  3234. "System.IO.UnmanagedMemoryStream.dll": {}
  3235. },
  3236. "compileOnly": true
  3237. },
  3238. "System.Linq.Reference/5.0.0.0": {
  3239. "compile": {
  3240. "System.Linq.dll": {}
  3241. },
  3242. "compileOnly": true
  3243. },
  3244. "System.Linq.Expressions.Reference/5.0.0.0": {
  3245. "compile": {
  3246. "System.Linq.Expressions.dll": {}
  3247. },
  3248. "compileOnly": true
  3249. },
  3250. "System.Linq.Parallel/5.0.0.0": {
  3251. "compile": {
  3252. "System.Linq.Parallel.dll": {}
  3253. },
  3254. "compileOnly": true
  3255. },
  3256. "System.Linq.Queryable/5.0.0.0": {
  3257. "compile": {
  3258. "System.Linq.Queryable.dll": {}
  3259. },
  3260. "compileOnly": true
  3261. },
  3262. "System.Memory.Reference/5.0.0.0": {
  3263. "compile": {
  3264. "System.Memory.dll": {}
  3265. },
  3266. "compileOnly": true
  3267. },
  3268. "System.Net/4.0.0.0": {
  3269. "compile": {
  3270. "System.Net.dll": {}
  3271. },
  3272. "compileOnly": true
  3273. },
  3274. "System.Net.Http.Reference/5.0.0.0": {
  3275. "compile": {
  3276. "System.Net.Http.dll": {}
  3277. },
  3278. "compileOnly": true
  3279. },
  3280. "System.Net.Http.Json/5.0.0.0": {
  3281. "compile": {
  3282. "System.Net.Http.Json.dll": {}
  3283. },
  3284. "compileOnly": true
  3285. },
  3286. "System.Net.HttpListener/5.0.0.0": {
  3287. "compile": {
  3288. "System.Net.HttpListener.dll": {}
  3289. },
  3290. "compileOnly": true
  3291. },
  3292. "System.Net.Mail/5.0.0.0": {
  3293. "compile": {
  3294. "System.Net.Mail.dll": {}
  3295. },
  3296. "compileOnly": true
  3297. },
  3298. "System.Net.NameResolution.Reference/5.0.0.0": {
  3299. "compile": {
  3300. "System.Net.NameResolution.dll": {}
  3301. },
  3302. "compileOnly": true
  3303. },
  3304. "System.Net.NetworkInformation/5.0.0.0": {
  3305. "compile": {
  3306. "System.Net.NetworkInformation.dll": {}
  3307. },
  3308. "compileOnly": true
  3309. },
  3310. "System.Net.Ping/5.0.0.0": {
  3311. "compile": {
  3312. "System.Net.Ping.dll": {}
  3313. },
  3314. "compileOnly": true
  3315. },
  3316. "System.Net.Primitives.Reference/5.0.0.0": {
  3317. "compile": {
  3318. "System.Net.Primitives.dll": {}
  3319. },
  3320. "compileOnly": true
  3321. },
  3322. "System.Net.Requests/5.0.0.0": {
  3323. "compile": {
  3324. "System.Net.Requests.dll": {}
  3325. },
  3326. "compileOnly": true
  3327. },
  3328. "System.Net.Security.Reference/5.0.0.0": {
  3329. "compile": {
  3330. "System.Net.Security.dll": {}
  3331. },
  3332. "compileOnly": true
  3333. },
  3334. "System.Net.ServicePoint/5.0.0.0": {
  3335. "compile": {
  3336. "System.Net.ServicePoint.dll": {}
  3337. },
  3338. "compileOnly": true
  3339. },
  3340. "System.Net.Sockets.Reference/5.0.0.0": {
  3341. "compile": {
  3342. "System.Net.Sockets.dll": {}
  3343. },
  3344. "compileOnly": true
  3345. },
  3346. "System.Net.WebClient/5.0.0.0": {
  3347. "compile": {
  3348. "System.Net.WebClient.dll": {}
  3349. },
  3350. "compileOnly": true
  3351. },
  3352. "System.Net.WebHeaderCollection/5.0.0.0": {
  3353. "compile": {
  3354. "System.Net.WebHeaderCollection.dll": {}
  3355. },
  3356. "compileOnly": true
  3357. },
  3358. "System.Net.WebProxy/5.0.0.0": {
  3359. "compile": {
  3360. "System.Net.WebProxy.dll": {}
  3361. },
  3362. "compileOnly": true
  3363. },
  3364. "System.Net.WebSockets.Client/5.0.0.0": {
  3365. "compile": {
  3366. "System.Net.WebSockets.Client.dll": {}
  3367. },
  3368. "compileOnly": true
  3369. },
  3370. "System.Net.WebSockets/5.0.0.0": {
  3371. "compile": {
  3372. "System.Net.WebSockets.dll": {}
  3373. },
  3374. "compileOnly": true
  3375. },
  3376. "System.Numerics/4.0.0.0": {
  3377. "compile": {
  3378. "System.Numerics.dll": {}
  3379. },
  3380. "compileOnly": true
  3381. },
  3382. "System.Numerics.Vectors/5.0.0.0": {
  3383. "compile": {
  3384. "System.Numerics.Vectors.dll": {}
  3385. },
  3386. "compileOnly": true
  3387. },
  3388. "System.ObjectModel.Reference/5.0.0.0": {
  3389. "compile": {
  3390. "System.ObjectModel.dll": {}
  3391. },
  3392. "compileOnly": true
  3393. },
  3394. "System.Reflection.DispatchProxy/5.0.0.0": {
  3395. "compile": {
  3396. "System.Reflection.DispatchProxy.dll": {}
  3397. },
  3398. "compileOnly": true
  3399. },
  3400. "System.Reflection.Reference/5.0.0.0": {
  3401. "compile": {
  3402. "System.Reflection.dll": {}
  3403. },
  3404. "compileOnly": true
  3405. },
  3406. "System.Reflection.Emit.Reference/5.0.0.0": {
  3407. "compile": {
  3408. "System.Reflection.Emit.dll": {}
  3409. },
  3410. "compileOnly": true
  3411. },
  3412. "System.Reflection.Emit.ILGeneration.Reference/5.0.0.0": {
  3413. "compile": {
  3414. "System.Reflection.Emit.ILGeneration.dll": {}
  3415. },
  3416. "compileOnly": true
  3417. },
  3418. "System.Reflection.Emit.Lightweight.Reference/5.0.0.0": {
  3419. "compile": {
  3420. "System.Reflection.Emit.Lightweight.dll": {}
  3421. },
  3422. "compileOnly": true
  3423. },
  3424. "System.Reflection.Extensions.Reference/5.0.0.0": {
  3425. "compile": {
  3426. "System.Reflection.Extensions.dll": {}
  3427. },
  3428. "compileOnly": true
  3429. },
  3430. "System.Reflection.Metadata/5.0.0.0": {
  3431. "compile": {
  3432. "System.Reflection.Metadata.dll": {}
  3433. },
  3434. "compileOnly": true
  3435. },
  3436. "System.Reflection.Primitives.Reference/5.0.0.0": {
  3437. "compile": {
  3438. "System.Reflection.Primitives.dll": {}
  3439. },
  3440. "compileOnly": true
  3441. },
  3442. "System.Reflection.TypeExtensions.Reference/5.0.0.0": {
  3443. "compile": {
  3444. "System.Reflection.TypeExtensions.dll": {}
  3445. },
  3446. "compileOnly": true
  3447. },
  3448. "System.Resources.Reader/5.0.0.0": {
  3449. "compile": {
  3450. "System.Resources.Reader.dll": {}
  3451. },
  3452. "compileOnly": true
  3453. },
  3454. "System.Resources.ResourceManager.Reference/5.0.0.0": {
  3455. "compile": {
  3456. "System.Resources.ResourceManager.dll": {}
  3457. },
  3458. "compileOnly": true
  3459. },
  3460. "System.Resources.Writer/5.0.0.0": {
  3461. "compile": {
  3462. "System.Resources.Writer.dll": {}
  3463. },
  3464. "compileOnly": true
  3465. },
  3466. "System.Runtime.CompilerServices.Unsafe.Reference/5.0.0.0": {
  3467. "compile": {
  3468. "System.Runtime.CompilerServices.Unsafe.dll": {}
  3469. },
  3470. "compileOnly": true
  3471. },
  3472. "System.Runtime.CompilerServices.VisualC/5.0.0.0": {
  3473. "compile": {
  3474. "System.Runtime.CompilerServices.VisualC.dll": {}
  3475. },
  3476. "compileOnly": true
  3477. },
  3478. "System.Runtime.Reference/5.0.0.0": {
  3479. "compile": {
  3480. "System.Runtime.dll": {}
  3481. },
  3482. "compileOnly": true
  3483. },
  3484. "System.Runtime.Extensions.Reference/5.0.0.0": {
  3485. "compile": {
  3486. "System.Runtime.Extensions.dll": {}
  3487. },
  3488. "compileOnly": true
  3489. },
  3490. "System.Runtime.Handles.Reference/5.0.0.0": {
  3491. "compile": {
  3492. "System.Runtime.Handles.dll": {}
  3493. },
  3494. "compileOnly": true
  3495. },
  3496. "System.Runtime.InteropServices.Reference/5.0.0.0": {
  3497. "compile": {
  3498. "System.Runtime.InteropServices.dll": {}
  3499. },
  3500. "compileOnly": true
  3501. },
  3502. "System.Runtime.InteropServices.RuntimeInformation.Reference/5.0.0.0": {
  3503. "compile": {
  3504. "System.Runtime.InteropServices.RuntimeInformation.dll": {}
  3505. },
  3506. "compileOnly": true
  3507. },
  3508. "System.Runtime.Intrinsics/5.0.0.0": {
  3509. "compile": {
  3510. "System.Runtime.Intrinsics.dll": {}
  3511. },
  3512. "compileOnly": true
  3513. },
  3514. "System.Runtime.Loader/5.0.0.0": {
  3515. "compile": {
  3516. "System.Runtime.Loader.dll": {}
  3517. },
  3518. "compileOnly": true
  3519. },
  3520. "System.Runtime.Numerics.Reference/5.0.0.0": {
  3521. "compile": {
  3522. "System.Runtime.Numerics.dll": {}
  3523. },
  3524. "compileOnly": true
  3525. },
  3526. "System.Runtime.Serialization/4.0.0.0": {
  3527. "compile": {
  3528. "System.Runtime.Serialization.dll": {}
  3529. },
  3530. "compileOnly": true
  3531. },
  3532. "System.Runtime.Serialization.Formatters/5.0.0.0": {
  3533. "compile": {
  3534. "System.Runtime.Serialization.Formatters.dll": {}
  3535. },
  3536. "compileOnly": true
  3537. },
  3538. "System.Runtime.Serialization.Json/5.0.0.0": {
  3539. "compile": {
  3540. "System.Runtime.Serialization.Json.dll": {}
  3541. },
  3542. "compileOnly": true
  3543. },
  3544. "System.Runtime.Serialization.Primitives/5.0.0.0": {
  3545. "compile": {
  3546. "System.Runtime.Serialization.Primitives.dll": {}
  3547. },
  3548. "compileOnly": true
  3549. },
  3550. "System.Runtime.Serialization.Xml/5.0.0.0": {
  3551. "compile": {
  3552. "System.Runtime.Serialization.Xml.dll": {}
  3553. },
  3554. "compileOnly": true
  3555. },
  3556. "System.Security.AccessControl.Reference/5.0.0.0": {
  3557. "compile": {
  3558. "System.Security.AccessControl.dll": {}
  3559. },
  3560. "compileOnly": true
  3561. },
  3562. "System.Security.Claims.Reference/5.0.0.0": {
  3563. "compile": {
  3564. "System.Security.Claims.dll": {}
  3565. },
  3566. "compileOnly": true
  3567. },
  3568. "System.Security.Cryptography.Algorithms.Reference/5.0.0.0": {
  3569. "compile": {
  3570. "System.Security.Cryptography.Algorithms.dll": {}
  3571. },
  3572. "compileOnly": true
  3573. },
  3574. "System.Security.Cryptography.Cng.Reference/5.0.0.0": {
  3575. "compile": {
  3576. "System.Security.Cryptography.Cng.dll": {}
  3577. },
  3578. "compileOnly": true
  3579. },
  3580. "System.Security.Cryptography.Csp.Reference/5.0.0.0": {
  3581. "compile": {
  3582. "System.Security.Cryptography.Csp.dll": {}
  3583. },
  3584. "compileOnly": true
  3585. },
  3586. "System.Security.Cryptography.Encoding.Reference/5.0.0.0": {
  3587. "compile": {
  3588. "System.Security.Cryptography.Encoding.dll": {}
  3589. },
  3590. "compileOnly": true
  3591. },
  3592. "System.Security.Cryptography.Primitives.Reference/5.0.0.0": {
  3593. "compile": {
  3594. "System.Security.Cryptography.Primitives.dll": {}
  3595. },
  3596. "compileOnly": true
  3597. },
  3598. "System.Security.Cryptography.X509Certificates.Reference/5.0.0.0": {
  3599. "compile": {
  3600. "System.Security.Cryptography.X509Certificates.dll": {}
  3601. },
  3602. "compileOnly": true
  3603. },
  3604. "System.Security.Cryptography.Xml/5.0.0.0": {
  3605. "compile": {
  3606. "System.Security.Cryptography.Xml.dll": {}
  3607. },
  3608. "compileOnly": true
  3609. },
  3610. "System.Security/4.0.0.0": {
  3611. "compile": {
  3612. "System.Security.dll": {}
  3613. },
  3614. "compileOnly": true
  3615. },
  3616. "System.Security.Permissions.Reference/5.0.0.0": {
  3617. "compile": {
  3618. "System.Security.Permissions.dll": {}
  3619. },
  3620. "compileOnly": true
  3621. },
  3622. "System.Security.Principal.Reference/5.0.0.0": {
  3623. "compile": {
  3624. "System.Security.Principal.dll": {}
  3625. },
  3626. "compileOnly": true
  3627. },
  3628. "System.Security.Principal.Windows.Reference/5.0.0.0": {
  3629. "compile": {
  3630. "System.Security.Principal.Windows.dll": {}
  3631. },
  3632. "compileOnly": true
  3633. },
  3634. "System.Security.SecureString/5.0.0.0": {
  3635. "compile": {
  3636. "System.Security.SecureString.dll": {}
  3637. },
  3638. "compileOnly": true
  3639. },
  3640. "System.ServiceModel.Web/4.0.0.0": {
  3641. "compile": {
  3642. "System.ServiceModel.Web.dll": {}
  3643. },
  3644. "compileOnly": true
  3645. },
  3646. "System.ServiceProcess/4.0.0.0": {
  3647. "compile": {
  3648. "System.ServiceProcess.dll": {}
  3649. },
  3650. "compileOnly": true
  3651. },
  3652. "System.Text.Encoding.CodePages.Reference/5.0.0.0": {
  3653. "compile": {
  3654. "System.Text.Encoding.CodePages.dll": {}
  3655. },
  3656. "compileOnly": true
  3657. },
  3658. "System.Text.Encoding.Reference/5.0.0.0": {
  3659. "compile": {
  3660. "System.Text.Encoding.dll": {}
  3661. },
  3662. "compileOnly": true
  3663. },
  3664. "System.Text.Encoding.Extensions.Reference/5.0.0.0": {
  3665. "compile": {
  3666. "System.Text.Encoding.Extensions.dll": {}
  3667. },
  3668. "compileOnly": true
  3669. },
  3670. "System.Text.Encodings.Web.Reference/5.0.0.0": {
  3671. "compile": {
  3672. "System.Text.Encodings.Web.dll": {}
  3673. },
  3674. "compileOnly": true
  3675. },
  3676. "System.Text.Json/5.0.0.0": {
  3677. "compile": {
  3678. "System.Text.Json.dll": {}
  3679. },
  3680. "compileOnly": true
  3681. },
  3682. "System.Text.RegularExpressions.Reference/5.0.0.0": {
  3683. "compile": {
  3684. "System.Text.RegularExpressions.dll": {}
  3685. },
  3686. "compileOnly": true
  3687. },
  3688. "System.Threading.Reference/5.0.0.0": {
  3689. "compile": {
  3690. "System.Threading.dll": {}
  3691. },
  3692. "compileOnly": true
  3693. },
  3694. "System.Threading.Overlapped/5.0.0.0": {
  3695. "compile": {
  3696. "System.Threading.Overlapped.dll": {}
  3697. },
  3698. "compileOnly": true
  3699. },
  3700. "System.Threading.Tasks.Dataflow/5.0.0.0": {
  3701. "compile": {
  3702. "System.Threading.Tasks.Dataflow.dll": {}
  3703. },
  3704. "compileOnly": true
  3705. },
  3706. "System.Threading.Tasks.Reference/5.0.0.0": {
  3707. "compile": {
  3708. "System.Threading.Tasks.dll": {}
  3709. },
  3710. "compileOnly": true
  3711. },
  3712. "System.Threading.Tasks.Extensions.Reference/5.0.0.0": {
  3713. "compile": {
  3714. "System.Threading.Tasks.Extensions.dll": {}
  3715. },
  3716. "compileOnly": true
  3717. },
  3718. "System.Threading.Tasks.Parallel/5.0.0.0": {
  3719. "compile": {
  3720. "System.Threading.Tasks.Parallel.dll": {}
  3721. },
  3722. "compileOnly": true
  3723. },
  3724. "System.Threading.Thread.Reference/5.0.0.0": {
  3725. "compile": {
  3726. "System.Threading.Thread.dll": {}
  3727. },
  3728. "compileOnly": true
  3729. },
  3730. "System.Threading.ThreadPool.Reference/5.0.0.0": {
  3731. "compile": {
  3732. "System.Threading.ThreadPool.dll": {}
  3733. },
  3734. "compileOnly": true
  3735. },
  3736. "System.Threading.Timer.Reference/5.0.0.0": {
  3737. "compile": {
  3738. "System.Threading.Timer.dll": {}
  3739. },
  3740. "compileOnly": true
  3741. },
  3742. "System.Transactions/4.0.0.0": {
  3743. "compile": {
  3744. "System.Transactions.dll": {}
  3745. },
  3746. "compileOnly": true
  3747. },
  3748. "System.Transactions.Local/5.0.0.0": {
  3749. "compile": {
  3750. "System.Transactions.Local.dll": {}
  3751. },
  3752. "compileOnly": true
  3753. },
  3754. "System.ValueTuple/4.0.3.0": {
  3755. "compile": {
  3756. "System.ValueTuple.dll": {}
  3757. },
  3758. "compileOnly": true
  3759. },
  3760. "System.Web/4.0.0.0": {
  3761. "compile": {
  3762. "System.Web.dll": {}
  3763. },
  3764. "compileOnly": true
  3765. },
  3766. "System.Web.HttpUtility/5.0.0.0": {
  3767. "compile": {
  3768. "System.Web.HttpUtility.dll": {}
  3769. },
  3770. "compileOnly": true
  3771. },
  3772. "System.Windows/4.0.0.0": {
  3773. "compile": {
  3774. "System.Windows.dll": {}
  3775. },
  3776. "compileOnly": true
  3777. },
  3778. "System.Windows.Extensions.Reference/5.0.0.0": {
  3779. "compile": {
  3780. "System.Windows.Extensions.dll": {}
  3781. },
  3782. "compileOnly": true
  3783. },
  3784. "System.Xml/4.0.0.0": {
  3785. "compile": {
  3786. "System.Xml.dll": {}
  3787. },
  3788. "compileOnly": true
  3789. },
  3790. "System.Xml.Linq/4.0.0.0": {
  3791. "compile": {
  3792. "System.Xml.Linq.dll": {}
  3793. },
  3794. "compileOnly": true
  3795. },
  3796. "System.Xml.ReaderWriter.Reference/5.0.0.0": {
  3797. "compile": {
  3798. "System.Xml.ReaderWriter.dll": {}
  3799. },
  3800. "compileOnly": true
  3801. },
  3802. "System.Xml.Serialization/4.0.0.0": {
  3803. "compile": {
  3804. "System.Xml.Serialization.dll": {}
  3805. },
  3806. "compileOnly": true
  3807. },
  3808. "System.Xml.XDocument.Reference/5.0.0.0": {
  3809. "compile": {
  3810. "System.Xml.XDocument.dll": {}
  3811. },
  3812. "compileOnly": true
  3813. },
  3814. "System.Xml.XmlDocument.Reference/5.0.0.0": {
  3815. "compile": {
  3816. "System.Xml.XmlDocument.dll": {}
  3817. },
  3818. "compileOnly": true
  3819. },
  3820. "System.Xml.XmlSerializer/5.0.0.0": {
  3821. "compile": {
  3822. "System.Xml.XmlSerializer.dll": {}
  3823. },
  3824. "compileOnly": true
  3825. },
  3826. "System.Xml.XPath/5.0.0.0": {
  3827. "compile": {
  3828. "System.Xml.XPath.dll": {}
  3829. },
  3830. "compileOnly": true
  3831. },
  3832. "System.Xml.XPath.XDocument/5.0.0.0": {
  3833. "compile": {
  3834. "System.Xml.XPath.XDocument.dll": {}
  3835. },
  3836. "compileOnly": true
  3837. },
  3838. "WindowsBase/4.0.0.0": {
  3839. "compile": {
  3840. "WindowsBase.dll": {}
  3841. },
  3842. "compileOnly": true
  3843. }
  3844. }
  3845. },
  3846. "libraries": {
  3847. "Ropin.IOT.MqttService/1.0.0": {
  3848. "type": "project",
  3849. "serviceable": false,
  3850. "sha512": ""
  3851. },
  3852. "AdvancedStringBuilder/0.1.0": {
  3853. "type": "package",
  3854. "serviceable": true,
  3855. "sha512": "sha512-IbN3r5whlJvi8MhCDPVpIb+NVScyUcKSdcJZrnoXFDyzPDISl3AbWouNBYIHRdZdfGuzqCQEhM1vkxbIKqQVaQ==",
  3856. "path": "advancedstringbuilder/0.1.0",
  3857. "hashPath": "advancedstringbuilder.0.1.0.nupkg.sha512"
  3858. },
  3859. "Autofac/6.2.0": {
  3860. "type": "package",
  3861. "serviceable": true,
  3862. "sha512": "sha512-BX8IM0GANE38uSr4QwXL4PgA8vWWYt2P5cZzipn/vDnf0fDbPSGKSHEroJ09rB7ANxdyf7MdEgVs+pvL8kwYCg==",
  3863. "path": "autofac/6.2.0",
  3864. "hashPath": "autofac.6.2.0.nupkg.sha512"
  3865. },
  3866. "Autofac.Extras.DynamicProxy/6.0.0": {
  3867. "type": "package",
  3868. "serviceable": true,
  3869. "sha512": "sha512-Z86ZX33qYZ09xhdnYEyD/xilGUQBiITSAdHVZw59Qb+bN+tN/WFVDBZGQZZnI3+l8+hdjM2zWdcK4sgUEavRzw==",
  3870. "path": "autofac.extras.dynamicproxy/6.0.0",
  3871. "hashPath": "autofac.extras.dynamicproxy.6.0.0.nupkg.sha512"
  3872. },
  3873. "AutoMapper/10.1.1": {
  3874. "type": "package",
  3875. "serviceable": true,
  3876. "sha512": "sha512-uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  3877. "path": "automapper/10.1.1",
  3878. "hashPath": "automapper.10.1.1.nupkg.sha512"
  3879. },
  3880. "BouncyCastle.NetCore/1.8.5": {
  3881. "type": "package",
  3882. "serviceable": true,
  3883. "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==",
  3884. "path": "bouncycastle.netcore/1.8.5",
  3885. "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512"
  3886. },
  3887. "Castle.Core/4.4.0": {
  3888. "type": "package",
  3889. "serviceable": true,
  3890. "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  3891. "path": "castle.core/4.4.0",
  3892. "hashPath": "castle.core.4.4.0.nupkg.sha512"
  3893. },
  3894. "Coravel/4.2.1": {
  3895. "type": "package",
  3896. "serviceable": true,
  3897. "sha512": "sha512-goj2P5yivyj5e3UwHyA9ET1s11US0V73Labc+KBT7fF+sZK5Uts/CE0lPAxgtWj+/uwM1bRpFDdAFNh+z7U2kw==",
  3898. "path": "coravel/4.2.1",
  3899. "hashPath": "coravel.4.2.1.nupkg.sha512"
  3900. },
  3901. "FluentEmail.Core/3.0.2": {
  3902. "type": "package",
  3903. "serviceable": true,
  3904. "sha512": "sha512-uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==",
  3905. "path": "fluentemail.core/3.0.2",
  3906. "hashPath": "fluentemail.core.3.0.2.nupkg.sha512"
  3907. },
  3908. "FluentEmail.Smtp/3.0.2": {
  3909. "type": "package",
  3910. "serviceable": true,
  3911. "sha512": "sha512-Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==",
  3912. "path": "fluentemail.smtp/3.0.2",
  3913. "hashPath": "fluentemail.smtp.3.0.2.nupkg.sha512"
  3914. },
  3915. "Google.Protobuf/3.11.4": {
  3916. "type": "package",
  3917. "serviceable": true,
  3918. "sha512": "sha512-dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  3919. "path": "google.protobuf/3.11.4",
  3920. "hashPath": "google.protobuf.3.11.4.nupkg.sha512"
  3921. },
  3922. "JavaScriptEngineSwitcher.ChakraCore/3.21.0": {
  3923. "type": "package",
  3924. "serviceable": true,
  3925. "sha512": "sha512-rJLy5KuyC9EJI6sKwG9w3fXWEXKX767ewJuP45VgjWxaFqamPO6hhzI19u7TXj3d9/bKQIUD9Vwc54PCYOKDtA==",
  3926. "path": "javascriptengineswitcher.chakracore/3.21.0",
  3927. "hashPath": "javascriptengineswitcher.chakracore.3.21.0.nupkg.sha512"
  3928. },
  3929. "JavaScriptEngineSwitcher.ChakraCore.Native.linux-x64/3.21.0": {
  3930. "type": "package",
  3931. "serviceable": true,
  3932. "sha512": "sha512-490LVkaKSX9OUJmuEhcC3zuCNxq4q10n4nYNrKYJyX91hWE0PJQKK9dVmk33dSG19o8Vo5sYU5xZ3J1ugAflBw==",
  3933. "path": "javascriptengineswitcher.chakracore.native.linux-x64/3.21.0",
  3934. "hashPath": "javascriptengineswitcher.chakracore.native.linux-x64.3.21.0.nupkg.sha512"
  3935. },
  3936. "JavaScriptEngineSwitcher.ChakraCore.Native.win-x64/3.21.0": {
  3937. "type": "package",
  3938. "serviceable": true,
  3939. "sha512": "sha512-RVUj0ZcsQns8HC0jhyEC6lvSHKH+AtK8p5JTPTL/fe2lIx1RVq7d+Hn3/t3bDbSDGP7afY1kmETJFchmwNc/3Q==",
  3940. "path": "javascriptengineswitcher.chakracore.native.win-x64/3.21.0",
  3941. "hashPath": "javascriptengineswitcher.chakracore.native.win-x64.3.21.0.nupkg.sha512"
  3942. },
  3943. "JavaScriptEngineSwitcher.Core/3.21.0": {
  3944. "type": "package",
  3945. "serviceable": true,
  3946. "sha512": "sha512-/gXflCb9CMjXkoY84mOZcVoezfT6/pIPvgAsaSm+ADrOE4PSFCVyMg5/e9JRuGCHPnQRo6Cj34WgAVJ0BKJVLw==",
  3947. "path": "javascriptengineswitcher.core/3.21.0",
  3948. "hashPath": "javascriptengineswitcher.core.3.21.0.nupkg.sha512"
  3949. },
  3950. "K4os.Compression.LZ4/1.1.11": {
  3951. "type": "package",
  3952. "serviceable": true,
  3953. "sha512": "sha512-RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  3954. "path": "k4os.compression.lz4/1.1.11",
  3955. "hashPath": "k4os.compression.lz4.1.1.11.nupkg.sha512"
  3956. },
  3957. "K4os.Compression.LZ4.Streams/1.1.11": {
  3958. "type": "package",
  3959. "serviceable": true,
  3960. "sha512": "sha512-x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  3961. "path": "k4os.compression.lz4.streams/1.1.11",
  3962. "hashPath": "k4os.compression.lz4.streams.1.1.11.nupkg.sha512"
  3963. },
  3964. "K4os.Hash.xxHash/1.0.6": {
  3965. "type": "package",
  3966. "serviceable": true,
  3967. "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  3968. "path": "k4os.hash.xxhash/1.0.6",
  3969. "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512"
  3970. },
  3971. "LinqKit.Microsoft.EntityFrameworkCore/5.0.24": {
  3972. "type": "package",
  3973. "serviceable": true,
  3974. "sha512": "sha512-PemexcITl6b0EWnZczQG3fEHFoMxUKHRoe54rHFVOlIu3b4sXzZ10pa7KBByaK5O5UGmqCdWS6K1AjXQpF+JOg==",
  3975. "path": "linqkit.microsoft.entityframeworkcore/5.0.24",
  3976. "hashPath": "linqkit.microsoft.entityframeworkcore.5.0.24.nupkg.sha512"
  3977. },
  3978. "log4net/2.0.17": {
  3979. "type": "package",
  3980. "serviceable": true,
  3981. "sha512": "sha512-qnnDf/ubJzwm2i1xH7nRMjEDoD+ctse7nZDqb+p7L1PvZc6ykpMoEesWr1/9hFqlsbII2v9e8yyQHJhoDQh7ZA==",
  3982. "path": "log4net/2.0.17",
  3983. "hashPath": "log4net.2.0.17.nupkg.sha512"
  3984. },
  3985. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3986. "type": "package",
  3987. "serviceable": true,
  3988. "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3989. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3990. "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
  3991. },
  3992. "Microsoft.AspNetCore.Http.Features/5.0.0": {
  3993. "type": "package",
  3994. "serviceable": true,
  3995. "sha512": "sha512-6sVnhFwtsjEVL09FsYpAttQ3Og6Jxg1dQFLF9XQUThi1myq64imjhj1swd92TXMLCp5wmt8szDixZXXdx64qhg==",
  3996. "path": "microsoft.aspnetcore.http.features/5.0.0",
  3997. "hashPath": "microsoft.aspnetcore.http.features.5.0.0.nupkg.sha512"
  3998. },
  3999. "Microsoft.AspNetCore.NodeServices/3.1.30": {
  4000. "type": "package",
  4001. "serviceable": true,
  4002. "sha512": "sha512-hFSZxykx1tk2lC5u7T/SfGrOglTGlHZu1Oqz1JCBvR/8GPbMSLBNHUZb+MAq3OTM00pRLTWsri9g3HeEVytsmQ==",
  4003. "path": "microsoft.aspnetcore.nodeservices/3.1.30",
  4004. "hashPath": "microsoft.aspnetcore.nodeservices.3.1.30.nupkg.sha512"
  4005. },
  4006. "Microsoft.CSharp/4.7.0": {
  4007. "type": "package",
  4008. "serviceable": true,
  4009. "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4010. "path": "microsoft.csharp/4.7.0",
  4011. "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
  4012. },
  4013. "Microsoft.EntityFrameworkCore/5.0.0": {
  4014. "type": "package",
  4015. "serviceable": true,
  4016. "sha512": "sha512-QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  4017. "path": "microsoft.entityframeworkcore/5.0.0",
  4018. "hashPath": "microsoft.entityframeworkcore.5.0.0.nupkg.sha512"
  4019. },
  4020. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  4021. "type": "package",
  4022. "serviceable": true,
  4023. "sha512": "sha512-PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  4024. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  4025. "hashPath": "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512"
  4026. },
  4027. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  4028. "type": "package",
  4029. "serviceable": true,
  4030. "sha512": "sha512-l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  4031. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  4032. "hashPath": "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512"
  4033. },
  4034. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  4035. "type": "package",
  4036. "serviceable": true,
  4037. "sha512": "sha512-UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  4038. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  4039. "hashPath": "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512"
  4040. },
  4041. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  4042. "type": "package",
  4043. "serviceable": true,
  4044. "sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  4045. "path": "microsoft.extensions.apidescription.server/3.0.0",
  4046. "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512"
  4047. },
  4048. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  4049. "type": "package",
  4050. "serviceable": true,
  4051. "sha512": "sha512-bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  4052. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  4053. "hashPath": "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512"
  4054. },
  4055. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  4056. "type": "package",
  4057. "serviceable": true,
  4058. "sha512": "sha512-/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  4059. "path": "microsoft.extensions.caching.memory/5.0.0",
  4060. "hashPath": "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512"
  4061. },
  4062. "Microsoft.Extensions.Configuration/5.0.0": {
  4063. "type": "package",
  4064. "serviceable": true,
  4065. "sha512": "sha512-LN322qEKHjuVEhhXueTUe7RNePooZmS8aGid5aK2woX3NPjSnONFyKUc6+JknOS6ce6h2tCLfKPTBXE3mN/6Ag==",
  4066. "path": "microsoft.extensions.configuration/5.0.0",
  4067. "hashPath": "microsoft.extensions.configuration.5.0.0.nupkg.sha512"
  4068. },
  4069. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4070. "type": "package",
  4071. "serviceable": true,
  4072. "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4073. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4074. "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512"
  4075. },
  4076. "Microsoft.Extensions.Configuration.Binder/5.0.0": {
  4077. "type": "package",
  4078. "serviceable": true,
  4079. "sha512": "sha512-Of1Irt1+NzWO+yEYkuDh5TpT4On7LKl98Q9iLqCdOZps6XXEWDj3AKtmyvzJPVXZe4apmkJJIiDL7rR1yC+hjQ==",
  4080. "path": "microsoft.extensions.configuration.binder/5.0.0",
  4081. "hashPath": "microsoft.extensions.configuration.binder.5.0.0.nupkg.sha512"
  4082. },
  4083. "Microsoft.Extensions.Configuration.FileExtensions/5.0.0": {
  4084. "type": "package",
  4085. "serviceable": true,
  4086. "sha512": "sha512-rRdspYKA18ViPOISwAihhCMbusHsARCOtDMwa23f+BGEdIjpKPlhs3LLjmKlxfhpGXBjIsS0JpXcChjRUN+PAw==",
  4087. "path": "microsoft.extensions.configuration.fileextensions/5.0.0",
  4088. "hashPath": "microsoft.extensions.configuration.fileextensions.5.0.0.nupkg.sha512"
  4089. },
  4090. "Microsoft.Extensions.Configuration.Json/5.0.0": {
  4091. "type": "package",
  4092. "serviceable": true,
  4093. "sha512": "sha512-Pak8ymSUfdzPfBTLHxeOwcR32YDbuVfhnH2hkfOLnJNQd19ItlBdpMjIDY9C5O/nS2Sn9bzDMai0ZrvF7KyY/Q==",
  4094. "path": "microsoft.extensions.configuration.json/5.0.0",
  4095. "hashPath": "microsoft.extensions.configuration.json.5.0.0.nupkg.sha512"
  4096. },
  4097. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  4098. "type": "package",
  4099. "serviceable": true,
  4100. "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  4101. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  4102. "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512"
  4103. },
  4104. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  4105. "type": "package",
  4106. "serviceable": true,
  4107. "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  4108. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  4109. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
  4110. },
  4111. "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": {
  4112. "type": "package",
  4113. "serviceable": true,
  4114. "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==",
  4115. "path": "microsoft.extensions.fileproviders.abstractions/5.0.0",
  4116. "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512"
  4117. },
  4118. "Microsoft.Extensions.FileProviders.Physical/5.0.0": {
  4119. "type": "package",
  4120. "serviceable": true,
  4121. "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==",
  4122. "path": "microsoft.extensions.fileproviders.physical/5.0.0",
  4123. "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512"
  4124. },
  4125. "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
  4126. "type": "package",
  4127. "serviceable": true,
  4128. "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
  4129. "path": "microsoft.extensions.filesystemglobbing/5.0.0",
  4130. "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512"
  4131. },
  4132. "Microsoft.Extensions.Hosting.Abstractions/3.1.0": {
  4133. "type": "package",
  4134. "serviceable": true,
  4135. "sha512": "sha512-LiOP1ceFaPBxaE28SOjtORzOVCJk33TT5VQ/Cg5EoatZh1dxpPAgAV/0ruzWKQE7WAHU3F1H9Z6rFgsQwIb9uQ==",
  4136. "path": "microsoft.extensions.hosting.abstractions/3.1.0",
  4137. "hashPath": "microsoft.extensions.hosting.abstractions.3.1.0.nupkg.sha512"
  4138. },
  4139. "Microsoft.Extensions.Http/5.0.0": {
  4140. "type": "package",
  4141. "serviceable": true,
  4142. "sha512": "sha512-kT1ijDKZuSUhBtYoC1sXrmVKP7mA08h9Xrsr4VrS/QOtiKCEtUTTd7dd3XI9dwAb46tZSak13q/zdIcr4jqbyg==",
  4143. "path": "microsoft.extensions.http/5.0.0",
  4144. "hashPath": "microsoft.extensions.http.5.0.0.nupkg.sha512"
  4145. },
  4146. "Microsoft.Extensions.Logging/5.0.0": {
  4147. "type": "package",
  4148. "serviceable": true,
  4149. "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  4150. "path": "microsoft.extensions.logging/5.0.0",
  4151. "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
  4152. },
  4153. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  4154. "type": "package",
  4155. "serviceable": true,
  4156. "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  4157. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  4158. "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
  4159. },
  4160. "Microsoft.Extensions.Logging.Configuration/3.1.30": {
  4161. "type": "package",
  4162. "serviceable": true,
  4163. "sha512": "sha512-Ms9XEgRwnT4WEBGOYQj2+QrfO2sSSiDXKyI+zk8lhP2gfxg6zPjkCWVakNg5JDFdtnxQVKtRtKvL4UaR946WXw==",
  4164. "path": "microsoft.extensions.logging.configuration/3.1.30",
  4165. "hashPath": "microsoft.extensions.logging.configuration.3.1.30.nupkg.sha512"
  4166. },
  4167. "Microsoft.Extensions.Logging.Console/3.1.30": {
  4168. "type": "package",
  4169. "serviceable": true,
  4170. "sha512": "sha512-eZzNLp84etekzfKngW6rdZkt2qeTI0EhQ1kS8t2bfbYhJRCUwOPooYn7/lP+KkIoI7SaimKD1Q1RTm0FO8V/iw==",
  4171. "path": "microsoft.extensions.logging.console/3.1.30",
  4172. "hashPath": "microsoft.extensions.logging.console.3.1.30.nupkg.sha512"
  4173. },
  4174. "Microsoft.Extensions.Options/5.0.0": {
  4175. "type": "package",
  4176. "serviceable": true,
  4177. "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  4178. "path": "microsoft.extensions.options/5.0.0",
  4179. "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
  4180. },
  4181. "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.30": {
  4182. "type": "package",
  4183. "serviceable": true,
  4184. "sha512": "sha512-mncFsagGHBUlkdZYiZ5A35Ni4564ryXI8//Zrthd80WcjBm7A7By6707CQqBEWRz2nnAwO++UgOdXPLaFO9yaw==",
  4185. "path": "microsoft.extensions.options.configurationextensions/3.1.30",
  4186. "hashPath": "microsoft.extensions.options.configurationextensions.3.1.30.nupkg.sha512"
  4187. },
  4188. "Microsoft.Extensions.Primitives/5.0.0": {
  4189. "type": "package",
  4190. "serviceable": true,
  4191. "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  4192. "path": "microsoft.extensions.primitives/5.0.0",
  4193. "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512"
  4194. },
  4195. "Microsoft.NETCore.Platforms/5.0.0": {
  4196. "type": "package",
  4197. "serviceable": true,
  4198. "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  4199. "path": "microsoft.netcore.platforms/5.0.0",
  4200. "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
  4201. },
  4202. "Microsoft.NETCore.Targets/1.1.0": {
  4203. "type": "package",
  4204. "serviceable": true,
  4205. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4206. "path": "microsoft.netcore.targets/1.1.0",
  4207. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  4208. },
  4209. "Microsoft.OpenApi/1.2.3": {
  4210. "type": "package",
  4211. "serviceable": true,
  4212. "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4213. "path": "microsoft.openapi/1.2.3",
  4214. "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512"
  4215. },
  4216. "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.2": {
  4217. "type": "package",
  4218. "serviceable": true,
  4219. "sha512": "sha512-5daNXm8Hb016oETmuHXiW8jclmRR9CzM7XrOh2htYhQ/7AAYtqntZ1MrZkh09+JTtdjYdGsy2XIMPe9cg83x5w==",
  4220. "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.2",
  4221. "hashPath": "microsoft.visualstudio.azure.containers.tools.targets.1.17.2.nupkg.sha512"
  4222. },
  4223. "Microsoft.Win32.Primitives/4.3.0": {
  4224. "type": "package",
  4225. "serviceable": true,
  4226. "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4227. "path": "microsoft.win32.primitives/4.3.0",
  4228. "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
  4229. },
  4230. "Microsoft.Win32.SystemEvents/5.0.0": {
  4231. "type": "package",
  4232. "serviceable": true,
  4233. "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==",
  4234. "path": "microsoft.win32.systemevents/5.0.0",
  4235. "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512"
  4236. },
  4237. "MQTTnet/4.2.1.781": {
  4238. "type": "package",
  4239. "serviceable": true,
  4240. "sha512": "sha512-oKPAoW1Ynukm6ws6P3NmmMlNb3xIlPVf/89WVCkoWOJdz1dYtAdGYRdqe876pVsPru4j0uyU/hKf7iL3NU1r6w==",
  4241. "path": "mqttnet/4.2.1.781",
  4242. "hashPath": "mqttnet.4.2.1.781.nupkg.sha512"
  4243. },
  4244. "MQTTnet.AspNetCore/4.2.1.781": {
  4245. "type": "package",
  4246. "serviceable": true,
  4247. "sha512": "sha512-lYier2E8s2TQn6PTCT8HnHih2RmTj2UlsqdPmrLJPayfmOSB7eaWLJARtwGpHHF2HEgsNtt99CkNdLwDrKu7AQ==",
  4248. "path": "mqttnet.aspnetcore/4.2.1.781",
  4249. "hashPath": "mqttnet.aspnetcore.4.2.1.781.nupkg.sha512"
  4250. },
  4251. "MySql.Data/8.0.23": {
  4252. "type": "package",
  4253. "serviceable": true,
  4254. "sha512": "sha512-5UPKd+OX5aSR8fTTfWzAifYg8YKOWMVX39bkdGbI3/SB3khdE13DZVMrk6CzjXvo2BjXic9emf2lwgvJTVWnyg==",
  4255. "path": "mysql.data/8.0.23",
  4256. "hashPath": "mysql.data.8.0.23.nupkg.sha512"
  4257. },
  4258. "MySqlConnector/1.1.0": {
  4259. "type": "package",
  4260. "serviceable": true,
  4261. "sha512": "sha512-RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  4262. "path": "mysqlconnector/1.1.0",
  4263. "hashPath": "mysqlconnector.1.1.0.nupkg.sha512"
  4264. },
  4265. "NETStandard.Library/1.6.1": {
  4266. "type": "package",
  4267. "serviceable": true,
  4268. "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4269. "path": "netstandard.library/1.6.1",
  4270. "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
  4271. },
  4272. "Newtonsoft.Json/13.0.3": {
  4273. "type": "package",
  4274. "serviceable": true,
  4275. "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  4276. "path": "newtonsoft.json/13.0.3",
  4277. "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
  4278. },
  4279. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  4280. "type": "package",
  4281. "serviceable": true,
  4282. "sha512": "sha512-g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  4283. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  4284. "hashPath": "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512"
  4285. },
  4286. "QRCoder/1.4.3": {
  4287. "type": "package",
  4288. "serviceable": true,
  4289. "sha512": "sha512-fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
  4290. "path": "qrcoder/1.4.3",
  4291. "hashPath": "qrcoder.1.4.3.nupkg.sha512"
  4292. },
  4293. "Quartz/3.3.3": {
  4294. "type": "package",
  4295. "serviceable": true,
  4296. "sha512": "sha512-waM2gyFQ/JOuvyHmlEnN2jpAiqJAEMEaPq6K6rT/mmLKlW0qvxCIYARDRfWaenJ6qQBHH2/J6cx+bCPVZb8z1Q==",
  4297. "path": "quartz/3.3.3",
  4298. "hashPath": "quartz.3.3.3.nupkg.sha512"
  4299. },
  4300. "RabbitMQ.Client/6.8.1": {
  4301. "type": "package",
  4302. "serviceable": true,
  4303. "sha512": "sha512-jNsmGgmCNw2S/NzskeN2ijtGywtH4Sk/G6jWUTD5sY9SrC27Xz6BsLIiB8hdsfjeyWCa4j4GvCIGkpE8wrjU1Q==",
  4304. "path": "rabbitmq.client/6.8.1",
  4305. "hashPath": "rabbitmq.client.6.8.1.nupkg.sha512"
  4306. },
  4307. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4308. "type": "package",
  4309. "serviceable": true,
  4310. "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4311. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4312. "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4313. },
  4314. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4315. "type": "package",
  4316. "serviceable": true,
  4317. "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4318. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4319. "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4320. },
  4321. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4322. "type": "package",
  4323. "serviceable": true,
  4324. "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4325. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4326. "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4327. },
  4328. "runtime.native.System/4.3.0": {
  4329. "type": "package",
  4330. "serviceable": true,
  4331. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4332. "path": "runtime.native.system/4.3.0",
  4333. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  4334. },
  4335. "runtime.native.System.IO.Compression/4.3.0": {
  4336. "type": "package",
  4337. "serviceable": true,
  4338. "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4339. "path": "runtime.native.system.io.compression/4.3.0",
  4340. "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
  4341. },
  4342. "runtime.native.System.Net.Http/4.3.0": {
  4343. "type": "package",
  4344. "serviceable": true,
  4345. "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4346. "path": "runtime.native.system.net.http/4.3.0",
  4347. "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
  4348. },
  4349. "runtime.native.System.Net.Security/4.3.0": {
  4350. "type": "package",
  4351. "serviceable": true,
  4352. "sha512": "sha512-M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
  4353. "path": "runtime.native.system.net.security/4.3.0",
  4354. "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512"
  4355. },
  4356. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4357. "type": "package",
  4358. "serviceable": true,
  4359. "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4360. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4361. "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  4362. },
  4363. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4364. "type": "package",
  4365. "serviceable": true,
  4366. "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4367. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4368. "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4369. },
  4370. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4371. "type": "package",
  4372. "serviceable": true,
  4373. "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4374. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4375. "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4376. },
  4377. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4378. "type": "package",
  4379. "serviceable": true,
  4380. "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4381. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4382. "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4383. },
  4384. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4385. "type": "package",
  4386. "serviceable": true,
  4387. "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4388. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4389. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  4390. },
  4391. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4392. "type": "package",
  4393. "serviceable": true,
  4394. "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4395. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4396. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4397. },
  4398. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4399. "type": "package",
  4400. "serviceable": true,
  4401. "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4402. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4403. "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4404. },
  4405. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4406. "type": "package",
  4407. "serviceable": true,
  4408. "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4409. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4410. "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4411. },
  4412. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4413. "type": "package",
  4414. "serviceable": true,
  4415. "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4416. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4417. "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4418. },
  4419. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4420. "type": "package",
  4421. "serviceable": true,
  4422. "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4423. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4424. "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4425. },
  4426. "SixLabors.ImageSharp/2.1.6": {
  4427. "type": "package",
  4428. "serviceable": true,
  4429. "sha512": "sha512-zgCyj3F3U19A/YpmhZAplH5dyh7BTCjLutzbVbHGd7zzPfSMA0Tm+DFqQEb/V52Y8EW1FH5wZ91PaEDSrUaNOw==",
  4430. "path": "sixlabors.imagesharp/2.1.6",
  4431. "hashPath": "sixlabors.imagesharp.2.1.6.nupkg.sha512"
  4432. },
  4433. "SSH.NET/2020.0.0-beta1": {
  4434. "type": "package",
  4435. "serviceable": true,
  4436. "sha512": "sha512-GdgJ3eFSEXkGIror8SfxbXKJM/g0Eofm4bM6LIYANSM1foOJc640adnr1dqs2BTf/MKwL+9NqOUm3RvQm1CxtA==",
  4437. "path": "ssh.net/2020.0.0-beta1",
  4438. "hashPath": "ssh.net.2020.0.0-beta1.nupkg.sha512"
  4439. },
  4440. "SshNet.Security.Cryptography/1.3.0": {
  4441. "type": "package",
  4442. "serviceable": true,
  4443. "sha512": "sha512-5pBIXRjcSO/amY8WztpmNOhaaCNHY/B6CcYDI7FSTgqSyo/ZUojlLiKcsl+YGbxQuLX439qIkMfP0PHqxqJi/Q==",
  4444. "path": "sshnet.security.cryptography/1.3.0",
  4445. "hashPath": "sshnet.security.cryptography.1.3.0.nupkg.sha512"
  4446. },
  4447. "StackExchange.Redis/1.2.4": {
  4448. "type": "package",
  4449. "serviceable": true,
  4450. "sha512": "sha512-xD3zD0avV8j9aeWN+snvyclHURaxZZfzPQFSYTfWMIJ/BppyPSryr/vyysh7EQDX5qcw+HhE6TUb7Ho9Doadyw==",
  4451. "path": "stackexchange.redis/1.2.4",
  4452. "hashPath": "stackexchange.redis.1.2.4.nupkg.sha512"
  4453. },
  4454. "Swashbuckle.AspNetCore/5.6.3": {
  4455. "type": "package",
  4456. "serviceable": true,
  4457. "sha512": "sha512-UkL9GU0mfaA+7RwYjEaBFvAzL8qNQhNqAeV5uaWUu/Z+fVgvK9FHkGCpTXBqSQeIHuZaIElzxnLDdIqGzuCnVg==",
  4458. "path": "swashbuckle.aspnetcore/5.6.3",
  4459. "hashPath": "swashbuckle.aspnetcore.5.6.3.nupkg.sha512"
  4460. },
  4461. "Swashbuckle.AspNetCore.Swagger/5.6.3": {
  4462. "type": "package",
  4463. "serviceable": true,
  4464. "sha512": "sha512-rn/MmLscjg6WSnTZabojx5DQYle2GjPanSPbCU3Kw8Hy72KyQR3uy8R1Aew5vpNALjfUFm2M/vwUtqdOlzw+GA==",
  4465. "path": "swashbuckle.aspnetcore.swagger/5.6.3",
  4466. "hashPath": "swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512"
  4467. },
  4468. "Swashbuckle.AspNetCore.SwaggerGen/5.6.3": {
  4469. "type": "package",
  4470. "serviceable": true,
  4471. "sha512": "sha512-CkhVeod/iLd3ikVTDOwG5sym8BE5xbqGJ15iF3cC7ZPg2kEwDQL4a88xjkzsvC9oOB2ax6B0rK0EgRK+eOBX+w==",
  4472. "path": "swashbuckle.aspnetcore.swaggergen/5.6.3",
  4473. "hashPath": "swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512"
  4474. },
  4475. "Swashbuckle.AspNetCore.SwaggerUI/5.6.3": {
  4476. "type": "package",
  4477. "serviceable": true,
  4478. "sha512": "sha512-BPvcPxQRMsYZ3HnYmGKRWDwX4Wo29WHh14Q6B10BB8Yfbbcza+agOC2UrBFA1EuaZuOsFLbp6E2+mqVNF/Je8A==",
  4479. "path": "swashbuckle.aspnetcore.swaggerui/5.6.3",
  4480. "hashPath": "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512"
  4481. },
  4482. "System.AppContext/4.3.0": {
  4483. "type": "package",
  4484. "serviceable": true,
  4485. "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4486. "path": "system.appcontext/4.3.0",
  4487. "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
  4488. },
  4489. "System.Buffers/4.5.1": {
  4490. "type": "package",
  4491. "serviceable": true,
  4492. "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  4493. "path": "system.buffers/4.5.1",
  4494. "hashPath": "system.buffers.4.5.1.nupkg.sha512"
  4495. },
  4496. "System.Collections/4.3.0": {
  4497. "type": "package",
  4498. "serviceable": true,
  4499. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4500. "path": "system.collections/4.3.0",
  4501. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  4502. },
  4503. "System.Collections.Concurrent/4.3.0": {
  4504. "type": "package",
  4505. "serviceable": true,
  4506. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4507. "path": "system.collections.concurrent/4.3.0",
  4508. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  4509. },
  4510. "System.Collections.Immutable/5.0.0": {
  4511. "type": "package",
  4512. "serviceable": true,
  4513. "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  4514. "path": "system.collections.immutable/5.0.0",
  4515. "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512"
  4516. },
  4517. "System.Collections.NonGeneric/4.3.0": {
  4518. "type": "package",
  4519. "serviceable": true,
  4520. "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  4521. "path": "system.collections.nongeneric/4.3.0",
  4522. "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
  4523. },
  4524. "System.Collections.Specialized/4.3.0": {
  4525. "type": "package",
  4526. "serviceable": true,
  4527. "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  4528. "path": "system.collections.specialized/4.3.0",
  4529. "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
  4530. },
  4531. "System.ComponentModel/4.3.0": {
  4532. "type": "package",
  4533. "serviceable": true,
  4534. "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  4535. "path": "system.componentmodel/4.3.0",
  4536. "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
  4537. },
  4538. "System.ComponentModel.Annotations/5.0.0": {
  4539. "type": "package",
  4540. "serviceable": true,
  4541. "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  4542. "path": "system.componentmodel.annotations/5.0.0",
  4543. "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512"
  4544. },
  4545. "System.ComponentModel.Primitives/4.3.0": {
  4546. "type": "package",
  4547. "serviceable": true,
  4548. "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  4549. "path": "system.componentmodel.primitives/4.3.0",
  4550. "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
  4551. },
  4552. "System.ComponentModel.TypeConverter/4.3.0": {
  4553. "type": "package",
  4554. "serviceable": true,
  4555. "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  4556. "path": "system.componentmodel.typeconverter/4.3.0",
  4557. "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
  4558. },
  4559. "System.Configuration.ConfigurationManager/4.7.0": {
  4560. "type": "package",
  4561. "serviceable": true,
  4562. "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  4563. "path": "system.configuration.configurationmanager/4.7.0",
  4564. "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512"
  4565. },
  4566. "System.Console/4.3.0": {
  4567. "type": "package",
  4568. "serviceable": true,
  4569. "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  4570. "path": "system.console/4.3.0",
  4571. "hashPath": "system.console.4.3.0.nupkg.sha512"
  4572. },
  4573. "System.Diagnostics.Debug/4.3.0": {
  4574. "type": "package",
  4575. "serviceable": true,
  4576. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  4577. "path": "system.diagnostics.debug/4.3.0",
  4578. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  4579. },
  4580. "System.Diagnostics.DiagnosticSource/5.0.0": {
  4581. "type": "package",
  4582. "serviceable": true,
  4583. "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  4584. "path": "system.diagnostics.diagnosticsource/5.0.0",
  4585. "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512"
  4586. },
  4587. "System.Diagnostics.Tools/4.3.0": {
  4588. "type": "package",
  4589. "serviceable": true,
  4590. "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  4591. "path": "system.diagnostics.tools/4.3.0",
  4592. "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
  4593. },
  4594. "System.Diagnostics.TraceSource/4.3.0": {
  4595. "type": "package",
  4596. "serviceable": true,
  4597. "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  4598. "path": "system.diagnostics.tracesource/4.3.0",
  4599. "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512"
  4600. },
  4601. "System.Diagnostics.Tracing/4.3.0": {
  4602. "type": "package",
  4603. "serviceable": true,
  4604. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  4605. "path": "system.diagnostics.tracing/4.3.0",
  4606. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  4607. },
  4608. "System.Drawing.Common/5.0.3": {
  4609. "type": "package",
  4610. "serviceable": true,
  4611. "sha512": "sha512-rEQZuslijqdsO0pkJn7LtGBaMc//YVA8de0meGihkg9oLPaN+w+/Pb5d71lgp0YjPoKgBKNMvdq0IPnoW4PEng==",
  4612. "path": "system.drawing.common/5.0.3",
  4613. "hashPath": "system.drawing.common.5.0.3.nupkg.sha512"
  4614. },
  4615. "System.Dynamic.Runtime/4.3.0": {
  4616. "type": "package",
  4617. "serviceable": true,
  4618. "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  4619. "path": "system.dynamic.runtime/4.3.0",
  4620. "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
  4621. },
  4622. "System.Globalization/4.3.0": {
  4623. "type": "package",
  4624. "serviceable": true,
  4625. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  4626. "path": "system.globalization/4.3.0",
  4627. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  4628. },
  4629. "System.Globalization.Calendars/4.3.0": {
  4630. "type": "package",
  4631. "serviceable": true,
  4632. "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  4633. "path": "system.globalization.calendars/4.3.0",
  4634. "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
  4635. },
  4636. "System.Globalization.Extensions/4.3.0": {
  4637. "type": "package",
  4638. "serviceable": true,
  4639. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  4640. "path": "system.globalization.extensions/4.3.0",
  4641. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  4642. },
  4643. "System.IO/4.3.0": {
  4644. "type": "package",
  4645. "serviceable": true,
  4646. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4647. "path": "system.io/4.3.0",
  4648. "hashPath": "system.io.4.3.0.nupkg.sha512"
  4649. },
  4650. "System.IO.Compression/4.3.0": {
  4651. "type": "package",
  4652. "serviceable": true,
  4653. "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  4654. "path": "system.io.compression/4.3.0",
  4655. "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
  4656. },
  4657. "System.IO.Compression.ZipFile/4.3.0": {
  4658. "type": "package",
  4659. "serviceable": true,
  4660. "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  4661. "path": "system.io.compression.zipfile/4.3.0",
  4662. "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
  4663. },
  4664. "System.IO.FileSystem/4.3.0": {
  4665. "type": "package",
  4666. "serviceable": true,
  4667. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  4668. "path": "system.io.filesystem/4.3.0",
  4669. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  4670. },
  4671. "System.IO.FileSystem.Primitives/4.3.0": {
  4672. "type": "package",
  4673. "serviceable": true,
  4674. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  4675. "path": "system.io.filesystem.primitives/4.3.0",
  4676. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  4677. },
  4678. "System.IO.Pipelines/5.0.0": {
  4679. "type": "package",
  4680. "serviceable": true,
  4681. "sha512": "sha512-irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==",
  4682. "path": "system.io.pipelines/5.0.0",
  4683. "hashPath": "system.io.pipelines.5.0.0.nupkg.sha512"
  4684. },
  4685. "System.Linq/4.3.0": {
  4686. "type": "package",
  4687. "serviceable": true,
  4688. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  4689. "path": "system.linq/4.3.0",
  4690. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  4691. },
  4692. "System.Linq.Expressions/4.3.0": {
  4693. "type": "package",
  4694. "serviceable": true,
  4695. "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  4696. "path": "system.linq.expressions/4.3.0",
  4697. "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
  4698. },
  4699. "System.Memory/4.5.5": {
  4700. "type": "package",
  4701. "serviceable": true,
  4702. "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  4703. "path": "system.memory/4.5.5",
  4704. "hashPath": "system.memory.4.5.5.nupkg.sha512"
  4705. },
  4706. "System.Net.Http/4.3.0": {
  4707. "type": "package",
  4708. "serviceable": true,
  4709. "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  4710. "path": "system.net.http/4.3.0",
  4711. "hashPath": "system.net.http.4.3.0.nupkg.sha512"
  4712. },
  4713. "System.Net.NameResolution/4.3.0": {
  4714. "type": "package",
  4715. "serviceable": true,
  4716. "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  4717. "path": "system.net.nameresolution/4.3.0",
  4718. "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
  4719. },
  4720. "System.Net.Primitives/4.3.0": {
  4721. "type": "package",
  4722. "serviceable": true,
  4723. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  4724. "path": "system.net.primitives/4.3.0",
  4725. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  4726. },
  4727. "System.Net.Security/4.3.0": {
  4728. "type": "package",
  4729. "serviceable": true,
  4730. "sha512": "sha512-IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
  4731. "path": "system.net.security/4.3.0",
  4732. "hashPath": "system.net.security.4.3.0.nupkg.sha512"
  4733. },
  4734. "System.Net.Sockets/4.3.0": {
  4735. "type": "package",
  4736. "serviceable": true,
  4737. "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  4738. "path": "system.net.sockets/4.3.0",
  4739. "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
  4740. },
  4741. "System.ObjectModel/4.3.0": {
  4742. "type": "package",
  4743. "serviceable": true,
  4744. "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  4745. "path": "system.objectmodel/4.3.0",
  4746. "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
  4747. },
  4748. "System.Reflection/4.3.0": {
  4749. "type": "package",
  4750. "serviceable": true,
  4751. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  4752. "path": "system.reflection/4.3.0",
  4753. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  4754. },
  4755. "System.Reflection.Emit/4.7.0": {
  4756. "type": "package",
  4757. "serviceable": true,
  4758. "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  4759. "path": "system.reflection.emit/4.7.0",
  4760. "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
  4761. },
  4762. "System.Reflection.Emit.ILGeneration/4.3.0": {
  4763. "type": "package",
  4764. "serviceable": true,
  4765. "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  4766. "path": "system.reflection.emit.ilgeneration/4.3.0",
  4767. "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
  4768. },
  4769. "System.Reflection.Emit.Lightweight/4.3.0": {
  4770. "type": "package",
  4771. "serviceable": true,
  4772. "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  4773. "path": "system.reflection.emit.lightweight/4.3.0",
  4774. "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
  4775. },
  4776. "System.Reflection.Extensions/4.3.0": {
  4777. "type": "package",
  4778. "serviceable": true,
  4779. "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  4780. "path": "system.reflection.extensions/4.3.0",
  4781. "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
  4782. },
  4783. "System.Reflection.Primitives/4.3.0": {
  4784. "type": "package",
  4785. "serviceable": true,
  4786. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  4787. "path": "system.reflection.primitives/4.3.0",
  4788. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  4789. },
  4790. "System.Reflection.TypeExtensions/4.3.0": {
  4791. "type": "package",
  4792. "serviceable": true,
  4793. "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  4794. "path": "system.reflection.typeextensions/4.3.0",
  4795. "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
  4796. },
  4797. "System.Resources.ResourceManager/4.3.0": {
  4798. "type": "package",
  4799. "serviceable": true,
  4800. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  4801. "path": "system.resources.resourcemanager/4.3.0",
  4802. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  4803. },
  4804. "System.Runtime/4.3.0": {
  4805. "type": "package",
  4806. "serviceable": true,
  4807. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  4808. "path": "system.runtime/4.3.0",
  4809. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  4810. },
  4811. "System.Runtime.CompilerServices.Unsafe/5.0.0": {
  4812. "type": "package",
  4813. "serviceable": true,
  4814. "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
  4815. "path": "system.runtime.compilerservices.unsafe/5.0.0",
  4816. "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
  4817. },
  4818. "System.Runtime.Extensions/4.3.0": {
  4819. "type": "package",
  4820. "serviceable": true,
  4821. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  4822. "path": "system.runtime.extensions/4.3.0",
  4823. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  4824. },
  4825. "System.Runtime.Handles/4.3.0": {
  4826. "type": "package",
  4827. "serviceable": true,
  4828. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  4829. "path": "system.runtime.handles/4.3.0",
  4830. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  4831. },
  4832. "System.Runtime.InteropServices/4.3.0": {
  4833. "type": "package",
  4834. "serviceable": true,
  4835. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  4836. "path": "system.runtime.interopservices/4.3.0",
  4837. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  4838. },
  4839. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  4840. "type": "package",
  4841. "serviceable": true,
  4842. "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  4843. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  4844. "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
  4845. },
  4846. "System.Runtime.Numerics/4.3.0": {
  4847. "type": "package",
  4848. "serviceable": true,
  4849. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  4850. "path": "system.runtime.numerics/4.3.0",
  4851. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  4852. },
  4853. "System.Security.AccessControl/4.7.0": {
  4854. "type": "package",
  4855. "serviceable": true,
  4856. "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  4857. "path": "system.security.accesscontrol/4.7.0",
  4858. "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
  4859. },
  4860. "System.Security.Claims/4.3.0": {
  4861. "type": "package",
  4862. "serviceable": true,
  4863. "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  4864. "path": "system.security.claims/4.3.0",
  4865. "hashPath": "system.security.claims.4.3.0.nupkg.sha512"
  4866. },
  4867. "System.Security.Cryptography.Algorithms/4.3.0": {
  4868. "type": "package",
  4869. "serviceable": true,
  4870. "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  4871. "path": "system.security.cryptography.algorithms/4.3.0",
  4872. "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
  4873. },
  4874. "System.Security.Cryptography.Cng/4.3.0": {
  4875. "type": "package",
  4876. "serviceable": true,
  4877. "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  4878. "path": "system.security.cryptography.cng/4.3.0",
  4879. "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
  4880. },
  4881. "System.Security.Cryptography.Csp/4.3.0": {
  4882. "type": "package",
  4883. "serviceable": true,
  4884. "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  4885. "path": "system.security.cryptography.csp/4.3.0",
  4886. "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
  4887. },
  4888. "System.Security.Cryptography.Encoding/4.3.0": {
  4889. "type": "package",
  4890. "serviceable": true,
  4891. "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  4892. "path": "system.security.cryptography.encoding/4.3.0",
  4893. "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
  4894. },
  4895. "System.Security.Cryptography.OpenSsl/4.3.0": {
  4896. "type": "package",
  4897. "serviceable": true,
  4898. "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  4899. "path": "system.security.cryptography.openssl/4.3.0",
  4900. "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  4901. },
  4902. "System.Security.Cryptography.Primitives/4.3.0": {
  4903. "type": "package",
  4904. "serviceable": true,
  4905. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  4906. "path": "system.security.cryptography.primitives/4.3.0",
  4907. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  4908. },
  4909. "System.Security.Cryptography.ProtectedData/4.7.0": {
  4910. "type": "package",
  4911. "serviceable": true,
  4912. "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  4913. "path": "system.security.cryptography.protecteddata/4.7.0",
  4914. "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
  4915. },
  4916. "System.Security.Cryptography.X509Certificates/4.3.0": {
  4917. "type": "package",
  4918. "serviceable": true,
  4919. "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  4920. "path": "system.security.cryptography.x509certificates/4.3.0",
  4921. "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
  4922. },
  4923. "System.Security.Permissions/4.7.0": {
  4924. "type": "package",
  4925. "serviceable": true,
  4926. "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  4927. "path": "system.security.permissions/4.7.0",
  4928. "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
  4929. },
  4930. "System.Security.Principal/4.3.0": {
  4931. "type": "package",
  4932. "serviceable": true,
  4933. "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  4934. "path": "system.security.principal/4.3.0",
  4935. "hashPath": "system.security.principal.4.3.0.nupkg.sha512"
  4936. },
  4937. "System.Security.Principal.Windows/4.7.0": {
  4938. "type": "package",
  4939. "serviceable": true,
  4940. "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  4941. "path": "system.security.principal.windows/4.7.0",
  4942. "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
  4943. },
  4944. "System.Text.Encoding/4.3.0": {
  4945. "type": "package",
  4946. "serviceable": true,
  4947. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  4948. "path": "system.text.encoding/4.3.0",
  4949. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  4950. },
  4951. "System.Text.Encoding.CodePages/5.0.0": {
  4952. "type": "package",
  4953. "serviceable": true,
  4954. "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==",
  4955. "path": "system.text.encoding.codepages/5.0.0",
  4956. "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512"
  4957. },
  4958. "System.Text.Encoding.Extensions/4.3.0": {
  4959. "type": "package",
  4960. "serviceable": true,
  4961. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  4962. "path": "system.text.encoding.extensions/4.3.0",
  4963. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  4964. },
  4965. "System.Text.Encodings.Web/4.5.0": {
  4966. "type": "package",
  4967. "serviceable": true,
  4968. "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  4969. "path": "system.text.encodings.web/4.5.0",
  4970. "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
  4971. },
  4972. "System.Text.RegularExpressions/4.3.0": {
  4973. "type": "package",
  4974. "serviceable": true,
  4975. "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  4976. "path": "system.text.regularexpressions/4.3.0",
  4977. "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
  4978. },
  4979. "System.Threading/4.3.0": {
  4980. "type": "package",
  4981. "serviceable": true,
  4982. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  4983. "path": "system.threading/4.3.0",
  4984. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  4985. },
  4986. "System.Threading.Channels/7.0.0": {
  4987. "type": "package",
  4988. "serviceable": true,
  4989. "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
  4990. "path": "system.threading.channels/7.0.0",
  4991. "hashPath": "system.threading.channels.7.0.0.nupkg.sha512"
  4992. },
  4993. "System.Threading.Tasks/4.3.0": {
  4994. "type": "package",
  4995. "serviceable": true,
  4996. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  4997. "path": "system.threading.tasks/4.3.0",
  4998. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  4999. },
  5000. "System.Threading.Tasks.Extensions/4.3.0": {
  5001. "type": "package",
  5002. "serviceable": true,
  5003. "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  5004. "path": "system.threading.tasks.extensions/4.3.0",
  5005. "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
  5006. },
  5007. "System.Threading.Thread/4.3.0": {
  5008. "type": "package",
  5009. "serviceable": true,
  5010. "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  5011. "path": "system.threading.thread/4.3.0",
  5012. "hashPath": "system.threading.thread.4.3.0.nupkg.sha512"
  5013. },
  5014. "System.Threading.ThreadPool/4.3.0": {
  5015. "type": "package",
  5016. "serviceable": true,
  5017. "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
  5018. "path": "system.threading.threadpool/4.3.0",
  5019. "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
  5020. },
  5021. "System.Threading.Timer/4.3.0": {
  5022. "type": "package",
  5023. "serviceable": true,
  5024. "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  5025. "path": "system.threading.timer/4.3.0",
  5026. "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
  5027. },
  5028. "System.Windows.Extensions/4.7.0": {
  5029. "type": "package",
  5030. "serviceable": true,
  5031. "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  5032. "path": "system.windows.extensions/4.7.0",
  5033. "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
  5034. },
  5035. "System.Xml.ReaderWriter/4.3.0": {
  5036. "type": "package",
  5037. "serviceable": true,
  5038. "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  5039. "path": "system.xml.readerwriter/4.3.0",
  5040. "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
  5041. },
  5042. "System.Xml.XDocument/4.3.0": {
  5043. "type": "package",
  5044. "serviceable": true,
  5045. "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  5046. "path": "system.xml.xdocument/4.3.0",
  5047. "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
  5048. },
  5049. "System.Xml.XmlDocument/4.3.0": {
  5050. "type": "package",
  5051. "serviceable": true,
  5052. "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  5053. "path": "system.xml.xmldocument/4.3.0",
  5054. "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
  5055. },
  5056. "ZXing.Net/0.16.9": {
  5057. "type": "package",
  5058. "serviceable": true,
  5059. "sha512": "sha512-7WaVMHklpT3Ye2ragqRIwlFRsb6kOk63BOGADV0fan3ulVfGLUYkDi5yNUsZS/7FVNkWbtHAlDLmu4WnHGfqvQ==",
  5060. "path": "zxing.net/0.16.9",
  5061. "hashPath": "zxing.net.0.16.9.nupkg.sha512"
  5062. },
  5063. "ZXing.Net.Bindings.ImageSharp.V2/0.16.15": {
  5064. "type": "package",
  5065. "serviceable": true,
  5066. "sha512": "sha512-f+oesw0O/KH3YoL1j9ktw65O5Ilx932sS98xrFbdRRgQVxuMdTZ/AP9A7qll3e2ygO1YL3JFtRsZeiFPqzBZkw==",
  5067. "path": "zxing.net.bindings.imagesharp.v2/0.16.15",
  5068. "hashPath": "zxing.net.bindings.imagesharp.v2.0.16.15.nupkg.sha512"
  5069. },
  5070. "Ropin.Core.Common/1.0.0": {
  5071. "type": "project",
  5072. "serviceable": false,
  5073. "sha512": ""
  5074. },
  5075. "Ropin.Core.Extensions/1.0.0": {
  5076. "type": "project",
  5077. "serviceable": false,
  5078. "sha512": ""
  5079. },
  5080. "Ropin.Inspection.Common/1.0.0": {
  5081. "type": "project",
  5082. "serviceable": false,
  5083. "sha512": ""
  5084. },
  5085. "Ropin.Inspection.Model/1.0.0": {
  5086. "type": "project",
  5087. "serviceable": false,
  5088. "sha512": ""
  5089. },
  5090. "Ropin.Inspection.Repository/1.0.0": {
  5091. "type": "project",
  5092. "serviceable": false,
  5093. "sha512": ""
  5094. },
  5095. "Ropin.Inspection.Service/1.0.0": {
  5096. "type": "project",
  5097. "serviceable": false,
  5098. "sha512": ""
  5099. },
  5100. "Ropin.Inspection.Tasks/1.0.0": {
  5101. "type": "project",
  5102. "serviceable": false,
  5103. "sha512": ""
  5104. },
  5105. "Microsoft.AspNetCore.Antiforgery/5.0.0.0": {
  5106. "type": "referenceassembly",
  5107. "serviceable": false,
  5108. "sha512": ""
  5109. },
  5110. "Microsoft.AspNetCore.Authentication.Abstractions/5.0.0.0": {
  5111. "type": "referenceassembly",
  5112. "serviceable": false,
  5113. "sha512": ""
  5114. },
  5115. "Microsoft.AspNetCore.Authentication.Cookies/5.0.0.0": {
  5116. "type": "referenceassembly",
  5117. "serviceable": false,
  5118. "sha512": ""
  5119. },
  5120. "Microsoft.AspNetCore.Authentication.Core/5.0.0.0": {
  5121. "type": "referenceassembly",
  5122. "serviceable": false,
  5123. "sha512": ""
  5124. },
  5125. "Microsoft.AspNetCore.Authentication/5.0.0.0": {
  5126. "type": "referenceassembly",
  5127. "serviceable": false,
  5128. "sha512": ""
  5129. },
  5130. "Microsoft.AspNetCore.Authentication.OAuth/5.0.0.0": {
  5131. "type": "referenceassembly",
  5132. "serviceable": false,
  5133. "sha512": ""
  5134. },
  5135. "Microsoft.AspNetCore.Authorization/5.0.0.0": {
  5136. "type": "referenceassembly",
  5137. "serviceable": false,
  5138. "sha512": ""
  5139. },
  5140. "Microsoft.AspNetCore.Authorization.Policy/5.0.0.0": {
  5141. "type": "referenceassembly",
  5142. "serviceable": false,
  5143. "sha512": ""
  5144. },
  5145. "Microsoft.AspNetCore.Components.Authorization/5.0.0.0": {
  5146. "type": "referenceassembly",
  5147. "serviceable": false,
  5148. "sha512": ""
  5149. },
  5150. "Microsoft.AspNetCore.Components/5.0.0.0": {
  5151. "type": "referenceassembly",
  5152. "serviceable": false,
  5153. "sha512": ""
  5154. },
  5155. "Microsoft.AspNetCore.Components.Forms/5.0.0.0": {
  5156. "type": "referenceassembly",
  5157. "serviceable": false,
  5158. "sha512": ""
  5159. },
  5160. "Microsoft.AspNetCore.Components.Server/5.0.0.0": {
  5161. "type": "referenceassembly",
  5162. "serviceable": false,
  5163. "sha512": ""
  5164. },
  5165. "Microsoft.AspNetCore.Components.Web/5.0.0.0": {
  5166. "type": "referenceassembly",
  5167. "serviceable": false,
  5168. "sha512": ""
  5169. },
  5170. "Microsoft.AspNetCore.Connections.Abstractions/5.0.0.0": {
  5171. "type": "referenceassembly",
  5172. "serviceable": false,
  5173. "sha512": ""
  5174. },
  5175. "Microsoft.AspNetCore.CookiePolicy/5.0.0.0": {
  5176. "type": "referenceassembly",
  5177. "serviceable": false,
  5178. "sha512": ""
  5179. },
  5180. "Microsoft.AspNetCore.Cors/5.0.0.0": {
  5181. "type": "referenceassembly",
  5182. "serviceable": false,
  5183. "sha512": ""
  5184. },
  5185. "Microsoft.AspNetCore.Cryptography.Internal/5.0.0.0": {
  5186. "type": "referenceassembly",
  5187. "serviceable": false,
  5188. "sha512": ""
  5189. },
  5190. "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.0.0": {
  5191. "type": "referenceassembly",
  5192. "serviceable": false,
  5193. "sha512": ""
  5194. },
  5195. "Microsoft.AspNetCore.DataProtection.Abstractions/5.0.0.0": {
  5196. "type": "referenceassembly",
  5197. "serviceable": false,
  5198. "sha512": ""
  5199. },
  5200. "Microsoft.AspNetCore.DataProtection/5.0.0.0": {
  5201. "type": "referenceassembly",
  5202. "serviceable": false,
  5203. "sha512": ""
  5204. },
  5205. "Microsoft.AspNetCore.DataProtection.Extensions/5.0.0.0": {
  5206. "type": "referenceassembly",
  5207. "serviceable": false,
  5208. "sha512": ""
  5209. },
  5210. "Microsoft.AspNetCore.Diagnostics.Abstractions/5.0.0.0": {
  5211. "type": "referenceassembly",
  5212. "serviceable": false,
  5213. "sha512": ""
  5214. },
  5215. "Microsoft.AspNetCore.Diagnostics/5.0.0.0": {
  5216. "type": "referenceassembly",
  5217. "serviceable": false,
  5218. "sha512": ""
  5219. },
  5220. "Microsoft.AspNetCore.Diagnostics.HealthChecks/5.0.0.0": {
  5221. "type": "referenceassembly",
  5222. "serviceable": false,
  5223. "sha512": ""
  5224. },
  5225. "Microsoft.AspNetCore/5.0.0.0": {
  5226. "type": "referenceassembly",
  5227. "serviceable": false,
  5228. "sha512": ""
  5229. },
  5230. "Microsoft.AspNetCore.HostFiltering/5.0.0.0": {
  5231. "type": "referenceassembly",
  5232. "serviceable": false,
  5233. "sha512": ""
  5234. },
  5235. "Microsoft.AspNetCore.Hosting.Abstractions/5.0.0.0": {
  5236. "type": "referenceassembly",
  5237. "serviceable": false,
  5238. "sha512": ""
  5239. },
  5240. "Microsoft.AspNetCore.Hosting/5.0.0.0": {
  5241. "type": "referenceassembly",
  5242. "serviceable": false,
  5243. "sha512": ""
  5244. },
  5245. "Microsoft.AspNetCore.Hosting.Server.Abstractions/5.0.0.0": {
  5246. "type": "referenceassembly",
  5247. "serviceable": false,
  5248. "sha512": ""
  5249. },
  5250. "Microsoft.AspNetCore.Html.Abstractions/5.0.0.0": {
  5251. "type": "referenceassembly",
  5252. "serviceable": false,
  5253. "sha512": ""
  5254. },
  5255. "Microsoft.AspNetCore.Http.Abstractions.Reference/5.0.0.0": {
  5256. "type": "referenceassembly",
  5257. "serviceable": false,
  5258. "sha512": ""
  5259. },
  5260. "Microsoft.AspNetCore.Http.Connections.Common/5.0.0.0": {
  5261. "type": "referenceassembly",
  5262. "serviceable": false,
  5263. "sha512": ""
  5264. },
  5265. "Microsoft.AspNetCore.Http.Connections/5.0.0.0": {
  5266. "type": "referenceassembly",
  5267. "serviceable": false,
  5268. "sha512": ""
  5269. },
  5270. "Microsoft.AspNetCore.Http/5.0.0.0": {
  5271. "type": "referenceassembly",
  5272. "serviceable": false,
  5273. "sha512": ""
  5274. },
  5275. "Microsoft.AspNetCore.Http.Extensions/5.0.0.0": {
  5276. "type": "referenceassembly",
  5277. "serviceable": false,
  5278. "sha512": ""
  5279. },
  5280. "Microsoft.AspNetCore.Http.Features.Reference/5.0.0.0": {
  5281. "type": "referenceassembly",
  5282. "serviceable": false,
  5283. "sha512": ""
  5284. },
  5285. "Microsoft.AspNetCore.HttpOverrides/5.0.0.0": {
  5286. "type": "referenceassembly",
  5287. "serviceable": false,
  5288. "sha512": ""
  5289. },
  5290. "Microsoft.AspNetCore.HttpsPolicy/5.0.0.0": {
  5291. "type": "referenceassembly",
  5292. "serviceable": false,
  5293. "sha512": ""
  5294. },
  5295. "Microsoft.AspNetCore.Identity/5.0.0.0": {
  5296. "type": "referenceassembly",
  5297. "serviceable": false,
  5298. "sha512": ""
  5299. },
  5300. "Microsoft.AspNetCore.Localization/5.0.0.0": {
  5301. "type": "referenceassembly",
  5302. "serviceable": false,
  5303. "sha512": ""
  5304. },
  5305. "Microsoft.AspNetCore.Localization.Routing/5.0.0.0": {
  5306. "type": "referenceassembly",
  5307. "serviceable": false,
  5308. "sha512": ""
  5309. },
  5310. "Microsoft.AspNetCore.Metadata/5.0.0.0": {
  5311. "type": "referenceassembly",
  5312. "serviceable": false,
  5313. "sha512": ""
  5314. },
  5315. "Microsoft.AspNetCore.Mvc.Abstractions/5.0.0.0": {
  5316. "type": "referenceassembly",
  5317. "serviceable": false,
  5318. "sha512": ""
  5319. },
  5320. "Microsoft.AspNetCore.Mvc.ApiExplorer/5.0.0.0": {
  5321. "type": "referenceassembly",
  5322. "serviceable": false,
  5323. "sha512": ""
  5324. },
  5325. "Microsoft.AspNetCore.Mvc.Core/5.0.0.0": {
  5326. "type": "referenceassembly",
  5327. "serviceable": false,
  5328. "sha512": ""
  5329. },
  5330. "Microsoft.AspNetCore.Mvc.Cors/5.0.0.0": {
  5331. "type": "referenceassembly",
  5332. "serviceable": false,
  5333. "sha512": ""
  5334. },
  5335. "Microsoft.AspNetCore.Mvc.DataAnnotations/5.0.0.0": {
  5336. "type": "referenceassembly",
  5337. "serviceable": false,
  5338. "sha512": ""
  5339. },
  5340. "Microsoft.AspNetCore.Mvc/5.0.0.0": {
  5341. "type": "referenceassembly",
  5342. "serviceable": false,
  5343. "sha512": ""
  5344. },
  5345. "Microsoft.AspNetCore.Mvc.Formatters.Json/5.0.0.0": {
  5346. "type": "referenceassembly",
  5347. "serviceable": false,
  5348. "sha512": ""
  5349. },
  5350. "Microsoft.AspNetCore.Mvc.Formatters.Xml/5.0.0.0": {
  5351. "type": "referenceassembly",
  5352. "serviceable": false,
  5353. "sha512": ""
  5354. },
  5355. "Microsoft.AspNetCore.Mvc.Localization/5.0.0.0": {
  5356. "type": "referenceassembly",
  5357. "serviceable": false,
  5358. "sha512": ""
  5359. },
  5360. "Microsoft.AspNetCore.Mvc.Razor/5.0.0.0": {
  5361. "type": "referenceassembly",
  5362. "serviceable": false,
  5363. "sha512": ""
  5364. },
  5365. "Microsoft.AspNetCore.Mvc.RazorPages/5.0.0.0": {
  5366. "type": "referenceassembly",
  5367. "serviceable": false,
  5368. "sha512": ""
  5369. },
  5370. "Microsoft.AspNetCore.Mvc.TagHelpers/5.0.0.0": {
  5371. "type": "referenceassembly",
  5372. "serviceable": false,
  5373. "sha512": ""
  5374. },
  5375. "Microsoft.AspNetCore.Mvc.ViewFeatures/5.0.0.0": {
  5376. "type": "referenceassembly",
  5377. "serviceable": false,
  5378. "sha512": ""
  5379. },
  5380. "Microsoft.AspNetCore.Razor/5.0.0.0": {
  5381. "type": "referenceassembly",
  5382. "serviceable": false,
  5383. "sha512": ""
  5384. },
  5385. "Microsoft.AspNetCore.Razor.Runtime/5.0.0.0": {
  5386. "type": "referenceassembly",
  5387. "serviceable": false,
  5388. "sha512": ""
  5389. },
  5390. "Microsoft.AspNetCore.ResponseCaching.Abstractions/5.0.0.0": {
  5391. "type": "referenceassembly",
  5392. "serviceable": false,
  5393. "sha512": ""
  5394. },
  5395. "Microsoft.AspNetCore.ResponseCaching/5.0.0.0": {
  5396. "type": "referenceassembly",
  5397. "serviceable": false,
  5398. "sha512": ""
  5399. },
  5400. "Microsoft.AspNetCore.ResponseCompression/5.0.0.0": {
  5401. "type": "referenceassembly",
  5402. "serviceable": false,
  5403. "sha512": ""
  5404. },
  5405. "Microsoft.AspNetCore.Rewrite/5.0.0.0": {
  5406. "type": "referenceassembly",
  5407. "serviceable": false,
  5408. "sha512": ""
  5409. },
  5410. "Microsoft.AspNetCore.Routing.Abstractions/5.0.0.0": {
  5411. "type": "referenceassembly",
  5412. "serviceable": false,
  5413. "sha512": ""
  5414. },
  5415. "Microsoft.AspNetCore.Routing/5.0.0.0": {
  5416. "type": "referenceassembly",
  5417. "serviceable": false,
  5418. "sha512": ""
  5419. },
  5420. "Microsoft.AspNetCore.Server.HttpSys/5.0.0.0": {
  5421. "type": "referenceassembly",
  5422. "serviceable": false,
  5423. "sha512": ""
  5424. },
  5425. "Microsoft.AspNetCore.Server.IIS/5.0.0.0": {
  5426. "type": "referenceassembly",
  5427. "serviceable": false,
  5428. "sha512": ""
  5429. },
  5430. "Microsoft.AspNetCore.Server.IISIntegration/5.0.0.0": {
  5431. "type": "referenceassembly",
  5432. "serviceable": false,
  5433. "sha512": ""
  5434. },
  5435. "Microsoft.AspNetCore.Server.Kestrel.Core/5.0.0.0": {
  5436. "type": "referenceassembly",
  5437. "serviceable": false,
  5438. "sha512": ""
  5439. },
  5440. "Microsoft.AspNetCore.Server.Kestrel/5.0.0.0": {
  5441. "type": "referenceassembly",
  5442. "serviceable": false,
  5443. "sha512": ""
  5444. },
  5445. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/5.0.0.0": {
  5446. "type": "referenceassembly",
  5447. "serviceable": false,
  5448. "sha512": ""
  5449. },
  5450. "Microsoft.AspNetCore.Session/5.0.0.0": {
  5451. "type": "referenceassembly",
  5452. "serviceable": false,
  5453. "sha512": ""
  5454. },
  5455. "Microsoft.AspNetCore.SignalR.Common/5.0.0.0": {
  5456. "type": "referenceassembly",
  5457. "serviceable": false,
  5458. "sha512": ""
  5459. },
  5460. "Microsoft.AspNetCore.SignalR.Core/5.0.0.0": {
  5461. "type": "referenceassembly",
  5462. "serviceable": false,
  5463. "sha512": ""
  5464. },
  5465. "Microsoft.AspNetCore.SignalR/5.0.0.0": {
  5466. "type": "referenceassembly",
  5467. "serviceable": false,
  5468. "sha512": ""
  5469. },
  5470. "Microsoft.AspNetCore.SignalR.Protocols.Json/5.0.0.0": {
  5471. "type": "referenceassembly",
  5472. "serviceable": false,
  5473. "sha512": ""
  5474. },
  5475. "Microsoft.AspNetCore.StaticFiles/5.0.0.0": {
  5476. "type": "referenceassembly",
  5477. "serviceable": false,
  5478. "sha512": ""
  5479. },
  5480. "Microsoft.AspNetCore.WebSockets/5.0.0.0": {
  5481. "type": "referenceassembly",
  5482. "serviceable": false,
  5483. "sha512": ""
  5484. },
  5485. "Microsoft.AspNetCore.WebUtilities/5.0.0.0": {
  5486. "type": "referenceassembly",
  5487. "serviceable": false,
  5488. "sha512": ""
  5489. },
  5490. "Microsoft.CSharp.Reference/5.0.0.0": {
  5491. "type": "referenceassembly",
  5492. "serviceable": false,
  5493. "sha512": ""
  5494. },
  5495. "Microsoft.Extensions.Caching.Abstractions.Reference/5.0.0.0": {
  5496. "type": "referenceassembly",
  5497. "serviceable": false,
  5498. "sha512": ""
  5499. },
  5500. "Microsoft.Extensions.Caching.Memory.Reference/5.0.0.0": {
  5501. "type": "referenceassembly",
  5502. "serviceable": false,
  5503. "sha512": ""
  5504. },
  5505. "Microsoft.Extensions.Configuration.Abstractions.Reference/5.0.0.0": {
  5506. "type": "referenceassembly",
  5507. "serviceable": false,
  5508. "sha512": ""
  5509. },
  5510. "Microsoft.Extensions.Configuration.Binder.Reference/5.0.0.0": {
  5511. "type": "referenceassembly",
  5512. "serviceable": false,
  5513. "sha512": ""
  5514. },
  5515. "Microsoft.Extensions.Configuration.CommandLine/5.0.0.0": {
  5516. "type": "referenceassembly",
  5517. "serviceable": false,
  5518. "sha512": ""
  5519. },
  5520. "Microsoft.Extensions.Configuration.Reference/5.0.0.0": {
  5521. "type": "referenceassembly",
  5522. "serviceable": false,
  5523. "sha512": ""
  5524. },
  5525. "Microsoft.Extensions.Configuration.EnvironmentVariables/5.0.0.0": {
  5526. "type": "referenceassembly",
  5527. "serviceable": false,
  5528. "sha512": ""
  5529. },
  5530. "Microsoft.Extensions.Configuration.FileExtensions.Reference/5.0.0.0": {
  5531. "type": "referenceassembly",
  5532. "serviceable": false,
  5533. "sha512": ""
  5534. },
  5535. "Microsoft.Extensions.Configuration.Ini/5.0.0.0": {
  5536. "type": "referenceassembly",
  5537. "serviceable": false,
  5538. "sha512": ""
  5539. },
  5540. "Microsoft.Extensions.Configuration.Json.Reference/5.0.0.0": {
  5541. "type": "referenceassembly",
  5542. "serviceable": false,
  5543. "sha512": ""
  5544. },
  5545. "Microsoft.Extensions.Configuration.KeyPerFile/5.0.0.0": {
  5546. "type": "referenceassembly",
  5547. "serviceable": false,
  5548. "sha512": ""
  5549. },
  5550. "Microsoft.Extensions.Configuration.UserSecrets/5.0.0.0": {
  5551. "type": "referenceassembly",
  5552. "serviceable": false,
  5553. "sha512": ""
  5554. },
  5555. "Microsoft.Extensions.Configuration.Xml/5.0.0.0": {
  5556. "type": "referenceassembly",
  5557. "serviceable": false,
  5558. "sha512": ""
  5559. },
  5560. "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/5.0.0.0": {
  5561. "type": "referenceassembly",
  5562. "serviceable": false,
  5563. "sha512": ""
  5564. },
  5565. "Microsoft.Extensions.DependencyInjection.Reference/5.0.0.0": {
  5566. "type": "referenceassembly",
  5567. "serviceable": false,
  5568. "sha512": ""
  5569. },
  5570. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/5.0.0.0": {
  5571. "type": "referenceassembly",
  5572. "serviceable": false,
  5573. "sha512": ""
  5574. },
  5575. "Microsoft.Extensions.Diagnostics.HealthChecks/5.0.0.0": {
  5576. "type": "referenceassembly",
  5577. "serviceable": false,
  5578. "sha512": ""
  5579. },
  5580. "Microsoft.Extensions.FileProviders.Abstractions.Reference/5.0.0.0": {
  5581. "type": "referenceassembly",
  5582. "serviceable": false,
  5583. "sha512": ""
  5584. },
  5585. "Microsoft.Extensions.FileProviders.Composite/5.0.0.0": {
  5586. "type": "referenceassembly",
  5587. "serviceable": false,
  5588. "sha512": ""
  5589. },
  5590. "Microsoft.Extensions.FileProviders.Embedded/5.0.0.0": {
  5591. "type": "referenceassembly",
  5592. "serviceable": false,
  5593. "sha512": ""
  5594. },
  5595. "Microsoft.Extensions.FileProviders.Physical.Reference/5.0.0.0": {
  5596. "type": "referenceassembly",
  5597. "serviceable": false,
  5598. "sha512": ""
  5599. },
  5600. "Microsoft.Extensions.FileSystemGlobbing.Reference/5.0.0.0": {
  5601. "type": "referenceassembly",
  5602. "serviceable": false,
  5603. "sha512": ""
  5604. },
  5605. "Microsoft.Extensions.Hosting.Abstractions.Reference/5.0.0.0": {
  5606. "type": "referenceassembly",
  5607. "serviceable": false,
  5608. "sha512": ""
  5609. },
  5610. "Microsoft.Extensions.Hosting/5.0.0.0": {
  5611. "type": "referenceassembly",
  5612. "serviceable": false,
  5613. "sha512": ""
  5614. },
  5615. "Microsoft.Extensions.Http.Reference/5.0.0.0": {
  5616. "type": "referenceassembly",
  5617. "serviceable": false,
  5618. "sha512": ""
  5619. },
  5620. "Microsoft.Extensions.Identity.Core/5.0.0.0": {
  5621. "type": "referenceassembly",
  5622. "serviceable": false,
  5623. "sha512": ""
  5624. },
  5625. "Microsoft.Extensions.Identity.Stores/5.0.0.0": {
  5626. "type": "referenceassembly",
  5627. "serviceable": false,
  5628. "sha512": ""
  5629. },
  5630. "Microsoft.Extensions.Localization.Abstractions/5.0.0.0": {
  5631. "type": "referenceassembly",
  5632. "serviceable": false,
  5633. "sha512": ""
  5634. },
  5635. "Microsoft.Extensions.Localization/5.0.0.0": {
  5636. "type": "referenceassembly",
  5637. "serviceable": false,
  5638. "sha512": ""
  5639. },
  5640. "Microsoft.Extensions.Logging.Abstractions.Reference/5.0.0.0": {
  5641. "type": "referenceassembly",
  5642. "serviceable": false,
  5643. "sha512": ""
  5644. },
  5645. "Microsoft.Extensions.Logging.Configuration.Reference/5.0.0.0": {
  5646. "type": "referenceassembly",
  5647. "serviceable": false,
  5648. "sha512": ""
  5649. },
  5650. "Microsoft.Extensions.Logging.Console.Reference/5.0.0.0": {
  5651. "type": "referenceassembly",
  5652. "serviceable": false,
  5653. "sha512": ""
  5654. },
  5655. "Microsoft.Extensions.Logging.Debug/5.0.0.0": {
  5656. "type": "referenceassembly",
  5657. "serviceable": false,
  5658. "sha512": ""
  5659. },
  5660. "Microsoft.Extensions.Logging.Reference/5.0.0.0": {
  5661. "type": "referenceassembly",
  5662. "serviceable": false,
  5663. "sha512": ""
  5664. },
  5665. "Microsoft.Extensions.Logging.EventLog/5.0.0.0": {
  5666. "type": "referenceassembly",
  5667. "serviceable": false,
  5668. "sha512": ""
  5669. },
  5670. "Microsoft.Extensions.Logging.EventSource/5.0.0.0": {
  5671. "type": "referenceassembly",
  5672. "serviceable": false,
  5673. "sha512": ""
  5674. },
  5675. "Microsoft.Extensions.Logging.TraceSource/5.0.0.0": {
  5676. "type": "referenceassembly",
  5677. "serviceable": false,
  5678. "sha512": ""
  5679. },
  5680. "Microsoft.Extensions.ObjectPool/5.0.0.0": {
  5681. "type": "referenceassembly",
  5682. "serviceable": false,
  5683. "sha512": ""
  5684. },
  5685. "Microsoft.Extensions.Options.ConfigurationExtensions.Reference/5.0.0.0": {
  5686. "type": "referenceassembly",
  5687. "serviceable": false,
  5688. "sha512": ""
  5689. },
  5690. "Microsoft.Extensions.Options.DataAnnotations/5.0.0.0": {
  5691. "type": "referenceassembly",
  5692. "serviceable": false,
  5693. "sha512": ""
  5694. },
  5695. "Microsoft.Extensions.Options.Reference/5.0.0.0": {
  5696. "type": "referenceassembly",
  5697. "serviceable": false,
  5698. "sha512": ""
  5699. },
  5700. "Microsoft.Extensions.Primitives.Reference/5.0.0.0": {
  5701. "type": "referenceassembly",
  5702. "serviceable": false,
  5703. "sha512": ""
  5704. },
  5705. "Microsoft.Extensions.WebEncoders/5.0.0.0": {
  5706. "type": "referenceassembly",
  5707. "serviceable": false,
  5708. "sha512": ""
  5709. },
  5710. "Microsoft.JSInterop/5.0.0.0": {
  5711. "type": "referenceassembly",
  5712. "serviceable": false,
  5713. "sha512": ""
  5714. },
  5715. "Microsoft.Net.Http.Headers/5.0.0.0": {
  5716. "type": "referenceassembly",
  5717. "serviceable": false,
  5718. "sha512": ""
  5719. },
  5720. "Microsoft.VisualBasic.Core/10.0.6.0": {
  5721. "type": "referenceassembly",
  5722. "serviceable": false,
  5723. "sha512": ""
  5724. },
  5725. "Microsoft.VisualBasic/10.0.0.0": {
  5726. "type": "referenceassembly",
  5727. "serviceable": false,
  5728. "sha512": ""
  5729. },
  5730. "Microsoft.Win32.Primitives.Reference/5.0.0.0": {
  5731. "type": "referenceassembly",
  5732. "serviceable": false,
  5733. "sha512": ""
  5734. },
  5735. "Microsoft.Win32.Registry/5.0.0.0": {
  5736. "type": "referenceassembly",
  5737. "serviceable": false,
  5738. "sha512": ""
  5739. },
  5740. "mscorlib/4.0.0.0": {
  5741. "type": "referenceassembly",
  5742. "serviceable": false,
  5743. "sha512": ""
  5744. },
  5745. "netstandard/2.1.0.0": {
  5746. "type": "referenceassembly",
  5747. "serviceable": false,
  5748. "sha512": ""
  5749. },
  5750. "System.AppContext.Reference/5.0.0.0": {
  5751. "type": "referenceassembly",
  5752. "serviceable": false,
  5753. "sha512": ""
  5754. },
  5755. "System.Buffers.Reference/5.0.0.0": {
  5756. "type": "referenceassembly",
  5757. "serviceable": false,
  5758. "sha512": ""
  5759. },
  5760. "System.Collections.Concurrent.Reference/5.0.0.0": {
  5761. "type": "referenceassembly",
  5762. "serviceable": false,
  5763. "sha512": ""
  5764. },
  5765. "System.Collections.Reference/5.0.0.0": {
  5766. "type": "referenceassembly",
  5767. "serviceable": false,
  5768. "sha512": ""
  5769. },
  5770. "System.Collections.Immutable.Reference/5.0.0.0": {
  5771. "type": "referenceassembly",
  5772. "serviceable": false,
  5773. "sha512": ""
  5774. },
  5775. "System.Collections.NonGeneric.Reference/5.0.0.0": {
  5776. "type": "referenceassembly",
  5777. "serviceable": false,
  5778. "sha512": ""
  5779. },
  5780. "System.Collections.Specialized.Reference/5.0.0.0": {
  5781. "type": "referenceassembly",
  5782. "serviceable": false,
  5783. "sha512": ""
  5784. },
  5785. "System.ComponentModel.Annotations.Reference/5.0.0.0": {
  5786. "type": "referenceassembly",
  5787. "serviceable": false,
  5788. "sha512": ""
  5789. },
  5790. "System.ComponentModel.DataAnnotations/4.0.0.0": {
  5791. "type": "referenceassembly",
  5792. "serviceable": false,
  5793. "sha512": ""
  5794. },
  5795. "System.ComponentModel.Reference/5.0.0.0": {
  5796. "type": "referenceassembly",
  5797. "serviceable": false,
  5798. "sha512": ""
  5799. },
  5800. "System.ComponentModel.EventBasedAsync/5.0.0.0": {
  5801. "type": "referenceassembly",
  5802. "serviceable": false,
  5803. "sha512": ""
  5804. },
  5805. "System.ComponentModel.Primitives.Reference/5.0.0.0": {
  5806. "type": "referenceassembly",
  5807. "serviceable": false,
  5808. "sha512": ""
  5809. },
  5810. "System.ComponentModel.TypeConverter.Reference/5.0.0.0": {
  5811. "type": "referenceassembly",
  5812. "serviceable": false,
  5813. "sha512": ""
  5814. },
  5815. "System.Configuration/4.0.0.0": {
  5816. "type": "referenceassembly",
  5817. "serviceable": false,
  5818. "sha512": ""
  5819. },
  5820. "System.Console.Reference/5.0.0.0": {
  5821. "type": "referenceassembly",
  5822. "serviceable": false,
  5823. "sha512": ""
  5824. },
  5825. "System.Core/4.0.0.0": {
  5826. "type": "referenceassembly",
  5827. "serviceable": false,
  5828. "sha512": ""
  5829. },
  5830. "System.Data.Common/5.0.0.0": {
  5831. "type": "referenceassembly",
  5832. "serviceable": false,
  5833. "sha512": ""
  5834. },
  5835. "System.Data.DataSetExtensions/4.0.0.0": {
  5836. "type": "referenceassembly",
  5837. "serviceable": false,
  5838. "sha512": ""
  5839. },
  5840. "System.Data/4.0.0.0": {
  5841. "type": "referenceassembly",
  5842. "serviceable": false,
  5843. "sha512": ""
  5844. },
  5845. "System.Diagnostics.Contracts/5.0.0.0": {
  5846. "type": "referenceassembly",
  5847. "serviceable": false,
  5848. "sha512": ""
  5849. },
  5850. "System.Diagnostics.Debug.Reference/5.0.0.0": {
  5851. "type": "referenceassembly",
  5852. "serviceable": false,
  5853. "sha512": ""
  5854. },
  5855. "System.Diagnostics.DiagnosticSource.Reference/5.0.0.0": {
  5856. "type": "referenceassembly",
  5857. "serviceable": false,
  5858. "sha512": ""
  5859. },
  5860. "System.Diagnostics.EventLog/5.0.0.0": {
  5861. "type": "referenceassembly",
  5862. "serviceable": false,
  5863. "sha512": ""
  5864. },
  5865. "System.Diagnostics.FileVersionInfo/5.0.0.0": {
  5866. "type": "referenceassembly",
  5867. "serviceable": false,
  5868. "sha512": ""
  5869. },
  5870. "System.Diagnostics.Process/5.0.0.0": {
  5871. "type": "referenceassembly",
  5872. "serviceable": false,
  5873. "sha512": ""
  5874. },
  5875. "System.Diagnostics.StackTrace/5.0.0.0": {
  5876. "type": "referenceassembly",
  5877. "serviceable": false,
  5878. "sha512": ""
  5879. },
  5880. "System.Diagnostics.TextWriterTraceListener/5.0.0.0": {
  5881. "type": "referenceassembly",
  5882. "serviceable": false,
  5883. "sha512": ""
  5884. },
  5885. "System.Diagnostics.Tools.Reference/5.0.0.0": {
  5886. "type": "referenceassembly",
  5887. "serviceable": false,
  5888. "sha512": ""
  5889. },
  5890. "System.Diagnostics.TraceSource.Reference/5.0.0.0": {
  5891. "type": "referenceassembly",
  5892. "serviceable": false,
  5893. "sha512": ""
  5894. },
  5895. "System.Diagnostics.Tracing.Reference/5.0.0.0": {
  5896. "type": "referenceassembly",
  5897. "serviceable": false,
  5898. "sha512": ""
  5899. },
  5900. "System/4.0.0.0": {
  5901. "type": "referenceassembly",
  5902. "serviceable": false,
  5903. "sha512": ""
  5904. },
  5905. "System.Drawing/4.0.0.0": {
  5906. "type": "referenceassembly",
  5907. "serviceable": false,
  5908. "sha512": ""
  5909. },
  5910. "System.Drawing.Primitives/5.0.0.0": {
  5911. "type": "referenceassembly",
  5912. "serviceable": false,
  5913. "sha512": ""
  5914. },
  5915. "System.Dynamic.Runtime.Reference/5.0.0.0": {
  5916. "type": "referenceassembly",
  5917. "serviceable": false,
  5918. "sha512": ""
  5919. },
  5920. "System.Formats.Asn1/5.0.0.0": {
  5921. "type": "referenceassembly",
  5922. "serviceable": false,
  5923. "sha512": ""
  5924. },
  5925. "System.Globalization.Calendars.Reference/5.0.0.0": {
  5926. "type": "referenceassembly",
  5927. "serviceable": false,
  5928. "sha512": ""
  5929. },
  5930. "System.Globalization.Reference/5.0.0.0": {
  5931. "type": "referenceassembly",
  5932. "serviceable": false,
  5933. "sha512": ""
  5934. },
  5935. "System.Globalization.Extensions.Reference/5.0.0.0": {
  5936. "type": "referenceassembly",
  5937. "serviceable": false,
  5938. "sha512": ""
  5939. },
  5940. "System.IO.Compression.Brotli/5.0.0.0": {
  5941. "type": "referenceassembly",
  5942. "serviceable": false,
  5943. "sha512": ""
  5944. },
  5945. "System.IO.Compression.Reference/5.0.0.0": {
  5946. "type": "referenceassembly",
  5947. "serviceable": false,
  5948. "sha512": ""
  5949. },
  5950. "System.IO.Compression.FileSystem/4.0.0.0": {
  5951. "type": "referenceassembly",
  5952. "serviceable": false,
  5953. "sha512": ""
  5954. },
  5955. "System.IO.Compression.ZipFile.Reference/5.0.0.0": {
  5956. "type": "referenceassembly",
  5957. "serviceable": false,
  5958. "sha512": ""
  5959. },
  5960. "System.IO.Reference/5.0.0.0": {
  5961. "type": "referenceassembly",
  5962. "serviceable": false,
  5963. "sha512": ""
  5964. },
  5965. "System.IO.FileSystem.Reference/5.0.0.0": {
  5966. "type": "referenceassembly",
  5967. "serviceable": false,
  5968. "sha512": ""
  5969. },
  5970. "System.IO.FileSystem.DriveInfo/5.0.0.0": {
  5971. "type": "referenceassembly",
  5972. "serviceable": false,
  5973. "sha512": ""
  5974. },
  5975. "System.IO.FileSystem.Primitives.Reference/5.0.0.0": {
  5976. "type": "referenceassembly",
  5977. "serviceable": false,
  5978. "sha512": ""
  5979. },
  5980. "System.IO.FileSystem.Watcher/5.0.0.0": {
  5981. "type": "referenceassembly",
  5982. "serviceable": false,
  5983. "sha512": ""
  5984. },
  5985. "System.IO.IsolatedStorage/5.0.0.0": {
  5986. "type": "referenceassembly",
  5987. "serviceable": false,
  5988. "sha512": ""
  5989. },
  5990. "System.IO.MemoryMappedFiles/5.0.0.0": {
  5991. "type": "referenceassembly",
  5992. "serviceable": false,
  5993. "sha512": ""
  5994. },
  5995. "System.IO.Pipelines.Reference/5.0.0.0": {
  5996. "type": "referenceassembly",
  5997. "serviceable": false,
  5998. "sha512": ""
  5999. },
  6000. "System.IO.Pipes/5.0.0.0": {
  6001. "type": "referenceassembly",
  6002. "serviceable": false,
  6003. "sha512": ""
  6004. },
  6005. "System.IO.UnmanagedMemoryStream/5.0.0.0": {
  6006. "type": "referenceassembly",
  6007. "serviceable": false,
  6008. "sha512": ""
  6009. },
  6010. "System.Linq.Reference/5.0.0.0": {
  6011. "type": "referenceassembly",
  6012. "serviceable": false,
  6013. "sha512": ""
  6014. },
  6015. "System.Linq.Expressions.Reference/5.0.0.0": {
  6016. "type": "referenceassembly",
  6017. "serviceable": false,
  6018. "sha512": ""
  6019. },
  6020. "System.Linq.Parallel/5.0.0.0": {
  6021. "type": "referenceassembly",
  6022. "serviceable": false,
  6023. "sha512": ""
  6024. },
  6025. "System.Linq.Queryable/5.0.0.0": {
  6026. "type": "referenceassembly",
  6027. "serviceable": false,
  6028. "sha512": ""
  6029. },
  6030. "System.Memory.Reference/5.0.0.0": {
  6031. "type": "referenceassembly",
  6032. "serviceable": false,
  6033. "sha512": ""
  6034. },
  6035. "System.Net/4.0.0.0": {
  6036. "type": "referenceassembly",
  6037. "serviceable": false,
  6038. "sha512": ""
  6039. },
  6040. "System.Net.Http.Reference/5.0.0.0": {
  6041. "type": "referenceassembly",
  6042. "serviceable": false,
  6043. "sha512": ""
  6044. },
  6045. "System.Net.Http.Json/5.0.0.0": {
  6046. "type": "referenceassembly",
  6047. "serviceable": false,
  6048. "sha512": ""
  6049. },
  6050. "System.Net.HttpListener/5.0.0.0": {
  6051. "type": "referenceassembly",
  6052. "serviceable": false,
  6053. "sha512": ""
  6054. },
  6055. "System.Net.Mail/5.0.0.0": {
  6056. "type": "referenceassembly",
  6057. "serviceable": false,
  6058. "sha512": ""
  6059. },
  6060. "System.Net.NameResolution.Reference/5.0.0.0": {
  6061. "type": "referenceassembly",
  6062. "serviceable": false,
  6063. "sha512": ""
  6064. },
  6065. "System.Net.NetworkInformation/5.0.0.0": {
  6066. "type": "referenceassembly",
  6067. "serviceable": false,
  6068. "sha512": ""
  6069. },
  6070. "System.Net.Ping/5.0.0.0": {
  6071. "type": "referenceassembly",
  6072. "serviceable": false,
  6073. "sha512": ""
  6074. },
  6075. "System.Net.Primitives.Reference/5.0.0.0": {
  6076. "type": "referenceassembly",
  6077. "serviceable": false,
  6078. "sha512": ""
  6079. },
  6080. "System.Net.Requests/5.0.0.0": {
  6081. "type": "referenceassembly",
  6082. "serviceable": false,
  6083. "sha512": ""
  6084. },
  6085. "System.Net.Security.Reference/5.0.0.0": {
  6086. "type": "referenceassembly",
  6087. "serviceable": false,
  6088. "sha512": ""
  6089. },
  6090. "System.Net.ServicePoint/5.0.0.0": {
  6091. "type": "referenceassembly",
  6092. "serviceable": false,
  6093. "sha512": ""
  6094. },
  6095. "System.Net.Sockets.Reference/5.0.0.0": {
  6096. "type": "referenceassembly",
  6097. "serviceable": false,
  6098. "sha512": ""
  6099. },
  6100. "System.Net.WebClient/5.0.0.0": {
  6101. "type": "referenceassembly",
  6102. "serviceable": false,
  6103. "sha512": ""
  6104. },
  6105. "System.Net.WebHeaderCollection/5.0.0.0": {
  6106. "type": "referenceassembly",
  6107. "serviceable": false,
  6108. "sha512": ""
  6109. },
  6110. "System.Net.WebProxy/5.0.0.0": {
  6111. "type": "referenceassembly",
  6112. "serviceable": false,
  6113. "sha512": ""
  6114. },
  6115. "System.Net.WebSockets.Client/5.0.0.0": {
  6116. "type": "referenceassembly",
  6117. "serviceable": false,
  6118. "sha512": ""
  6119. },
  6120. "System.Net.WebSockets/5.0.0.0": {
  6121. "type": "referenceassembly",
  6122. "serviceable": false,
  6123. "sha512": ""
  6124. },
  6125. "System.Numerics/4.0.0.0": {
  6126. "type": "referenceassembly",
  6127. "serviceable": false,
  6128. "sha512": ""
  6129. },
  6130. "System.Numerics.Vectors/5.0.0.0": {
  6131. "type": "referenceassembly",
  6132. "serviceable": false,
  6133. "sha512": ""
  6134. },
  6135. "System.ObjectModel.Reference/5.0.0.0": {
  6136. "type": "referenceassembly",
  6137. "serviceable": false,
  6138. "sha512": ""
  6139. },
  6140. "System.Reflection.DispatchProxy/5.0.0.0": {
  6141. "type": "referenceassembly",
  6142. "serviceable": false,
  6143. "sha512": ""
  6144. },
  6145. "System.Reflection.Reference/5.0.0.0": {
  6146. "type": "referenceassembly",
  6147. "serviceable": false,
  6148. "sha512": ""
  6149. },
  6150. "System.Reflection.Emit.Reference/5.0.0.0": {
  6151. "type": "referenceassembly",
  6152. "serviceable": false,
  6153. "sha512": ""
  6154. },
  6155. "System.Reflection.Emit.ILGeneration.Reference/5.0.0.0": {
  6156. "type": "referenceassembly",
  6157. "serviceable": false,
  6158. "sha512": ""
  6159. },
  6160. "System.Reflection.Emit.Lightweight.Reference/5.0.0.0": {
  6161. "type": "referenceassembly",
  6162. "serviceable": false,
  6163. "sha512": ""
  6164. },
  6165. "System.Reflection.Extensions.Reference/5.0.0.0": {
  6166. "type": "referenceassembly",
  6167. "serviceable": false,
  6168. "sha512": ""
  6169. },
  6170. "System.Reflection.Metadata/5.0.0.0": {
  6171. "type": "referenceassembly",
  6172. "serviceable": false,
  6173. "sha512": ""
  6174. },
  6175. "System.Reflection.Primitives.Reference/5.0.0.0": {
  6176. "type": "referenceassembly",
  6177. "serviceable": false,
  6178. "sha512": ""
  6179. },
  6180. "System.Reflection.TypeExtensions.Reference/5.0.0.0": {
  6181. "type": "referenceassembly",
  6182. "serviceable": false,
  6183. "sha512": ""
  6184. },
  6185. "System.Resources.Reader/5.0.0.0": {
  6186. "type": "referenceassembly",
  6187. "serviceable": false,
  6188. "sha512": ""
  6189. },
  6190. "System.Resources.ResourceManager.Reference/5.0.0.0": {
  6191. "type": "referenceassembly",
  6192. "serviceable": false,
  6193. "sha512": ""
  6194. },
  6195. "System.Resources.Writer/5.0.0.0": {
  6196. "type": "referenceassembly",
  6197. "serviceable": false,
  6198. "sha512": ""
  6199. },
  6200. "System.Runtime.CompilerServices.Unsafe.Reference/5.0.0.0": {
  6201. "type": "referenceassembly",
  6202. "serviceable": false,
  6203. "sha512": ""
  6204. },
  6205. "System.Runtime.CompilerServices.VisualC/5.0.0.0": {
  6206. "type": "referenceassembly",
  6207. "serviceable": false,
  6208. "sha512": ""
  6209. },
  6210. "System.Runtime.Reference/5.0.0.0": {
  6211. "type": "referenceassembly",
  6212. "serviceable": false,
  6213. "sha512": ""
  6214. },
  6215. "System.Runtime.Extensions.Reference/5.0.0.0": {
  6216. "type": "referenceassembly",
  6217. "serviceable": false,
  6218. "sha512": ""
  6219. },
  6220. "System.Runtime.Handles.Reference/5.0.0.0": {
  6221. "type": "referenceassembly",
  6222. "serviceable": false,
  6223. "sha512": ""
  6224. },
  6225. "System.Runtime.InteropServices.Reference/5.0.0.0": {
  6226. "type": "referenceassembly",
  6227. "serviceable": false,
  6228. "sha512": ""
  6229. },
  6230. "System.Runtime.InteropServices.RuntimeInformation.Reference/5.0.0.0": {
  6231. "type": "referenceassembly",
  6232. "serviceable": false,
  6233. "sha512": ""
  6234. },
  6235. "System.Runtime.Intrinsics/5.0.0.0": {
  6236. "type": "referenceassembly",
  6237. "serviceable": false,
  6238. "sha512": ""
  6239. },
  6240. "System.Runtime.Loader/5.0.0.0": {
  6241. "type": "referenceassembly",
  6242. "serviceable": false,
  6243. "sha512": ""
  6244. },
  6245. "System.Runtime.Numerics.Reference/5.0.0.0": {
  6246. "type": "referenceassembly",
  6247. "serviceable": false,
  6248. "sha512": ""
  6249. },
  6250. "System.Runtime.Serialization/4.0.0.0": {
  6251. "type": "referenceassembly",
  6252. "serviceable": false,
  6253. "sha512": ""
  6254. },
  6255. "System.Runtime.Serialization.Formatters/5.0.0.0": {
  6256. "type": "referenceassembly",
  6257. "serviceable": false,
  6258. "sha512": ""
  6259. },
  6260. "System.Runtime.Serialization.Json/5.0.0.0": {
  6261. "type": "referenceassembly",
  6262. "serviceable": false,
  6263. "sha512": ""
  6264. },
  6265. "System.Runtime.Serialization.Primitives/5.0.0.0": {
  6266. "type": "referenceassembly",
  6267. "serviceable": false,
  6268. "sha512": ""
  6269. },
  6270. "System.Runtime.Serialization.Xml/5.0.0.0": {
  6271. "type": "referenceassembly",
  6272. "serviceable": false,
  6273. "sha512": ""
  6274. },
  6275. "System.Security.AccessControl.Reference/5.0.0.0": {
  6276. "type": "referenceassembly",
  6277. "serviceable": false,
  6278. "sha512": ""
  6279. },
  6280. "System.Security.Claims.Reference/5.0.0.0": {
  6281. "type": "referenceassembly",
  6282. "serviceable": false,
  6283. "sha512": ""
  6284. },
  6285. "System.Security.Cryptography.Algorithms.Reference/5.0.0.0": {
  6286. "type": "referenceassembly",
  6287. "serviceable": false,
  6288. "sha512": ""
  6289. },
  6290. "System.Security.Cryptography.Cng.Reference/5.0.0.0": {
  6291. "type": "referenceassembly",
  6292. "serviceable": false,
  6293. "sha512": ""
  6294. },
  6295. "System.Security.Cryptography.Csp.Reference/5.0.0.0": {
  6296. "type": "referenceassembly",
  6297. "serviceable": false,
  6298. "sha512": ""
  6299. },
  6300. "System.Security.Cryptography.Encoding.Reference/5.0.0.0": {
  6301. "type": "referenceassembly",
  6302. "serviceable": false,
  6303. "sha512": ""
  6304. },
  6305. "System.Security.Cryptography.Primitives.Reference/5.0.0.0": {
  6306. "type": "referenceassembly",
  6307. "serviceable": false,
  6308. "sha512": ""
  6309. },
  6310. "System.Security.Cryptography.X509Certificates.Reference/5.0.0.0": {
  6311. "type": "referenceassembly",
  6312. "serviceable": false,
  6313. "sha512": ""
  6314. },
  6315. "System.Security.Cryptography.Xml/5.0.0.0": {
  6316. "type": "referenceassembly",
  6317. "serviceable": false,
  6318. "sha512": ""
  6319. },
  6320. "System.Security/4.0.0.0": {
  6321. "type": "referenceassembly",
  6322. "serviceable": false,
  6323. "sha512": ""
  6324. },
  6325. "System.Security.Permissions.Reference/5.0.0.0": {
  6326. "type": "referenceassembly",
  6327. "serviceable": false,
  6328. "sha512": ""
  6329. },
  6330. "System.Security.Principal.Reference/5.0.0.0": {
  6331. "type": "referenceassembly",
  6332. "serviceable": false,
  6333. "sha512": ""
  6334. },
  6335. "System.Security.Principal.Windows.Reference/5.0.0.0": {
  6336. "type": "referenceassembly",
  6337. "serviceable": false,
  6338. "sha512": ""
  6339. },
  6340. "System.Security.SecureString/5.0.0.0": {
  6341. "type": "referenceassembly",
  6342. "serviceable": false,
  6343. "sha512": ""
  6344. },
  6345. "System.ServiceModel.Web/4.0.0.0": {
  6346. "type": "referenceassembly",
  6347. "serviceable": false,
  6348. "sha512": ""
  6349. },
  6350. "System.ServiceProcess/4.0.0.0": {
  6351. "type": "referenceassembly",
  6352. "serviceable": false,
  6353. "sha512": ""
  6354. },
  6355. "System.Text.Encoding.CodePages.Reference/5.0.0.0": {
  6356. "type": "referenceassembly",
  6357. "serviceable": false,
  6358. "sha512": ""
  6359. },
  6360. "System.Text.Encoding.Reference/5.0.0.0": {
  6361. "type": "referenceassembly",
  6362. "serviceable": false,
  6363. "sha512": ""
  6364. },
  6365. "System.Text.Encoding.Extensions.Reference/5.0.0.0": {
  6366. "type": "referenceassembly",
  6367. "serviceable": false,
  6368. "sha512": ""
  6369. },
  6370. "System.Text.Encodings.Web.Reference/5.0.0.0": {
  6371. "type": "referenceassembly",
  6372. "serviceable": false,
  6373. "sha512": ""
  6374. },
  6375. "System.Text.Json/5.0.0.0": {
  6376. "type": "referenceassembly",
  6377. "serviceable": false,
  6378. "sha512": ""
  6379. },
  6380. "System.Text.RegularExpressions.Reference/5.0.0.0": {
  6381. "type": "referenceassembly",
  6382. "serviceable": false,
  6383. "sha512": ""
  6384. },
  6385. "System.Threading.Reference/5.0.0.0": {
  6386. "type": "referenceassembly",
  6387. "serviceable": false,
  6388. "sha512": ""
  6389. },
  6390. "System.Threading.Overlapped/5.0.0.0": {
  6391. "type": "referenceassembly",
  6392. "serviceable": false,
  6393. "sha512": ""
  6394. },
  6395. "System.Threading.Tasks.Dataflow/5.0.0.0": {
  6396. "type": "referenceassembly",
  6397. "serviceable": false,
  6398. "sha512": ""
  6399. },
  6400. "System.Threading.Tasks.Reference/5.0.0.0": {
  6401. "type": "referenceassembly",
  6402. "serviceable": false,
  6403. "sha512": ""
  6404. },
  6405. "System.Threading.Tasks.Extensions.Reference/5.0.0.0": {
  6406. "type": "referenceassembly",
  6407. "serviceable": false,
  6408. "sha512": ""
  6409. },
  6410. "System.Threading.Tasks.Parallel/5.0.0.0": {
  6411. "type": "referenceassembly",
  6412. "serviceable": false,
  6413. "sha512": ""
  6414. },
  6415. "System.Threading.Thread.Reference/5.0.0.0": {
  6416. "type": "referenceassembly",
  6417. "serviceable": false,
  6418. "sha512": ""
  6419. },
  6420. "System.Threading.ThreadPool.Reference/5.0.0.0": {
  6421. "type": "referenceassembly",
  6422. "serviceable": false,
  6423. "sha512": ""
  6424. },
  6425. "System.Threading.Timer.Reference/5.0.0.0": {
  6426. "type": "referenceassembly",
  6427. "serviceable": false,
  6428. "sha512": ""
  6429. },
  6430. "System.Transactions/4.0.0.0": {
  6431. "type": "referenceassembly",
  6432. "serviceable": false,
  6433. "sha512": ""
  6434. },
  6435. "System.Transactions.Local/5.0.0.0": {
  6436. "type": "referenceassembly",
  6437. "serviceable": false,
  6438. "sha512": ""
  6439. },
  6440. "System.ValueTuple/4.0.3.0": {
  6441. "type": "referenceassembly",
  6442. "serviceable": false,
  6443. "sha512": ""
  6444. },
  6445. "System.Web/4.0.0.0": {
  6446. "type": "referenceassembly",
  6447. "serviceable": false,
  6448. "sha512": ""
  6449. },
  6450. "System.Web.HttpUtility/5.0.0.0": {
  6451. "type": "referenceassembly",
  6452. "serviceable": false,
  6453. "sha512": ""
  6454. },
  6455. "System.Windows/4.0.0.0": {
  6456. "type": "referenceassembly",
  6457. "serviceable": false,
  6458. "sha512": ""
  6459. },
  6460. "System.Windows.Extensions.Reference/5.0.0.0": {
  6461. "type": "referenceassembly",
  6462. "serviceable": false,
  6463. "sha512": ""
  6464. },
  6465. "System.Xml/4.0.0.0": {
  6466. "type": "referenceassembly",
  6467. "serviceable": false,
  6468. "sha512": ""
  6469. },
  6470. "System.Xml.Linq/4.0.0.0": {
  6471. "type": "referenceassembly",
  6472. "serviceable": false,
  6473. "sha512": ""
  6474. },
  6475. "System.Xml.ReaderWriter.Reference/5.0.0.0": {
  6476. "type": "referenceassembly",
  6477. "serviceable": false,
  6478. "sha512": ""
  6479. },
  6480. "System.Xml.Serialization/4.0.0.0": {
  6481. "type": "referenceassembly",
  6482. "serviceable": false,
  6483. "sha512": ""
  6484. },
  6485. "System.Xml.XDocument.Reference/5.0.0.0": {
  6486. "type": "referenceassembly",
  6487. "serviceable": false,
  6488. "sha512": ""
  6489. },
  6490. "System.Xml.XmlDocument.Reference/5.0.0.0": {
  6491. "type": "referenceassembly",
  6492. "serviceable": false,
  6493. "sha512": ""
  6494. },
  6495. "System.Xml.XmlSerializer/5.0.0.0": {
  6496. "type": "referenceassembly",
  6497. "serviceable": false,
  6498. "sha512": ""
  6499. },
  6500. "System.Xml.XPath/5.0.0.0": {
  6501. "type": "referenceassembly",
  6502. "serviceable": false,
  6503. "sha512": ""
  6504. },
  6505. "System.Xml.XPath.XDocument/5.0.0.0": {
  6506. "type": "referenceassembly",
  6507. "serviceable": false,
  6508. "sha512": ""
  6509. },
  6510. "WindowsBase/4.0.0.0": {
  6511. "type": "referenceassembly",
  6512. "serviceable": false,
  6513. "sha512": ""
  6514. }
  6515. }
  6516. }