You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EndPoint.Site.deps.json 257KB

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