project.assets.json 267 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0": {
  5. "Google.Protobuf/3.21.9": {
  6. "type": "package",
  7. "compile": {
  8. "lib/net5.0/Google.Protobuf.dll": {
  9. "related": ".pdb;.xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/net5.0/Google.Protobuf.dll": {
  14. "related": ".pdb;.xml"
  15. }
  16. }
  17. },
  18. "Humanizer.Core/2.8.26": {
  19. "type": "package",
  20. "compile": {
  21. "lib/netstandard2.0/_._": {
  22. "related": ".xml"
  23. }
  24. },
  25. "runtime": {
  26. "lib/netstandard2.0/Humanizer.dll": {
  27. "related": ".xml"
  28. }
  29. }
  30. },
  31. "JetBrains.Annotations/2022.1.0": {
  32. "type": "package",
  33. "compile": {
  34. "lib/netstandard2.0/JetBrains.Annotations.dll": {
  35. "related": ".deps.json;.xml"
  36. }
  37. },
  38. "runtime": {
  39. "lib/netstandard2.0/JetBrains.Annotations.dll": {
  40. "related": ".deps.json;.xml"
  41. }
  42. }
  43. },
  44. "K4os.Compression.LZ4/1.2.6": {
  45. "type": "package",
  46. "dependencies": {
  47. "System.Memory": "4.5.4"
  48. },
  49. "compile": {
  50. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  51. "related": ".xml"
  52. }
  53. },
  54. "runtime": {
  55. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  56. "related": ".xml"
  57. }
  58. }
  59. },
  60. "K4os.Compression.LZ4.Streams/1.2.6": {
  61. "type": "package",
  62. "dependencies": {
  63. "K4os.Compression.LZ4": "1.2.6",
  64. "K4os.Hash.xxHash": "1.0.6"
  65. },
  66. "compile": {
  67. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  68. "related": ".xml"
  69. }
  70. },
  71. "runtime": {
  72. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  73. "related": ".xml"
  74. }
  75. }
  76. },
  77. "K4os.Hash.xxHash/1.0.6": {
  78. "type": "package",
  79. "dependencies": {
  80. "System.Memory": "4.5.3"
  81. },
  82. "compile": {
  83. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  84. "related": ".xml"
  85. }
  86. },
  87. "runtime": {
  88. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  89. "related": ".xml"
  90. }
  91. }
  92. },
  93. "Microsoft.AspNetCore.Authorization/6.0.5": {
  94. "type": "package",
  95. "dependencies": {
  96. "Microsoft.AspNetCore.Metadata": "6.0.5",
  97. "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
  98. "Microsoft.Extensions.Options": "6.0.0"
  99. },
  100. "compile": {
  101. "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
  102. "related": ".xml"
  103. }
  104. },
  105. "runtime": {
  106. "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
  107. "related": ".xml"
  108. }
  109. }
  110. },
  111. "Microsoft.AspNetCore.Metadata/6.0.5": {
  112. "type": "package",
  113. "compile": {
  114. "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {
  115. "related": ".xml"
  116. }
  117. },
  118. "runtime": {
  119. "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {
  120. "related": ".xml"
  121. }
  122. }
  123. },
  124. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  125. "type": "package",
  126. "compile": {
  127. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  128. "related": ".xml"
  129. }
  130. },
  131. "runtime": {
  132. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  133. "related": ".xml"
  134. }
  135. }
  136. },
  137. "Microsoft.CSharp/4.5.0": {
  138. "type": "package",
  139. "compile": {
  140. "ref/netcoreapp2.0/_._": {}
  141. },
  142. "runtime": {
  143. "lib/netcoreapp2.0/_._": {}
  144. }
  145. },
  146. "Microsoft.Data.SqlClient/2.1.4": {
  147. "type": "package",
  148. "dependencies": {
  149. "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
  150. "Microsoft.Identity.Client": "4.21.1",
  151. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  152. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",
  153. "Microsoft.Win32.Registry": "4.7.0",
  154. "System.Configuration.ConfigurationManager": "4.7.0",
  155. "System.Diagnostics.DiagnosticSource": "4.7.0",
  156. "System.Runtime.Caching": "4.7.0",
  157. "System.Security.Principal.Windows": "4.7.0",
  158. "System.Text.Encoding.CodePages": "4.7.0"
  159. },
  160. "compile": {
  161. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  162. "related": ".pdb;.xml"
  163. }
  164. },
  165. "runtime": {
  166. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  167. "related": ".pdb;.xml"
  168. }
  169. },
  170. "runtimeTargets": {
  171. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  172. "assetType": "runtime",
  173. "rid": "unix"
  174. },
  175. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  176. "assetType": "runtime",
  177. "rid": "win"
  178. }
  179. }
  180. },
  181. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  182. "type": "package",
  183. "runtimeTargets": {
  184. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  185. "assetType": "native",
  186. "rid": "win-arm"
  187. },
  188. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  189. "assetType": "native",
  190. "rid": "win-arm64"
  191. },
  192. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  193. "assetType": "native",
  194. "rid": "win-x64"
  195. },
  196. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  197. "assetType": "native",
  198. "rid": "win-x86"
  199. }
  200. }
  201. },
  202. "Microsoft.EntityFrameworkCore/6.0.5": {
  203. "type": "package",
  204. "dependencies": {
  205. "Microsoft.EntityFrameworkCore.Abstractions": "6.0.5",
  206. "Microsoft.EntityFrameworkCore.Analyzers": "6.0.5",
  207. "Microsoft.Extensions.Caching.Memory": "6.0.1",
  208. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  209. "Microsoft.Extensions.Logging": "6.0.0",
  210. "System.Collections.Immutable": "6.0.0",
  211. "System.Diagnostics.DiagnosticSource": "6.0.0"
  212. },
  213. "compile": {
  214. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  215. "related": ".xml"
  216. }
  217. },
  218. "runtime": {
  219. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  220. "related": ".xml"
  221. }
  222. }
  223. },
  224. "Microsoft.EntityFrameworkCore.Abstractions/6.0.5": {
  225. "type": "package",
  226. "compile": {
  227. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  228. "related": ".xml"
  229. }
  230. },
  231. "runtime": {
  232. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  233. "related": ".xml"
  234. }
  235. }
  236. },
  237. "Microsoft.EntityFrameworkCore.Analyzers/6.0.5": {
  238. "type": "package",
  239. "compile": {
  240. "lib/netstandard2.0/_._": {}
  241. },
  242. "runtime": {
  243. "lib/netstandard2.0/_._": {}
  244. }
  245. },
  246. "Microsoft.EntityFrameworkCore.Design/6.0.3": {
  247. "type": "package",
  248. "dependencies": {
  249. "Humanizer.Core": "2.8.26",
  250. "Microsoft.EntityFrameworkCore.Relational": "6.0.3"
  251. },
  252. "compile": {
  253. "lib/net6.0/_._": {
  254. "related": ".xml"
  255. }
  256. },
  257. "runtime": {
  258. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {
  259. "related": ".xml"
  260. }
  261. },
  262. "build": {
  263. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {}
  264. }
  265. },
  266. "Microsoft.EntityFrameworkCore.Relational/6.0.5": {
  267. "type": "package",
  268. "dependencies": {
  269. "Microsoft.EntityFrameworkCore": "6.0.5",
  270. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  271. },
  272. "compile": {
  273. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  274. "related": ".xml"
  275. }
  276. },
  277. "runtime": {
  278. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  279. "related": ".xml"
  280. }
  281. }
  282. },
  283. "Microsoft.EntityFrameworkCore.SqlServer/6.0.5": {
  284. "type": "package",
  285. "dependencies": {
  286. "Microsoft.Data.SqlClient": "2.1.4",
  287. "Microsoft.EntityFrameworkCore.Relational": "6.0.5"
  288. },
  289. "compile": {
  290. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  291. "related": ".xml"
  292. }
  293. },
  294. "runtime": {
  295. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  296. "related": ".xml"
  297. }
  298. }
  299. },
  300. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  301. "type": "package",
  302. "dependencies": {
  303. "Microsoft.Extensions.Primitives": "6.0.0"
  304. },
  305. "compile": {
  306. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  307. "related": ".xml"
  308. }
  309. },
  310. "runtime": {
  311. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  312. "related": ".xml"
  313. }
  314. }
  315. },
  316. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  317. "type": "package",
  318. "dependencies": {
  319. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  320. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  321. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  322. "Microsoft.Extensions.Options": "6.0.0",
  323. "Microsoft.Extensions.Primitives": "6.0.0"
  324. },
  325. "compile": {
  326. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  327. "related": ".xml"
  328. }
  329. },
  330. "runtime": {
  331. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  332. "related": ".xml"
  333. }
  334. }
  335. },
  336. "Microsoft.Extensions.Configuration/6.0.0": {
  337. "type": "package",
  338. "dependencies": {
  339. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  340. "Microsoft.Extensions.Primitives": "6.0.0"
  341. },
  342. "compile": {
  343. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  344. "related": ".xml"
  345. }
  346. },
  347. "runtime": {
  348. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  349. "related": ".xml"
  350. }
  351. }
  352. },
  353. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  354. "type": "package",
  355. "dependencies": {
  356. "Microsoft.Extensions.Primitives": "6.0.0"
  357. },
  358. "compile": {
  359. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  360. "related": ".xml"
  361. }
  362. },
  363. "runtime": {
  364. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  365. "related": ".xml"
  366. }
  367. }
  368. },
  369. "Microsoft.Extensions.Configuration.Binder/6.0.0": {
  370. "type": "package",
  371. "dependencies": {
  372. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  373. },
  374. "compile": {
  375. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  376. "related": ".xml"
  377. }
  378. },
  379. "runtime": {
  380. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  381. "related": ".xml"
  382. }
  383. }
  384. },
  385. "Microsoft.Extensions.Configuration.CommandLine/6.0.0": {
  386. "type": "package",
  387. "dependencies": {
  388. "Microsoft.Extensions.Configuration": "6.0.0",
  389. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  390. },
  391. "compile": {
  392. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  393. "related": ".xml"
  394. }
  395. },
  396. "runtime": {
  397. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  398. "related": ".xml"
  399. }
  400. }
  401. },
  402. "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.1": {
  403. "type": "package",
  404. "dependencies": {
  405. "Microsoft.Extensions.Configuration": "6.0.0",
  406. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  407. },
  408. "compile": {
  409. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  410. "related": ".xml"
  411. }
  412. },
  413. "runtime": {
  414. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  415. "related": ".xml"
  416. }
  417. }
  418. },
  419. "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
  420. "type": "package",
  421. "dependencies": {
  422. "Microsoft.Extensions.Configuration": "6.0.0",
  423. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  424. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  425. "Microsoft.Extensions.FileProviders.Physical": "6.0.0",
  426. "Microsoft.Extensions.Primitives": "6.0.0"
  427. },
  428. "compile": {
  429. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  430. "related": ".xml"
  431. }
  432. },
  433. "runtime": {
  434. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  435. "related": ".xml"
  436. }
  437. }
  438. },
  439. "Microsoft.Extensions.Configuration.Json/6.0.0": {
  440. "type": "package",
  441. "dependencies": {
  442. "Microsoft.Extensions.Configuration": "6.0.0",
  443. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  444. "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0",
  445. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  446. "System.Text.Json": "6.0.0"
  447. },
  448. "compile": {
  449. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  450. "related": ".xml"
  451. }
  452. },
  453. "runtime": {
  454. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  455. "related": ".xml"
  456. }
  457. }
  458. },
  459. "Microsoft.Extensions.Configuration.UserSecrets/6.0.1": {
  460. "type": "package",
  461. "dependencies": {
  462. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  463. "Microsoft.Extensions.Configuration.Json": "6.0.0",
  464. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  465. "Microsoft.Extensions.FileProviders.Physical": "6.0.0"
  466. },
  467. "compile": {
  468. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  469. "related": ".xml"
  470. }
  471. },
  472. "runtime": {
  473. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  474. "related": ".xml"
  475. }
  476. },
  477. "build": {
  478. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props": {},
  479. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  480. }
  481. },
  482. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  483. "type": "package",
  484. "dependencies": {
  485. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  486. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  487. },
  488. "compile": {
  489. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  490. "related": ".xml"
  491. }
  492. },
  493. "runtime": {
  494. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  495. "related": ".xml"
  496. }
  497. },
  498. "build": {
  499. "buildTransitive/netcoreapp3.1/_._": {}
  500. }
  501. },
  502. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  503. "type": "package",
  504. "compile": {
  505. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  506. "related": ".xml"
  507. }
  508. },
  509. "runtime": {
  510. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  511. "related": ".xml"
  512. }
  513. },
  514. "build": {
  515. "buildTransitive/netcoreapp3.1/_._": {}
  516. }
  517. },
  518. "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
  519. "type": "package",
  520. "dependencies": {
  521. "Microsoft.Extensions.Primitives": "6.0.0"
  522. },
  523. "compile": {
  524. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  525. "related": ".xml"
  526. }
  527. },
  528. "runtime": {
  529. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  530. "related": ".xml"
  531. }
  532. },
  533. "build": {
  534. "buildTransitive/netcoreapp3.1/_._": {}
  535. }
  536. },
  537. "Microsoft.Extensions.FileProviders.Composite/6.0.0": {
  538. "type": "package",
  539. "dependencies": {
  540. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  541. "Microsoft.Extensions.Primitives": "6.0.0"
  542. },
  543. "compile": {
  544. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  545. "related": ".xml"
  546. }
  547. },
  548. "runtime": {
  549. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  550. "related": ".xml"
  551. }
  552. }
  553. },
  554. "Microsoft.Extensions.FileProviders.Embedded/6.0.5": {
  555. "type": "package",
  556. "dependencies": {
  557. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0"
  558. },
  559. "compile": {
  560. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  561. "related": ".xml"
  562. }
  563. },
  564. "runtime": {
  565. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  566. "related": ".xml"
  567. }
  568. },
  569. "build": {
  570. "build/netstandard2.0/_._": {}
  571. },
  572. "buildMultiTargeting": {
  573. "buildMultiTargeting/_._": {}
  574. }
  575. },
  576. "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
  577. "type": "package",
  578. "dependencies": {
  579. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  580. "Microsoft.Extensions.FileSystemGlobbing": "6.0.0",
  581. "Microsoft.Extensions.Primitives": "6.0.0"
  582. },
  583. "compile": {
  584. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  585. "related": ".xml"
  586. }
  587. },
  588. "runtime": {
  589. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  590. "related": ".xml"
  591. }
  592. },
  593. "build": {
  594. "buildTransitive/netcoreapp3.1/_._": {}
  595. }
  596. },
  597. "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
  598. "type": "package",
  599. "compile": {
  600. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  601. "related": ".xml"
  602. }
  603. },
  604. "runtime": {
  605. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  606. "related": ".xml"
  607. }
  608. },
  609. "build": {
  610. "buildTransitive/netcoreapp3.1/_._": {}
  611. }
  612. },
  613. "Microsoft.Extensions.Hosting.Abstractions/6.0.0": {
  614. "type": "package",
  615. "dependencies": {
  616. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  617. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  618. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0"
  619. },
  620. "compile": {
  621. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  622. "related": ".xml"
  623. }
  624. },
  625. "runtime": {
  626. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  627. "related": ".xml"
  628. }
  629. }
  630. },
  631. "Microsoft.Extensions.Localization/6.0.5": {
  632. "type": "package",
  633. "dependencies": {
  634. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  635. "Microsoft.Extensions.Localization.Abstractions": "6.0.5",
  636. "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
  637. "Microsoft.Extensions.Options": "6.0.0"
  638. },
  639. "compile": {
  640. "lib/net6.0/Microsoft.Extensions.Localization.dll": {
  641. "related": ".xml"
  642. }
  643. },
  644. "runtime": {
  645. "lib/net6.0/Microsoft.Extensions.Localization.dll": {
  646. "related": ".xml"
  647. }
  648. }
  649. },
  650. "Microsoft.Extensions.Localization.Abstractions/6.0.5": {
  651. "type": "package",
  652. "compile": {
  653. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  654. "related": ".xml"
  655. }
  656. },
  657. "runtime": {
  658. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  659. "related": ".xml"
  660. }
  661. }
  662. },
  663. "Microsoft.Extensions.Logging/6.0.0": {
  664. "type": "package",
  665. "dependencies": {
  666. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  667. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  668. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  669. "Microsoft.Extensions.Options": "6.0.0",
  670. "System.Diagnostics.DiagnosticSource": "6.0.0"
  671. },
  672. "compile": {
  673. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  674. "related": ".xml"
  675. }
  676. },
  677. "runtime": {
  678. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  679. "related": ".xml"
  680. }
  681. }
  682. },
  683. "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
  684. "type": "package",
  685. "compile": {
  686. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  687. "related": ".xml"
  688. }
  689. },
  690. "runtime": {
  691. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  692. "related": ".xml"
  693. }
  694. },
  695. "build": {
  696. "buildTransitive/netcoreapp3.1/_._": {}
  697. }
  698. },
  699. "Microsoft.Extensions.Options/6.0.0": {
  700. "type": "package",
  701. "dependencies": {
  702. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  703. "Microsoft.Extensions.Primitives": "6.0.0"
  704. },
  705. "compile": {
  706. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  707. "related": ".xml"
  708. }
  709. },
  710. "runtime": {
  711. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  712. "related": ".xml"
  713. }
  714. }
  715. },
  716. "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
  717. "type": "package",
  718. "dependencies": {
  719. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  720. "Microsoft.Extensions.Configuration.Binder": "6.0.0",
  721. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  722. "Microsoft.Extensions.Options": "6.0.0",
  723. "Microsoft.Extensions.Primitives": "6.0.0"
  724. },
  725. "compile": {
  726. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  727. "related": ".xml"
  728. }
  729. },
  730. "runtime": {
  731. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  732. "related": ".xml"
  733. }
  734. }
  735. },
  736. "Microsoft.Extensions.Primitives/6.0.0": {
  737. "type": "package",
  738. "dependencies": {
  739. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  740. },
  741. "compile": {
  742. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  743. "related": ".xml"
  744. }
  745. },
  746. "runtime": {
  747. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  748. "related": ".xml"
  749. }
  750. },
  751. "build": {
  752. "buildTransitive/netcoreapp3.1/_._": {}
  753. }
  754. },
  755. "Microsoft.Identity.Client/4.21.1": {
  756. "type": "package",
  757. "compile": {
  758. "ref/netcoreapp2.1/_._": {
  759. "related": ".xml"
  760. }
  761. },
  762. "runtime": {
  763. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  764. "related": ".xml"
  765. }
  766. }
  767. },
  768. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  769. "type": "package",
  770. "dependencies": {
  771. "Microsoft.IdentityModel.Tokens": "6.8.0"
  772. },
  773. "compile": {
  774. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  775. "related": ".xml"
  776. }
  777. },
  778. "runtime": {
  779. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  780. "related": ".xml"
  781. }
  782. }
  783. },
  784. "Microsoft.IdentityModel.Logging/6.8.0": {
  785. "type": "package",
  786. "compile": {
  787. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  788. "related": ".xml"
  789. }
  790. },
  791. "runtime": {
  792. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  793. "related": ".xml"
  794. }
  795. }
  796. },
  797. "Microsoft.IdentityModel.Protocols/6.8.0": {
  798. "type": "package",
  799. "dependencies": {
  800. "Microsoft.IdentityModel.Logging": "6.8.0",
  801. "Microsoft.IdentityModel.Tokens": "6.8.0"
  802. },
  803. "compile": {
  804. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  805. "related": ".xml"
  806. }
  807. },
  808. "runtime": {
  809. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  810. "related": ".xml"
  811. }
  812. }
  813. },
  814. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  815. "type": "package",
  816. "dependencies": {
  817. "Microsoft.IdentityModel.Protocols": "6.8.0",
  818. "System.IdentityModel.Tokens.Jwt": "6.8.0"
  819. },
  820. "compile": {
  821. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  822. "related": ".xml"
  823. }
  824. },
  825. "runtime": {
  826. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  827. "related": ".xml"
  828. }
  829. }
  830. },
  831. "Microsoft.IdentityModel.Tokens/6.8.0": {
  832. "type": "package",
  833. "dependencies": {
  834. "Microsoft.CSharp": "4.5.0",
  835. "Microsoft.IdentityModel.Logging": "6.8.0",
  836. "System.Security.Cryptography.Cng": "4.5.0"
  837. },
  838. "compile": {
  839. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  840. "related": ".xml"
  841. }
  842. },
  843. "runtime": {
  844. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  845. "related": ".xml"
  846. }
  847. }
  848. },
  849. "Microsoft.NETCore.Platforms/3.1.0": {
  850. "type": "package",
  851. "compile": {
  852. "lib/netstandard1.0/_._": {}
  853. },
  854. "runtime": {
  855. "lib/netstandard1.0/_._": {}
  856. }
  857. },
  858. "Microsoft.NETCore.Targets/1.1.0": {
  859. "type": "package",
  860. "compile": {
  861. "lib/netstandard1.0/_._": {}
  862. },
  863. "runtime": {
  864. "lib/netstandard1.0/_._": {}
  865. }
  866. },
  867. "Microsoft.Win32.Registry/4.7.0": {
  868. "type": "package",
  869. "dependencies": {
  870. "System.Security.AccessControl": "4.7.0",
  871. "System.Security.Principal.Windows": "4.7.0"
  872. },
  873. "compile": {
  874. "ref/netstandard2.0/_._": {
  875. "related": ".xml"
  876. }
  877. },
  878. "runtime": {
  879. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  880. "related": ".xml"
  881. }
  882. },
  883. "runtimeTargets": {
  884. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  885. "assetType": "runtime",
  886. "rid": "unix"
  887. },
  888. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  889. "assetType": "runtime",
  890. "rid": "win"
  891. }
  892. }
  893. },
  894. "Microsoft.Win32.SystemEvents/4.7.0": {
  895. "type": "package",
  896. "dependencies": {
  897. "Microsoft.NETCore.Platforms": "3.1.0"
  898. },
  899. "compile": {
  900. "ref/netstandard2.0/_._": {
  901. "related": ".xml"
  902. }
  903. },
  904. "runtime": {
  905. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  906. "related": ".xml"
  907. }
  908. },
  909. "runtimeTargets": {
  910. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  911. "assetType": "runtime",
  912. "rid": "win"
  913. }
  914. }
  915. },
  916. "MySql.Data/8.0.32.1": {
  917. "type": "package",
  918. "dependencies": {
  919. "Google.Protobuf": "3.21.9",
  920. "K4os.Compression.LZ4.Streams": "1.2.6",
  921. "Portable.BouncyCastle": "1.9.0",
  922. "System.Buffers": "4.5.1",
  923. "System.Configuration.ConfigurationManager": "4.4.1",
  924. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  925. "System.Runtime.Loader": "4.3.0",
  926. "System.Security.Permissions": "4.7.0",
  927. "System.Text.Encoding.CodePages": "4.4.0"
  928. },
  929. "compile": {
  930. "lib/net6.0/MySql.Data.dll": {
  931. "related": ".xml"
  932. }
  933. },
  934. "runtime": {
  935. "lib/net6.0/MySql.Data.dll": {
  936. "related": ".xml"
  937. }
  938. },
  939. "runtimeTargets": {
  940. "runtimes/win-x64/native/comerr64.dll": {
  941. "assetType": "native",
  942. "rid": "win-x64"
  943. },
  944. "runtimes/win-x64/native/gssapi64.dll": {
  945. "assetType": "native",
  946. "rid": "win-x64"
  947. },
  948. "runtimes/win-x64/native/k5sprt64.dll": {
  949. "assetType": "native",
  950. "rid": "win-x64"
  951. },
  952. "runtimes/win-x64/native/krb5_64.dll": {
  953. "assetType": "native",
  954. "rid": "win-x64"
  955. },
  956. "runtimes/win-x64/native/krbcc64.dll": {
  957. "assetType": "native",
  958. "rid": "win-x64"
  959. }
  960. }
  961. },
  962. "MySqlConnector/2.0.0": {
  963. "type": "package",
  964. "compile": {
  965. "lib/net6.0/MySqlConnector.dll": {
  966. "related": ".xml"
  967. }
  968. },
  969. "runtime": {
  970. "lib/net6.0/MySqlConnector.dll": {
  971. "related": ".xml"
  972. }
  973. }
  974. },
  975. "Newtonsoft.Json/13.0.1": {
  976. "type": "package",
  977. "compile": {
  978. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  979. "related": ".xml"
  980. }
  981. },
  982. "runtime": {
  983. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  984. "related": ".xml"
  985. }
  986. }
  987. },
  988. "Nito.AsyncEx.Context/5.1.2": {
  989. "type": "package",
  990. "dependencies": {
  991. "Nito.AsyncEx.Tasks": "5.1.2"
  992. },
  993. "compile": {
  994. "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
  995. "related": ".xml"
  996. }
  997. },
  998. "runtime": {
  999. "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
  1000. "related": ".xml"
  1001. }
  1002. }
  1003. },
  1004. "Nito.AsyncEx.Coordination/5.1.2": {
  1005. "type": "package",
  1006. "dependencies": {
  1007. "Nito.AsyncEx.Tasks": "5.1.2",
  1008. "Nito.Collections.Deque": "1.1.1"
  1009. },
  1010. "compile": {
  1011. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1012. "related": ".xml"
  1013. }
  1014. },
  1015. "runtime": {
  1016. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1017. "related": ".xml"
  1018. }
  1019. }
  1020. },
  1021. "Nito.AsyncEx.Tasks/5.1.2": {
  1022. "type": "package",
  1023. "dependencies": {
  1024. "Nito.Disposables": "2.2.1"
  1025. },
  1026. "compile": {
  1027. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1028. "related": ".xml"
  1029. }
  1030. },
  1031. "runtime": {
  1032. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1033. "related": ".xml"
  1034. }
  1035. }
  1036. },
  1037. "Nito.Collections.Deque/1.1.1": {
  1038. "type": "package",
  1039. "compile": {
  1040. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1041. "related": ".xml"
  1042. }
  1043. },
  1044. "runtime": {
  1045. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1046. "related": ".xml"
  1047. }
  1048. }
  1049. },
  1050. "Nito.Disposables/2.2.1": {
  1051. "type": "package",
  1052. "dependencies": {
  1053. "System.Collections.Immutable": "1.7.1"
  1054. },
  1055. "compile": {
  1056. "lib/netstandard2.1/Nito.Disposables.dll": {
  1057. "related": ".xml"
  1058. }
  1059. },
  1060. "runtime": {
  1061. "lib/netstandard2.1/Nito.Disposables.dll": {
  1062. "related": ".xml"
  1063. }
  1064. }
  1065. },
  1066. "Pomelo.EntityFrameworkCore.MySql/6.0.0": {
  1067. "type": "package",
  1068. "dependencies": {
  1069. "Microsoft.EntityFrameworkCore.Relational": "[6.0.0, 7.0.0)",
  1070. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1071. "MySqlConnector": "2.0.0"
  1072. },
  1073. "compile": {
  1074. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {
  1075. "related": ".xml"
  1076. }
  1077. },
  1078. "runtime": {
  1079. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {
  1080. "related": ".xml"
  1081. }
  1082. }
  1083. },
  1084. "Portable.BouncyCastle/1.9.0": {
  1085. "type": "package",
  1086. "compile": {
  1087. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  1088. "related": ".xml"
  1089. }
  1090. },
  1091. "runtime": {
  1092. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  1093. "related": ".xml"
  1094. }
  1095. }
  1096. },
  1097. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  1098. "type": "package",
  1099. "dependencies": {
  1100. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1101. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1102. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1103. }
  1104. },
  1105. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1106. "type": "package",
  1107. "runtimeTargets": {
  1108. "runtimes/win-arm64/native/sni.dll": {
  1109. "assetType": "native",
  1110. "rid": "win-arm64"
  1111. }
  1112. }
  1113. },
  1114. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1115. "type": "package",
  1116. "runtimeTargets": {
  1117. "runtimes/win-x64/native/sni.dll": {
  1118. "assetType": "native",
  1119. "rid": "win-x64"
  1120. }
  1121. }
  1122. },
  1123. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1124. "type": "package",
  1125. "runtimeTargets": {
  1126. "runtimes/win-x86/native/sni.dll": {
  1127. "assetType": "native",
  1128. "rid": "win-x86"
  1129. }
  1130. }
  1131. },
  1132. "System.Buffers/4.5.1": {
  1133. "type": "package",
  1134. "compile": {
  1135. "ref/netcoreapp2.0/_._": {}
  1136. },
  1137. "runtime": {
  1138. "lib/netcoreapp2.0/_._": {}
  1139. }
  1140. },
  1141. "System.Collections/4.3.0": {
  1142. "type": "package",
  1143. "dependencies": {
  1144. "Microsoft.NETCore.Platforms": "1.1.0",
  1145. "Microsoft.NETCore.Targets": "1.1.0",
  1146. "System.Runtime": "4.3.0"
  1147. },
  1148. "compile": {
  1149. "ref/netstandard1.3/System.Collections.dll": {
  1150. "related": ".xml"
  1151. }
  1152. }
  1153. },
  1154. "System.Collections.Immutable/6.0.0": {
  1155. "type": "package",
  1156. "dependencies": {
  1157. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1158. },
  1159. "compile": {
  1160. "lib/net6.0/System.Collections.Immutable.dll": {
  1161. "related": ".xml"
  1162. }
  1163. },
  1164. "runtime": {
  1165. "lib/net6.0/System.Collections.Immutable.dll": {
  1166. "related": ".xml"
  1167. }
  1168. },
  1169. "build": {
  1170. "buildTransitive/netcoreapp3.1/_._": {}
  1171. }
  1172. },
  1173. "System.Configuration.ConfigurationManager/4.7.0": {
  1174. "type": "package",
  1175. "dependencies": {
  1176. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1177. "System.Security.Permissions": "4.7.0"
  1178. },
  1179. "compile": {
  1180. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1181. "related": ".xml"
  1182. }
  1183. },
  1184. "runtime": {
  1185. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1186. "related": ".xml"
  1187. }
  1188. }
  1189. },
  1190. "System.Data.SqlClient/4.8.5": {
  1191. "type": "package",
  1192. "dependencies": {
  1193. "Microsoft.Win32.Registry": "4.7.0",
  1194. "System.Security.Principal.Windows": "4.7.0",
  1195. "runtime.native.System.Data.SqlClient.sni": "4.7.0"
  1196. },
  1197. "compile": {
  1198. "ref/netcoreapp2.1/System.Data.SqlClient.dll": {
  1199. "related": ".xml"
  1200. }
  1201. },
  1202. "runtime": {
  1203. "lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1204. "related": ".xml"
  1205. }
  1206. },
  1207. "runtimeTargets": {
  1208. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1209. "assetType": "runtime",
  1210. "rid": "unix"
  1211. },
  1212. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  1213. "assetType": "runtime",
  1214. "rid": "win"
  1215. }
  1216. }
  1217. },
  1218. "System.Diagnostics.Debug/4.3.0": {
  1219. "type": "package",
  1220. "dependencies": {
  1221. "Microsoft.NETCore.Platforms": "1.1.0",
  1222. "Microsoft.NETCore.Targets": "1.1.0",
  1223. "System.Runtime": "4.3.0"
  1224. },
  1225. "compile": {
  1226. "ref/netstandard1.3/_._": {
  1227. "related": ".xml"
  1228. }
  1229. }
  1230. },
  1231. "System.Diagnostics.DiagnosticSource/6.0.0": {
  1232. "type": "package",
  1233. "dependencies": {
  1234. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1235. },
  1236. "compile": {
  1237. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1238. "related": ".xml"
  1239. }
  1240. },
  1241. "runtime": {
  1242. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  1243. "related": ".xml"
  1244. }
  1245. },
  1246. "build": {
  1247. "buildTransitive/netcoreapp3.1/_._": {}
  1248. }
  1249. },
  1250. "System.Drawing.Common/4.7.0": {
  1251. "type": "package",
  1252. "dependencies": {
  1253. "Microsoft.NETCore.Platforms": "3.1.0",
  1254. "Microsoft.Win32.SystemEvents": "4.7.0"
  1255. },
  1256. "compile": {
  1257. "ref/netcoreapp3.0/_._": {
  1258. "related": ".xml"
  1259. }
  1260. },
  1261. "runtime": {
  1262. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1263. },
  1264. "runtimeTargets": {
  1265. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1266. "assetType": "runtime",
  1267. "rid": "unix"
  1268. },
  1269. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1270. "assetType": "runtime",
  1271. "rid": "win"
  1272. }
  1273. }
  1274. },
  1275. "System.Globalization/4.3.0": {
  1276. "type": "package",
  1277. "dependencies": {
  1278. "Microsoft.NETCore.Platforms": "1.1.0",
  1279. "Microsoft.NETCore.Targets": "1.1.0",
  1280. "System.Runtime": "4.3.0"
  1281. },
  1282. "compile": {
  1283. "ref/netstandard1.3/_._": {
  1284. "related": ".xml"
  1285. }
  1286. }
  1287. },
  1288. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  1289. "type": "package",
  1290. "dependencies": {
  1291. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  1292. "Microsoft.IdentityModel.Tokens": "6.8.0"
  1293. },
  1294. "compile": {
  1295. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1296. "related": ".xml"
  1297. }
  1298. },
  1299. "runtime": {
  1300. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1301. "related": ".xml"
  1302. }
  1303. }
  1304. },
  1305. "System.IO/4.3.0": {
  1306. "type": "package",
  1307. "dependencies": {
  1308. "Microsoft.NETCore.Platforms": "1.1.0",
  1309. "Microsoft.NETCore.Targets": "1.1.0",
  1310. "System.Runtime": "4.3.0",
  1311. "System.Text.Encoding": "4.3.0",
  1312. "System.Threading.Tasks": "4.3.0"
  1313. },
  1314. "compile": {
  1315. "ref/netstandard1.5/System.IO.dll": {
  1316. "related": ".xml"
  1317. }
  1318. }
  1319. },
  1320. "System.Linq/4.3.0": {
  1321. "type": "package",
  1322. "dependencies": {
  1323. "System.Collections": "4.3.0",
  1324. "System.Diagnostics.Debug": "4.3.0",
  1325. "System.Resources.ResourceManager": "4.3.0",
  1326. "System.Runtime": "4.3.0",
  1327. "System.Runtime.Extensions": "4.3.0"
  1328. },
  1329. "compile": {
  1330. "ref/netstandard1.6/System.Linq.dll": {
  1331. "related": ".xml"
  1332. }
  1333. },
  1334. "runtime": {
  1335. "lib/netstandard1.6/System.Linq.dll": {}
  1336. }
  1337. },
  1338. "System.Linq.Dynamic.Core/1.2.18": {
  1339. "type": "package",
  1340. "compile": {
  1341. "lib/net6.0/System.Linq.Dynamic.Core.dll": {
  1342. "related": ".pdb;.xml"
  1343. }
  1344. },
  1345. "runtime": {
  1346. "lib/net6.0/System.Linq.Dynamic.Core.dll": {
  1347. "related": ".pdb;.xml"
  1348. }
  1349. }
  1350. },
  1351. "System.Linq.Expressions/4.3.0": {
  1352. "type": "package",
  1353. "dependencies": {
  1354. "System.Collections": "4.3.0",
  1355. "System.Diagnostics.Debug": "4.3.0",
  1356. "System.Globalization": "4.3.0",
  1357. "System.IO": "4.3.0",
  1358. "System.Linq": "4.3.0",
  1359. "System.ObjectModel": "4.3.0",
  1360. "System.Reflection": "4.3.0",
  1361. "System.Reflection.Emit": "4.3.0",
  1362. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1363. "System.Reflection.Emit.Lightweight": "4.3.0",
  1364. "System.Reflection.Extensions": "4.3.0",
  1365. "System.Reflection.Primitives": "4.3.0",
  1366. "System.Reflection.TypeExtensions": "4.3.0",
  1367. "System.Resources.ResourceManager": "4.3.0",
  1368. "System.Runtime": "4.3.0",
  1369. "System.Runtime.Extensions": "4.3.0",
  1370. "System.Threading": "4.3.0"
  1371. },
  1372. "compile": {
  1373. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1374. "related": ".xml"
  1375. }
  1376. },
  1377. "runtime": {
  1378. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1379. }
  1380. },
  1381. "System.Linq.Queryable/4.3.0": {
  1382. "type": "package",
  1383. "dependencies": {
  1384. "System.Collections": "4.3.0",
  1385. "System.Diagnostics.Debug": "4.3.0",
  1386. "System.Linq": "4.3.0",
  1387. "System.Linq.Expressions": "4.3.0",
  1388. "System.Reflection": "4.3.0",
  1389. "System.Reflection.Extensions": "4.3.0",
  1390. "System.Resources.ResourceManager": "4.3.0",
  1391. "System.Runtime": "4.3.0"
  1392. },
  1393. "compile": {
  1394. "ref/netstandard1.0/System.Linq.Queryable.dll": {
  1395. "related": ".xml"
  1396. }
  1397. },
  1398. "runtime": {
  1399. "lib/netstandard1.3/System.Linq.Queryable.dll": {}
  1400. }
  1401. },
  1402. "System.Memory/4.5.4": {
  1403. "type": "package",
  1404. "compile": {
  1405. "ref/netcoreapp2.1/_._": {}
  1406. },
  1407. "runtime": {
  1408. "lib/netcoreapp2.1/_._": {}
  1409. }
  1410. },
  1411. "System.ObjectModel/4.3.0": {
  1412. "type": "package",
  1413. "dependencies": {
  1414. "System.Collections": "4.3.0",
  1415. "System.Diagnostics.Debug": "4.3.0",
  1416. "System.Resources.ResourceManager": "4.3.0",
  1417. "System.Runtime": "4.3.0",
  1418. "System.Threading": "4.3.0"
  1419. },
  1420. "compile": {
  1421. "ref/netstandard1.3/_._": {
  1422. "related": ".xml"
  1423. }
  1424. },
  1425. "runtime": {
  1426. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1427. }
  1428. },
  1429. "System.Reflection/4.3.0": {
  1430. "type": "package",
  1431. "dependencies": {
  1432. "Microsoft.NETCore.Platforms": "1.1.0",
  1433. "Microsoft.NETCore.Targets": "1.1.0",
  1434. "System.IO": "4.3.0",
  1435. "System.Reflection.Primitives": "4.3.0",
  1436. "System.Runtime": "4.3.0"
  1437. },
  1438. "compile": {
  1439. "ref/netstandard1.5/System.Reflection.dll": {
  1440. "related": ".xml"
  1441. }
  1442. }
  1443. },
  1444. "System.Reflection.Emit/4.3.0": {
  1445. "type": "package",
  1446. "dependencies": {
  1447. "System.IO": "4.3.0",
  1448. "System.Reflection": "4.3.0",
  1449. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1450. "System.Reflection.Primitives": "4.3.0",
  1451. "System.Runtime": "4.3.0"
  1452. },
  1453. "compile": {
  1454. "ref/netstandard1.1/_._": {
  1455. "related": ".xml"
  1456. }
  1457. },
  1458. "runtime": {
  1459. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1460. }
  1461. },
  1462. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1463. "type": "package",
  1464. "dependencies": {
  1465. "System.Reflection": "4.3.0",
  1466. "System.Reflection.Primitives": "4.3.0",
  1467. "System.Runtime": "4.3.0"
  1468. },
  1469. "compile": {
  1470. "ref/netstandard1.0/_._": {
  1471. "related": ".xml"
  1472. }
  1473. },
  1474. "runtime": {
  1475. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1476. }
  1477. },
  1478. "System.Reflection.Emit.Lightweight/4.3.0": {
  1479. "type": "package",
  1480. "dependencies": {
  1481. "System.Reflection": "4.3.0",
  1482. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1483. "System.Reflection.Primitives": "4.3.0",
  1484. "System.Runtime": "4.3.0"
  1485. },
  1486. "compile": {
  1487. "ref/netstandard1.0/_._": {
  1488. "related": ".xml"
  1489. }
  1490. },
  1491. "runtime": {
  1492. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1493. }
  1494. },
  1495. "System.Reflection.Extensions/4.3.0": {
  1496. "type": "package",
  1497. "dependencies": {
  1498. "Microsoft.NETCore.Platforms": "1.1.0",
  1499. "Microsoft.NETCore.Targets": "1.1.0",
  1500. "System.Reflection": "4.3.0",
  1501. "System.Runtime": "4.3.0"
  1502. },
  1503. "compile": {
  1504. "ref/netstandard1.0/_._": {
  1505. "related": ".xml"
  1506. }
  1507. }
  1508. },
  1509. "System.Reflection.Primitives/4.3.0": {
  1510. "type": "package",
  1511. "dependencies": {
  1512. "Microsoft.NETCore.Platforms": "1.1.0",
  1513. "Microsoft.NETCore.Targets": "1.1.0",
  1514. "System.Runtime": "4.3.0"
  1515. },
  1516. "compile": {
  1517. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  1518. "related": ".xml"
  1519. }
  1520. }
  1521. },
  1522. "System.Reflection.TypeExtensions/4.3.0": {
  1523. "type": "package",
  1524. "dependencies": {
  1525. "System.Reflection": "4.3.0",
  1526. "System.Runtime": "4.3.0"
  1527. },
  1528. "compile": {
  1529. "ref/netstandard1.5/_._": {
  1530. "related": ".xml"
  1531. }
  1532. },
  1533. "runtime": {
  1534. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1535. }
  1536. },
  1537. "System.Resources.ResourceManager/4.3.0": {
  1538. "type": "package",
  1539. "dependencies": {
  1540. "Microsoft.NETCore.Platforms": "1.1.0",
  1541. "Microsoft.NETCore.Targets": "1.1.0",
  1542. "System.Globalization": "4.3.0",
  1543. "System.Reflection": "4.3.0",
  1544. "System.Runtime": "4.3.0"
  1545. },
  1546. "compile": {
  1547. "ref/netstandard1.0/_._": {
  1548. "related": ".xml"
  1549. }
  1550. }
  1551. },
  1552. "System.Runtime/4.3.0": {
  1553. "type": "package",
  1554. "dependencies": {
  1555. "Microsoft.NETCore.Platforms": "1.1.0",
  1556. "Microsoft.NETCore.Targets": "1.1.0"
  1557. },
  1558. "compile": {
  1559. "ref/netstandard1.5/System.Runtime.dll": {
  1560. "related": ".xml"
  1561. }
  1562. }
  1563. },
  1564. "System.Runtime.Caching/4.7.0": {
  1565. "type": "package",
  1566. "dependencies": {
  1567. "System.Configuration.ConfigurationManager": "4.7.0"
  1568. },
  1569. "compile": {
  1570. "ref/netstandard2.0/_._": {
  1571. "related": ".xml"
  1572. }
  1573. },
  1574. "runtime": {
  1575. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  1576. "related": ".xml"
  1577. }
  1578. },
  1579. "runtimeTargets": {
  1580. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  1581. "assetType": "runtime",
  1582. "rid": "win"
  1583. }
  1584. }
  1585. },
  1586. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1587. "type": "package",
  1588. "compile": {
  1589. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1590. "related": ".xml"
  1591. }
  1592. },
  1593. "runtime": {
  1594. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1595. "related": ".xml"
  1596. }
  1597. },
  1598. "build": {
  1599. "buildTransitive/netcoreapp3.1/_._": {}
  1600. }
  1601. },
  1602. "System.Runtime.Extensions/4.3.0": {
  1603. "type": "package",
  1604. "dependencies": {
  1605. "Microsoft.NETCore.Platforms": "1.1.0",
  1606. "Microsoft.NETCore.Targets": "1.1.0",
  1607. "System.Runtime": "4.3.0"
  1608. },
  1609. "compile": {
  1610. "ref/netstandard1.5/_._": {
  1611. "related": ".xml"
  1612. }
  1613. }
  1614. },
  1615. "System.Runtime.Loader/4.3.0": {
  1616. "type": "package",
  1617. "dependencies": {
  1618. "System.IO": "4.3.0",
  1619. "System.Reflection": "4.3.0",
  1620. "System.Runtime": "4.3.0"
  1621. },
  1622. "compile": {
  1623. "ref/netstandard1.5/System.Runtime.Loader.dll": {
  1624. "related": ".xml"
  1625. }
  1626. },
  1627. "runtime": {
  1628. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  1629. }
  1630. },
  1631. "System.Security.AccessControl/4.7.0": {
  1632. "type": "package",
  1633. "dependencies": {
  1634. "Microsoft.NETCore.Platforms": "3.1.0",
  1635. "System.Security.Principal.Windows": "4.7.0"
  1636. },
  1637. "compile": {
  1638. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  1639. "related": ".xml"
  1640. }
  1641. },
  1642. "runtime": {
  1643. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  1644. "related": ".xml"
  1645. }
  1646. },
  1647. "runtimeTargets": {
  1648. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  1649. "assetType": "runtime",
  1650. "rid": "win"
  1651. }
  1652. }
  1653. },
  1654. "System.Security.Cryptography.Cng/4.5.0": {
  1655. "type": "package",
  1656. "compile": {
  1657. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  1658. "related": ".xml"
  1659. }
  1660. },
  1661. "runtime": {
  1662. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  1663. },
  1664. "runtimeTargets": {
  1665. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  1666. "assetType": "runtime",
  1667. "rid": "win"
  1668. }
  1669. }
  1670. },
  1671. "System.Security.Cryptography.ProtectedData/4.7.0": {
  1672. "type": "package",
  1673. "compile": {
  1674. "ref/netstandard2.0/_._": {
  1675. "related": ".xml"
  1676. }
  1677. },
  1678. "runtime": {
  1679. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1680. "related": ".xml"
  1681. }
  1682. },
  1683. "runtimeTargets": {
  1684. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1685. "assetType": "runtime",
  1686. "rid": "win"
  1687. }
  1688. }
  1689. },
  1690. "System.Security.Permissions/4.7.0": {
  1691. "type": "package",
  1692. "dependencies": {
  1693. "System.Security.AccessControl": "4.7.0",
  1694. "System.Windows.Extensions": "4.7.0"
  1695. },
  1696. "compile": {
  1697. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  1698. "related": ".xml"
  1699. }
  1700. },
  1701. "runtime": {
  1702. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  1703. "related": ".xml"
  1704. }
  1705. }
  1706. },
  1707. "System.Security.Principal.Windows/4.7.0": {
  1708. "type": "package",
  1709. "compile": {
  1710. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  1711. "related": ".xml"
  1712. }
  1713. },
  1714. "runtime": {
  1715. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  1716. "related": ".xml"
  1717. }
  1718. },
  1719. "runtimeTargets": {
  1720. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1721. "assetType": "runtime",
  1722. "rid": "unix"
  1723. },
  1724. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1725. "assetType": "runtime",
  1726. "rid": "win"
  1727. }
  1728. }
  1729. },
  1730. "System.Text.Encoding/4.3.0": {
  1731. "type": "package",
  1732. "dependencies": {
  1733. "Microsoft.NETCore.Platforms": "1.1.0",
  1734. "Microsoft.NETCore.Targets": "1.1.0",
  1735. "System.Runtime": "4.3.0"
  1736. },
  1737. "compile": {
  1738. "ref/netstandard1.3/System.Text.Encoding.dll": {
  1739. "related": ".xml"
  1740. }
  1741. }
  1742. },
  1743. "System.Text.Encoding.CodePages/4.7.0": {
  1744. "type": "package",
  1745. "dependencies": {
  1746. "Microsoft.NETCore.Platforms": "3.1.0"
  1747. },
  1748. "compile": {
  1749. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  1750. "related": ".xml"
  1751. }
  1752. },
  1753. "runtime": {
  1754. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  1755. "related": ".xml"
  1756. }
  1757. },
  1758. "runtimeTargets": {
  1759. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  1760. "assetType": "runtime",
  1761. "rid": "win"
  1762. }
  1763. }
  1764. },
  1765. "System.Text.Encodings.Web/6.0.0": {
  1766. "type": "package",
  1767. "dependencies": {
  1768. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1769. },
  1770. "compile": {
  1771. "lib/net6.0/System.Text.Encodings.Web.dll": {
  1772. "related": ".xml"
  1773. }
  1774. },
  1775. "runtime": {
  1776. "lib/net6.0/System.Text.Encodings.Web.dll": {
  1777. "related": ".xml"
  1778. }
  1779. },
  1780. "build": {
  1781. "buildTransitive/netcoreapp3.1/_._": {}
  1782. },
  1783. "runtimeTargets": {
  1784. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": {
  1785. "assetType": "runtime",
  1786. "rid": "browser"
  1787. }
  1788. }
  1789. },
  1790. "System.Text.Json/6.0.0": {
  1791. "type": "package",
  1792. "dependencies": {
  1793. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  1794. "System.Text.Encodings.Web": "6.0.0"
  1795. },
  1796. "compile": {
  1797. "lib/net6.0/System.Text.Json.dll": {
  1798. "related": ".xml"
  1799. }
  1800. },
  1801. "runtime": {
  1802. "lib/net6.0/System.Text.Json.dll": {
  1803. "related": ".xml"
  1804. }
  1805. },
  1806. "build": {
  1807. "buildTransitive/netcoreapp3.1/_._": {}
  1808. }
  1809. },
  1810. "System.Threading/4.3.0": {
  1811. "type": "package",
  1812. "dependencies": {
  1813. "System.Runtime": "4.3.0",
  1814. "System.Threading.Tasks": "4.3.0"
  1815. },
  1816. "compile": {
  1817. "ref/netstandard1.3/_._": {
  1818. "related": ".xml"
  1819. }
  1820. },
  1821. "runtime": {
  1822. "lib/netstandard1.3/System.Threading.dll": {}
  1823. }
  1824. },
  1825. "System.Threading.Tasks/4.3.0": {
  1826. "type": "package",
  1827. "dependencies": {
  1828. "Microsoft.NETCore.Platforms": "1.1.0",
  1829. "Microsoft.NETCore.Targets": "1.1.0",
  1830. "System.Runtime": "4.3.0"
  1831. },
  1832. "compile": {
  1833. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  1834. "related": ".xml"
  1835. }
  1836. }
  1837. },
  1838. "System.Windows.Extensions/4.7.0": {
  1839. "type": "package",
  1840. "dependencies": {
  1841. "System.Drawing.Common": "4.7.0"
  1842. },
  1843. "compile": {
  1844. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  1845. "related": ".xml"
  1846. }
  1847. },
  1848. "runtime": {
  1849. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1850. "related": ".xml"
  1851. }
  1852. },
  1853. "runtimeTargets": {
  1854. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1855. "assetType": "runtime",
  1856. "rid": "win"
  1857. }
  1858. }
  1859. },
  1860. "TimeZoneConverter/5.0.0": {
  1861. "type": "package",
  1862. "compile": {
  1863. "lib/netstandard2.0/TimeZoneConverter.dll": {
  1864. "related": ".xml"
  1865. }
  1866. },
  1867. "runtime": {
  1868. "lib/netstandard2.0/TimeZoneConverter.dll": {
  1869. "related": ".xml"
  1870. }
  1871. }
  1872. },
  1873. "Volo.Abp.Auditing/6.0.2": {
  1874. "type": "package",
  1875. "dependencies": {
  1876. "Volo.Abp.Auditing.Contracts": "6.0.2",
  1877. "Volo.Abp.Data": "6.0.2",
  1878. "Volo.Abp.Json": "6.0.2",
  1879. "Volo.Abp.MultiTenancy": "6.0.2",
  1880. "Volo.Abp.Security": "6.0.2",
  1881. "Volo.Abp.Threading": "6.0.2",
  1882. "Volo.Abp.Timing": "6.0.2"
  1883. },
  1884. "compile": {
  1885. "lib/netstandard2.0/Volo.Abp.Auditing.dll": {
  1886. "related": ".pdb;.xml"
  1887. }
  1888. },
  1889. "runtime": {
  1890. "lib/netstandard2.0/Volo.Abp.Auditing.dll": {
  1891. "related": ".pdb;.xml"
  1892. }
  1893. }
  1894. },
  1895. "Volo.Abp.Auditing.Contracts/6.0.2": {
  1896. "type": "package",
  1897. "dependencies": {
  1898. "Volo.Abp.Core": "6.0.2"
  1899. },
  1900. "compile": {
  1901. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll": {
  1902. "related": ".pdb;.xml"
  1903. }
  1904. },
  1905. "runtime": {
  1906. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll": {
  1907. "related": ".pdb;.xml"
  1908. }
  1909. }
  1910. },
  1911. "Volo.Abp.Authorization/6.0.0": {
  1912. "type": "package",
  1913. "dependencies": {
  1914. "Volo.Abp.Authorization.Abstractions": "6.0.0",
  1915. "Volo.Abp.Localization": "6.0.0",
  1916. "Volo.Abp.Security": "6.0.0"
  1917. },
  1918. "compile": {
  1919. "lib/netstandard2.0/Volo.Abp.Authorization.dll": {
  1920. "related": ".pdb;.xml"
  1921. }
  1922. },
  1923. "runtime": {
  1924. "lib/netstandard2.0/Volo.Abp.Authorization.dll": {
  1925. "related": ".pdb;.xml"
  1926. }
  1927. }
  1928. },
  1929. "Volo.Abp.Authorization.Abstractions/6.0.0": {
  1930. "type": "package",
  1931. "dependencies": {
  1932. "Microsoft.AspNetCore.Authorization": "6.0.5",
  1933. "Volo.Abp.MultiTenancy": "6.0.0"
  1934. },
  1935. "compile": {
  1936. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll": {
  1937. "related": ".pdb;.xml"
  1938. }
  1939. },
  1940. "runtime": {
  1941. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll": {
  1942. "related": ".pdb;.xml"
  1943. }
  1944. }
  1945. },
  1946. "Volo.Abp.BackgroundWorkers/6.0.2": {
  1947. "type": "package",
  1948. "dependencies": {
  1949. "Volo.Abp.Threading": "6.0.2"
  1950. },
  1951. "compile": {
  1952. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll": {
  1953. "related": ".pdb;.xml"
  1954. }
  1955. },
  1956. "runtime": {
  1957. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll": {
  1958. "related": ".pdb;.xml"
  1959. }
  1960. }
  1961. },
  1962. "Volo.Abp.Caching/6.0.0": {
  1963. "type": "package",
  1964. "dependencies": {
  1965. "Microsoft.Extensions.Caching.Memory": "6.0.1",
  1966. "Volo.Abp.Json": "6.0.0",
  1967. "Volo.Abp.MultiTenancy": "6.0.0",
  1968. "Volo.Abp.Serialization": "6.0.0",
  1969. "Volo.Abp.Threading": "6.0.0"
  1970. },
  1971. "compile": {
  1972. "lib/netstandard2.0/Volo.Abp.Caching.dll": {
  1973. "related": ".pdb;.xml"
  1974. }
  1975. },
  1976. "runtime": {
  1977. "lib/netstandard2.0/Volo.Abp.Caching.dll": {
  1978. "related": ".pdb;.xml"
  1979. }
  1980. }
  1981. },
  1982. "Volo.Abp.Core/6.0.2": {
  1983. "type": "package",
  1984. "dependencies": {
  1985. "JetBrains.Annotations": "2022.1.0",
  1986. "Microsoft.Extensions.Configuration.CommandLine": "6.0.0",
  1987. "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.1",
  1988. "Microsoft.Extensions.Configuration.UserSecrets": "6.0.1",
  1989. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1990. "Microsoft.Extensions.Hosting.Abstractions": "6.0.0",
  1991. "Microsoft.Extensions.Localization": "6.0.5",
  1992. "Microsoft.Extensions.Logging": "6.0.0",
  1993. "Microsoft.Extensions.Options": "6.0.0",
  1994. "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0",
  1995. "Nito.AsyncEx.Context": "5.1.2",
  1996. "Nito.AsyncEx.Coordination": "5.1.2",
  1997. "System.Collections.Immutable": "6.0.0",
  1998. "System.Linq.Dynamic.Core": "1.2.18",
  1999. "System.Linq.Queryable": "4.3.0",
  2000. "System.Runtime.Loader": "4.3.0",
  2001. "System.Text.Encodings.Web": "6.0.0"
  2002. },
  2003. "compile": {
  2004. "lib/netstandard2.0/Volo.Abp.Core.dll": {
  2005. "related": ".pdb;.xml"
  2006. }
  2007. },
  2008. "runtime": {
  2009. "lib/netstandard2.0/Volo.Abp.Core.dll": {
  2010. "related": ".pdb;.xml"
  2011. }
  2012. }
  2013. },
  2014. "Volo.Abp.Data/6.0.2": {
  2015. "type": "package",
  2016. "dependencies": {
  2017. "Volo.Abp.EventBus.Abstractions": "6.0.2",
  2018. "Volo.Abp.ObjectExtending": "6.0.2",
  2019. "Volo.Abp.Uow": "6.0.2"
  2020. },
  2021. "compile": {
  2022. "lib/netstandard2.0/Volo.Abp.Data.dll": {
  2023. "related": ".pdb;.xml"
  2024. }
  2025. },
  2026. "runtime": {
  2027. "lib/netstandard2.0/Volo.Abp.Data.dll": {
  2028. "related": ".pdb;.xml"
  2029. }
  2030. }
  2031. },
  2032. "Volo.Abp.Ddd.Domain/6.0.2": {
  2033. "type": "package",
  2034. "dependencies": {
  2035. "Volo.Abp.Auditing": "6.0.2",
  2036. "Volo.Abp.Data": "6.0.2",
  2037. "Volo.Abp.EventBus": "6.0.2",
  2038. "Volo.Abp.ExceptionHandling": "6.0.2",
  2039. "Volo.Abp.Guids": "6.0.2",
  2040. "Volo.Abp.MultiTenancy": "6.0.2",
  2041. "Volo.Abp.ObjectMapping": "6.0.2",
  2042. "Volo.Abp.Specifications": "6.0.2",
  2043. "Volo.Abp.Threading": "6.0.2",
  2044. "Volo.Abp.Timing": "6.0.2",
  2045. "Volo.Abp.Uow": "6.0.2"
  2046. },
  2047. "compile": {
  2048. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {
  2049. "related": ".pdb;.xml"
  2050. }
  2051. },
  2052. "runtime": {
  2053. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {
  2054. "related": ".pdb;.xml"
  2055. }
  2056. }
  2057. },
  2058. "Volo.Abp.DistributedLocking.Abstractions/6.0.2": {
  2059. "type": "package",
  2060. "dependencies": {
  2061. "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
  2062. "Volo.Abp.Core": "6.0.2"
  2063. },
  2064. "compile": {
  2065. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll": {
  2066. "related": ".pdb;.xml"
  2067. }
  2068. },
  2069. "runtime": {
  2070. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll": {
  2071. "related": ".pdb;.xml"
  2072. }
  2073. }
  2074. },
  2075. "Volo.Abp.EntityFrameworkCore/6.0.2": {
  2076. "type": "package",
  2077. "dependencies": {
  2078. "Microsoft.EntityFrameworkCore": "6.0.5",
  2079. "Microsoft.EntityFrameworkCore.Relational": "6.0.5",
  2080. "Volo.Abp.Ddd.Domain": "6.0.2",
  2081. "Volo.Abp.Json": "6.0.2"
  2082. },
  2083. "compile": {
  2084. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll": {
  2085. "related": ".pdb;.xml"
  2086. }
  2087. },
  2088. "runtime": {
  2089. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll": {
  2090. "related": ".pdb;.xml"
  2091. }
  2092. }
  2093. },
  2094. "Volo.Abp.EntityFrameworkCore.MySQL/6.0.0": {
  2095. "type": "package",
  2096. "dependencies": {
  2097. "Pomelo.EntityFrameworkCore.MySql": "6.0.0",
  2098. "Volo.Abp.EntityFrameworkCore": "6.0.0"
  2099. },
  2100. "compile": {
  2101. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll": {
  2102. "related": ".pdb;.xml"
  2103. }
  2104. },
  2105. "runtime": {
  2106. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll": {
  2107. "related": ".pdb;.xml"
  2108. }
  2109. }
  2110. },
  2111. "Volo.Abp.EntityFrameworkCore.SqlServer/6.0.2": {
  2112. "type": "package",
  2113. "dependencies": {
  2114. "Microsoft.EntityFrameworkCore.SqlServer": "6.0.5",
  2115. "Volo.Abp.EntityFrameworkCore": "6.0.2"
  2116. },
  2117. "compile": {
  2118. "lib/net6.0/Volo.Abp.EntityFrameworkCore.SqlServer.dll": {
  2119. "related": ".pdb;.xml"
  2120. }
  2121. },
  2122. "runtime": {
  2123. "lib/net6.0/Volo.Abp.EntityFrameworkCore.SqlServer.dll": {
  2124. "related": ".pdb;.xml"
  2125. }
  2126. }
  2127. },
  2128. "Volo.Abp.EventBus/6.0.2": {
  2129. "type": "package",
  2130. "dependencies": {
  2131. "Volo.Abp.BackgroundWorkers": "6.0.2",
  2132. "Volo.Abp.DistributedLocking.Abstractions": "6.0.2",
  2133. "Volo.Abp.EventBus.Abstractions": "6.0.2",
  2134. "Volo.Abp.Guids": "6.0.2",
  2135. "Volo.Abp.Json": "6.0.2",
  2136. "Volo.Abp.MultiTenancy": "6.0.2"
  2137. },
  2138. "compile": {
  2139. "lib/netstandard2.0/Volo.Abp.EventBus.dll": {
  2140. "related": ".pdb;.xml"
  2141. }
  2142. },
  2143. "runtime": {
  2144. "lib/netstandard2.0/Volo.Abp.EventBus.dll": {
  2145. "related": ".pdb;.xml"
  2146. }
  2147. }
  2148. },
  2149. "Volo.Abp.EventBus.Abstractions/6.0.2": {
  2150. "type": "package",
  2151. "dependencies": {
  2152. "Volo.Abp.Core": "6.0.2"
  2153. },
  2154. "compile": {
  2155. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll": {
  2156. "related": ".pdb;.xml"
  2157. }
  2158. },
  2159. "runtime": {
  2160. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll": {
  2161. "related": ".pdb;.xml"
  2162. }
  2163. }
  2164. },
  2165. "Volo.Abp.ExceptionHandling/6.0.2": {
  2166. "type": "package",
  2167. "dependencies": {
  2168. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  2169. "Volo.Abp.Localization": "6.0.2"
  2170. },
  2171. "compile": {
  2172. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": {
  2173. "related": ".pdb;.xml"
  2174. }
  2175. },
  2176. "runtime": {
  2177. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": {
  2178. "related": ".pdb;.xml"
  2179. }
  2180. }
  2181. },
  2182. "Volo.Abp.Guids/6.0.2": {
  2183. "type": "package",
  2184. "dependencies": {
  2185. "Volo.Abp.Core": "6.0.2"
  2186. },
  2187. "compile": {
  2188. "lib/netstandard2.0/Volo.Abp.Guids.dll": {
  2189. "related": ".pdb;.xml"
  2190. }
  2191. },
  2192. "runtime": {
  2193. "lib/netstandard2.0/Volo.Abp.Guids.dll": {
  2194. "related": ".pdb;.xml"
  2195. }
  2196. }
  2197. },
  2198. "Volo.Abp.Json/6.0.2": {
  2199. "type": "package",
  2200. "dependencies": {
  2201. "Newtonsoft.Json": "13.0.1",
  2202. "Volo.Abp.ObjectExtending": "6.0.2",
  2203. "Volo.Abp.Timing": "6.0.2"
  2204. },
  2205. "compile": {
  2206. "lib/netstandard2.0/Volo.Abp.Json.dll": {
  2207. "related": ".pdb;.xml"
  2208. }
  2209. },
  2210. "runtime": {
  2211. "lib/netstandard2.0/Volo.Abp.Json.dll": {
  2212. "related": ".pdb;.xml"
  2213. }
  2214. }
  2215. },
  2216. "Volo.Abp.Localization/6.0.2": {
  2217. "type": "package",
  2218. "dependencies": {
  2219. "Volo.Abp.Localization.Abstractions": "6.0.2",
  2220. "Volo.Abp.Settings": "6.0.2",
  2221. "Volo.Abp.VirtualFileSystem": "6.0.2"
  2222. },
  2223. "compile": {
  2224. "lib/netstandard2.0/Volo.Abp.Localization.dll": {
  2225. "related": ".pdb;.xml"
  2226. }
  2227. },
  2228. "runtime": {
  2229. "lib/netstandard2.0/Volo.Abp.Localization.dll": {
  2230. "related": ".pdb;.xml"
  2231. }
  2232. }
  2233. },
  2234. "Volo.Abp.Localization.Abstractions/6.0.2": {
  2235. "type": "package",
  2236. "dependencies": {
  2237. "Volo.Abp.Core": "6.0.2"
  2238. },
  2239. "compile": {
  2240. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {
  2241. "related": ".pdb;.xml"
  2242. }
  2243. },
  2244. "runtime": {
  2245. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {
  2246. "related": ".pdb;.xml"
  2247. }
  2248. }
  2249. },
  2250. "Volo.Abp.MultiTenancy/6.0.2": {
  2251. "type": "package",
  2252. "dependencies": {
  2253. "Volo.Abp.Data": "6.0.2",
  2254. "Volo.Abp.EventBus.Abstractions": "6.0.2",
  2255. "Volo.Abp.Security": "6.0.2"
  2256. },
  2257. "compile": {
  2258. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {
  2259. "related": ".pdb;.xml"
  2260. }
  2261. },
  2262. "runtime": {
  2263. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {
  2264. "related": ".pdb;.xml"
  2265. }
  2266. }
  2267. },
  2268. "Volo.Abp.ObjectExtending/6.0.2": {
  2269. "type": "package",
  2270. "dependencies": {
  2271. "Volo.Abp.Localization.Abstractions": "6.0.2",
  2272. "Volo.Abp.Validation.Abstractions": "6.0.2"
  2273. },
  2274. "compile": {
  2275. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {
  2276. "related": ".pdb;.xml"
  2277. }
  2278. },
  2279. "runtime": {
  2280. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {
  2281. "related": ".pdb;.xml"
  2282. }
  2283. }
  2284. },
  2285. "Volo.Abp.ObjectMapping/6.0.2": {
  2286. "type": "package",
  2287. "dependencies": {
  2288. "Volo.Abp.Core": "6.0.2"
  2289. },
  2290. "compile": {
  2291. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {
  2292. "related": ".pdb;.xml"
  2293. }
  2294. },
  2295. "runtime": {
  2296. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {
  2297. "related": ".pdb;.xml"
  2298. }
  2299. }
  2300. },
  2301. "Volo.Abp.PermissionManagement.Domain/6.0.0": {
  2302. "type": "package",
  2303. "dependencies": {
  2304. "Volo.Abp.Authorization": "6.0.0",
  2305. "Volo.Abp.Caching": "6.0.0",
  2306. "Volo.Abp.Ddd.Domain": "6.0.0",
  2307. "Volo.Abp.Json": "6.0.0",
  2308. "Volo.Abp.PermissionManagement.Domain.Shared": "6.0.0"
  2309. },
  2310. "compile": {
  2311. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": {
  2312. "related": ".pdb;.xml"
  2313. }
  2314. },
  2315. "runtime": {
  2316. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": {
  2317. "related": ".pdb;.xml"
  2318. }
  2319. }
  2320. },
  2321. "Volo.Abp.PermissionManagement.Domain.Shared/6.0.0": {
  2322. "type": "package",
  2323. "dependencies": {
  2324. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  2325. "Volo.Abp.Validation": "6.0.0"
  2326. },
  2327. "compile": {
  2328. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll": {
  2329. "related": ".pdb;.xml"
  2330. }
  2331. },
  2332. "runtime": {
  2333. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll": {
  2334. "related": ".pdb;.xml"
  2335. }
  2336. }
  2337. },
  2338. "Volo.Abp.PermissionManagement.EntityFrameworkCore/6.0.0": {
  2339. "type": "package",
  2340. "dependencies": {
  2341. "Volo.Abp.EntityFrameworkCore": "6.0.0",
  2342. "Volo.Abp.PermissionManagement.Domain": "6.0.0"
  2343. },
  2344. "compile": {
  2345. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll": {
  2346. "related": ".pdb;.xml"
  2347. }
  2348. },
  2349. "runtime": {
  2350. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll": {
  2351. "related": ".pdb;.xml"
  2352. }
  2353. }
  2354. },
  2355. "Volo.Abp.Security/6.0.2": {
  2356. "type": "package",
  2357. "dependencies": {
  2358. "Volo.Abp.Core": "6.0.2"
  2359. },
  2360. "compile": {
  2361. "lib/netstandard2.0/Volo.Abp.Security.dll": {
  2362. "related": ".pdb;.xml"
  2363. }
  2364. },
  2365. "runtime": {
  2366. "lib/netstandard2.0/Volo.Abp.Security.dll": {
  2367. "related": ".pdb;.xml"
  2368. }
  2369. }
  2370. },
  2371. "Volo.Abp.Serialization/6.0.0": {
  2372. "type": "package",
  2373. "dependencies": {
  2374. "Volo.Abp.Core": "6.0.0"
  2375. },
  2376. "compile": {
  2377. "lib/netstandard2.0/Volo.Abp.Serialization.dll": {
  2378. "related": ".pdb;.xml"
  2379. }
  2380. },
  2381. "runtime": {
  2382. "lib/netstandard2.0/Volo.Abp.Serialization.dll": {
  2383. "related": ".pdb;.xml"
  2384. }
  2385. }
  2386. },
  2387. "Volo.Abp.Settings/6.0.2": {
  2388. "type": "package",
  2389. "dependencies": {
  2390. "Volo.Abp.Localization.Abstractions": "6.0.2",
  2391. "Volo.Abp.MultiTenancy": "6.0.2",
  2392. "Volo.Abp.Security": "6.0.2"
  2393. },
  2394. "compile": {
  2395. "lib/netstandard2.0/Volo.Abp.Settings.dll": {
  2396. "related": ".pdb;.xml"
  2397. }
  2398. },
  2399. "runtime": {
  2400. "lib/netstandard2.0/Volo.Abp.Settings.dll": {
  2401. "related": ".pdb;.xml"
  2402. }
  2403. }
  2404. },
  2405. "Volo.Abp.Specifications/6.0.2": {
  2406. "type": "package",
  2407. "dependencies": {
  2408. "Volo.Abp.Core": "6.0.2"
  2409. },
  2410. "compile": {
  2411. "lib/netstandard2.0/Volo.Abp.Specifications.dll": {
  2412. "related": ".pdb;.xml"
  2413. }
  2414. },
  2415. "runtime": {
  2416. "lib/netstandard2.0/Volo.Abp.Specifications.dll": {
  2417. "related": ".pdb;.xml"
  2418. }
  2419. }
  2420. },
  2421. "Volo.Abp.Threading/6.0.2": {
  2422. "type": "package",
  2423. "dependencies": {
  2424. "Volo.Abp.Core": "6.0.2"
  2425. },
  2426. "compile": {
  2427. "lib/netstandard2.0/Volo.Abp.Threading.dll": {
  2428. "related": ".pdb;.xml"
  2429. }
  2430. },
  2431. "runtime": {
  2432. "lib/netstandard2.0/Volo.Abp.Threading.dll": {
  2433. "related": ".pdb;.xml"
  2434. }
  2435. }
  2436. },
  2437. "Volo.Abp.Timing/6.0.2": {
  2438. "type": "package",
  2439. "dependencies": {
  2440. "TimeZoneConverter": "5.0.0",
  2441. "Volo.Abp.Localization": "6.0.2",
  2442. "Volo.Abp.Settings": "6.0.2"
  2443. },
  2444. "compile": {
  2445. "lib/netstandard2.0/Volo.Abp.Timing.dll": {
  2446. "related": ".pdb;.xml"
  2447. }
  2448. },
  2449. "runtime": {
  2450. "lib/netstandard2.0/Volo.Abp.Timing.dll": {
  2451. "related": ".pdb;.xml"
  2452. }
  2453. }
  2454. },
  2455. "Volo.Abp.Uow/6.0.2": {
  2456. "type": "package",
  2457. "dependencies": {
  2458. "Volo.Abp.Core": "6.0.2"
  2459. },
  2460. "compile": {
  2461. "lib/netstandard2.0/Volo.Abp.Uow.dll": {
  2462. "related": ".pdb;.xml"
  2463. }
  2464. },
  2465. "runtime": {
  2466. "lib/netstandard2.0/Volo.Abp.Uow.dll": {
  2467. "related": ".pdb;.xml"
  2468. }
  2469. }
  2470. },
  2471. "Volo.Abp.Validation/6.0.0": {
  2472. "type": "package",
  2473. "dependencies": {
  2474. "Volo.Abp.Localization": "6.0.0",
  2475. "Volo.Abp.Validation.Abstractions": "6.0.0"
  2476. },
  2477. "compile": {
  2478. "lib/netstandard2.0/Volo.Abp.Validation.dll": {
  2479. "related": ".pdb;.xml"
  2480. }
  2481. },
  2482. "runtime": {
  2483. "lib/netstandard2.0/Volo.Abp.Validation.dll": {
  2484. "related": ".pdb;.xml"
  2485. }
  2486. }
  2487. },
  2488. "Volo.Abp.Validation.Abstractions/6.0.2": {
  2489. "type": "package",
  2490. "dependencies": {
  2491. "Volo.Abp.Core": "6.0.2"
  2492. },
  2493. "compile": {
  2494. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {
  2495. "related": ".pdb;.xml"
  2496. }
  2497. },
  2498. "runtime": {
  2499. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {
  2500. "related": ".pdb;.xml"
  2501. }
  2502. }
  2503. },
  2504. "Volo.Abp.VirtualFileSystem/6.0.2": {
  2505. "type": "package",
  2506. "dependencies": {
  2507. "Microsoft.Extensions.FileProviders.Composite": "6.0.0",
  2508. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  2509. "Microsoft.Extensions.FileProviders.Physical": "6.0.0",
  2510. "Volo.Abp.Core": "6.0.2"
  2511. },
  2512. "compile": {
  2513. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {
  2514. "related": ".pdb;.xml"
  2515. }
  2516. },
  2517. "runtime": {
  2518. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {
  2519. "related": ".pdb;.xml"
  2520. }
  2521. }
  2522. },
  2523. "Procurement.Domain/1.0.0": {
  2524. "type": "project",
  2525. "framework": ".NETCoreApp,Version=v6.0",
  2526. "dependencies": {
  2527. "Volo.Abp.Ddd.Domain": "6.0.0",
  2528. "Volo.Abp.EntityFrameworkCore": "6.0.0",
  2529. "Volo.Abp.Localization": "6.0.0",
  2530. "Volo.Abp.Validation": "6.0.0"
  2531. },
  2532. "compile": {
  2533. "bin/placeholder/Procurement.Domain.dll": {}
  2534. },
  2535. "runtime": {
  2536. "bin/placeholder/Procurement.Domain.dll": {}
  2537. }
  2538. }
  2539. }
  2540. },
  2541. "libraries": {
  2542. "Google.Protobuf/3.21.9": {
  2543. "sha512": "OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==",
  2544. "type": "package",
  2545. "path": "google.protobuf/3.21.9",
  2546. "files": [
  2547. ".nupkg.metadata",
  2548. ".signature.p7s",
  2549. "google.protobuf.3.21.9.nupkg.sha512",
  2550. "google.protobuf.nuspec",
  2551. "lib/net45/Google.Protobuf.dll",
  2552. "lib/net45/Google.Protobuf.pdb",
  2553. "lib/net45/Google.Protobuf.xml",
  2554. "lib/net5.0/Google.Protobuf.dll",
  2555. "lib/net5.0/Google.Protobuf.pdb",
  2556. "lib/net5.0/Google.Protobuf.xml",
  2557. "lib/netstandard1.1/Google.Protobuf.dll",
  2558. "lib/netstandard1.1/Google.Protobuf.pdb",
  2559. "lib/netstandard1.1/Google.Protobuf.xml",
  2560. "lib/netstandard2.0/Google.Protobuf.dll",
  2561. "lib/netstandard2.0/Google.Protobuf.pdb",
  2562. "lib/netstandard2.0/Google.Protobuf.xml"
  2563. ]
  2564. },
  2565. "Humanizer.Core/2.8.26": {
  2566. "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  2567. "type": "package",
  2568. "path": "humanizer.core/2.8.26",
  2569. "files": [
  2570. ".nupkg.metadata",
  2571. ".signature.p7s",
  2572. "humanizer.core.2.8.26.nupkg.sha512",
  2573. "humanizer.core.nuspec",
  2574. "lib/netstandard1.0/Humanizer.dll",
  2575. "lib/netstandard1.0/Humanizer.xml",
  2576. "lib/netstandard2.0/Humanizer.dll",
  2577. "lib/netstandard2.0/Humanizer.xml",
  2578. "logo.png"
  2579. ]
  2580. },
  2581. "JetBrains.Annotations/2022.1.0": {
  2582. "sha512": "ASfpoFJxiRsC9Xc4TWuPM41Zb/gl64xwfMOhnOZ3RnVWGYIZchjpWQV5zshJgoc/ZxVtgjaF7b577lURj7E6ig==",
  2583. "type": "package",
  2584. "path": "jetbrains.annotations/2022.1.0",
  2585. "files": [
  2586. ".nupkg.metadata",
  2587. ".signature.p7s",
  2588. "icon.png",
  2589. "jetbrains.annotations.2022.1.0.nupkg.sha512",
  2590. "jetbrains.annotations.nuspec",
  2591. "lib/net20/JetBrains.Annotations.dll",
  2592. "lib/net20/JetBrains.Annotations.xml",
  2593. "lib/netstandard1.0/JetBrains.Annotations.deps.json",
  2594. "lib/netstandard1.0/JetBrains.Annotations.dll",
  2595. "lib/netstandard1.0/JetBrains.Annotations.xml",
  2596. "lib/netstandard2.0/JetBrains.Annotations.deps.json",
  2597. "lib/netstandard2.0/JetBrains.Annotations.dll",
  2598. "lib/netstandard2.0/JetBrains.Annotations.xml",
  2599. "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
  2600. "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml"
  2601. ]
  2602. },
  2603. "K4os.Compression.LZ4/1.2.6": {
  2604. "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==",
  2605. "type": "package",
  2606. "path": "k4os.compression.lz4/1.2.6",
  2607. "files": [
  2608. ".nupkg.metadata",
  2609. ".signature.p7s",
  2610. "k4os.compression.lz4.1.2.6.nupkg.sha512",
  2611. "k4os.compression.lz4.nuspec",
  2612. "lib/net45/K4os.Compression.LZ4.dll",
  2613. "lib/net45/K4os.Compression.LZ4.xml",
  2614. "lib/net46/K4os.Compression.LZ4.dll",
  2615. "lib/net46/K4os.Compression.LZ4.xml",
  2616. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  2617. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  2618. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  2619. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  2620. ]
  2621. },
  2622. "K4os.Compression.LZ4.Streams/1.2.6": {
  2623. "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==",
  2624. "type": "package",
  2625. "path": "k4os.compression.lz4.streams/1.2.6",
  2626. "files": [
  2627. ".nupkg.metadata",
  2628. ".signature.p7s",
  2629. "k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
  2630. "k4os.compression.lz4.streams.nuspec",
  2631. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  2632. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  2633. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  2634. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  2635. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  2636. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  2637. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  2638. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
  2639. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
  2640. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
  2641. ]
  2642. },
  2643. "K4os.Hash.xxHash/1.0.6": {
  2644. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  2645. "type": "package",
  2646. "path": "k4os.hash.xxhash/1.0.6",
  2647. "files": [
  2648. ".nupkg.metadata",
  2649. ".signature.p7s",
  2650. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  2651. "k4os.hash.xxhash.nuspec",
  2652. "lib/net45/K4os.Hash.xxHash.dll",
  2653. "lib/net45/K4os.Hash.xxHash.xml",
  2654. "lib/net46/K4os.Hash.xxHash.dll",
  2655. "lib/net46/K4os.Hash.xxHash.xml",
  2656. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  2657. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  2658. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  2659. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  2660. ]
  2661. },
  2662. "Microsoft.AspNetCore.Authorization/6.0.5": {
  2663. "sha512": "T3J4Z4xK/mmJlMv/j7Cs1PZjRLh1fGsvHay3RNBNooP0qhHCk3UnU+WgBvcGApZFnEfeyOEGZBHZv5gb1RrDLA==",
  2664. "type": "package",
  2665. "path": "microsoft.aspnetcore.authorization/6.0.5",
  2666. "files": [
  2667. ".nupkg.metadata",
  2668. ".signature.p7s",
  2669. "Icon.png",
  2670. "THIRD-PARTY-NOTICES.TXT",
  2671. "lib/net461/Microsoft.AspNetCore.Authorization.dll",
  2672. "lib/net461/Microsoft.AspNetCore.Authorization.xml",
  2673. "lib/net6.0/Microsoft.AspNetCore.Authorization.dll",
  2674. "lib/net6.0/Microsoft.AspNetCore.Authorization.xml",
  2675. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
  2676. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
  2677. "microsoft.aspnetcore.authorization.6.0.5.nupkg.sha512",
  2678. "microsoft.aspnetcore.authorization.nuspec"
  2679. ]
  2680. },
  2681. "Microsoft.AspNetCore.Metadata/6.0.5": {
  2682. "sha512": "4VRJoJa/EbncxQTAzM6abqQUUbNrohg5MC1glZ1R1lzzXJM2CdXiRKvcpAfn3luAwPzkwJtHejuLgI6Osn0aDA==",
  2683. "type": "package",
  2684. "path": "microsoft.aspnetcore.metadata/6.0.5",
  2685. "files": [
  2686. ".nupkg.metadata",
  2687. ".signature.p7s",
  2688. "Icon.png",
  2689. "THIRD-PARTY-NOTICES.TXT",
  2690. "lib/net461/Microsoft.AspNetCore.Metadata.dll",
  2691. "lib/net461/Microsoft.AspNetCore.Metadata.xml",
  2692. "lib/net6.0/Microsoft.AspNetCore.Metadata.dll",
  2693. "lib/net6.0/Microsoft.AspNetCore.Metadata.xml",
  2694. "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll",
  2695. "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml",
  2696. "microsoft.aspnetcore.metadata.6.0.5.nupkg.sha512",
  2697. "microsoft.aspnetcore.metadata.nuspec"
  2698. ]
  2699. },
  2700. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  2701. "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
  2702. "type": "package",
  2703. "path": "microsoft.bcl.asyncinterfaces/6.0.0",
  2704. "files": [
  2705. ".nupkg.metadata",
  2706. ".signature.p7s",
  2707. "Icon.png",
  2708. "LICENSE.TXT",
  2709. "THIRD-PARTY-NOTICES.TXT",
  2710. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2711. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  2712. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2713. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  2714. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2715. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  2716. "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
  2717. "microsoft.bcl.asyncinterfaces.nuspec",
  2718. "useSharedDesignerContext.txt"
  2719. ]
  2720. },
  2721. "Microsoft.CSharp/4.5.0": {
  2722. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  2723. "type": "package",
  2724. "path": "microsoft.csharp/4.5.0",
  2725. "files": [
  2726. ".nupkg.metadata",
  2727. ".signature.p7s",
  2728. "LICENSE.TXT",
  2729. "THIRD-PARTY-NOTICES.TXT",
  2730. "lib/MonoAndroid10/_._",
  2731. "lib/MonoTouch10/_._",
  2732. "lib/net45/_._",
  2733. "lib/netcore50/Microsoft.CSharp.dll",
  2734. "lib/netcoreapp2.0/_._",
  2735. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2736. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2737. "lib/portable-net45+win8+wp8+wpa81/_._",
  2738. "lib/uap10.0.16299/_._",
  2739. "lib/win8/_._",
  2740. "lib/wp80/_._",
  2741. "lib/wpa81/_._",
  2742. "lib/xamarinios10/_._",
  2743. "lib/xamarinmac20/_._",
  2744. "lib/xamarintvos10/_._",
  2745. "lib/xamarinwatchos10/_._",
  2746. "microsoft.csharp.4.5.0.nupkg.sha512",
  2747. "microsoft.csharp.nuspec",
  2748. "ref/MonoAndroid10/_._",
  2749. "ref/MonoTouch10/_._",
  2750. "ref/net45/_._",
  2751. "ref/netcore50/Microsoft.CSharp.dll",
  2752. "ref/netcore50/Microsoft.CSharp.xml",
  2753. "ref/netcore50/de/Microsoft.CSharp.xml",
  2754. "ref/netcore50/es/Microsoft.CSharp.xml",
  2755. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2756. "ref/netcore50/it/Microsoft.CSharp.xml",
  2757. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2758. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2759. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2760. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2761. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2762. "ref/netcoreapp2.0/_._",
  2763. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2764. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2765. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2766. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2767. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2768. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2769. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2770. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2771. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2772. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2773. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2774. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2775. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2776. "ref/portable-net45+win8+wp8+wpa81/_._",
  2777. "ref/uap10.0.16299/_._",
  2778. "ref/win8/_._",
  2779. "ref/wp80/_._",
  2780. "ref/wpa81/_._",
  2781. "ref/xamarinios10/_._",
  2782. "ref/xamarinmac20/_._",
  2783. "ref/xamarintvos10/_._",
  2784. "ref/xamarinwatchos10/_._",
  2785. "useSharedDesignerContext.txt",
  2786. "version.txt"
  2787. ]
  2788. },
  2789. "Microsoft.Data.SqlClient/2.1.4": {
  2790. "sha512": "cDcKBTKILdRuAzJjbgXwGcUQXzMue+SG02kD4tZTXXfoz4ALrGLpCnA5k9khw3fnAMlMnRzLIGuvRdJurqmESA==",
  2791. "type": "package",
  2792. "path": "microsoft.data.sqlclient/2.1.4",
  2793. "files": [
  2794. ".nupkg.metadata",
  2795. ".signature.p7s",
  2796. "dotnet.png",
  2797. "lib/net46/Microsoft.Data.SqlClient.dll",
  2798. "lib/net46/Microsoft.Data.SqlClient.pdb",
  2799. "lib/net46/Microsoft.Data.SqlClient.xml",
  2800. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  2801. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  2802. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  2803. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  2804. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  2805. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  2806. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  2807. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  2808. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  2809. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  2810. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2811. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2812. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  2813. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2814. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2815. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  2816. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2817. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2818. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2819. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2820. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2821. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2822. "microsoft.data.sqlclient.2.1.4.nupkg.sha512",
  2823. "microsoft.data.sqlclient.nuspec",
  2824. "ref/net46/Microsoft.Data.SqlClient.dll",
  2825. "ref/net46/Microsoft.Data.SqlClient.pdb",
  2826. "ref/net46/Microsoft.Data.SqlClient.xml",
  2827. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2828. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2829. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  2830. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2831. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2832. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  2833. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2834. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2835. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  2836. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2837. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2838. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  2839. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2840. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2841. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2842. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2843. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2844. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2845. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2846. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  2847. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  2848. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  2849. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2850. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2851. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  2852. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  2853. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  2854. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  2855. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  2856. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  2857. ]
  2858. },
  2859. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  2860. "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  2861. "type": "package",
  2862. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  2863. "files": [
  2864. ".nupkg.metadata",
  2865. ".signature.p7s",
  2866. "LICENSE.txt",
  2867. "dotnet.png",
  2868. "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
  2869. "microsoft.data.sqlclient.sni.runtime.nuspec",
  2870. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  2871. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  2872. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  2873. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  2874. ]
  2875. },
  2876. "Microsoft.EntityFrameworkCore/6.0.5": {
  2877. "sha512": "hP5J3EvpVdZmCn1D3ovedphvZrIn3OXZaBZfEnCkSCqqbqAu6xzwbNqwRkik0y4R6zOOf4eLh1riwjy4eAUlZA==",
  2878. "type": "package",
  2879. "path": "microsoft.entityframeworkcore/6.0.5",
  2880. "files": [
  2881. ".nupkg.metadata",
  2882. ".signature.p7s",
  2883. "Icon.png",
  2884. "lib/net6.0/Microsoft.EntityFrameworkCore.dll",
  2885. "lib/net6.0/Microsoft.EntityFrameworkCore.xml",
  2886. "microsoft.entityframeworkcore.6.0.5.nupkg.sha512",
  2887. "microsoft.entityframeworkcore.nuspec"
  2888. ]
  2889. },
  2890. "Microsoft.EntityFrameworkCore.Abstractions/6.0.5": {
  2891. "sha512": "Q3/fKW6XCTfnDk4fYP2BJZi84cD2SuCPkP3A3QqxvCQcXbX90bfSLzVIsoMXzigHGJgZUJ+Un7QodT5Nvk0+Eg==",
  2892. "type": "package",
  2893. "path": "microsoft.entityframeworkcore.abstractions/6.0.5",
  2894. "files": [
  2895. ".nupkg.metadata",
  2896. ".signature.p7s",
  2897. "Icon.png",
  2898. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  2899. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  2900. "microsoft.entityframeworkcore.abstractions.6.0.5.nupkg.sha512",
  2901. "microsoft.entityframeworkcore.abstractions.nuspec"
  2902. ]
  2903. },
  2904. "Microsoft.EntityFrameworkCore.Analyzers/6.0.5": {
  2905. "sha512": "QUeDIhs+O+MoDEc3k60mNyVDbwyDURCqZQlZoKShuZUcSfXSrDMbHKuFSxBIDNQBt092qSjfnwf7w0Ua/IB3Zw==",
  2906. "type": "package",
  2907. "path": "microsoft.entityframeworkcore.analyzers/6.0.5",
  2908. "files": [
  2909. ".nupkg.metadata",
  2910. ".signature.p7s",
  2911. "Icon.png",
  2912. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  2913. "lib/netstandard2.0/_._",
  2914. "microsoft.entityframeworkcore.analyzers.6.0.5.nupkg.sha512",
  2915. "microsoft.entityframeworkcore.analyzers.nuspec"
  2916. ]
  2917. },
  2918. "Microsoft.EntityFrameworkCore.Design/6.0.3": {
  2919. "sha512": "Gc3XhQ4vLK4rlGpZi8zaa4bl0t894QxqMXHSbDSsx8d7ghRaLbGIH1tQawpo2hriU/q918eepbCyoISD89Xx1w==",
  2920. "type": "package",
  2921. "path": "microsoft.entityframeworkcore.design/6.0.3",
  2922. "files": [
  2923. ".nupkg.metadata",
  2924. ".signature.p7s",
  2925. "Icon.png",
  2926. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props",
  2927. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll",
  2928. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.xml",
  2929. "microsoft.entityframeworkcore.design.6.0.3.nupkg.sha512",
  2930. "microsoft.entityframeworkcore.design.nuspec"
  2931. ]
  2932. },
  2933. "Microsoft.EntityFrameworkCore.Relational/6.0.5": {
  2934. "sha512": "vhAQizlAgvPfurkh9XysNaFc/g3WPXtSka3Y1rXuQdnT//p16CDKt9lO9h+rYmooD+cA7TijSxwqck4GApDT/Q==",
  2935. "type": "package",
  2936. "path": "microsoft.entityframeworkcore.relational/6.0.5",
  2937. "files": [
  2938. ".nupkg.metadata",
  2939. ".signature.p7s",
  2940. "Icon.png",
  2941. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll",
  2942. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml",
  2943. "microsoft.entityframeworkcore.relational.6.0.5.nupkg.sha512",
  2944. "microsoft.entityframeworkcore.relational.nuspec"
  2945. ]
  2946. },
  2947. "Microsoft.EntityFrameworkCore.SqlServer/6.0.5": {
  2948. "sha512": "fBBG1AvrqPSvTEWyg9W18F/obiV7Soi/RItwBt48kjte1heRaogCsKj8KBnJQACM/8L+NAhyKp3BH12nN7+yDA==",
  2949. "type": "package",
  2950. "path": "microsoft.entityframeworkcore.sqlserver/6.0.5",
  2951. "files": [
  2952. ".nupkg.metadata",
  2953. ".signature.p7s",
  2954. "Icon.png",
  2955. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
  2956. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
  2957. "microsoft.entityframeworkcore.sqlserver.6.0.5.nupkg.sha512",
  2958. "microsoft.entityframeworkcore.sqlserver.nuspec"
  2959. ]
  2960. },
  2961. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  2962. "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
  2963. "type": "package",
  2964. "path": "microsoft.extensions.caching.abstractions/6.0.0",
  2965. "files": [
  2966. ".nupkg.metadata",
  2967. ".signature.p7s",
  2968. "Icon.png",
  2969. "LICENSE.TXT",
  2970. "THIRD-PARTY-NOTICES.TXT",
  2971. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  2972. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  2973. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  2974. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  2975. "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512",
  2976. "microsoft.extensions.caching.abstractions.nuspec",
  2977. "useSharedDesignerContext.txt"
  2978. ]
  2979. },
  2980. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  2981. "sha512": "B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==",
  2982. "type": "package",
  2983. "path": "microsoft.extensions.caching.memory/6.0.1",
  2984. "files": [
  2985. ".nupkg.metadata",
  2986. ".signature.p7s",
  2987. "Icon.png",
  2988. "LICENSE.TXT",
  2989. "THIRD-PARTY-NOTICES.TXT",
  2990. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  2991. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  2992. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2993. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2994. "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512",
  2995. "microsoft.extensions.caching.memory.nuspec",
  2996. "useSharedDesignerContext.txt"
  2997. ]
  2998. },
  2999. "Microsoft.Extensions.Configuration/6.0.0": {
  3000. "sha512": "tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==",
  3001. "type": "package",
  3002. "path": "microsoft.extensions.configuration/6.0.0",
  3003. "files": [
  3004. ".nupkg.metadata",
  3005. ".signature.p7s",
  3006. "Icon.png",
  3007. "LICENSE.TXT",
  3008. "THIRD-PARTY-NOTICES.TXT",
  3009. "lib/net461/Microsoft.Extensions.Configuration.dll",
  3010. "lib/net461/Microsoft.Extensions.Configuration.xml",
  3011. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3012. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3013. "microsoft.extensions.configuration.6.0.0.nupkg.sha512",
  3014. "microsoft.extensions.configuration.nuspec",
  3015. "useSharedDesignerContext.txt"
  3016. ]
  3017. },
  3018. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  3019. "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  3020. "type": "package",
  3021. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  3022. "files": [
  3023. ".nupkg.metadata",
  3024. ".signature.p7s",
  3025. "Icon.png",
  3026. "LICENSE.TXT",
  3027. "THIRD-PARTY-NOTICES.TXT",
  3028. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  3029. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  3030. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3031. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3032. "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
  3033. "microsoft.extensions.configuration.abstractions.nuspec",
  3034. "useSharedDesignerContext.txt"
  3035. ]
  3036. },
  3037. "Microsoft.Extensions.Configuration.Binder/6.0.0": {
  3038. "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==",
  3039. "type": "package",
  3040. "path": "microsoft.extensions.configuration.binder/6.0.0",
  3041. "files": [
  3042. ".nupkg.metadata",
  3043. ".signature.p7s",
  3044. "Icon.png",
  3045. "LICENSE.TXT",
  3046. "THIRD-PARTY-NOTICES.TXT",
  3047. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  3048. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  3049. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3050. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3051. "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512",
  3052. "microsoft.extensions.configuration.binder.nuspec",
  3053. "useSharedDesignerContext.txt"
  3054. ]
  3055. },
  3056. "Microsoft.Extensions.Configuration.CommandLine/6.0.0": {
  3057. "sha512": "3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==",
  3058. "type": "package",
  3059. "path": "microsoft.extensions.configuration.commandline/6.0.0",
  3060. "files": [
  3061. ".nupkg.metadata",
  3062. ".signature.p7s",
  3063. "Icon.png",
  3064. "LICENSE.TXT",
  3065. "THIRD-PARTY-NOTICES.TXT",
  3066. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
  3067. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
  3068. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  3069. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  3070. "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512",
  3071. "microsoft.extensions.configuration.commandline.nuspec",
  3072. "useSharedDesignerContext.txt"
  3073. ]
  3074. },
  3075. "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.1": {
  3076. "sha512": "pnyXV1LFOsYjGveuC07xp0YHIyGq7jRq5Ncb5zrrIieMLWVwgMyYxcOH0jTnBedDT4Gh1QinSqsjqzcieHk1og==",
  3077. "type": "package",
  3078. "path": "microsoft.extensions.configuration.environmentvariables/6.0.1",
  3079. "files": [
  3080. ".nupkg.metadata",
  3081. ".signature.p7s",
  3082. "Icon.png",
  3083. "LICENSE.TXT",
  3084. "THIRD-PARTY-NOTICES.TXT",
  3085. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3086. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3087. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  3088. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  3089. "microsoft.extensions.configuration.environmentvariables.6.0.1.nupkg.sha512",
  3090. "microsoft.extensions.configuration.environmentvariables.nuspec",
  3091. "useSharedDesignerContext.txt"
  3092. ]
  3093. },
  3094. "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
  3095. "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==",
  3096. "type": "package",
  3097. "path": "microsoft.extensions.configuration.fileextensions/6.0.0",
  3098. "files": [
  3099. ".nupkg.metadata",
  3100. ".signature.p7s",
  3101. "Icon.png",
  3102. "LICENSE.TXT",
  3103. "THIRD-PARTY-NOTICES.TXT",
  3104. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3105. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3106. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3107. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3108. "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512",
  3109. "microsoft.extensions.configuration.fileextensions.nuspec",
  3110. "useSharedDesignerContext.txt"
  3111. ]
  3112. },
  3113. "Microsoft.Extensions.Configuration.Json/6.0.0": {
  3114. "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==",
  3115. "type": "package",
  3116. "path": "microsoft.extensions.configuration.json/6.0.0",
  3117. "files": [
  3118. ".nupkg.metadata",
  3119. ".signature.p7s",
  3120. "Icon.png",
  3121. "LICENSE.TXT",
  3122. "THIRD-PARTY-NOTICES.TXT",
  3123. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  3124. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  3125. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3126. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3127. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  3128. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  3129. "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512",
  3130. "microsoft.extensions.configuration.json.nuspec",
  3131. "useSharedDesignerContext.txt"
  3132. ]
  3133. },
  3134. "Microsoft.Extensions.Configuration.UserSecrets/6.0.1": {
  3135. "sha512": "Fy8yr4V6obi7ZxvKYI1i85jqtwMq8tqyxQVZpRSkgeA8enqy/KvBIMdcuNdznlxQMZa72mvbHqb7vbg4Pyx95w==",
  3136. "type": "package",
  3137. "path": "microsoft.extensions.configuration.usersecrets/6.0.1",
  3138. "files": [
  3139. ".nupkg.metadata",
  3140. ".signature.p7s",
  3141. "Icon.png",
  3142. "LICENSE.TXT",
  3143. "THIRD-PARTY-NOTICES.TXT",
  3144. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  3145. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  3146. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3147. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3148. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  3149. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  3150. "microsoft.extensions.configuration.usersecrets.6.0.1.nupkg.sha512",
  3151. "microsoft.extensions.configuration.usersecrets.nuspec",
  3152. "useSharedDesignerContext.txt"
  3153. ]
  3154. },
  3155. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  3156. "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
  3157. "type": "package",
  3158. "path": "microsoft.extensions.dependencyinjection/6.0.0",
  3159. "files": [
  3160. ".nupkg.metadata",
  3161. ".signature.p7s",
  3162. "Icon.png",
  3163. "LICENSE.TXT",
  3164. "THIRD-PARTY-NOTICES.TXT",
  3165. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  3166. "buildTransitive/netcoreapp3.1/_._",
  3167. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3168. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3169. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  3170. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  3171. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3172. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3173. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3174. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3175. "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
  3176. "microsoft.extensions.dependencyinjection.nuspec",
  3177. "useSharedDesignerContext.txt"
  3178. ]
  3179. },
  3180. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  3181. "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  3182. "type": "package",
  3183. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  3184. "files": [
  3185. ".nupkg.metadata",
  3186. ".signature.p7s",
  3187. "Icon.png",
  3188. "LICENSE.TXT",
  3189. "THIRD-PARTY-NOTICES.TXT",
  3190. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  3191. "buildTransitive/netcoreapp3.1/_._",
  3192. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3193. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3194. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3195. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3196. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3197. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3198. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3199. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3200. "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
  3201. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  3202. "useSharedDesignerContext.txt"
  3203. ]
  3204. },
  3205. "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
  3206. "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==",
  3207. "type": "package",
  3208. "path": "microsoft.extensions.fileproviders.abstractions/6.0.0",
  3209. "files": [
  3210. ".nupkg.metadata",
  3211. ".signature.p7s",
  3212. "Icon.png",
  3213. "LICENSE.TXT",
  3214. "THIRD-PARTY-NOTICES.TXT",
  3215. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
  3216. "buildTransitive/netcoreapp3.1/_._",
  3217. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3218. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3219. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3220. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3221. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3222. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3223. "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512",
  3224. "microsoft.extensions.fileproviders.abstractions.nuspec",
  3225. "useSharedDesignerContext.txt"
  3226. ]
  3227. },
  3228. "Microsoft.Extensions.FileProviders.Composite/6.0.0": {
  3229. "sha512": "Cx8K9xnN95wbvKa/KTyDBVBaNUsS9L8IkKt2dKMkcyj0wOBe+xVMwyNR4ySmpxBK3b0PuP7tW6UtroXIlRC3uQ==",
  3230. "type": "package",
  3231. "path": "microsoft.extensions.fileproviders.composite/6.0.0",
  3232. "files": [
  3233. ".nupkg.metadata",
  3234. ".signature.p7s",
  3235. "Icon.png",
  3236. "LICENSE.TXT",
  3237. "THIRD-PARTY-NOTICES.TXT",
  3238. "lib/net461/Microsoft.Extensions.FileProviders.Composite.dll",
  3239. "lib/net461/Microsoft.Extensions.FileProviders.Composite.xml",
  3240. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
  3241. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
  3242. "microsoft.extensions.fileproviders.composite.6.0.0.nupkg.sha512",
  3243. "microsoft.extensions.fileproviders.composite.nuspec",
  3244. "useSharedDesignerContext.txt"
  3245. ]
  3246. },
  3247. "Microsoft.Extensions.FileProviders.Embedded/6.0.5": {
  3248. "sha512": "z7M3GpcYfKw1FYUGcurTbv/v0ZZ95LSMOZOjOtYLUztzUIUZZ61H5NFjLXjeQ8G72zxrVrt+jubb4MZGvm0EQw==",
  3249. "type": "package",
  3250. "path": "microsoft.extensions.fileproviders.embedded/6.0.5",
  3251. "files": [
  3252. ".nupkg.metadata",
  3253. ".signature.p7s",
  3254. "Icon.png",
  3255. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props",
  3256. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets",
  3257. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props",
  3258. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets",
  3259. "lib/net461/Microsoft.Extensions.FileProviders.Embedded.dll",
  3260. "lib/net461/Microsoft.Extensions.FileProviders.Embedded.xml",
  3261. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  3262. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  3263. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  3264. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  3265. "microsoft.extensions.fileproviders.embedded.6.0.5.nupkg.sha512",
  3266. "microsoft.extensions.fileproviders.embedded.nuspec",
  3267. "tasks/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll"
  3268. ]
  3269. },
  3270. "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
  3271. "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==",
  3272. "type": "package",
  3273. "path": "microsoft.extensions.fileproviders.physical/6.0.0",
  3274. "files": [
  3275. ".nupkg.metadata",
  3276. ".signature.p7s",
  3277. "Icon.png",
  3278. "LICENSE.TXT",
  3279. "THIRD-PARTY-NOTICES.TXT",
  3280. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
  3281. "buildTransitive/netcoreapp3.1/_._",
  3282. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  3283. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  3284. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3285. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3286. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3287. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3288. "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512",
  3289. "microsoft.extensions.fileproviders.physical.nuspec",
  3290. "useSharedDesignerContext.txt"
  3291. ]
  3292. },
  3293. "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
  3294. "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==",
  3295. "type": "package",
  3296. "path": "microsoft.extensions.filesystemglobbing/6.0.0",
  3297. "files": [
  3298. ".nupkg.metadata",
  3299. ".signature.p7s",
  3300. "Icon.png",
  3301. "LICENSE.TXT",
  3302. "THIRD-PARTY-NOTICES.TXT",
  3303. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
  3304. "buildTransitive/netcoreapp3.1/_._",
  3305. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  3306. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  3307. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3308. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3309. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3310. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3311. "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512",
  3312. "microsoft.extensions.filesystemglobbing.nuspec",
  3313. "useSharedDesignerContext.txt"
  3314. ]
  3315. },
  3316. "Microsoft.Extensions.Hosting.Abstractions/6.0.0": {
  3317. "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==",
  3318. "type": "package",
  3319. "path": "microsoft.extensions.hosting.abstractions/6.0.0",
  3320. "files": [
  3321. ".nupkg.metadata",
  3322. ".signature.p7s",
  3323. "Icon.png",
  3324. "LICENSE.TXT",
  3325. "THIRD-PARTY-NOTICES.TXT",
  3326. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
  3327. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
  3328. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3329. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3330. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  3331. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  3332. "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512",
  3333. "microsoft.extensions.hosting.abstractions.nuspec",
  3334. "useSharedDesignerContext.txt"
  3335. ]
  3336. },
  3337. "Microsoft.Extensions.Localization/6.0.5": {
  3338. "sha512": "mbNGvpCgCYD6o+2IFNT3EZ+AQE8W0yI9GXmXDYWtCXclhvjKn3RJ37QrMRXqzNqOBkWzdiJ/HINVuccrJEenNA==",
  3339. "type": "package",
  3340. "path": "microsoft.extensions.localization/6.0.5",
  3341. "files": [
  3342. ".nupkg.metadata",
  3343. ".signature.p7s",
  3344. "Icon.png",
  3345. "THIRD-PARTY-NOTICES.TXT",
  3346. "lib/net461/Microsoft.Extensions.Localization.dll",
  3347. "lib/net461/Microsoft.Extensions.Localization.xml",
  3348. "lib/net6.0/Microsoft.Extensions.Localization.dll",
  3349. "lib/net6.0/Microsoft.Extensions.Localization.xml",
  3350. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
  3351. "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
  3352. "microsoft.extensions.localization.6.0.5.nupkg.sha512",
  3353. "microsoft.extensions.localization.nuspec"
  3354. ]
  3355. },
  3356. "Microsoft.Extensions.Localization.Abstractions/6.0.5": {
  3357. "sha512": "PzYBMoQk4i1dOC2szAy90hPLBIe6YWdiaGxqoRdWesiJbZwiGCd2syC7kkePp2/ef3f8o202YRMt0tzbLP50rw==",
  3358. "type": "package",
  3359. "path": "microsoft.extensions.localization.abstractions/6.0.5",
  3360. "files": [
  3361. ".nupkg.metadata",
  3362. ".signature.p7s",
  3363. "Icon.png",
  3364. "THIRD-PARTY-NOTICES.TXT",
  3365. "lib/net461/Microsoft.Extensions.Localization.Abstractions.dll",
  3366. "lib/net461/Microsoft.Extensions.Localization.Abstractions.xml",
  3367. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll",
  3368. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.xml",
  3369. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
  3370. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
  3371. "microsoft.extensions.localization.abstractions.6.0.5.nupkg.sha512",
  3372. "microsoft.extensions.localization.abstractions.nuspec"
  3373. ]
  3374. },
  3375. "Microsoft.Extensions.Logging/6.0.0": {
  3376. "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
  3377. "type": "package",
  3378. "path": "microsoft.extensions.logging/6.0.0",
  3379. "files": [
  3380. ".nupkg.metadata",
  3381. ".signature.p7s",
  3382. "Icon.png",
  3383. "LICENSE.TXT",
  3384. "THIRD-PARTY-NOTICES.TXT",
  3385. "lib/net461/Microsoft.Extensions.Logging.dll",
  3386. "lib/net461/Microsoft.Extensions.Logging.xml",
  3387. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3388. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3389. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  3390. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  3391. "microsoft.extensions.logging.6.0.0.nupkg.sha512",
  3392. "microsoft.extensions.logging.nuspec",
  3393. "useSharedDesignerContext.txt"
  3394. ]
  3395. },
  3396. "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
  3397. "sha512": "dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==",
  3398. "type": "package",
  3399. "path": "microsoft.extensions.logging.abstractions/6.0.1",
  3400. "files": [
  3401. ".nupkg.metadata",
  3402. ".signature.p7s",
  3403. "Icon.png",
  3404. "LICENSE.TXT",
  3405. "THIRD-PARTY-NOTICES.TXT",
  3406. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  3407. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3408. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3409. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3410. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3411. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3412. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3413. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3414. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3415. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3416. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3417. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3418. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3419. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3420. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  3421. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  3422. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  3423. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  3424. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3425. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  3426. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  3427. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  3428. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  3429. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  3430. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  3431. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  3432. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  3433. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  3434. "build/Microsoft.Extensions.Logging.Abstractions.targets",
  3435. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  3436. "buildTransitive/netcoreapp3.1/_._",
  3437. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  3438. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  3439. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3440. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3441. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3442. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3443. "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512",
  3444. "microsoft.extensions.logging.abstractions.nuspec",
  3445. "useSharedDesignerContext.txt"
  3446. ]
  3447. },
  3448. "Microsoft.Extensions.Options/6.0.0": {
  3449. "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  3450. "type": "package",
  3451. "path": "microsoft.extensions.options/6.0.0",
  3452. "files": [
  3453. ".nupkg.metadata",
  3454. ".signature.p7s",
  3455. "Icon.png",
  3456. "LICENSE.TXT",
  3457. "THIRD-PARTY-NOTICES.TXT",
  3458. "lib/net461/Microsoft.Extensions.Options.dll",
  3459. "lib/net461/Microsoft.Extensions.Options.xml",
  3460. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3461. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3462. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  3463. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  3464. "microsoft.extensions.options.6.0.0.nupkg.sha512",
  3465. "microsoft.extensions.options.nuspec",
  3466. "useSharedDesignerContext.txt"
  3467. ]
  3468. },
  3469. "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
  3470. "sha512": "bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==",
  3471. "type": "package",
  3472. "path": "microsoft.extensions.options.configurationextensions/6.0.0",
  3473. "files": [
  3474. ".nupkg.metadata",
  3475. ".signature.p7s",
  3476. "Icon.png",
  3477. "LICENSE.TXT",
  3478. "THIRD-PARTY-NOTICES.TXT",
  3479. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3480. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3481. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  3482. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  3483. "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512",
  3484. "microsoft.extensions.options.configurationextensions.nuspec",
  3485. "useSharedDesignerContext.txt"
  3486. ]
  3487. },
  3488. "Microsoft.Extensions.Primitives/6.0.0": {
  3489. "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  3490. "type": "package",
  3491. "path": "microsoft.extensions.primitives/6.0.0",
  3492. "files": [
  3493. ".nupkg.metadata",
  3494. ".signature.p7s",
  3495. "Icon.png",
  3496. "LICENSE.TXT",
  3497. "THIRD-PARTY-NOTICES.TXT",
  3498. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  3499. "buildTransitive/netcoreapp3.1/_._",
  3500. "lib/net461/Microsoft.Extensions.Primitives.dll",
  3501. "lib/net461/Microsoft.Extensions.Primitives.xml",
  3502. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  3503. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  3504. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  3505. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  3506. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3507. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3508. "microsoft.extensions.primitives.6.0.0.nupkg.sha512",
  3509. "microsoft.extensions.primitives.nuspec",
  3510. "useSharedDesignerContext.txt"
  3511. ]
  3512. },
  3513. "Microsoft.Identity.Client/4.21.1": {
  3514. "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  3515. "type": "package",
  3516. "path": "microsoft.identity.client/4.21.1",
  3517. "files": [
  3518. ".nupkg.metadata",
  3519. ".signature.p7s",
  3520. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  3521. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  3522. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  3523. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  3524. "lib/net45/Microsoft.Identity.Client.dll",
  3525. "lib/net45/Microsoft.Identity.Client.xml",
  3526. "lib/net461/Microsoft.Identity.Client.dll",
  3527. "lib/net461/Microsoft.Identity.Client.xml",
  3528. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3529. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3530. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  3531. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  3532. "lib/uap10.0/Microsoft.Identity.Client.dll",
  3533. "lib/uap10.0/Microsoft.Identity.Client.pri",
  3534. "lib/uap10.0/Microsoft.Identity.Client.xml",
  3535. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  3536. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  3537. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  3538. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  3539. "microsoft.identity.client.4.21.1.nupkg.sha512",
  3540. "microsoft.identity.client.nuspec",
  3541. "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll",
  3542. "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml",
  3543. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  3544. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  3545. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  3546. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  3547. "ref/net45/Microsoft.Identity.Client.dll",
  3548. "ref/net45/Microsoft.Identity.Client.xml",
  3549. "ref/net461/Microsoft.Identity.Client.dll",
  3550. "ref/net461/Microsoft.Identity.Client.xml",
  3551. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3552. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3553. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  3554. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  3555. "ref/uap10.0/Microsoft.Identity.Client.dll",
  3556. "ref/uap10.0/Microsoft.Identity.Client.xml",
  3557. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  3558. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  3559. ]
  3560. },
  3561. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  3562. "sha512": "+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==",
  3563. "type": "package",
  3564. "path": "microsoft.identitymodel.jsonwebtokens/6.8.0",
  3565. "files": [
  3566. ".nupkg.metadata",
  3567. ".signature.p7s",
  3568. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3569. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3570. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3571. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3572. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3573. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3574. "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512",
  3575. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3576. ]
  3577. },
  3578. "Microsoft.IdentityModel.Logging/6.8.0": {
  3579. "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==",
  3580. "type": "package",
  3581. "path": "microsoft.identitymodel.logging/6.8.0",
  3582. "files": [
  3583. ".nupkg.metadata",
  3584. ".signature.p7s",
  3585. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3586. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3587. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3588. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3589. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3590. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3591. "microsoft.identitymodel.logging.6.8.0.nupkg.sha512",
  3592. "microsoft.identitymodel.logging.nuspec"
  3593. ]
  3594. },
  3595. "Microsoft.IdentityModel.Protocols/6.8.0": {
  3596. "sha512": "OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==",
  3597. "type": "package",
  3598. "path": "microsoft.identitymodel.protocols/6.8.0",
  3599. "files": [
  3600. ".nupkg.metadata",
  3601. ".signature.p7s",
  3602. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  3603. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  3604. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  3605. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  3606. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  3607. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  3608. "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512",
  3609. "microsoft.identitymodel.protocols.nuspec"
  3610. ]
  3611. },
  3612. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  3613. "sha512": "X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==",
  3614. "type": "package",
  3615. "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0",
  3616. "files": [
  3617. ".nupkg.metadata",
  3618. ".signature.p7s",
  3619. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3620. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3621. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3622. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3623. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3624. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3625. "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512",
  3626. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  3627. ]
  3628. },
  3629. "Microsoft.IdentityModel.Tokens/6.8.0": {
  3630. "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==",
  3631. "type": "package",
  3632. "path": "microsoft.identitymodel.tokens/6.8.0",
  3633. "files": [
  3634. ".nupkg.metadata",
  3635. ".signature.p7s",
  3636. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3637. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3638. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3639. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3640. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3641. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3642. "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512",
  3643. "microsoft.identitymodel.tokens.nuspec"
  3644. ]
  3645. },
  3646. "Microsoft.NETCore.Platforms/3.1.0": {
  3647. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  3648. "type": "package",
  3649. "path": "microsoft.netcore.platforms/3.1.0",
  3650. "files": [
  3651. ".nupkg.metadata",
  3652. ".signature.p7s",
  3653. "LICENSE.TXT",
  3654. "THIRD-PARTY-NOTICES.TXT",
  3655. "lib/netstandard1.0/_._",
  3656. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  3657. "microsoft.netcore.platforms.nuspec",
  3658. "runtime.json",
  3659. "useSharedDesignerContext.txt",
  3660. "version.txt"
  3661. ]
  3662. },
  3663. "Microsoft.NETCore.Targets/1.1.0": {
  3664. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3665. "type": "package",
  3666. "path": "microsoft.netcore.targets/1.1.0",
  3667. "files": [
  3668. ".nupkg.metadata",
  3669. "ThirdPartyNotices.txt",
  3670. "dotnet_library_license.txt",
  3671. "lib/netstandard1.0/_._",
  3672. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3673. "microsoft.netcore.targets.nuspec",
  3674. "runtime.json"
  3675. ]
  3676. },
  3677. "Microsoft.Win32.Registry/4.7.0": {
  3678. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  3679. "type": "package",
  3680. "path": "microsoft.win32.registry/4.7.0",
  3681. "files": [
  3682. ".nupkg.metadata",
  3683. ".signature.p7s",
  3684. "LICENSE.TXT",
  3685. "THIRD-PARTY-NOTICES.TXT",
  3686. "lib/net46/Microsoft.Win32.Registry.dll",
  3687. "lib/net461/Microsoft.Win32.Registry.dll",
  3688. "lib/net461/Microsoft.Win32.Registry.xml",
  3689. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3690. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3691. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3692. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  3693. "microsoft.win32.registry.nuspec",
  3694. "ref/net46/Microsoft.Win32.Registry.dll",
  3695. "ref/net461/Microsoft.Win32.Registry.dll",
  3696. "ref/net461/Microsoft.Win32.Registry.xml",
  3697. "ref/net472/Microsoft.Win32.Registry.dll",
  3698. "ref/net472/Microsoft.Win32.Registry.xml",
  3699. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3700. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3701. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3702. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3703. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3704. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3705. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3706. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3707. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3708. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3709. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3710. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3711. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3712. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3713. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3714. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3715. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3716. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  3717. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3718. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3719. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  3720. "useSharedDesignerContext.txt",
  3721. "version.txt"
  3722. ]
  3723. },
  3724. "Microsoft.Win32.SystemEvents/4.7.0": {
  3725. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  3726. "type": "package",
  3727. "path": "microsoft.win32.systemevents/4.7.0",
  3728. "files": [
  3729. ".nupkg.metadata",
  3730. ".signature.p7s",
  3731. "LICENSE.TXT",
  3732. "THIRD-PARTY-NOTICES.TXT",
  3733. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  3734. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  3735. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3736. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3737. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  3738. "microsoft.win32.systemevents.nuspec",
  3739. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  3740. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  3741. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  3742. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  3743. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  3744. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  3745. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  3746. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  3747. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  3748. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  3749. "useSharedDesignerContext.txt",
  3750. "version.txt"
  3751. ]
  3752. },
  3753. "MySql.Data/8.0.32.1": {
  3754. "sha512": "K5WkZz8hkiHyKSnEON5AER+oMxmwhRrSAy6/a7XnfWpytn8EyYLCFWe0lDNZqZJ/w79P1Qtw0TZvf3kP0a1fbg==",
  3755. "type": "package",
  3756. "path": "mysql.data/8.0.32.1",
  3757. "files": [
  3758. ".nupkg.metadata",
  3759. ".signature.p7s",
  3760. "lib/net452/MySql.Data.dll",
  3761. "lib/net452/MySql.Data.xml",
  3762. "lib/net48/MySql.Data.dll",
  3763. "lib/net48/MySql.Data.xml",
  3764. "lib/net6.0/MySql.Data.dll",
  3765. "lib/net6.0/MySql.Data.xml",
  3766. "lib/net7.0/MySql.Data.dll",
  3767. "lib/net7.0/MySql.Data.xml",
  3768. "lib/netstandard2.0/MySql.Data.dll",
  3769. "lib/netstandard2.0/MySql.Data.xml",
  3770. "lib/netstandard2.1/MySql.Data.dll",
  3771. "lib/netstandard2.1/MySql.Data.xml",
  3772. "mysql.data.8.0.32.1.nupkg.sha512",
  3773. "mysql.data.nuspec",
  3774. "runtimes/win-x64/native/comerr64.dll",
  3775. "runtimes/win-x64/native/gssapi64.dll",
  3776. "runtimes/win-x64/native/k5sprt64.dll",
  3777. "runtimes/win-x64/native/krb5_64.dll",
  3778. "runtimes/win-x64/native/krbcc64.dll"
  3779. ]
  3780. },
  3781. "MySqlConnector/2.0.0": {
  3782. "sha512": "EY0KXqQas+QvdZQU0NPkqBSfJitWAl8IUCg0v/Qn0P7f/KApJTFJFm8czYWoDPyewUjPHrAnE/cSYzzSFGc8Ng==",
  3783. "type": "package",
  3784. "path": "mysqlconnector/2.0.0",
  3785. "files": [
  3786. ".nupkg.metadata",
  3787. ".signature.p7s",
  3788. "README.md",
  3789. "lib/net45/MySqlConnector.dll",
  3790. "lib/net45/MySqlConnector.xml",
  3791. "lib/net461/MySqlConnector.dll",
  3792. "lib/net461/MySqlConnector.xml",
  3793. "lib/net471/MySqlConnector.dll",
  3794. "lib/net471/MySqlConnector.xml",
  3795. "lib/net5.0/MySqlConnector.dll",
  3796. "lib/net5.0/MySqlConnector.xml",
  3797. "lib/net6.0/MySqlConnector.dll",
  3798. "lib/net6.0/MySqlConnector.xml",
  3799. "lib/netcoreapp3.1/MySqlConnector.dll",
  3800. "lib/netcoreapp3.1/MySqlConnector.xml",
  3801. "lib/netstandard2.0/MySqlConnector.dll",
  3802. "lib/netstandard2.0/MySqlConnector.xml",
  3803. "lib/netstandard2.1/MySqlConnector.dll",
  3804. "lib/netstandard2.1/MySqlConnector.xml",
  3805. "logo.png",
  3806. "mysqlconnector.2.0.0.nupkg.sha512",
  3807. "mysqlconnector.nuspec"
  3808. ]
  3809. },
  3810. "Newtonsoft.Json/13.0.1": {
  3811. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  3812. "type": "package",
  3813. "path": "newtonsoft.json/13.0.1",
  3814. "files": [
  3815. ".nupkg.metadata",
  3816. ".signature.p7s",
  3817. "LICENSE.md",
  3818. "lib/net20/Newtonsoft.Json.dll",
  3819. "lib/net20/Newtonsoft.Json.xml",
  3820. "lib/net35/Newtonsoft.Json.dll",
  3821. "lib/net35/Newtonsoft.Json.xml",
  3822. "lib/net40/Newtonsoft.Json.dll",
  3823. "lib/net40/Newtonsoft.Json.xml",
  3824. "lib/net45/Newtonsoft.Json.dll",
  3825. "lib/net45/Newtonsoft.Json.xml",
  3826. "lib/netstandard1.0/Newtonsoft.Json.dll",
  3827. "lib/netstandard1.0/Newtonsoft.Json.xml",
  3828. "lib/netstandard1.3/Newtonsoft.Json.dll",
  3829. "lib/netstandard1.3/Newtonsoft.Json.xml",
  3830. "lib/netstandard2.0/Newtonsoft.Json.dll",
  3831. "lib/netstandard2.0/Newtonsoft.Json.xml",
  3832. "newtonsoft.json.13.0.1.nupkg.sha512",
  3833. "newtonsoft.json.nuspec",
  3834. "packageIcon.png"
  3835. ]
  3836. },
  3837. "Nito.AsyncEx.Context/5.1.2": {
  3838. "sha512": "rMwL7Nj3oNyvFu/jxUzQ/YBobEkM2RQHe+5mpCDRyq6mfD7vCj7Z3rjB6XgpM6Mqcx1CA2xGv0ascU/2Xk8IIg==",
  3839. "type": "package",
  3840. "path": "nito.asyncex.context/5.1.2",
  3841. "files": [
  3842. ".nupkg.metadata",
  3843. ".signature.p7s",
  3844. "icon.png",
  3845. "lib/net461/Nito.AsyncEx.Context.dll",
  3846. "lib/net461/Nito.AsyncEx.Context.xml",
  3847. "lib/netstandard1.3/Nito.AsyncEx.Context.dll",
  3848. "lib/netstandard1.3/Nito.AsyncEx.Context.xml",
  3849. "lib/netstandard2.0/Nito.AsyncEx.Context.dll",
  3850. "lib/netstandard2.0/Nito.AsyncEx.Context.xml",
  3851. "nito.asyncex.context.5.1.2.nupkg.sha512",
  3852. "nito.asyncex.context.nuspec"
  3853. ]
  3854. },
  3855. "Nito.AsyncEx.Coordination/5.1.2": {
  3856. "sha512": "QMyUfsaxov//0ZMbOHWr9hJaBFteZd66DV1ay4J5wRODDb8+K/uHC7+3VsOflo6SVw/29mu8OWZp8vMDSuzc0w==",
  3857. "type": "package",
  3858. "path": "nito.asyncex.coordination/5.1.2",
  3859. "files": [
  3860. ".nupkg.metadata",
  3861. ".signature.p7s",
  3862. "icon.png",
  3863. "lib/net461/Nito.AsyncEx.Coordination.dll",
  3864. "lib/net461/Nito.AsyncEx.Coordination.xml",
  3865. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  3866. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  3867. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  3868. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  3869. "nito.asyncex.coordination.5.1.2.nupkg.sha512",
  3870. "nito.asyncex.coordination.nuspec"
  3871. ]
  3872. },
  3873. "Nito.AsyncEx.Tasks/5.1.2": {
  3874. "sha512": "jEkCfR2/M26OK/U4G7SEN063EU/F4LiVA06TtpZILMdX/quIHCg+wn31Zerl2LC+u1cyFancjTY3cNAr2/89PA==",
  3875. "type": "package",
  3876. "path": "nito.asyncex.tasks/5.1.2",
  3877. "files": [
  3878. ".nupkg.metadata",
  3879. ".signature.p7s",
  3880. "icon.png",
  3881. "lib/net461/Nito.AsyncEx.Tasks.dll",
  3882. "lib/net461/Nito.AsyncEx.Tasks.xml",
  3883. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  3884. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  3885. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  3886. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  3887. "nito.asyncex.tasks.5.1.2.nupkg.sha512",
  3888. "nito.asyncex.tasks.nuspec"
  3889. ]
  3890. },
  3891. "Nito.Collections.Deque/1.1.1": {
  3892. "sha512": "CU0/Iuv5VDynK8I8pDLwkgF0rZhbQoZahtodfL0M3x2gFkpBRApKs8RyMyNlAi1mwExE4gsmqQXk4aFVvW9a4Q==",
  3893. "type": "package",
  3894. "path": "nito.collections.deque/1.1.1",
  3895. "files": [
  3896. ".nupkg.metadata",
  3897. ".signature.p7s",
  3898. "icon.png",
  3899. "lib/net461/Nito.Collections.Deque.dll",
  3900. "lib/net461/Nito.Collections.Deque.xml",
  3901. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  3902. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  3903. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  3904. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  3905. "nito.collections.deque.1.1.1.nupkg.sha512",
  3906. "nito.collections.deque.nuspec"
  3907. ]
  3908. },
  3909. "Nito.Disposables/2.2.1": {
  3910. "sha512": "6sZ5uynQeAE9dPWBQGKebNmxbY4xsvcc5VplB5WkYEESUS7oy4AwnFp0FhqxTSKm/PaFrFqLrYr696CYN8cugg==",
  3911. "type": "package",
  3912. "path": "nito.disposables/2.2.1",
  3913. "files": [
  3914. ".nupkg.metadata",
  3915. ".signature.p7s",
  3916. "icon.png",
  3917. "lib/net461/Nito.Disposables.dll",
  3918. "lib/net461/Nito.Disposables.xml",
  3919. "lib/netstandard1.0/Nito.Disposables.dll",
  3920. "lib/netstandard1.0/Nito.Disposables.xml",
  3921. "lib/netstandard2.0/Nito.Disposables.dll",
  3922. "lib/netstandard2.0/Nito.Disposables.xml",
  3923. "lib/netstandard2.1/Nito.Disposables.dll",
  3924. "lib/netstandard2.1/Nito.Disposables.xml",
  3925. "nito.disposables.2.2.1.nupkg.sha512",
  3926. "nito.disposables.nuspec"
  3927. ]
  3928. },
  3929. "Pomelo.EntityFrameworkCore.MySql/6.0.0": {
  3930. "sha512": "iWloXFjpN6BllZA9oPqZTW9mNtFV5Q6DFv0WwFyh1IuOJ71btS3ifTwpLmaFXSlXzuEU9o7Rul0dU0WiwkOq0Q==",
  3931. "type": "package",
  3932. "path": "pomelo.entityframeworkcore.mysql/6.0.0",
  3933. "files": [
  3934. ".nupkg.metadata",
  3935. ".signature.p7s",
  3936. "icon.png",
  3937. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll",
  3938. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.xml",
  3939. "pomelo.entityframeworkcore.mysql.6.0.0.nupkg.sha512",
  3940. "pomelo.entityframeworkcore.mysql.nuspec"
  3941. ]
  3942. },
  3943. "Portable.BouncyCastle/1.9.0": {
  3944. "sha512": "eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==",
  3945. "type": "package",
  3946. "path": "portable.bouncycastle/1.9.0",
  3947. "files": [
  3948. ".nupkg.metadata",
  3949. ".signature.p7s",
  3950. "lib/net40/BouncyCastle.Crypto.dll",
  3951. "lib/net40/BouncyCastle.Crypto.xml",
  3952. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  3953. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  3954. "portable.bouncycastle.1.9.0.nupkg.sha512",
  3955. "portable.bouncycastle.nuspec"
  3956. ]
  3957. },
  3958. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  3959. "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
  3960. "type": "package",
  3961. "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
  3962. "files": [
  3963. ".nupkg.metadata",
  3964. ".signature.p7s",
  3965. "LICENSE.TXT",
  3966. "THIRD-PARTY-NOTICES.TXT",
  3967. "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
  3968. "runtime.native.system.data.sqlclient.sni.nuspec",
  3969. "useSharedDesignerContext.txt",
  3970. "version.txt"
  3971. ]
  3972. },
  3973. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  3974. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  3975. "type": "package",
  3976. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  3977. "files": [
  3978. ".nupkg.metadata",
  3979. "ThirdPartyNotices.txt",
  3980. "dotnet_library_license.txt",
  3981. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  3982. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  3983. "runtimes/win-arm64/native/sni.dll",
  3984. "useSharedDesignerContext.txt",
  3985. "version.txt"
  3986. ]
  3987. },
  3988. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  3989. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  3990. "type": "package",
  3991. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  3992. "files": [
  3993. ".nupkg.metadata",
  3994. "ThirdPartyNotices.txt",
  3995. "dotnet_library_license.txt",
  3996. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  3997. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  3998. "runtimes/win-x64/native/sni.dll",
  3999. "useSharedDesignerContext.txt",
  4000. "version.txt"
  4001. ]
  4002. },
  4003. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4004. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  4005. "type": "package",
  4006. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  4007. "files": [
  4008. ".nupkg.metadata",
  4009. "ThirdPartyNotices.txt",
  4010. "dotnet_library_license.txt",
  4011. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4012. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  4013. "runtimes/win-x86/native/sni.dll",
  4014. "useSharedDesignerContext.txt",
  4015. "version.txt"
  4016. ]
  4017. },
  4018. "System.Buffers/4.5.1": {
  4019. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  4020. "type": "package",
  4021. "path": "system.buffers/4.5.1",
  4022. "files": [
  4023. ".nupkg.metadata",
  4024. ".signature.p7s",
  4025. "LICENSE.TXT",
  4026. "THIRD-PARTY-NOTICES.TXT",
  4027. "lib/net461/System.Buffers.dll",
  4028. "lib/net461/System.Buffers.xml",
  4029. "lib/netcoreapp2.0/_._",
  4030. "lib/netstandard1.1/System.Buffers.dll",
  4031. "lib/netstandard1.1/System.Buffers.xml",
  4032. "lib/netstandard2.0/System.Buffers.dll",
  4033. "lib/netstandard2.0/System.Buffers.xml",
  4034. "lib/uap10.0.16299/_._",
  4035. "ref/net45/System.Buffers.dll",
  4036. "ref/net45/System.Buffers.xml",
  4037. "ref/netcoreapp2.0/_._",
  4038. "ref/netstandard1.1/System.Buffers.dll",
  4039. "ref/netstandard1.1/System.Buffers.xml",
  4040. "ref/netstandard2.0/System.Buffers.dll",
  4041. "ref/netstandard2.0/System.Buffers.xml",
  4042. "ref/uap10.0.16299/_._",
  4043. "system.buffers.4.5.1.nupkg.sha512",
  4044. "system.buffers.nuspec",
  4045. "useSharedDesignerContext.txt",
  4046. "version.txt"
  4047. ]
  4048. },
  4049. "System.Collections/4.3.0": {
  4050. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4051. "type": "package",
  4052. "path": "system.collections/4.3.0",
  4053. "files": [
  4054. ".nupkg.metadata",
  4055. ".signature.p7s",
  4056. "ThirdPartyNotices.txt",
  4057. "dotnet_library_license.txt",
  4058. "lib/MonoAndroid10/_._",
  4059. "lib/MonoTouch10/_._",
  4060. "lib/net45/_._",
  4061. "lib/portable-net45+win8+wp8+wpa81/_._",
  4062. "lib/win8/_._",
  4063. "lib/wp80/_._",
  4064. "lib/wpa81/_._",
  4065. "lib/xamarinios10/_._",
  4066. "lib/xamarinmac20/_._",
  4067. "lib/xamarintvos10/_._",
  4068. "lib/xamarinwatchos10/_._",
  4069. "ref/MonoAndroid10/_._",
  4070. "ref/MonoTouch10/_._",
  4071. "ref/net45/_._",
  4072. "ref/netcore50/System.Collections.dll",
  4073. "ref/netcore50/System.Collections.xml",
  4074. "ref/netcore50/de/System.Collections.xml",
  4075. "ref/netcore50/es/System.Collections.xml",
  4076. "ref/netcore50/fr/System.Collections.xml",
  4077. "ref/netcore50/it/System.Collections.xml",
  4078. "ref/netcore50/ja/System.Collections.xml",
  4079. "ref/netcore50/ko/System.Collections.xml",
  4080. "ref/netcore50/ru/System.Collections.xml",
  4081. "ref/netcore50/zh-hans/System.Collections.xml",
  4082. "ref/netcore50/zh-hant/System.Collections.xml",
  4083. "ref/netstandard1.0/System.Collections.dll",
  4084. "ref/netstandard1.0/System.Collections.xml",
  4085. "ref/netstandard1.0/de/System.Collections.xml",
  4086. "ref/netstandard1.0/es/System.Collections.xml",
  4087. "ref/netstandard1.0/fr/System.Collections.xml",
  4088. "ref/netstandard1.0/it/System.Collections.xml",
  4089. "ref/netstandard1.0/ja/System.Collections.xml",
  4090. "ref/netstandard1.0/ko/System.Collections.xml",
  4091. "ref/netstandard1.0/ru/System.Collections.xml",
  4092. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4093. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4094. "ref/netstandard1.3/System.Collections.dll",
  4095. "ref/netstandard1.3/System.Collections.xml",
  4096. "ref/netstandard1.3/de/System.Collections.xml",
  4097. "ref/netstandard1.3/es/System.Collections.xml",
  4098. "ref/netstandard1.3/fr/System.Collections.xml",
  4099. "ref/netstandard1.3/it/System.Collections.xml",
  4100. "ref/netstandard1.3/ja/System.Collections.xml",
  4101. "ref/netstandard1.3/ko/System.Collections.xml",
  4102. "ref/netstandard1.3/ru/System.Collections.xml",
  4103. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4104. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4105. "ref/portable-net45+win8+wp8+wpa81/_._",
  4106. "ref/win8/_._",
  4107. "ref/wp80/_._",
  4108. "ref/wpa81/_._",
  4109. "ref/xamarinios10/_._",
  4110. "ref/xamarinmac20/_._",
  4111. "ref/xamarintvos10/_._",
  4112. "ref/xamarinwatchos10/_._",
  4113. "system.collections.4.3.0.nupkg.sha512",
  4114. "system.collections.nuspec"
  4115. ]
  4116. },
  4117. "System.Collections.Immutable/6.0.0": {
  4118. "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  4119. "type": "package",
  4120. "path": "system.collections.immutable/6.0.0",
  4121. "files": [
  4122. ".nupkg.metadata",
  4123. ".signature.p7s",
  4124. "Icon.png",
  4125. "LICENSE.TXT",
  4126. "THIRD-PARTY-NOTICES.TXT",
  4127. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  4128. "buildTransitive/netcoreapp3.1/_._",
  4129. "lib/net461/System.Collections.Immutable.dll",
  4130. "lib/net461/System.Collections.Immutable.xml",
  4131. "lib/net6.0/System.Collections.Immutable.dll",
  4132. "lib/net6.0/System.Collections.Immutable.xml",
  4133. "lib/netstandard2.0/System.Collections.Immutable.dll",
  4134. "lib/netstandard2.0/System.Collections.Immutable.xml",
  4135. "system.collections.immutable.6.0.0.nupkg.sha512",
  4136. "system.collections.immutable.nuspec",
  4137. "useSharedDesignerContext.txt"
  4138. ]
  4139. },
  4140. "System.Configuration.ConfigurationManager/4.7.0": {
  4141. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  4142. "type": "package",
  4143. "path": "system.configuration.configurationmanager/4.7.0",
  4144. "files": [
  4145. ".nupkg.metadata",
  4146. ".signature.p7s",
  4147. "LICENSE.TXT",
  4148. "THIRD-PARTY-NOTICES.TXT",
  4149. "lib/net461/System.Configuration.ConfigurationManager.dll",
  4150. "lib/net461/System.Configuration.ConfigurationManager.xml",
  4151. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4152. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4153. "ref/net461/System.Configuration.ConfigurationManager.dll",
  4154. "ref/net461/System.Configuration.ConfigurationManager.xml",
  4155. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  4156. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  4157. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  4158. "system.configuration.configurationmanager.nuspec",
  4159. "useSharedDesignerContext.txt",
  4160. "version.txt"
  4161. ]
  4162. },
  4163. "System.Data.SqlClient/4.8.5": {
  4164. "sha512": "fRqxut4lrndPHrXD+ht1XRmCL3obuKldm4XjCRYS9p5f7FSR7shBxAwTkDrpFMsHC9BhNgjjmUtiIjvehn5zkg==",
  4165. "type": "package",
  4166. "path": "system.data.sqlclient/4.8.5",
  4167. "files": [
  4168. ".nupkg.metadata",
  4169. ".signature.p7s",
  4170. "Icon.png",
  4171. "LICENSE.TXT",
  4172. "THIRD-PARTY-NOTICES.TXT",
  4173. "lib/MonoAndroid10/_._",
  4174. "lib/MonoTouch10/_._",
  4175. "lib/net451/System.Data.SqlClient.dll",
  4176. "lib/net46/System.Data.SqlClient.dll",
  4177. "lib/net461/System.Data.SqlClient.dll",
  4178. "lib/net461/System.Data.SqlClient.xml",
  4179. "lib/netcoreapp2.1/System.Data.SqlClient.dll",
  4180. "lib/netcoreapp2.1/System.Data.SqlClient.xml",
  4181. "lib/netstandard1.2/System.Data.SqlClient.dll",
  4182. "lib/netstandard1.2/System.Data.SqlClient.xml",
  4183. "lib/netstandard1.3/System.Data.SqlClient.dll",
  4184. "lib/netstandard1.3/System.Data.SqlClient.xml",
  4185. "lib/netstandard2.0/System.Data.SqlClient.dll",
  4186. "lib/netstandard2.0/System.Data.SqlClient.xml",
  4187. "lib/xamarinios10/_._",
  4188. "lib/xamarinmac20/_._",
  4189. "lib/xamarintvos10/_._",
  4190. "lib/xamarinwatchos10/_._",
  4191. "ref/MonoAndroid10/_._",
  4192. "ref/MonoTouch10/_._",
  4193. "ref/net451/System.Data.SqlClient.dll",
  4194. "ref/net46/System.Data.SqlClient.dll",
  4195. "ref/net461/System.Data.SqlClient.dll",
  4196. "ref/net461/System.Data.SqlClient.xml",
  4197. "ref/netcoreapp2.1/System.Data.SqlClient.dll",
  4198. "ref/netcoreapp2.1/System.Data.SqlClient.xml",
  4199. "ref/netstandard1.2/System.Data.SqlClient.dll",
  4200. "ref/netstandard1.2/System.Data.SqlClient.xml",
  4201. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  4202. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  4203. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  4204. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  4205. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  4206. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  4207. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  4208. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  4209. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  4210. "ref/netstandard1.3/System.Data.SqlClient.dll",
  4211. "ref/netstandard1.3/System.Data.SqlClient.xml",
  4212. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  4213. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  4214. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  4215. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  4216. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  4217. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  4218. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  4219. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  4220. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  4221. "ref/netstandard2.0/System.Data.SqlClient.dll",
  4222. "ref/netstandard2.0/System.Data.SqlClient.xml",
  4223. "ref/xamarinios10/_._",
  4224. "ref/xamarinmac20/_._",
  4225. "ref/xamarintvos10/_._",
  4226. "ref/xamarinwatchos10/_._",
  4227. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  4228. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  4229. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  4230. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  4231. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml",
  4232. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  4233. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  4234. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  4235. "runtimes/win/lib/net461/System.Data.SqlClient.xml",
  4236. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  4237. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  4238. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  4239. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  4240. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml",
  4241. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll",
  4242. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml",
  4243. "system.data.sqlclient.4.8.5.nupkg.sha512",
  4244. "system.data.sqlclient.nuspec",
  4245. "useSharedDesignerContext.txt",
  4246. "version.txt"
  4247. ]
  4248. },
  4249. "System.Diagnostics.Debug/4.3.0": {
  4250. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  4251. "type": "package",
  4252. "path": "system.diagnostics.debug/4.3.0",
  4253. "files": [
  4254. ".nupkg.metadata",
  4255. ".signature.p7s",
  4256. "ThirdPartyNotices.txt",
  4257. "dotnet_library_license.txt",
  4258. "lib/MonoAndroid10/_._",
  4259. "lib/MonoTouch10/_._",
  4260. "lib/net45/_._",
  4261. "lib/portable-net45+win8+wp8+wpa81/_._",
  4262. "lib/win8/_._",
  4263. "lib/wp80/_._",
  4264. "lib/wpa81/_._",
  4265. "lib/xamarinios10/_._",
  4266. "lib/xamarinmac20/_._",
  4267. "lib/xamarintvos10/_._",
  4268. "lib/xamarinwatchos10/_._",
  4269. "ref/MonoAndroid10/_._",
  4270. "ref/MonoTouch10/_._",
  4271. "ref/net45/_._",
  4272. "ref/netcore50/System.Diagnostics.Debug.dll",
  4273. "ref/netcore50/System.Diagnostics.Debug.xml",
  4274. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  4275. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  4276. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  4277. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  4278. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  4279. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  4280. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  4281. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  4282. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  4283. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  4284. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  4285. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  4286. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  4287. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  4288. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  4289. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  4290. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  4291. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  4292. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  4293. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  4294. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  4295. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  4296. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  4297. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  4298. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  4299. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  4300. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  4301. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  4302. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  4303. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  4304. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  4305. "ref/portable-net45+win8+wp8+wpa81/_._",
  4306. "ref/win8/_._",
  4307. "ref/wp80/_._",
  4308. "ref/wpa81/_._",
  4309. "ref/xamarinios10/_._",
  4310. "ref/xamarinmac20/_._",
  4311. "ref/xamarintvos10/_._",
  4312. "ref/xamarinwatchos10/_._",
  4313. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  4314. "system.diagnostics.debug.nuspec"
  4315. ]
  4316. },
  4317. "System.Diagnostics.DiagnosticSource/6.0.0": {
  4318. "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  4319. "type": "package",
  4320. "path": "system.diagnostics.diagnosticsource/6.0.0",
  4321. "files": [
  4322. ".nupkg.metadata",
  4323. ".signature.p7s",
  4324. "Icon.png",
  4325. "LICENSE.TXT",
  4326. "THIRD-PARTY-NOTICES.TXT",
  4327. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  4328. "buildTransitive/netcoreapp3.1/_._",
  4329. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  4330. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  4331. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  4332. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  4333. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  4334. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  4335. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  4336. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  4337. "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
  4338. "system.diagnostics.diagnosticsource.nuspec",
  4339. "useSharedDesignerContext.txt"
  4340. ]
  4341. },
  4342. "System.Drawing.Common/4.7.0": {
  4343. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  4344. "type": "package",
  4345. "path": "system.drawing.common/4.7.0",
  4346. "files": [
  4347. ".nupkg.metadata",
  4348. ".signature.p7s",
  4349. "LICENSE.TXT",
  4350. "THIRD-PARTY-NOTICES.TXT",
  4351. "lib/MonoAndroid10/_._",
  4352. "lib/MonoTouch10/_._",
  4353. "lib/net461/System.Drawing.Common.dll",
  4354. "lib/netstandard2.0/System.Drawing.Common.dll",
  4355. "lib/xamarinios10/_._",
  4356. "lib/xamarinmac20/_._",
  4357. "lib/xamarintvos10/_._",
  4358. "lib/xamarinwatchos10/_._",
  4359. "ref/MonoAndroid10/_._",
  4360. "ref/MonoTouch10/_._",
  4361. "ref/net461/System.Drawing.Common.dll",
  4362. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  4363. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  4364. "ref/netstandard2.0/System.Drawing.Common.dll",
  4365. "ref/xamarinios10/_._",
  4366. "ref/xamarinmac20/_._",
  4367. "ref/xamarintvos10/_._",
  4368. "ref/xamarinwatchos10/_._",
  4369. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4370. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4371. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4372. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  4373. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  4374. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  4375. "system.drawing.common.4.7.0.nupkg.sha512",
  4376. "system.drawing.common.nuspec",
  4377. "useSharedDesignerContext.txt",
  4378. "version.txt"
  4379. ]
  4380. },
  4381. "System.Globalization/4.3.0": {
  4382. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  4383. "type": "package",
  4384. "path": "system.globalization/4.3.0",
  4385. "files": [
  4386. ".nupkg.metadata",
  4387. ".signature.p7s",
  4388. "ThirdPartyNotices.txt",
  4389. "dotnet_library_license.txt",
  4390. "lib/MonoAndroid10/_._",
  4391. "lib/MonoTouch10/_._",
  4392. "lib/net45/_._",
  4393. "lib/portable-net45+win8+wp8+wpa81/_._",
  4394. "lib/win8/_._",
  4395. "lib/wp80/_._",
  4396. "lib/wpa81/_._",
  4397. "lib/xamarinios10/_._",
  4398. "lib/xamarinmac20/_._",
  4399. "lib/xamarintvos10/_._",
  4400. "lib/xamarinwatchos10/_._",
  4401. "ref/MonoAndroid10/_._",
  4402. "ref/MonoTouch10/_._",
  4403. "ref/net45/_._",
  4404. "ref/netcore50/System.Globalization.dll",
  4405. "ref/netcore50/System.Globalization.xml",
  4406. "ref/netcore50/de/System.Globalization.xml",
  4407. "ref/netcore50/es/System.Globalization.xml",
  4408. "ref/netcore50/fr/System.Globalization.xml",
  4409. "ref/netcore50/it/System.Globalization.xml",
  4410. "ref/netcore50/ja/System.Globalization.xml",
  4411. "ref/netcore50/ko/System.Globalization.xml",
  4412. "ref/netcore50/ru/System.Globalization.xml",
  4413. "ref/netcore50/zh-hans/System.Globalization.xml",
  4414. "ref/netcore50/zh-hant/System.Globalization.xml",
  4415. "ref/netstandard1.0/System.Globalization.dll",
  4416. "ref/netstandard1.0/System.Globalization.xml",
  4417. "ref/netstandard1.0/de/System.Globalization.xml",
  4418. "ref/netstandard1.0/es/System.Globalization.xml",
  4419. "ref/netstandard1.0/fr/System.Globalization.xml",
  4420. "ref/netstandard1.0/it/System.Globalization.xml",
  4421. "ref/netstandard1.0/ja/System.Globalization.xml",
  4422. "ref/netstandard1.0/ko/System.Globalization.xml",
  4423. "ref/netstandard1.0/ru/System.Globalization.xml",
  4424. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  4425. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  4426. "ref/netstandard1.3/System.Globalization.dll",
  4427. "ref/netstandard1.3/System.Globalization.xml",
  4428. "ref/netstandard1.3/de/System.Globalization.xml",
  4429. "ref/netstandard1.3/es/System.Globalization.xml",
  4430. "ref/netstandard1.3/fr/System.Globalization.xml",
  4431. "ref/netstandard1.3/it/System.Globalization.xml",
  4432. "ref/netstandard1.3/ja/System.Globalization.xml",
  4433. "ref/netstandard1.3/ko/System.Globalization.xml",
  4434. "ref/netstandard1.3/ru/System.Globalization.xml",
  4435. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  4436. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  4437. "ref/portable-net45+win8+wp8+wpa81/_._",
  4438. "ref/win8/_._",
  4439. "ref/wp80/_._",
  4440. "ref/wpa81/_._",
  4441. "ref/xamarinios10/_._",
  4442. "ref/xamarinmac20/_._",
  4443. "ref/xamarintvos10/_._",
  4444. "ref/xamarinwatchos10/_._",
  4445. "system.globalization.4.3.0.nupkg.sha512",
  4446. "system.globalization.nuspec"
  4447. ]
  4448. },
  4449. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  4450. "sha512": "5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==",
  4451. "type": "package",
  4452. "path": "system.identitymodel.tokens.jwt/6.8.0",
  4453. "files": [
  4454. ".nupkg.metadata",
  4455. ".signature.p7s",
  4456. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  4457. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  4458. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  4459. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  4460. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  4461. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  4462. "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512",
  4463. "system.identitymodel.tokens.jwt.nuspec"
  4464. ]
  4465. },
  4466. "System.IO/4.3.0": {
  4467. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  4468. "type": "package",
  4469. "path": "system.io/4.3.0",
  4470. "files": [
  4471. ".nupkg.metadata",
  4472. ".signature.p7s",
  4473. "ThirdPartyNotices.txt",
  4474. "dotnet_library_license.txt",
  4475. "lib/MonoAndroid10/_._",
  4476. "lib/MonoTouch10/_._",
  4477. "lib/net45/_._",
  4478. "lib/net462/System.IO.dll",
  4479. "lib/portable-net45+win8+wp8+wpa81/_._",
  4480. "lib/win8/_._",
  4481. "lib/wp80/_._",
  4482. "lib/wpa81/_._",
  4483. "lib/xamarinios10/_._",
  4484. "lib/xamarinmac20/_._",
  4485. "lib/xamarintvos10/_._",
  4486. "lib/xamarinwatchos10/_._",
  4487. "ref/MonoAndroid10/_._",
  4488. "ref/MonoTouch10/_._",
  4489. "ref/net45/_._",
  4490. "ref/net462/System.IO.dll",
  4491. "ref/netcore50/System.IO.dll",
  4492. "ref/netcore50/System.IO.xml",
  4493. "ref/netcore50/de/System.IO.xml",
  4494. "ref/netcore50/es/System.IO.xml",
  4495. "ref/netcore50/fr/System.IO.xml",
  4496. "ref/netcore50/it/System.IO.xml",
  4497. "ref/netcore50/ja/System.IO.xml",
  4498. "ref/netcore50/ko/System.IO.xml",
  4499. "ref/netcore50/ru/System.IO.xml",
  4500. "ref/netcore50/zh-hans/System.IO.xml",
  4501. "ref/netcore50/zh-hant/System.IO.xml",
  4502. "ref/netstandard1.0/System.IO.dll",
  4503. "ref/netstandard1.0/System.IO.xml",
  4504. "ref/netstandard1.0/de/System.IO.xml",
  4505. "ref/netstandard1.0/es/System.IO.xml",
  4506. "ref/netstandard1.0/fr/System.IO.xml",
  4507. "ref/netstandard1.0/it/System.IO.xml",
  4508. "ref/netstandard1.0/ja/System.IO.xml",
  4509. "ref/netstandard1.0/ko/System.IO.xml",
  4510. "ref/netstandard1.0/ru/System.IO.xml",
  4511. "ref/netstandard1.0/zh-hans/System.IO.xml",
  4512. "ref/netstandard1.0/zh-hant/System.IO.xml",
  4513. "ref/netstandard1.3/System.IO.dll",
  4514. "ref/netstandard1.3/System.IO.xml",
  4515. "ref/netstandard1.3/de/System.IO.xml",
  4516. "ref/netstandard1.3/es/System.IO.xml",
  4517. "ref/netstandard1.3/fr/System.IO.xml",
  4518. "ref/netstandard1.3/it/System.IO.xml",
  4519. "ref/netstandard1.3/ja/System.IO.xml",
  4520. "ref/netstandard1.3/ko/System.IO.xml",
  4521. "ref/netstandard1.3/ru/System.IO.xml",
  4522. "ref/netstandard1.3/zh-hans/System.IO.xml",
  4523. "ref/netstandard1.3/zh-hant/System.IO.xml",
  4524. "ref/netstandard1.5/System.IO.dll",
  4525. "ref/netstandard1.5/System.IO.xml",
  4526. "ref/netstandard1.5/de/System.IO.xml",
  4527. "ref/netstandard1.5/es/System.IO.xml",
  4528. "ref/netstandard1.5/fr/System.IO.xml",
  4529. "ref/netstandard1.5/it/System.IO.xml",
  4530. "ref/netstandard1.5/ja/System.IO.xml",
  4531. "ref/netstandard1.5/ko/System.IO.xml",
  4532. "ref/netstandard1.5/ru/System.IO.xml",
  4533. "ref/netstandard1.5/zh-hans/System.IO.xml",
  4534. "ref/netstandard1.5/zh-hant/System.IO.xml",
  4535. "ref/portable-net45+win8+wp8+wpa81/_._",
  4536. "ref/win8/_._",
  4537. "ref/wp80/_._",
  4538. "ref/wpa81/_._",
  4539. "ref/xamarinios10/_._",
  4540. "ref/xamarinmac20/_._",
  4541. "ref/xamarintvos10/_._",
  4542. "ref/xamarinwatchos10/_._",
  4543. "system.io.4.3.0.nupkg.sha512",
  4544. "system.io.nuspec"
  4545. ]
  4546. },
  4547. "System.Linq/4.3.0": {
  4548. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  4549. "type": "package",
  4550. "path": "system.linq/4.3.0",
  4551. "files": [
  4552. ".nupkg.metadata",
  4553. ".signature.p7s",
  4554. "ThirdPartyNotices.txt",
  4555. "dotnet_library_license.txt",
  4556. "lib/MonoAndroid10/_._",
  4557. "lib/MonoTouch10/_._",
  4558. "lib/net45/_._",
  4559. "lib/net463/System.Linq.dll",
  4560. "lib/netcore50/System.Linq.dll",
  4561. "lib/netstandard1.6/System.Linq.dll",
  4562. "lib/portable-net45+win8+wp8+wpa81/_._",
  4563. "lib/win8/_._",
  4564. "lib/wp80/_._",
  4565. "lib/wpa81/_._",
  4566. "lib/xamarinios10/_._",
  4567. "lib/xamarinmac20/_._",
  4568. "lib/xamarintvos10/_._",
  4569. "lib/xamarinwatchos10/_._",
  4570. "ref/MonoAndroid10/_._",
  4571. "ref/MonoTouch10/_._",
  4572. "ref/net45/_._",
  4573. "ref/net463/System.Linq.dll",
  4574. "ref/netcore50/System.Linq.dll",
  4575. "ref/netcore50/System.Linq.xml",
  4576. "ref/netcore50/de/System.Linq.xml",
  4577. "ref/netcore50/es/System.Linq.xml",
  4578. "ref/netcore50/fr/System.Linq.xml",
  4579. "ref/netcore50/it/System.Linq.xml",
  4580. "ref/netcore50/ja/System.Linq.xml",
  4581. "ref/netcore50/ko/System.Linq.xml",
  4582. "ref/netcore50/ru/System.Linq.xml",
  4583. "ref/netcore50/zh-hans/System.Linq.xml",
  4584. "ref/netcore50/zh-hant/System.Linq.xml",
  4585. "ref/netstandard1.0/System.Linq.dll",
  4586. "ref/netstandard1.0/System.Linq.xml",
  4587. "ref/netstandard1.0/de/System.Linq.xml",
  4588. "ref/netstandard1.0/es/System.Linq.xml",
  4589. "ref/netstandard1.0/fr/System.Linq.xml",
  4590. "ref/netstandard1.0/it/System.Linq.xml",
  4591. "ref/netstandard1.0/ja/System.Linq.xml",
  4592. "ref/netstandard1.0/ko/System.Linq.xml",
  4593. "ref/netstandard1.0/ru/System.Linq.xml",
  4594. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  4595. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  4596. "ref/netstandard1.6/System.Linq.dll",
  4597. "ref/netstandard1.6/System.Linq.xml",
  4598. "ref/netstandard1.6/de/System.Linq.xml",
  4599. "ref/netstandard1.6/es/System.Linq.xml",
  4600. "ref/netstandard1.6/fr/System.Linq.xml",
  4601. "ref/netstandard1.6/it/System.Linq.xml",
  4602. "ref/netstandard1.6/ja/System.Linq.xml",
  4603. "ref/netstandard1.6/ko/System.Linq.xml",
  4604. "ref/netstandard1.6/ru/System.Linq.xml",
  4605. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  4606. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  4607. "ref/portable-net45+win8+wp8+wpa81/_._",
  4608. "ref/win8/_._",
  4609. "ref/wp80/_._",
  4610. "ref/wpa81/_._",
  4611. "ref/xamarinios10/_._",
  4612. "ref/xamarinmac20/_._",
  4613. "ref/xamarintvos10/_._",
  4614. "ref/xamarinwatchos10/_._",
  4615. "system.linq.4.3.0.nupkg.sha512",
  4616. "system.linq.nuspec"
  4617. ]
  4618. },
  4619. "System.Linq.Dynamic.Core/1.2.18": {
  4620. "sha512": "+RH90sKD6SK2c9MD2Xo2jz1hkAJYfgPVyW1VgAwiPURR+JzOJCdvsDBg2Iq97FmTymxlQBY76G1cMxsF6j+6tA==",
  4621. "type": "package",
  4622. "path": "system.linq.dynamic.core/1.2.18",
  4623. "files": [
  4624. ".nupkg.metadata",
  4625. ".signature.p7s",
  4626. "lib/net35/System.Linq.Dynamic.Core.dll",
  4627. "lib/net35/System.Linq.Dynamic.Core.pdb",
  4628. "lib/net35/System.Linq.Dynamic.Core.xml",
  4629. "lib/net40/System.Linq.Dynamic.Core.dll",
  4630. "lib/net40/System.Linq.Dynamic.Core.pdb",
  4631. "lib/net40/System.Linq.Dynamic.Core.xml",
  4632. "lib/net45/System.Linq.Dynamic.Core.dll",
  4633. "lib/net45/System.Linq.Dynamic.Core.pdb",
  4634. "lib/net45/System.Linq.Dynamic.Core.xml",
  4635. "lib/net452/System.Linq.Dynamic.Core.dll",
  4636. "lib/net452/System.Linq.Dynamic.Core.pdb",
  4637. "lib/net452/System.Linq.Dynamic.Core.xml",
  4638. "lib/net46/System.Linq.Dynamic.Core.dll",
  4639. "lib/net46/System.Linq.Dynamic.Core.pdb",
  4640. "lib/net46/System.Linq.Dynamic.Core.xml",
  4641. "lib/net5.0/System.Linq.Dynamic.Core.dll",
  4642. "lib/net5.0/System.Linq.Dynamic.Core.pdb",
  4643. "lib/net5.0/System.Linq.Dynamic.Core.xml",
  4644. "lib/net6.0/System.Linq.Dynamic.Core.dll",
  4645. "lib/net6.0/System.Linq.Dynamic.Core.pdb",
  4646. "lib/net6.0/System.Linq.Dynamic.Core.xml",
  4647. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll",
  4648. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb",
  4649. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml",
  4650. "lib/netstandard1.3/System.Linq.Dynamic.Core.dll",
  4651. "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb",
  4652. "lib/netstandard1.3/System.Linq.Dynamic.Core.xml",
  4653. "lib/netstandard2.0/System.Linq.Dynamic.Core.dll",
  4654. "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb",
  4655. "lib/netstandard2.0/System.Linq.Dynamic.Core.xml",
  4656. "lib/netstandard2.1/System.Linq.Dynamic.Core.dll",
  4657. "lib/netstandard2.1/System.Linq.Dynamic.Core.pdb",
  4658. "lib/netstandard2.1/System.Linq.Dynamic.Core.xml",
  4659. "lib/uap10.0.10240/System.Linq.Dynamic.Core.dll",
  4660. "lib/uap10.0.10240/System.Linq.Dynamic.Core.pdb",
  4661. "lib/uap10.0.10240/System.Linq.Dynamic.Core.pri",
  4662. "lib/uap10.0.10240/System.Linq.Dynamic.Core.xml",
  4663. "system.linq.dynamic.core.1.2.18.nupkg.sha512",
  4664. "system.linq.dynamic.core.nuspec"
  4665. ]
  4666. },
  4667. "System.Linq.Expressions/4.3.0": {
  4668. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  4669. "type": "package",
  4670. "path": "system.linq.expressions/4.3.0",
  4671. "files": [
  4672. ".nupkg.metadata",
  4673. ".signature.p7s",
  4674. "ThirdPartyNotices.txt",
  4675. "dotnet_library_license.txt",
  4676. "lib/MonoAndroid10/_._",
  4677. "lib/MonoTouch10/_._",
  4678. "lib/net45/_._",
  4679. "lib/net463/System.Linq.Expressions.dll",
  4680. "lib/netcore50/System.Linq.Expressions.dll",
  4681. "lib/netstandard1.6/System.Linq.Expressions.dll",
  4682. "lib/portable-net45+win8+wp8+wpa81/_._",
  4683. "lib/win8/_._",
  4684. "lib/wp80/_._",
  4685. "lib/wpa81/_._",
  4686. "lib/xamarinios10/_._",
  4687. "lib/xamarinmac20/_._",
  4688. "lib/xamarintvos10/_._",
  4689. "lib/xamarinwatchos10/_._",
  4690. "ref/MonoAndroid10/_._",
  4691. "ref/MonoTouch10/_._",
  4692. "ref/net45/_._",
  4693. "ref/net463/System.Linq.Expressions.dll",
  4694. "ref/netcore50/System.Linq.Expressions.dll",
  4695. "ref/netcore50/System.Linq.Expressions.xml",
  4696. "ref/netcore50/de/System.Linq.Expressions.xml",
  4697. "ref/netcore50/es/System.Linq.Expressions.xml",
  4698. "ref/netcore50/fr/System.Linq.Expressions.xml",
  4699. "ref/netcore50/it/System.Linq.Expressions.xml",
  4700. "ref/netcore50/ja/System.Linq.Expressions.xml",
  4701. "ref/netcore50/ko/System.Linq.Expressions.xml",
  4702. "ref/netcore50/ru/System.Linq.Expressions.xml",
  4703. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  4704. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  4705. "ref/netstandard1.0/System.Linq.Expressions.dll",
  4706. "ref/netstandard1.0/System.Linq.Expressions.xml",
  4707. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  4708. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  4709. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  4710. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  4711. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  4712. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  4713. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  4714. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  4715. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  4716. "ref/netstandard1.3/System.Linq.Expressions.dll",
  4717. "ref/netstandard1.3/System.Linq.Expressions.xml",
  4718. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  4719. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  4720. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  4721. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  4722. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  4723. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  4724. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  4725. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  4726. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  4727. "ref/netstandard1.6/System.Linq.Expressions.dll",
  4728. "ref/netstandard1.6/System.Linq.Expressions.xml",
  4729. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  4730. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  4731. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  4732. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  4733. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  4734. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  4735. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  4736. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  4737. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  4738. "ref/portable-net45+win8+wp8+wpa81/_._",
  4739. "ref/win8/_._",
  4740. "ref/wp80/_._",
  4741. "ref/wpa81/_._",
  4742. "ref/xamarinios10/_._",
  4743. "ref/xamarinmac20/_._",
  4744. "ref/xamarintvos10/_._",
  4745. "ref/xamarinwatchos10/_._",
  4746. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  4747. "system.linq.expressions.4.3.0.nupkg.sha512",
  4748. "system.linq.expressions.nuspec"
  4749. ]
  4750. },
  4751. "System.Linq.Queryable/4.3.0": {
  4752. "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
  4753. "type": "package",
  4754. "path": "system.linq.queryable/4.3.0",
  4755. "files": [
  4756. ".nupkg.metadata",
  4757. ".signature.p7s",
  4758. "ThirdPartyNotices.txt",
  4759. "dotnet_library_license.txt",
  4760. "lib/monoandroid10/_._",
  4761. "lib/monotouch10/_._",
  4762. "lib/net45/_._",
  4763. "lib/netcore50/System.Linq.Queryable.dll",
  4764. "lib/netstandard1.3/System.Linq.Queryable.dll",
  4765. "lib/portable-net45+win8+wp8+wpa81/_._",
  4766. "lib/win8/_._",
  4767. "lib/wp80/_._",
  4768. "lib/wpa81/_._",
  4769. "lib/xamarinios10/_._",
  4770. "lib/xamarinmac20/_._",
  4771. "lib/xamarintvos10/_._",
  4772. "lib/xamarinwatchos10/_._",
  4773. "ref/monoandroid10/_._",
  4774. "ref/monotouch10/_._",
  4775. "ref/net45/_._",
  4776. "ref/netcore50/System.Linq.Queryable.dll",
  4777. "ref/netcore50/System.Linq.Queryable.xml",
  4778. "ref/netcore50/de/System.Linq.Queryable.xml",
  4779. "ref/netcore50/es/System.Linq.Queryable.xml",
  4780. "ref/netcore50/fr/System.Linq.Queryable.xml",
  4781. "ref/netcore50/it/System.Linq.Queryable.xml",
  4782. "ref/netcore50/ja/System.Linq.Queryable.xml",
  4783. "ref/netcore50/ko/System.Linq.Queryable.xml",
  4784. "ref/netcore50/ru/System.Linq.Queryable.xml",
  4785. "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
  4786. "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
  4787. "ref/netstandard1.0/System.Linq.Queryable.dll",
  4788. "ref/netstandard1.0/System.Linq.Queryable.xml",
  4789. "ref/netstandard1.0/de/System.Linq.Queryable.xml",
  4790. "ref/netstandard1.0/es/System.Linq.Queryable.xml",
  4791. "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
  4792. "ref/netstandard1.0/it/System.Linq.Queryable.xml",
  4793. "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
  4794. "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
  4795. "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
  4796. "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
  4797. "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
  4798. "ref/portable-net45+win8+wp8+wpa81/_._",
  4799. "ref/win8/_._",
  4800. "ref/wp80/_._",
  4801. "ref/wpa81/_._",
  4802. "ref/xamarinios10/_._",
  4803. "ref/xamarinmac20/_._",
  4804. "ref/xamarintvos10/_._",
  4805. "ref/xamarinwatchos10/_._",
  4806. "system.linq.queryable.4.3.0.nupkg.sha512",
  4807. "system.linq.queryable.nuspec"
  4808. ]
  4809. },
  4810. "System.Memory/4.5.4": {
  4811. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  4812. "type": "package",
  4813. "path": "system.memory/4.5.4",
  4814. "files": [
  4815. ".nupkg.metadata",
  4816. ".signature.p7s",
  4817. "LICENSE.TXT",
  4818. "THIRD-PARTY-NOTICES.TXT",
  4819. "lib/net461/System.Memory.dll",
  4820. "lib/net461/System.Memory.xml",
  4821. "lib/netcoreapp2.1/_._",
  4822. "lib/netstandard1.1/System.Memory.dll",
  4823. "lib/netstandard1.1/System.Memory.xml",
  4824. "lib/netstandard2.0/System.Memory.dll",
  4825. "lib/netstandard2.0/System.Memory.xml",
  4826. "ref/netcoreapp2.1/_._",
  4827. "system.memory.4.5.4.nupkg.sha512",
  4828. "system.memory.nuspec",
  4829. "useSharedDesignerContext.txt",
  4830. "version.txt"
  4831. ]
  4832. },
  4833. "System.ObjectModel/4.3.0": {
  4834. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  4835. "type": "package",
  4836. "path": "system.objectmodel/4.3.0",
  4837. "files": [
  4838. ".nupkg.metadata",
  4839. ".signature.p7s",
  4840. "ThirdPartyNotices.txt",
  4841. "dotnet_library_license.txt",
  4842. "lib/MonoAndroid10/_._",
  4843. "lib/MonoTouch10/_._",
  4844. "lib/net45/_._",
  4845. "lib/netcore50/System.ObjectModel.dll",
  4846. "lib/netstandard1.3/System.ObjectModel.dll",
  4847. "lib/portable-net45+win8+wp8+wpa81/_._",
  4848. "lib/win8/_._",
  4849. "lib/wp80/_._",
  4850. "lib/wpa81/_._",
  4851. "lib/xamarinios10/_._",
  4852. "lib/xamarinmac20/_._",
  4853. "lib/xamarintvos10/_._",
  4854. "lib/xamarinwatchos10/_._",
  4855. "ref/MonoAndroid10/_._",
  4856. "ref/MonoTouch10/_._",
  4857. "ref/net45/_._",
  4858. "ref/netcore50/System.ObjectModel.dll",
  4859. "ref/netcore50/System.ObjectModel.xml",
  4860. "ref/netcore50/de/System.ObjectModel.xml",
  4861. "ref/netcore50/es/System.ObjectModel.xml",
  4862. "ref/netcore50/fr/System.ObjectModel.xml",
  4863. "ref/netcore50/it/System.ObjectModel.xml",
  4864. "ref/netcore50/ja/System.ObjectModel.xml",
  4865. "ref/netcore50/ko/System.ObjectModel.xml",
  4866. "ref/netcore50/ru/System.ObjectModel.xml",
  4867. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  4868. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  4869. "ref/netstandard1.0/System.ObjectModel.dll",
  4870. "ref/netstandard1.0/System.ObjectModel.xml",
  4871. "ref/netstandard1.0/de/System.ObjectModel.xml",
  4872. "ref/netstandard1.0/es/System.ObjectModel.xml",
  4873. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  4874. "ref/netstandard1.0/it/System.ObjectModel.xml",
  4875. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  4876. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  4877. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  4878. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  4879. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  4880. "ref/netstandard1.3/System.ObjectModel.dll",
  4881. "ref/netstandard1.3/System.ObjectModel.xml",
  4882. "ref/netstandard1.3/de/System.ObjectModel.xml",
  4883. "ref/netstandard1.3/es/System.ObjectModel.xml",
  4884. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  4885. "ref/netstandard1.3/it/System.ObjectModel.xml",
  4886. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  4887. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  4888. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  4889. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  4890. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  4891. "ref/portable-net45+win8+wp8+wpa81/_._",
  4892. "ref/win8/_._",
  4893. "ref/wp80/_._",
  4894. "ref/wpa81/_._",
  4895. "ref/xamarinios10/_._",
  4896. "ref/xamarinmac20/_._",
  4897. "ref/xamarintvos10/_._",
  4898. "ref/xamarinwatchos10/_._",
  4899. "system.objectmodel.4.3.0.nupkg.sha512",
  4900. "system.objectmodel.nuspec"
  4901. ]
  4902. },
  4903. "System.Reflection/4.3.0": {
  4904. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  4905. "type": "package",
  4906. "path": "system.reflection/4.3.0",
  4907. "files": [
  4908. ".nupkg.metadata",
  4909. ".signature.p7s",
  4910. "ThirdPartyNotices.txt",
  4911. "dotnet_library_license.txt",
  4912. "lib/MonoAndroid10/_._",
  4913. "lib/MonoTouch10/_._",
  4914. "lib/net45/_._",
  4915. "lib/net462/System.Reflection.dll",
  4916. "lib/portable-net45+win8+wp8+wpa81/_._",
  4917. "lib/win8/_._",
  4918. "lib/wp80/_._",
  4919. "lib/wpa81/_._",
  4920. "lib/xamarinios10/_._",
  4921. "lib/xamarinmac20/_._",
  4922. "lib/xamarintvos10/_._",
  4923. "lib/xamarinwatchos10/_._",
  4924. "ref/MonoAndroid10/_._",
  4925. "ref/MonoTouch10/_._",
  4926. "ref/net45/_._",
  4927. "ref/net462/System.Reflection.dll",
  4928. "ref/netcore50/System.Reflection.dll",
  4929. "ref/netcore50/System.Reflection.xml",
  4930. "ref/netcore50/de/System.Reflection.xml",
  4931. "ref/netcore50/es/System.Reflection.xml",
  4932. "ref/netcore50/fr/System.Reflection.xml",
  4933. "ref/netcore50/it/System.Reflection.xml",
  4934. "ref/netcore50/ja/System.Reflection.xml",
  4935. "ref/netcore50/ko/System.Reflection.xml",
  4936. "ref/netcore50/ru/System.Reflection.xml",
  4937. "ref/netcore50/zh-hans/System.Reflection.xml",
  4938. "ref/netcore50/zh-hant/System.Reflection.xml",
  4939. "ref/netstandard1.0/System.Reflection.dll",
  4940. "ref/netstandard1.0/System.Reflection.xml",
  4941. "ref/netstandard1.0/de/System.Reflection.xml",
  4942. "ref/netstandard1.0/es/System.Reflection.xml",
  4943. "ref/netstandard1.0/fr/System.Reflection.xml",
  4944. "ref/netstandard1.0/it/System.Reflection.xml",
  4945. "ref/netstandard1.0/ja/System.Reflection.xml",
  4946. "ref/netstandard1.0/ko/System.Reflection.xml",
  4947. "ref/netstandard1.0/ru/System.Reflection.xml",
  4948. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  4949. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  4950. "ref/netstandard1.3/System.Reflection.dll",
  4951. "ref/netstandard1.3/System.Reflection.xml",
  4952. "ref/netstandard1.3/de/System.Reflection.xml",
  4953. "ref/netstandard1.3/es/System.Reflection.xml",
  4954. "ref/netstandard1.3/fr/System.Reflection.xml",
  4955. "ref/netstandard1.3/it/System.Reflection.xml",
  4956. "ref/netstandard1.3/ja/System.Reflection.xml",
  4957. "ref/netstandard1.3/ko/System.Reflection.xml",
  4958. "ref/netstandard1.3/ru/System.Reflection.xml",
  4959. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  4960. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  4961. "ref/netstandard1.5/System.Reflection.dll",
  4962. "ref/netstandard1.5/System.Reflection.xml",
  4963. "ref/netstandard1.5/de/System.Reflection.xml",
  4964. "ref/netstandard1.5/es/System.Reflection.xml",
  4965. "ref/netstandard1.5/fr/System.Reflection.xml",
  4966. "ref/netstandard1.5/it/System.Reflection.xml",
  4967. "ref/netstandard1.5/ja/System.Reflection.xml",
  4968. "ref/netstandard1.5/ko/System.Reflection.xml",
  4969. "ref/netstandard1.5/ru/System.Reflection.xml",
  4970. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  4971. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  4972. "ref/portable-net45+win8+wp8+wpa81/_._",
  4973. "ref/win8/_._",
  4974. "ref/wp80/_._",
  4975. "ref/wpa81/_._",
  4976. "ref/xamarinios10/_._",
  4977. "ref/xamarinmac20/_._",
  4978. "ref/xamarintvos10/_._",
  4979. "ref/xamarinwatchos10/_._",
  4980. "system.reflection.4.3.0.nupkg.sha512",
  4981. "system.reflection.nuspec"
  4982. ]
  4983. },
  4984. "System.Reflection.Emit/4.3.0": {
  4985. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  4986. "type": "package",
  4987. "path": "system.reflection.emit/4.3.0",
  4988. "files": [
  4989. ".nupkg.metadata",
  4990. "ThirdPartyNotices.txt",
  4991. "dotnet_library_license.txt",
  4992. "lib/MonoAndroid10/_._",
  4993. "lib/monotouch10/_._",
  4994. "lib/net45/_._",
  4995. "lib/netcore50/System.Reflection.Emit.dll",
  4996. "lib/netstandard1.3/System.Reflection.Emit.dll",
  4997. "lib/xamarinios10/_._",
  4998. "lib/xamarinmac20/_._",
  4999. "lib/xamarintvos10/_._",
  5000. "lib/xamarinwatchos10/_._",
  5001. "ref/MonoAndroid10/_._",
  5002. "ref/net45/_._",
  5003. "ref/netstandard1.1/System.Reflection.Emit.dll",
  5004. "ref/netstandard1.1/System.Reflection.Emit.xml",
  5005. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  5006. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  5007. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  5008. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  5009. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  5010. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  5011. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  5012. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  5013. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  5014. "ref/xamarinmac20/_._",
  5015. "system.reflection.emit.4.3.0.nupkg.sha512",
  5016. "system.reflection.emit.nuspec"
  5017. ]
  5018. },
  5019. "System.Reflection.Emit.ILGeneration/4.3.0": {
  5020. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  5021. "type": "package",
  5022. "path": "system.reflection.emit.ilgeneration/4.3.0",
  5023. "files": [
  5024. ".nupkg.metadata",
  5025. "ThirdPartyNotices.txt",
  5026. "dotnet_library_license.txt",
  5027. "lib/MonoAndroid10/_._",
  5028. "lib/MonoTouch10/_._",
  5029. "lib/net45/_._",
  5030. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  5031. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  5032. "lib/portable-net45+wp8/_._",
  5033. "lib/wp80/_._",
  5034. "lib/xamarinios10/_._",
  5035. "lib/xamarinmac20/_._",
  5036. "lib/xamarintvos10/_._",
  5037. "lib/xamarinwatchos10/_._",
  5038. "ref/MonoAndroid10/_._",
  5039. "ref/MonoTouch10/_._",
  5040. "ref/net45/_._",
  5041. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  5042. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  5043. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  5044. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  5045. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  5046. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  5047. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  5048. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  5049. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  5050. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  5051. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  5052. "ref/portable-net45+wp8/_._",
  5053. "ref/wp80/_._",
  5054. "ref/xamarinios10/_._",
  5055. "ref/xamarinmac20/_._",
  5056. "ref/xamarintvos10/_._",
  5057. "ref/xamarinwatchos10/_._",
  5058. "runtimes/aot/lib/netcore50/_._",
  5059. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  5060. "system.reflection.emit.ilgeneration.nuspec"
  5061. ]
  5062. },
  5063. "System.Reflection.Emit.Lightweight/4.3.0": {
  5064. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  5065. "type": "package",
  5066. "path": "system.reflection.emit.lightweight/4.3.0",
  5067. "files": [
  5068. ".nupkg.metadata",
  5069. "ThirdPartyNotices.txt",
  5070. "dotnet_library_license.txt",
  5071. "lib/MonoAndroid10/_._",
  5072. "lib/MonoTouch10/_._",
  5073. "lib/net45/_._",
  5074. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  5075. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  5076. "lib/portable-net45+wp8/_._",
  5077. "lib/wp80/_._",
  5078. "lib/xamarinios10/_._",
  5079. "lib/xamarinmac20/_._",
  5080. "lib/xamarintvos10/_._",
  5081. "lib/xamarinwatchos10/_._",
  5082. "ref/MonoAndroid10/_._",
  5083. "ref/MonoTouch10/_._",
  5084. "ref/net45/_._",
  5085. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  5086. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  5087. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  5088. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  5089. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  5090. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  5091. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  5092. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  5093. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  5094. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  5095. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  5096. "ref/portable-net45+wp8/_._",
  5097. "ref/wp80/_._",
  5098. "ref/xamarinios10/_._",
  5099. "ref/xamarinmac20/_._",
  5100. "ref/xamarintvos10/_._",
  5101. "ref/xamarinwatchos10/_._",
  5102. "runtimes/aot/lib/netcore50/_._",
  5103. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  5104. "system.reflection.emit.lightweight.nuspec"
  5105. ]
  5106. },
  5107. "System.Reflection.Extensions/4.3.0": {
  5108. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  5109. "type": "package",
  5110. "path": "system.reflection.extensions/4.3.0",
  5111. "files": [
  5112. ".nupkg.metadata",
  5113. ".signature.p7s",
  5114. "ThirdPartyNotices.txt",
  5115. "dotnet_library_license.txt",
  5116. "lib/MonoAndroid10/_._",
  5117. "lib/MonoTouch10/_._",
  5118. "lib/net45/_._",
  5119. "lib/portable-net45+win8+wp8+wpa81/_._",
  5120. "lib/win8/_._",
  5121. "lib/wp80/_._",
  5122. "lib/wpa81/_._",
  5123. "lib/xamarinios10/_._",
  5124. "lib/xamarinmac20/_._",
  5125. "lib/xamarintvos10/_._",
  5126. "lib/xamarinwatchos10/_._",
  5127. "ref/MonoAndroid10/_._",
  5128. "ref/MonoTouch10/_._",
  5129. "ref/net45/_._",
  5130. "ref/netcore50/System.Reflection.Extensions.dll",
  5131. "ref/netcore50/System.Reflection.Extensions.xml",
  5132. "ref/netcore50/de/System.Reflection.Extensions.xml",
  5133. "ref/netcore50/es/System.Reflection.Extensions.xml",
  5134. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  5135. "ref/netcore50/it/System.Reflection.Extensions.xml",
  5136. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  5137. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  5138. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  5139. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  5140. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  5141. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  5142. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  5143. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  5144. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  5145. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  5146. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  5147. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  5148. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  5149. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  5150. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  5151. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  5152. "ref/portable-net45+win8+wp8+wpa81/_._",
  5153. "ref/win8/_._",
  5154. "ref/wp80/_._",
  5155. "ref/wpa81/_._",
  5156. "ref/xamarinios10/_._",
  5157. "ref/xamarinmac20/_._",
  5158. "ref/xamarintvos10/_._",
  5159. "ref/xamarinwatchos10/_._",
  5160. "system.reflection.extensions.4.3.0.nupkg.sha512",
  5161. "system.reflection.extensions.nuspec"
  5162. ]
  5163. },
  5164. "System.Reflection.Primitives/4.3.0": {
  5165. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  5166. "type": "package",
  5167. "path": "system.reflection.primitives/4.3.0",
  5168. "files": [
  5169. ".nupkg.metadata",
  5170. ".signature.p7s",
  5171. "ThirdPartyNotices.txt",
  5172. "dotnet_library_license.txt",
  5173. "lib/MonoAndroid10/_._",
  5174. "lib/MonoTouch10/_._",
  5175. "lib/net45/_._",
  5176. "lib/portable-net45+win8+wp8+wpa81/_._",
  5177. "lib/win8/_._",
  5178. "lib/wp80/_._",
  5179. "lib/wpa81/_._",
  5180. "lib/xamarinios10/_._",
  5181. "lib/xamarinmac20/_._",
  5182. "lib/xamarintvos10/_._",
  5183. "lib/xamarinwatchos10/_._",
  5184. "ref/MonoAndroid10/_._",
  5185. "ref/MonoTouch10/_._",
  5186. "ref/net45/_._",
  5187. "ref/netcore50/System.Reflection.Primitives.dll",
  5188. "ref/netcore50/System.Reflection.Primitives.xml",
  5189. "ref/netcore50/de/System.Reflection.Primitives.xml",
  5190. "ref/netcore50/es/System.Reflection.Primitives.xml",
  5191. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  5192. "ref/netcore50/it/System.Reflection.Primitives.xml",
  5193. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  5194. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  5195. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  5196. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  5197. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  5198. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  5199. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  5200. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  5201. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  5202. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  5203. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  5204. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  5205. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  5206. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  5207. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  5208. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  5209. "ref/portable-net45+win8+wp8+wpa81/_._",
  5210. "ref/win8/_._",
  5211. "ref/wp80/_._",
  5212. "ref/wpa81/_._",
  5213. "ref/xamarinios10/_._",
  5214. "ref/xamarinmac20/_._",
  5215. "ref/xamarintvos10/_._",
  5216. "ref/xamarinwatchos10/_._",
  5217. "system.reflection.primitives.4.3.0.nupkg.sha512",
  5218. "system.reflection.primitives.nuspec"
  5219. ]
  5220. },
  5221. "System.Reflection.TypeExtensions/4.3.0": {
  5222. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  5223. "type": "package",
  5224. "path": "system.reflection.typeextensions/4.3.0",
  5225. "files": [
  5226. ".nupkg.metadata",
  5227. "ThirdPartyNotices.txt",
  5228. "dotnet_library_license.txt",
  5229. "lib/MonoAndroid10/_._",
  5230. "lib/MonoTouch10/_._",
  5231. "lib/net46/System.Reflection.TypeExtensions.dll",
  5232. "lib/net462/System.Reflection.TypeExtensions.dll",
  5233. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  5234. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5235. "lib/xamarinios10/_._",
  5236. "lib/xamarinmac20/_._",
  5237. "lib/xamarintvos10/_._",
  5238. "lib/xamarinwatchos10/_._",
  5239. "ref/MonoAndroid10/_._",
  5240. "ref/MonoTouch10/_._",
  5241. "ref/net46/System.Reflection.TypeExtensions.dll",
  5242. "ref/net462/System.Reflection.TypeExtensions.dll",
  5243. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  5244. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  5245. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  5246. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  5247. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  5248. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  5249. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  5250. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  5251. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  5252. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  5253. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  5254. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  5255. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  5256. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  5257. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  5258. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  5259. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  5260. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  5261. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  5262. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  5263. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  5264. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  5265. "ref/xamarinios10/_._",
  5266. "ref/xamarinmac20/_._",
  5267. "ref/xamarintvos10/_._",
  5268. "ref/xamarinwatchos10/_._",
  5269. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  5270. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  5271. "system.reflection.typeextensions.nuspec"
  5272. ]
  5273. },
  5274. "System.Resources.ResourceManager/4.3.0": {
  5275. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  5276. "type": "package",
  5277. "path": "system.resources.resourcemanager/4.3.0",
  5278. "files": [
  5279. ".nupkg.metadata",
  5280. ".signature.p7s",
  5281. "ThirdPartyNotices.txt",
  5282. "dotnet_library_license.txt",
  5283. "lib/MonoAndroid10/_._",
  5284. "lib/MonoTouch10/_._",
  5285. "lib/net45/_._",
  5286. "lib/portable-net45+win8+wp8+wpa81/_._",
  5287. "lib/win8/_._",
  5288. "lib/wp80/_._",
  5289. "lib/wpa81/_._",
  5290. "lib/xamarinios10/_._",
  5291. "lib/xamarinmac20/_._",
  5292. "lib/xamarintvos10/_._",
  5293. "lib/xamarinwatchos10/_._",
  5294. "ref/MonoAndroid10/_._",
  5295. "ref/MonoTouch10/_._",
  5296. "ref/net45/_._",
  5297. "ref/netcore50/System.Resources.ResourceManager.dll",
  5298. "ref/netcore50/System.Resources.ResourceManager.xml",
  5299. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  5300. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  5301. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  5302. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  5303. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  5304. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  5305. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  5306. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  5307. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  5308. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  5309. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  5310. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  5311. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  5312. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  5313. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  5314. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  5315. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  5316. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  5317. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  5318. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  5319. "ref/portable-net45+win8+wp8+wpa81/_._",
  5320. "ref/win8/_._",
  5321. "ref/wp80/_._",
  5322. "ref/wpa81/_._",
  5323. "ref/xamarinios10/_._",
  5324. "ref/xamarinmac20/_._",
  5325. "ref/xamarintvos10/_._",
  5326. "ref/xamarinwatchos10/_._",
  5327. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  5328. "system.resources.resourcemanager.nuspec"
  5329. ]
  5330. },
  5331. "System.Runtime/4.3.0": {
  5332. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  5333. "type": "package",
  5334. "path": "system.runtime/4.3.0",
  5335. "files": [
  5336. ".nupkg.metadata",
  5337. ".signature.p7s",
  5338. "ThirdPartyNotices.txt",
  5339. "dotnet_library_license.txt",
  5340. "lib/MonoAndroid10/_._",
  5341. "lib/MonoTouch10/_._",
  5342. "lib/net45/_._",
  5343. "lib/net462/System.Runtime.dll",
  5344. "lib/portable-net45+win8+wp80+wpa81/_._",
  5345. "lib/win8/_._",
  5346. "lib/wp80/_._",
  5347. "lib/wpa81/_._",
  5348. "lib/xamarinios10/_._",
  5349. "lib/xamarinmac20/_._",
  5350. "lib/xamarintvos10/_._",
  5351. "lib/xamarinwatchos10/_._",
  5352. "ref/MonoAndroid10/_._",
  5353. "ref/MonoTouch10/_._",
  5354. "ref/net45/_._",
  5355. "ref/net462/System.Runtime.dll",
  5356. "ref/netcore50/System.Runtime.dll",
  5357. "ref/netcore50/System.Runtime.xml",
  5358. "ref/netcore50/de/System.Runtime.xml",
  5359. "ref/netcore50/es/System.Runtime.xml",
  5360. "ref/netcore50/fr/System.Runtime.xml",
  5361. "ref/netcore50/it/System.Runtime.xml",
  5362. "ref/netcore50/ja/System.Runtime.xml",
  5363. "ref/netcore50/ko/System.Runtime.xml",
  5364. "ref/netcore50/ru/System.Runtime.xml",
  5365. "ref/netcore50/zh-hans/System.Runtime.xml",
  5366. "ref/netcore50/zh-hant/System.Runtime.xml",
  5367. "ref/netstandard1.0/System.Runtime.dll",
  5368. "ref/netstandard1.0/System.Runtime.xml",
  5369. "ref/netstandard1.0/de/System.Runtime.xml",
  5370. "ref/netstandard1.0/es/System.Runtime.xml",
  5371. "ref/netstandard1.0/fr/System.Runtime.xml",
  5372. "ref/netstandard1.0/it/System.Runtime.xml",
  5373. "ref/netstandard1.0/ja/System.Runtime.xml",
  5374. "ref/netstandard1.0/ko/System.Runtime.xml",
  5375. "ref/netstandard1.0/ru/System.Runtime.xml",
  5376. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  5377. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  5378. "ref/netstandard1.2/System.Runtime.dll",
  5379. "ref/netstandard1.2/System.Runtime.xml",
  5380. "ref/netstandard1.2/de/System.Runtime.xml",
  5381. "ref/netstandard1.2/es/System.Runtime.xml",
  5382. "ref/netstandard1.2/fr/System.Runtime.xml",
  5383. "ref/netstandard1.2/it/System.Runtime.xml",
  5384. "ref/netstandard1.2/ja/System.Runtime.xml",
  5385. "ref/netstandard1.2/ko/System.Runtime.xml",
  5386. "ref/netstandard1.2/ru/System.Runtime.xml",
  5387. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  5388. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  5389. "ref/netstandard1.3/System.Runtime.dll",
  5390. "ref/netstandard1.3/System.Runtime.xml",
  5391. "ref/netstandard1.3/de/System.Runtime.xml",
  5392. "ref/netstandard1.3/es/System.Runtime.xml",
  5393. "ref/netstandard1.3/fr/System.Runtime.xml",
  5394. "ref/netstandard1.3/it/System.Runtime.xml",
  5395. "ref/netstandard1.3/ja/System.Runtime.xml",
  5396. "ref/netstandard1.3/ko/System.Runtime.xml",
  5397. "ref/netstandard1.3/ru/System.Runtime.xml",
  5398. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  5399. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  5400. "ref/netstandard1.5/System.Runtime.dll",
  5401. "ref/netstandard1.5/System.Runtime.xml",
  5402. "ref/netstandard1.5/de/System.Runtime.xml",
  5403. "ref/netstandard1.5/es/System.Runtime.xml",
  5404. "ref/netstandard1.5/fr/System.Runtime.xml",
  5405. "ref/netstandard1.5/it/System.Runtime.xml",
  5406. "ref/netstandard1.5/ja/System.Runtime.xml",
  5407. "ref/netstandard1.5/ko/System.Runtime.xml",
  5408. "ref/netstandard1.5/ru/System.Runtime.xml",
  5409. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  5410. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  5411. "ref/portable-net45+win8+wp80+wpa81/_._",
  5412. "ref/win8/_._",
  5413. "ref/wp80/_._",
  5414. "ref/wpa81/_._",
  5415. "ref/xamarinios10/_._",
  5416. "ref/xamarinmac20/_._",
  5417. "ref/xamarintvos10/_._",
  5418. "ref/xamarinwatchos10/_._",
  5419. "system.runtime.4.3.0.nupkg.sha512",
  5420. "system.runtime.nuspec"
  5421. ]
  5422. },
  5423. "System.Runtime.Caching/4.7.0": {
  5424. "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  5425. "type": "package",
  5426. "path": "system.runtime.caching/4.7.0",
  5427. "files": [
  5428. ".nupkg.metadata",
  5429. ".signature.p7s",
  5430. "LICENSE.TXT",
  5431. "THIRD-PARTY-NOTICES.TXT",
  5432. "lib/MonoAndroid10/_._",
  5433. "lib/MonoTouch10/_._",
  5434. "lib/net45/_._",
  5435. "lib/netstandard2.0/System.Runtime.Caching.dll",
  5436. "lib/netstandard2.0/System.Runtime.Caching.xml",
  5437. "lib/xamarinios10/_._",
  5438. "lib/xamarinmac20/_._",
  5439. "lib/xamarintvos10/_._",
  5440. "lib/xamarinwatchos10/_._",
  5441. "ref/MonoAndroid10/_._",
  5442. "ref/MonoTouch10/_._",
  5443. "ref/net45/_._",
  5444. "ref/netstandard2.0/System.Runtime.Caching.dll",
  5445. "ref/netstandard2.0/System.Runtime.Caching.xml",
  5446. "ref/xamarinios10/_._",
  5447. "ref/xamarinmac20/_._",
  5448. "ref/xamarintvos10/_._",
  5449. "ref/xamarinwatchos10/_._",
  5450. "runtimes/win/lib/net45/_._",
  5451. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  5452. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  5453. "system.runtime.caching.4.7.0.nupkg.sha512",
  5454. "system.runtime.caching.nuspec",
  5455. "useSharedDesignerContext.txt",
  5456. "version.txt"
  5457. ]
  5458. },
  5459. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  5460. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  5461. "type": "package",
  5462. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  5463. "files": [
  5464. ".nupkg.metadata",
  5465. ".signature.p7s",
  5466. "Icon.png",
  5467. "LICENSE.TXT",
  5468. "THIRD-PARTY-NOTICES.TXT",
  5469. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  5470. "buildTransitive/netcoreapp3.1/_._",
  5471. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  5472. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  5473. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  5474. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  5475. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  5476. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  5477. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  5478. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  5479. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  5480. "system.runtime.compilerservices.unsafe.nuspec",
  5481. "useSharedDesignerContext.txt"
  5482. ]
  5483. },
  5484. "System.Runtime.Extensions/4.3.0": {
  5485. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  5486. "type": "package",
  5487. "path": "system.runtime.extensions/4.3.0",
  5488. "files": [
  5489. ".nupkg.metadata",
  5490. ".signature.p7s",
  5491. "ThirdPartyNotices.txt",
  5492. "dotnet_library_license.txt",
  5493. "lib/MonoAndroid10/_._",
  5494. "lib/MonoTouch10/_._",
  5495. "lib/net45/_._",
  5496. "lib/net462/System.Runtime.Extensions.dll",
  5497. "lib/portable-net45+win8+wp8+wpa81/_._",
  5498. "lib/win8/_._",
  5499. "lib/wp80/_._",
  5500. "lib/wpa81/_._",
  5501. "lib/xamarinios10/_._",
  5502. "lib/xamarinmac20/_._",
  5503. "lib/xamarintvos10/_._",
  5504. "lib/xamarinwatchos10/_._",
  5505. "ref/MonoAndroid10/_._",
  5506. "ref/MonoTouch10/_._",
  5507. "ref/net45/_._",
  5508. "ref/net462/System.Runtime.Extensions.dll",
  5509. "ref/netcore50/System.Runtime.Extensions.dll",
  5510. "ref/netcore50/System.Runtime.Extensions.xml",
  5511. "ref/netcore50/de/System.Runtime.Extensions.xml",
  5512. "ref/netcore50/es/System.Runtime.Extensions.xml",
  5513. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  5514. "ref/netcore50/it/System.Runtime.Extensions.xml",
  5515. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  5516. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  5517. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  5518. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  5519. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  5520. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  5521. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  5522. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  5523. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  5524. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  5525. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  5526. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  5527. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  5528. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  5529. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  5530. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  5531. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  5532. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  5533. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  5534. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  5535. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  5536. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  5537. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  5538. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  5539. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  5540. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  5541. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  5542. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  5543. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  5544. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  5545. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  5546. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  5547. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  5548. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  5549. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  5550. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  5551. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  5552. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  5553. "ref/portable-net45+win8+wp8+wpa81/_._",
  5554. "ref/win8/_._",
  5555. "ref/wp80/_._",
  5556. "ref/wpa81/_._",
  5557. "ref/xamarinios10/_._",
  5558. "ref/xamarinmac20/_._",
  5559. "ref/xamarintvos10/_._",
  5560. "ref/xamarinwatchos10/_._",
  5561. "system.runtime.extensions.4.3.0.nupkg.sha512",
  5562. "system.runtime.extensions.nuspec"
  5563. ]
  5564. },
  5565. "System.Runtime.Loader/4.3.0": {
  5566. "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  5567. "type": "package",
  5568. "path": "system.runtime.loader/4.3.0",
  5569. "files": [
  5570. ".nupkg.metadata",
  5571. ".signature.p7s",
  5572. "ThirdPartyNotices.txt",
  5573. "dotnet_library_license.txt",
  5574. "lib/MonoAndroid10/_._",
  5575. "lib/MonoTouch10/_._",
  5576. "lib/net462/_._",
  5577. "lib/netstandard1.5/System.Runtime.Loader.dll",
  5578. "lib/xamarinios10/_._",
  5579. "lib/xamarinmac20/_._",
  5580. "lib/xamarintvos10/_._",
  5581. "lib/xamarinwatchos10/_._",
  5582. "ref/netstandard1.5/System.Runtime.Loader.dll",
  5583. "ref/netstandard1.5/System.Runtime.Loader.xml",
  5584. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  5585. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  5586. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  5587. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  5588. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  5589. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  5590. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  5591. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  5592. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
  5593. "system.runtime.loader.4.3.0.nupkg.sha512",
  5594. "system.runtime.loader.nuspec"
  5595. ]
  5596. },
  5597. "System.Security.AccessControl/4.7.0": {
  5598. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  5599. "type": "package",
  5600. "path": "system.security.accesscontrol/4.7.0",
  5601. "files": [
  5602. ".nupkg.metadata",
  5603. ".signature.p7s",
  5604. "LICENSE.TXT",
  5605. "THIRD-PARTY-NOTICES.TXT",
  5606. "lib/net46/System.Security.AccessControl.dll",
  5607. "lib/net461/System.Security.AccessControl.dll",
  5608. "lib/net461/System.Security.AccessControl.xml",
  5609. "lib/netstandard1.3/System.Security.AccessControl.dll",
  5610. "lib/netstandard2.0/System.Security.AccessControl.dll",
  5611. "lib/netstandard2.0/System.Security.AccessControl.xml",
  5612. "lib/uap10.0.16299/_._",
  5613. "ref/net46/System.Security.AccessControl.dll",
  5614. "ref/net461/System.Security.AccessControl.dll",
  5615. "ref/net461/System.Security.AccessControl.xml",
  5616. "ref/netstandard1.3/System.Security.AccessControl.dll",
  5617. "ref/netstandard1.3/System.Security.AccessControl.xml",
  5618. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  5619. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  5620. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  5621. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  5622. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  5623. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  5624. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  5625. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  5626. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  5627. "ref/netstandard2.0/System.Security.AccessControl.dll",
  5628. "ref/netstandard2.0/System.Security.AccessControl.xml",
  5629. "ref/uap10.0.16299/_._",
  5630. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  5631. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  5632. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  5633. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  5634. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  5635. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  5636. "runtimes/win/lib/uap10.0.16299/_._",
  5637. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  5638. "system.security.accesscontrol.nuspec",
  5639. "useSharedDesignerContext.txt",
  5640. "version.txt"
  5641. ]
  5642. },
  5643. "System.Security.Cryptography.Cng/4.5.0": {
  5644. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  5645. "type": "package",
  5646. "path": "system.security.cryptography.cng/4.5.0",
  5647. "files": [
  5648. ".nupkg.metadata",
  5649. ".signature.p7s",
  5650. "LICENSE.TXT",
  5651. "THIRD-PARTY-NOTICES.TXT",
  5652. "lib/MonoAndroid10/_._",
  5653. "lib/MonoTouch10/_._",
  5654. "lib/net46/System.Security.Cryptography.Cng.dll",
  5655. "lib/net461/System.Security.Cryptography.Cng.dll",
  5656. "lib/net462/System.Security.Cryptography.Cng.dll",
  5657. "lib/net47/System.Security.Cryptography.Cng.dll",
  5658. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  5659. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  5660. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5661. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5662. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  5663. "lib/uap10.0.16299/_._",
  5664. "lib/xamarinios10/_._",
  5665. "lib/xamarinmac20/_._",
  5666. "lib/xamarintvos10/_._",
  5667. "lib/xamarinwatchos10/_._",
  5668. "ref/MonoAndroid10/_._",
  5669. "ref/MonoTouch10/_._",
  5670. "ref/net46/System.Security.Cryptography.Cng.dll",
  5671. "ref/net461/System.Security.Cryptography.Cng.dll",
  5672. "ref/net461/System.Security.Cryptography.Cng.xml",
  5673. "ref/net462/System.Security.Cryptography.Cng.dll",
  5674. "ref/net462/System.Security.Cryptography.Cng.xml",
  5675. "ref/net47/System.Security.Cryptography.Cng.dll",
  5676. "ref/net47/System.Security.Cryptography.Cng.xml",
  5677. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  5678. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  5679. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  5680. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  5681. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  5682. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5683. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5684. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  5685. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  5686. "ref/uap10.0.16299/_._",
  5687. "ref/xamarinios10/_._",
  5688. "ref/xamarinmac20/_._",
  5689. "ref/xamarintvos10/_._",
  5690. "ref/xamarinwatchos10/_._",
  5691. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  5692. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  5693. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  5694. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  5695. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  5696. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  5697. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5698. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5699. "runtimes/win/lib/uap10.0.16299/_._",
  5700. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  5701. "system.security.cryptography.cng.nuspec",
  5702. "useSharedDesignerContext.txt",
  5703. "version.txt"
  5704. ]
  5705. },
  5706. "System.Security.Cryptography.ProtectedData/4.7.0": {
  5707. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  5708. "type": "package",
  5709. "path": "system.security.cryptography.protecteddata/4.7.0",
  5710. "files": [
  5711. ".nupkg.metadata",
  5712. ".signature.p7s",
  5713. "LICENSE.TXT",
  5714. "THIRD-PARTY-NOTICES.TXT",
  5715. "lib/MonoAndroid10/_._",
  5716. "lib/MonoTouch10/_._",
  5717. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  5718. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  5719. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  5720. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5721. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5722. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  5723. "lib/xamarinios10/_._",
  5724. "lib/xamarinmac20/_._",
  5725. "lib/xamarintvos10/_._",
  5726. "lib/xamarinwatchos10/_._",
  5727. "ref/MonoAndroid10/_._",
  5728. "ref/MonoTouch10/_._",
  5729. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  5730. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  5731. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  5732. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5733. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5734. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  5735. "ref/xamarinios10/_._",
  5736. "ref/xamarinmac20/_._",
  5737. "ref/xamarintvos10/_._",
  5738. "ref/xamarinwatchos10/_._",
  5739. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  5740. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  5741. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  5742. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  5743. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  5744. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  5745. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  5746. "system.security.cryptography.protecteddata.nuspec",
  5747. "useSharedDesignerContext.txt",
  5748. "version.txt"
  5749. ]
  5750. },
  5751. "System.Security.Permissions/4.7.0": {
  5752. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  5753. "type": "package",
  5754. "path": "system.security.permissions/4.7.0",
  5755. "files": [
  5756. ".nupkg.metadata",
  5757. ".signature.p7s",
  5758. "LICENSE.TXT",
  5759. "THIRD-PARTY-NOTICES.TXT",
  5760. "lib/net461/System.Security.Permissions.dll",
  5761. "lib/net461/System.Security.Permissions.xml",
  5762. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  5763. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  5764. "lib/netstandard2.0/System.Security.Permissions.dll",
  5765. "lib/netstandard2.0/System.Security.Permissions.xml",
  5766. "ref/net461/System.Security.Permissions.dll",
  5767. "ref/net461/System.Security.Permissions.xml",
  5768. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  5769. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  5770. "ref/netstandard2.0/System.Security.Permissions.dll",
  5771. "ref/netstandard2.0/System.Security.Permissions.xml",
  5772. "system.security.permissions.4.7.0.nupkg.sha512",
  5773. "system.security.permissions.nuspec",
  5774. "useSharedDesignerContext.txt",
  5775. "version.txt"
  5776. ]
  5777. },
  5778. "System.Security.Principal.Windows/4.7.0": {
  5779. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  5780. "type": "package",
  5781. "path": "system.security.principal.windows/4.7.0",
  5782. "files": [
  5783. ".nupkg.metadata",
  5784. ".signature.p7s",
  5785. "LICENSE.TXT",
  5786. "THIRD-PARTY-NOTICES.TXT",
  5787. "lib/net46/System.Security.Principal.Windows.dll",
  5788. "lib/net461/System.Security.Principal.Windows.dll",
  5789. "lib/net461/System.Security.Principal.Windows.xml",
  5790. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  5791. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  5792. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  5793. "lib/uap10.0.16299/_._",
  5794. "ref/net46/System.Security.Principal.Windows.dll",
  5795. "ref/net461/System.Security.Principal.Windows.dll",
  5796. "ref/net461/System.Security.Principal.Windows.xml",
  5797. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  5798. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  5799. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  5800. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  5801. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  5802. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  5803. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  5804. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  5805. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  5806. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  5807. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  5808. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  5809. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  5810. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  5811. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  5812. "ref/uap10.0.16299/_._",
  5813. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  5814. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  5815. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  5816. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  5817. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  5818. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  5819. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  5820. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  5821. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  5822. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  5823. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  5824. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  5825. "runtimes/win/lib/uap10.0.16299/_._",
  5826. "system.security.principal.windows.4.7.0.nupkg.sha512",
  5827. "system.security.principal.windows.nuspec",
  5828. "useSharedDesignerContext.txt",
  5829. "version.txt"
  5830. ]
  5831. },
  5832. "System.Text.Encoding/4.3.0": {
  5833. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  5834. "type": "package",
  5835. "path": "system.text.encoding/4.3.0",
  5836. "files": [
  5837. ".nupkg.metadata",
  5838. ".signature.p7s",
  5839. "ThirdPartyNotices.txt",
  5840. "dotnet_library_license.txt",
  5841. "lib/MonoAndroid10/_._",
  5842. "lib/MonoTouch10/_._",
  5843. "lib/net45/_._",
  5844. "lib/portable-net45+win8+wp8+wpa81/_._",
  5845. "lib/win8/_._",
  5846. "lib/wp80/_._",
  5847. "lib/wpa81/_._",
  5848. "lib/xamarinios10/_._",
  5849. "lib/xamarinmac20/_._",
  5850. "lib/xamarintvos10/_._",
  5851. "lib/xamarinwatchos10/_._",
  5852. "ref/MonoAndroid10/_._",
  5853. "ref/MonoTouch10/_._",
  5854. "ref/net45/_._",
  5855. "ref/netcore50/System.Text.Encoding.dll",
  5856. "ref/netcore50/System.Text.Encoding.xml",
  5857. "ref/netcore50/de/System.Text.Encoding.xml",
  5858. "ref/netcore50/es/System.Text.Encoding.xml",
  5859. "ref/netcore50/fr/System.Text.Encoding.xml",
  5860. "ref/netcore50/it/System.Text.Encoding.xml",
  5861. "ref/netcore50/ja/System.Text.Encoding.xml",
  5862. "ref/netcore50/ko/System.Text.Encoding.xml",
  5863. "ref/netcore50/ru/System.Text.Encoding.xml",
  5864. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  5865. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  5866. "ref/netstandard1.0/System.Text.Encoding.dll",
  5867. "ref/netstandard1.0/System.Text.Encoding.xml",
  5868. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  5869. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  5870. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  5871. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  5872. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  5873. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  5874. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  5875. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  5876. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  5877. "ref/netstandard1.3/System.Text.Encoding.dll",
  5878. "ref/netstandard1.3/System.Text.Encoding.xml",
  5879. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  5880. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  5881. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  5882. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  5883. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  5884. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  5885. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  5886. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  5887. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  5888. "ref/portable-net45+win8+wp8+wpa81/_._",
  5889. "ref/win8/_._",
  5890. "ref/wp80/_._",
  5891. "ref/wpa81/_._",
  5892. "ref/xamarinios10/_._",
  5893. "ref/xamarinmac20/_._",
  5894. "ref/xamarintvos10/_._",
  5895. "ref/xamarinwatchos10/_._",
  5896. "system.text.encoding.4.3.0.nupkg.sha512",
  5897. "system.text.encoding.nuspec"
  5898. ]
  5899. },
  5900. "System.Text.Encoding.CodePages/4.7.0": {
  5901. "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  5902. "type": "package",
  5903. "path": "system.text.encoding.codepages/4.7.0",
  5904. "files": [
  5905. ".nupkg.metadata",
  5906. ".signature.p7s",
  5907. "LICENSE.TXT",
  5908. "THIRD-PARTY-NOTICES.TXT",
  5909. "lib/MonoAndroid10/_._",
  5910. "lib/MonoTouch10/_._",
  5911. "lib/net46/System.Text.Encoding.CodePages.dll",
  5912. "lib/net461/System.Text.Encoding.CodePages.dll",
  5913. "lib/net461/System.Text.Encoding.CodePages.xml",
  5914. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  5915. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  5916. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  5917. "lib/xamarinios10/_._",
  5918. "lib/xamarinmac20/_._",
  5919. "lib/xamarintvos10/_._",
  5920. "lib/xamarinwatchos10/_._",
  5921. "ref/MonoAndroid10/_._",
  5922. "ref/MonoTouch10/_._",
  5923. "ref/xamarinios10/_._",
  5924. "ref/xamarinmac20/_._",
  5925. "ref/xamarintvos10/_._",
  5926. "ref/xamarinwatchos10/_._",
  5927. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  5928. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  5929. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  5930. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  5931. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  5932. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  5933. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  5934. "system.text.encoding.codepages.4.7.0.nupkg.sha512",
  5935. "system.text.encoding.codepages.nuspec",
  5936. "useSharedDesignerContext.txt",
  5937. "version.txt"
  5938. ]
  5939. },
  5940. "System.Text.Encodings.Web/6.0.0": {
  5941. "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
  5942. "type": "package",
  5943. "path": "system.text.encodings.web/6.0.0",
  5944. "files": [
  5945. ".nupkg.metadata",
  5946. ".signature.p7s",
  5947. "Icon.png",
  5948. "LICENSE.TXT",
  5949. "THIRD-PARTY-NOTICES.TXT",
  5950. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  5951. "buildTransitive/netcoreapp3.1/_._",
  5952. "lib/net461/System.Text.Encodings.Web.dll",
  5953. "lib/net461/System.Text.Encodings.Web.xml",
  5954. "lib/net6.0/System.Text.Encodings.Web.dll",
  5955. "lib/net6.0/System.Text.Encodings.Web.xml",
  5956. "lib/netcoreapp3.1/System.Text.Encodings.Web.dll",
  5957. "lib/netcoreapp3.1/System.Text.Encodings.Web.xml",
  5958. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  5959. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  5960. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  5961. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  5962. "system.text.encodings.web.6.0.0.nupkg.sha512",
  5963. "system.text.encodings.web.nuspec",
  5964. "useSharedDesignerContext.txt"
  5965. ]
  5966. },
  5967. "System.Text.Json/6.0.0": {
  5968. "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==",
  5969. "type": "package",
  5970. "path": "system.text.json/6.0.0",
  5971. "files": [
  5972. ".nupkg.metadata",
  5973. ".signature.p7s",
  5974. "Icon.png",
  5975. "LICENSE.TXT",
  5976. "THIRD-PARTY-NOTICES.TXT",
  5977. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  5978. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  5979. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  5980. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  5981. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  5982. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  5983. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  5984. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  5985. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  5986. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  5987. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  5988. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  5989. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  5990. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  5991. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  5992. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  5993. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  5994. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  5995. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  5996. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  5997. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  5998. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  5999. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  6000. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  6001. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  6002. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  6003. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  6004. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  6005. "build/System.Text.Json.targets",
  6006. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  6007. "buildTransitive/netcoreapp3.1/_._",
  6008. "lib/net461/System.Text.Json.dll",
  6009. "lib/net461/System.Text.Json.xml",
  6010. "lib/net6.0/System.Text.Json.dll",
  6011. "lib/net6.0/System.Text.Json.xml",
  6012. "lib/netcoreapp3.1/System.Text.Json.dll",
  6013. "lib/netcoreapp3.1/System.Text.Json.xml",
  6014. "lib/netstandard2.0/System.Text.Json.dll",
  6015. "lib/netstandard2.0/System.Text.Json.xml",
  6016. "system.text.json.6.0.0.nupkg.sha512",
  6017. "system.text.json.nuspec",
  6018. "useSharedDesignerContext.txt"
  6019. ]
  6020. },
  6021. "System.Threading/4.3.0": {
  6022. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  6023. "type": "package",
  6024. "path": "system.threading/4.3.0",
  6025. "files": [
  6026. ".nupkg.metadata",
  6027. ".signature.p7s",
  6028. "ThirdPartyNotices.txt",
  6029. "dotnet_library_license.txt",
  6030. "lib/MonoAndroid10/_._",
  6031. "lib/MonoTouch10/_._",
  6032. "lib/net45/_._",
  6033. "lib/netcore50/System.Threading.dll",
  6034. "lib/netstandard1.3/System.Threading.dll",
  6035. "lib/portable-net45+win8+wp8+wpa81/_._",
  6036. "lib/win8/_._",
  6037. "lib/wp80/_._",
  6038. "lib/wpa81/_._",
  6039. "lib/xamarinios10/_._",
  6040. "lib/xamarinmac20/_._",
  6041. "lib/xamarintvos10/_._",
  6042. "lib/xamarinwatchos10/_._",
  6043. "ref/MonoAndroid10/_._",
  6044. "ref/MonoTouch10/_._",
  6045. "ref/net45/_._",
  6046. "ref/netcore50/System.Threading.dll",
  6047. "ref/netcore50/System.Threading.xml",
  6048. "ref/netcore50/de/System.Threading.xml",
  6049. "ref/netcore50/es/System.Threading.xml",
  6050. "ref/netcore50/fr/System.Threading.xml",
  6051. "ref/netcore50/it/System.Threading.xml",
  6052. "ref/netcore50/ja/System.Threading.xml",
  6053. "ref/netcore50/ko/System.Threading.xml",
  6054. "ref/netcore50/ru/System.Threading.xml",
  6055. "ref/netcore50/zh-hans/System.Threading.xml",
  6056. "ref/netcore50/zh-hant/System.Threading.xml",
  6057. "ref/netstandard1.0/System.Threading.dll",
  6058. "ref/netstandard1.0/System.Threading.xml",
  6059. "ref/netstandard1.0/de/System.Threading.xml",
  6060. "ref/netstandard1.0/es/System.Threading.xml",
  6061. "ref/netstandard1.0/fr/System.Threading.xml",
  6062. "ref/netstandard1.0/it/System.Threading.xml",
  6063. "ref/netstandard1.0/ja/System.Threading.xml",
  6064. "ref/netstandard1.0/ko/System.Threading.xml",
  6065. "ref/netstandard1.0/ru/System.Threading.xml",
  6066. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  6067. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  6068. "ref/netstandard1.3/System.Threading.dll",
  6069. "ref/netstandard1.3/System.Threading.xml",
  6070. "ref/netstandard1.3/de/System.Threading.xml",
  6071. "ref/netstandard1.3/es/System.Threading.xml",
  6072. "ref/netstandard1.3/fr/System.Threading.xml",
  6073. "ref/netstandard1.3/it/System.Threading.xml",
  6074. "ref/netstandard1.3/ja/System.Threading.xml",
  6075. "ref/netstandard1.3/ko/System.Threading.xml",
  6076. "ref/netstandard1.3/ru/System.Threading.xml",
  6077. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  6078. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  6079. "ref/portable-net45+win8+wp8+wpa81/_._",
  6080. "ref/win8/_._",
  6081. "ref/wp80/_._",
  6082. "ref/wpa81/_._",
  6083. "ref/xamarinios10/_._",
  6084. "ref/xamarinmac20/_._",
  6085. "ref/xamarintvos10/_._",
  6086. "ref/xamarinwatchos10/_._",
  6087. "runtimes/aot/lib/netcore50/System.Threading.dll",
  6088. "system.threading.4.3.0.nupkg.sha512",
  6089. "system.threading.nuspec"
  6090. ]
  6091. },
  6092. "System.Threading.Tasks/4.3.0": {
  6093. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  6094. "type": "package",
  6095. "path": "system.threading.tasks/4.3.0",
  6096. "files": [
  6097. ".nupkg.metadata",
  6098. ".signature.p7s",
  6099. "ThirdPartyNotices.txt",
  6100. "dotnet_library_license.txt",
  6101. "lib/MonoAndroid10/_._",
  6102. "lib/MonoTouch10/_._",
  6103. "lib/net45/_._",
  6104. "lib/portable-net45+win8+wp8+wpa81/_._",
  6105. "lib/win8/_._",
  6106. "lib/wp80/_._",
  6107. "lib/wpa81/_._",
  6108. "lib/xamarinios10/_._",
  6109. "lib/xamarinmac20/_._",
  6110. "lib/xamarintvos10/_._",
  6111. "lib/xamarinwatchos10/_._",
  6112. "ref/MonoAndroid10/_._",
  6113. "ref/MonoTouch10/_._",
  6114. "ref/net45/_._",
  6115. "ref/netcore50/System.Threading.Tasks.dll",
  6116. "ref/netcore50/System.Threading.Tasks.xml",
  6117. "ref/netcore50/de/System.Threading.Tasks.xml",
  6118. "ref/netcore50/es/System.Threading.Tasks.xml",
  6119. "ref/netcore50/fr/System.Threading.Tasks.xml",
  6120. "ref/netcore50/it/System.Threading.Tasks.xml",
  6121. "ref/netcore50/ja/System.Threading.Tasks.xml",
  6122. "ref/netcore50/ko/System.Threading.Tasks.xml",
  6123. "ref/netcore50/ru/System.Threading.Tasks.xml",
  6124. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  6125. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  6126. "ref/netstandard1.0/System.Threading.Tasks.dll",
  6127. "ref/netstandard1.0/System.Threading.Tasks.xml",
  6128. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  6129. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  6130. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  6131. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  6132. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  6133. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  6134. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  6135. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  6136. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  6137. "ref/netstandard1.3/System.Threading.Tasks.dll",
  6138. "ref/netstandard1.3/System.Threading.Tasks.xml",
  6139. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  6140. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  6141. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  6142. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  6143. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  6144. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  6145. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  6146. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  6147. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  6148. "ref/portable-net45+win8+wp8+wpa81/_._",
  6149. "ref/win8/_._",
  6150. "ref/wp80/_._",
  6151. "ref/wpa81/_._",
  6152. "ref/xamarinios10/_._",
  6153. "ref/xamarinmac20/_._",
  6154. "ref/xamarintvos10/_._",
  6155. "ref/xamarinwatchos10/_._",
  6156. "system.threading.tasks.4.3.0.nupkg.sha512",
  6157. "system.threading.tasks.nuspec"
  6158. ]
  6159. },
  6160. "System.Windows.Extensions/4.7.0": {
  6161. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  6162. "type": "package",
  6163. "path": "system.windows.extensions/4.7.0",
  6164. "files": [
  6165. ".nupkg.metadata",
  6166. ".signature.p7s",
  6167. "LICENSE.TXT",
  6168. "THIRD-PARTY-NOTICES.TXT",
  6169. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  6170. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  6171. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  6172. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  6173. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  6174. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  6175. "system.windows.extensions.4.7.0.nupkg.sha512",
  6176. "system.windows.extensions.nuspec",
  6177. "useSharedDesignerContext.txt",
  6178. "version.txt"
  6179. ]
  6180. },
  6181. "TimeZoneConverter/5.0.0": {
  6182. "sha512": "U7Oilf3Ya6Rmu6gOaBfWyT3q0kwy2av6a5PfTn05CF54C+7DvuLsE3ljASvYmCpsSQeJvpnqU5Uzag6+ysWUeA==",
  6183. "type": "package",
  6184. "path": "timezoneconverter/5.0.0",
  6185. "files": [
  6186. ".nupkg.metadata",
  6187. ".signature.p7s",
  6188. "lib/net461/TimeZoneConverter.dll",
  6189. "lib/net461/TimeZoneConverter.xml",
  6190. "lib/netstandard2.0/TimeZoneConverter.dll",
  6191. "lib/netstandard2.0/TimeZoneConverter.xml",
  6192. "timezoneconverter.5.0.0.nupkg.sha512",
  6193. "timezoneconverter.nuspec"
  6194. ]
  6195. },
  6196. "Volo.Abp.Auditing/6.0.2": {
  6197. "sha512": "2vkUSnsKYa291+S8l/XPytd3z8eHJ3/3W4jGOliWs5cSiwR8evieJ6jrn4vvlebydOrjEL+t2hQraJKyyj5J6Q==",
  6198. "type": "package",
  6199. "path": "volo.abp.auditing/6.0.2",
  6200. "files": [
  6201. ".nupkg.metadata",
  6202. ".signature.p7s",
  6203. "lib/netstandard2.0/Volo.Abp.Auditing.dll",
  6204. "lib/netstandard2.0/Volo.Abp.Auditing.pdb",
  6205. "lib/netstandard2.0/Volo.Abp.Auditing.xml",
  6206. "volo.abp.auditing.6.0.2.nupkg.sha512",
  6207. "volo.abp.auditing.nuspec"
  6208. ]
  6209. },
  6210. "Volo.Abp.Auditing.Contracts/6.0.2": {
  6211. "sha512": "TNnCpKhIx2052j82Z3hgEpcoE1GQ0/4+NwJog5p7ntTw4T9vkN2zsepIKBxDOpVtAkhrF14p4sHORYMz1Cd0eg==",
  6212. "type": "package",
  6213. "path": "volo.abp.auditing.contracts/6.0.2",
  6214. "files": [
  6215. ".nupkg.metadata",
  6216. ".signature.p7s",
  6217. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll",
  6218. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.pdb",
  6219. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.xml",
  6220. "volo.abp.auditing.contracts.6.0.2.nupkg.sha512",
  6221. "volo.abp.auditing.contracts.nuspec"
  6222. ]
  6223. },
  6224. "Volo.Abp.Authorization/6.0.0": {
  6225. "sha512": "+ktQSujPTlA96lw8ih/iTTmncJXX3f1kTWsEWtjfmI0N3HeiVl2NFLk9g51PxHYuqOpbZpyt4y5498Q8OSpLWw==",
  6226. "type": "package",
  6227. "path": "volo.abp.authorization/6.0.0",
  6228. "files": [
  6229. ".nupkg.metadata",
  6230. ".signature.p7s",
  6231. "lib/netstandard2.0/Volo.Abp.Authorization.dll",
  6232. "lib/netstandard2.0/Volo.Abp.Authorization.pdb",
  6233. "lib/netstandard2.0/Volo.Abp.Authorization.xml",
  6234. "volo.abp.authorization.6.0.0.nupkg.sha512",
  6235. "volo.abp.authorization.nuspec"
  6236. ]
  6237. },
  6238. "Volo.Abp.Authorization.Abstractions/6.0.0": {
  6239. "sha512": "46NIPtnfHGPX12b79kp4uLnCI+zyybD3p1pIGBlpsdlSiNrGiMys5hnar8C7z8zv14I3SUaTeaQAS8hA3JoHxA==",
  6240. "type": "package",
  6241. "path": "volo.abp.authorization.abstractions/6.0.0",
  6242. "files": [
  6243. ".nupkg.metadata",
  6244. ".signature.p7s",
  6245. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll",
  6246. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.pdb",
  6247. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.xml",
  6248. "volo.abp.authorization.abstractions.6.0.0.nupkg.sha512",
  6249. "volo.abp.authorization.abstractions.nuspec"
  6250. ]
  6251. },
  6252. "Volo.Abp.BackgroundWorkers/6.0.2": {
  6253. "sha512": "UIvmY1EEDnlT3jjZ92cDTWIsJncVLnntx32gLqqDWKILBAv2tAb/NQehW0yVYYcyezUULj2kJHPUaHr9uRAf9A==",
  6254. "type": "package",
  6255. "path": "volo.abp.backgroundworkers/6.0.2",
  6256. "files": [
  6257. ".nupkg.metadata",
  6258. ".signature.p7s",
  6259. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll",
  6260. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.pdb",
  6261. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.xml",
  6262. "volo.abp.backgroundworkers.6.0.2.nupkg.sha512",
  6263. "volo.abp.backgroundworkers.nuspec"
  6264. ]
  6265. },
  6266. "Volo.Abp.Caching/6.0.0": {
  6267. "sha512": "i+YHjH98KnmS2ohc+T3Gb5LvBLyfeB8M+zVib2LKm4hC/2hn/nFnV5Ss0YTwHgMErEcX1n8vWqBmDpWkcZl4Ug==",
  6268. "type": "package",
  6269. "path": "volo.abp.caching/6.0.0",
  6270. "files": [
  6271. ".nupkg.metadata",
  6272. ".signature.p7s",
  6273. "lib/netstandard2.0/Volo.Abp.Caching.dll",
  6274. "lib/netstandard2.0/Volo.Abp.Caching.pdb",
  6275. "lib/netstandard2.0/Volo.Abp.Caching.xml",
  6276. "volo.abp.caching.6.0.0.nupkg.sha512",
  6277. "volo.abp.caching.nuspec"
  6278. ]
  6279. },
  6280. "Volo.Abp.Core/6.0.2": {
  6281. "sha512": "wuY90hoFxowFD0jatwJ0SWJ+bDuwQD4C+Wb00EWJ7sfYDq9Xu0l4Hh7QmUKFQOKPMotLy5Lt8LGirmwE88D00w==",
  6282. "type": "package",
  6283. "path": "volo.abp.core/6.0.2",
  6284. "files": [
  6285. ".nupkg.metadata",
  6286. ".signature.p7s",
  6287. "lib/netstandard2.0/Volo.Abp.Core.dll",
  6288. "lib/netstandard2.0/Volo.Abp.Core.pdb",
  6289. "lib/netstandard2.0/Volo.Abp.Core.xml",
  6290. "volo.abp.core.6.0.2.nupkg.sha512",
  6291. "volo.abp.core.nuspec"
  6292. ]
  6293. },
  6294. "Volo.Abp.Data/6.0.2": {
  6295. "sha512": "JBWe8xpTKv9kUYCbwSL5OvviyWbldGWjkQ517SdmzqXiYbYhTIpBuEBv+XemxjMbgBG+jOxmtrXc/7/77uXd5w==",
  6296. "type": "package",
  6297. "path": "volo.abp.data/6.0.2",
  6298. "files": [
  6299. ".nupkg.metadata",
  6300. ".signature.p7s",
  6301. "lib/netstandard2.0/Volo.Abp.Data.dll",
  6302. "lib/netstandard2.0/Volo.Abp.Data.pdb",
  6303. "lib/netstandard2.0/Volo.Abp.Data.xml",
  6304. "volo.abp.data.6.0.2.nupkg.sha512",
  6305. "volo.abp.data.nuspec"
  6306. ]
  6307. },
  6308. "Volo.Abp.Ddd.Domain/6.0.2": {
  6309. "sha512": "wxcpTFmoLgZ9/5vkdMaZFU1kcxOba5c1DrHQUIrV9KFDiWPguDd9hc3bPbpsCzq/oZgUUZVo42lj03gzbM4zGA==",
  6310. "type": "package",
  6311. "path": "volo.abp.ddd.domain/6.0.2",
  6312. "files": [
  6313. ".nupkg.metadata",
  6314. ".signature.p7s",
  6315. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll",
  6316. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.pdb",
  6317. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.xml",
  6318. "volo.abp.ddd.domain.6.0.2.nupkg.sha512",
  6319. "volo.abp.ddd.domain.nuspec"
  6320. ]
  6321. },
  6322. "Volo.Abp.DistributedLocking.Abstractions/6.0.2": {
  6323. "sha512": "luIm9uqOsar7wRA65X3ItlM6O3Sy/iR8nfn6ifU1VoXaODVaqPM+NzUWOoMkxPiUNMfAaap8qbfzKSJ4+PkPug==",
  6324. "type": "package",
  6325. "path": "volo.abp.distributedlocking.abstractions/6.0.2",
  6326. "files": [
  6327. ".nupkg.metadata",
  6328. ".signature.p7s",
  6329. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll",
  6330. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.pdb",
  6331. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.xml",
  6332. "volo.abp.distributedlocking.abstractions.6.0.2.nupkg.sha512",
  6333. "volo.abp.distributedlocking.abstractions.nuspec"
  6334. ]
  6335. },
  6336. "Volo.Abp.EntityFrameworkCore/6.0.2": {
  6337. "sha512": "R0VOj2p5I+TYJ+oFI3WM6FeDGDZRBrXnX3QOqt4JxTBTnnE4oXCKx8I/k6JMrllmGbyKYD2dheRxxuTKpjr0Kg==",
  6338. "type": "package",
  6339. "path": "volo.abp.entityframeworkcore/6.0.2",
  6340. "files": [
  6341. ".nupkg.metadata",
  6342. ".signature.p7s",
  6343. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll",
  6344. "lib/net6.0/Volo.Abp.EntityFrameworkCore.pdb",
  6345. "lib/net6.0/Volo.Abp.EntityFrameworkCore.xml",
  6346. "volo.abp.entityframeworkcore.6.0.2.nupkg.sha512",
  6347. "volo.abp.entityframeworkcore.nuspec"
  6348. ]
  6349. },
  6350. "Volo.Abp.EntityFrameworkCore.MySQL/6.0.0": {
  6351. "sha512": "c9PFDiRtZiiFcqQoanx56j7k5dYgWSJyTPePX0DSOFw0TeVRfHOv7WV+sjvRf74B48ZRk86x6hr7N0ikVH/tow==",
  6352. "type": "package",
  6353. "path": "volo.abp.entityframeworkcore.mysql/6.0.0",
  6354. "files": [
  6355. ".nupkg.metadata",
  6356. ".signature.p7s",
  6357. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll",
  6358. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.pdb",
  6359. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.xml",
  6360. "volo.abp.entityframeworkcore.mysql.6.0.0.nupkg.sha512",
  6361. "volo.abp.entityframeworkcore.mysql.nuspec"
  6362. ]
  6363. },
  6364. "Volo.Abp.EntityFrameworkCore.SqlServer/6.0.2": {
  6365. "sha512": "EEoCydF1OjSpuEUYzMS4eukxDcoF49EmpJWjd3SYYBDEJ3i/ohP7GOkJ258cOzUw+OZCuSIlNmNppibVv595lw==",
  6366. "type": "package",
  6367. "path": "volo.abp.entityframeworkcore.sqlserver/6.0.2",
  6368. "files": [
  6369. ".nupkg.metadata",
  6370. ".signature.p7s",
  6371. "lib/net6.0/Volo.Abp.EntityFrameworkCore.SqlServer.dll",
  6372. "lib/net6.0/Volo.Abp.EntityFrameworkCore.SqlServer.pdb",
  6373. "lib/net6.0/Volo.Abp.EntityFrameworkCore.SqlServer.xml",
  6374. "volo.abp.entityframeworkcore.sqlserver.6.0.2.nupkg.sha512",
  6375. "volo.abp.entityframeworkcore.sqlserver.nuspec"
  6376. ]
  6377. },
  6378. "Volo.Abp.EventBus/6.0.2": {
  6379. "sha512": "NaGgox4T4L7AzQijPtQERZAH2crWYtyWVLZEmhEqPhDOiyFeJHwzNoP4bCqaz2FqFG0f7SbWZwJV6vdWoHCY8Q==",
  6380. "type": "package",
  6381. "path": "volo.abp.eventbus/6.0.2",
  6382. "files": [
  6383. ".nupkg.metadata",
  6384. ".signature.p7s",
  6385. "lib/netstandard2.0/Volo.Abp.EventBus.dll",
  6386. "lib/netstandard2.0/Volo.Abp.EventBus.pdb",
  6387. "lib/netstandard2.0/Volo.Abp.EventBus.xml",
  6388. "volo.abp.eventbus.6.0.2.nupkg.sha512",
  6389. "volo.abp.eventbus.nuspec"
  6390. ]
  6391. },
  6392. "Volo.Abp.EventBus.Abstractions/6.0.2": {
  6393. "sha512": "9eHrajsiJYfSBf1/hKnF8Wjc8K9aANfS9HKbJIkVJUS1PgRSLiCbLrCuyesCkgORSt3a3VDDywAfP0RhgEJ/zQ==",
  6394. "type": "package",
  6395. "path": "volo.abp.eventbus.abstractions/6.0.2",
  6396. "files": [
  6397. ".nupkg.metadata",
  6398. ".signature.p7s",
  6399. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll",
  6400. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.pdb",
  6401. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.xml",
  6402. "volo.abp.eventbus.abstractions.6.0.2.nupkg.sha512",
  6403. "volo.abp.eventbus.abstractions.nuspec"
  6404. ]
  6405. },
  6406. "Volo.Abp.ExceptionHandling/6.0.2": {
  6407. "sha512": "Gw9biTqWpDvz01dEuVO5KHKGX/po6TWSsAEQMb6XnxEicH9HU7AM6VDSHVduFszO/lhzLZ+3EUaU2rvRfP0b5w==",
  6408. "type": "package",
  6409. "path": "volo.abp.exceptionhandling/6.0.2",
  6410. "files": [
  6411. ".nupkg.metadata",
  6412. ".signature.p7s",
  6413. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll",
  6414. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.pdb",
  6415. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.xml",
  6416. "volo.abp.exceptionhandling.6.0.2.nupkg.sha512",
  6417. "volo.abp.exceptionhandling.nuspec"
  6418. ]
  6419. },
  6420. "Volo.Abp.Guids/6.0.2": {
  6421. "sha512": "NZJVgg5h6l7WIVpxTIRc27Xkeu1GrsP+BgTXEEgD/+bdbyxwk3jvS1vZpCMTy3c1AxjKldJE+MDbFMSJ1P4QmQ==",
  6422. "type": "package",
  6423. "path": "volo.abp.guids/6.0.2",
  6424. "files": [
  6425. ".nupkg.metadata",
  6426. ".signature.p7s",
  6427. "lib/netstandard2.0/Volo.Abp.Guids.dll",
  6428. "lib/netstandard2.0/Volo.Abp.Guids.pdb",
  6429. "lib/netstandard2.0/Volo.Abp.Guids.xml",
  6430. "volo.abp.guids.6.0.2.nupkg.sha512",
  6431. "volo.abp.guids.nuspec"
  6432. ]
  6433. },
  6434. "Volo.Abp.Json/6.0.2": {
  6435. "sha512": "opT+u/teEACd2U/8OEYYNh4XHZ2JZgx+fdqPCOHcDyV0aJFn6friK8hc8d5dkUw/XY9lbnTX0VA7a5hMFhF+VQ==",
  6436. "type": "package",
  6437. "path": "volo.abp.json/6.0.2",
  6438. "files": [
  6439. ".nupkg.metadata",
  6440. ".signature.p7s",
  6441. "lib/netstandard2.0/Volo.Abp.Json.dll",
  6442. "lib/netstandard2.0/Volo.Abp.Json.pdb",
  6443. "lib/netstandard2.0/Volo.Abp.Json.xml",
  6444. "volo.abp.json.6.0.2.nupkg.sha512",
  6445. "volo.abp.json.nuspec"
  6446. ]
  6447. },
  6448. "Volo.Abp.Localization/6.0.2": {
  6449. "sha512": "YYUEzyfH3u/ILYm045fbPZQKh2asIEXiw1swsh3qyo7fPV1q5xxEsb5xBwfE5SC0F+lcUBy72cJjRmf8HqiQFw==",
  6450. "type": "package",
  6451. "path": "volo.abp.localization/6.0.2",
  6452. "files": [
  6453. ".nupkg.metadata",
  6454. ".signature.p7s",
  6455. "lib/netstandard2.0/Volo.Abp.Localization.dll",
  6456. "lib/netstandard2.0/Volo.Abp.Localization.pdb",
  6457. "lib/netstandard2.0/Volo.Abp.Localization.xml",
  6458. "volo.abp.localization.6.0.2.nupkg.sha512",
  6459. "volo.abp.localization.nuspec"
  6460. ]
  6461. },
  6462. "Volo.Abp.Localization.Abstractions/6.0.2": {
  6463. "sha512": "RE2tYmLJJ6W6BEm4LXiqJHBpY07JE9iiAj7djfYvQzrn3oSonCyLFxH+/UWIBzcGgOrjdhzI/UuF0Y9GHNRWTA==",
  6464. "type": "package",
  6465. "path": "volo.abp.localization.abstractions/6.0.2",
  6466. "files": [
  6467. ".nupkg.metadata",
  6468. ".signature.p7s",
  6469. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll",
  6470. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.pdb",
  6471. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.xml",
  6472. "volo.abp.localization.abstractions.6.0.2.nupkg.sha512",
  6473. "volo.abp.localization.abstractions.nuspec"
  6474. ]
  6475. },
  6476. "Volo.Abp.MultiTenancy/6.0.2": {
  6477. "sha512": "1RU/gR260DELa1hZKmb8pwFu5yUzF3dv5ilSc3ICcu8CnStod1/wD1gwLl8WbLob2IZX/CqRRqUzawwc4lwY6w==",
  6478. "type": "package",
  6479. "path": "volo.abp.multitenancy/6.0.2",
  6480. "files": [
  6481. ".nupkg.metadata",
  6482. ".signature.p7s",
  6483. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll",
  6484. "lib/netstandard2.0/Volo.Abp.MultiTenancy.pdb",
  6485. "lib/netstandard2.0/Volo.Abp.MultiTenancy.xml",
  6486. "volo.abp.multitenancy.6.0.2.nupkg.sha512",
  6487. "volo.abp.multitenancy.nuspec"
  6488. ]
  6489. },
  6490. "Volo.Abp.ObjectExtending/6.0.2": {
  6491. "sha512": "KNAIAAoQIJg75TisdF6ZE8roeeqwlyjCMu9PAgnKbwraxwU12F390Rl3ObKhVI9aHAk31aMj4+EZpLTUbCmFpA==",
  6492. "type": "package",
  6493. "path": "volo.abp.objectextending/6.0.2",
  6494. "files": [
  6495. ".nupkg.metadata",
  6496. ".signature.p7s",
  6497. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll",
  6498. "lib/netstandard2.0/Volo.Abp.ObjectExtending.pdb",
  6499. "lib/netstandard2.0/Volo.Abp.ObjectExtending.xml",
  6500. "volo.abp.objectextending.6.0.2.nupkg.sha512",
  6501. "volo.abp.objectextending.nuspec"
  6502. ]
  6503. },
  6504. "Volo.Abp.ObjectMapping/6.0.2": {
  6505. "sha512": "reUOLtKea9//yOSNwfCno9tPIPrlLyaOFioeP4dDSlIfq6p0q8O45XHnZzv7LJ8SLpB26Xw9DuFZRZ59TVkahw==",
  6506. "type": "package",
  6507. "path": "volo.abp.objectmapping/6.0.2",
  6508. "files": [
  6509. ".nupkg.metadata",
  6510. ".signature.p7s",
  6511. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll",
  6512. "lib/netstandard2.0/Volo.Abp.ObjectMapping.pdb",
  6513. "lib/netstandard2.0/Volo.Abp.ObjectMapping.xml",
  6514. "volo.abp.objectmapping.6.0.2.nupkg.sha512",
  6515. "volo.abp.objectmapping.nuspec"
  6516. ]
  6517. },
  6518. "Volo.Abp.PermissionManagement.Domain/6.0.0": {
  6519. "sha512": "qtYyZ/z7Zh5fMfaJXEL06iAuSgtrxt98M2oHN52POuClOx1V0Jix0fejeWsfJvvGs/l1+EyDWb2ul2IiOkuksg==",
  6520. "type": "package",
  6521. "path": "volo.abp.permissionmanagement.domain/6.0.0",
  6522. "files": [
  6523. ".nupkg.metadata",
  6524. ".signature.p7s",
  6525. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll",
  6526. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.pdb",
  6527. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.xml",
  6528. "volo.abp.permissionmanagement.domain.6.0.0.nupkg.sha512",
  6529. "volo.abp.permissionmanagement.domain.nuspec"
  6530. ]
  6531. },
  6532. "Volo.Abp.PermissionManagement.Domain.Shared/6.0.0": {
  6533. "sha512": "BjLkzErtgq3LYzt4T16QwG7FJF/pe4DrjrWOsEZc852FliAzUF9MVOOPvcAADNgIHpCJQXBJqu6c+yf77g9wsA==",
  6534. "type": "package",
  6535. "path": "volo.abp.permissionmanagement.domain.shared/6.0.0",
  6536. "files": [
  6537. ".nupkg.metadata",
  6538. ".signature.p7s",
  6539. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll",
  6540. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.pdb",
  6541. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.xml",
  6542. "volo.abp.permissionmanagement.domain.shared.6.0.0.nupkg.sha512",
  6543. "volo.abp.permissionmanagement.domain.shared.nuspec"
  6544. ]
  6545. },
  6546. "Volo.Abp.PermissionManagement.EntityFrameworkCore/6.0.0": {
  6547. "sha512": "xS/RfnfEv49cHWpE90aFSPlg9ZdW2zeHwfSHtBxXdF1t24E0Bbouzc33iUATMPYnH02nwLGMy8n6QDRZht4+pA==",
  6548. "type": "package",
  6549. "path": "volo.abp.permissionmanagement.entityframeworkcore/6.0.0",
  6550. "files": [
  6551. ".nupkg.metadata",
  6552. ".signature.p7s",
  6553. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll",
  6554. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.pdb",
  6555. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.xml",
  6556. "volo.abp.permissionmanagement.entityframeworkcore.6.0.0.nupkg.sha512",
  6557. "volo.abp.permissionmanagement.entityframeworkcore.nuspec"
  6558. ]
  6559. },
  6560. "Volo.Abp.Security/6.0.2": {
  6561. "sha512": "+SxP7wxD+Auc4WXuPXZZ6Ra1VTy1H+UWbkvUBiKnjw8258tdTEsWBLBosOM74OzCcBMysj3uxiKVv/unNg3sWg==",
  6562. "type": "package",
  6563. "path": "volo.abp.security/6.0.2",
  6564. "files": [
  6565. ".nupkg.metadata",
  6566. ".signature.p7s",
  6567. "lib/netstandard2.0/Volo.Abp.Security.dll",
  6568. "lib/netstandard2.0/Volo.Abp.Security.pdb",
  6569. "lib/netstandard2.0/Volo.Abp.Security.xml",
  6570. "volo.abp.security.6.0.2.nupkg.sha512",
  6571. "volo.abp.security.nuspec"
  6572. ]
  6573. },
  6574. "Volo.Abp.Serialization/6.0.0": {
  6575. "sha512": "fQUBF1eyxxrw81UCAehHG/GDr9TqAPh5MzjsV8RW7PhDPwkpxzypKVx1MwR+SFhF+zY0Eml1olk5iJ8u8nxBqQ==",
  6576. "type": "package",
  6577. "path": "volo.abp.serialization/6.0.0",
  6578. "files": [
  6579. ".nupkg.metadata",
  6580. ".signature.p7s",
  6581. "lib/netstandard2.0/Volo.Abp.Serialization.dll",
  6582. "lib/netstandard2.0/Volo.Abp.Serialization.pdb",
  6583. "lib/netstandard2.0/Volo.Abp.Serialization.xml",
  6584. "volo.abp.serialization.6.0.0.nupkg.sha512",
  6585. "volo.abp.serialization.nuspec"
  6586. ]
  6587. },
  6588. "Volo.Abp.Settings/6.0.2": {
  6589. "sha512": "jRlV1GF/TjphMXIwBn/ldkweRdvZY4U/p5iNebVT2hhz8W896Y88jF5yS9JZtjWHT9vs0AitVIYWPs2ZNW8yrQ==",
  6590. "type": "package",
  6591. "path": "volo.abp.settings/6.0.2",
  6592. "files": [
  6593. ".nupkg.metadata",
  6594. ".signature.p7s",
  6595. "lib/netstandard2.0/Volo.Abp.Settings.dll",
  6596. "lib/netstandard2.0/Volo.Abp.Settings.pdb",
  6597. "lib/netstandard2.0/Volo.Abp.Settings.xml",
  6598. "volo.abp.settings.6.0.2.nupkg.sha512",
  6599. "volo.abp.settings.nuspec"
  6600. ]
  6601. },
  6602. "Volo.Abp.Specifications/6.0.2": {
  6603. "sha512": "SYc3Wjco9r9SaeP6+giUvx7x+3jU7ZwEi/AicGQ90oxqngPdL2dSLY86iVItKElM+ZY/JnW5cXwhF9IbJJ6wEw==",
  6604. "type": "package",
  6605. "path": "volo.abp.specifications/6.0.2",
  6606. "files": [
  6607. ".nupkg.metadata",
  6608. ".signature.p7s",
  6609. "lib/netstandard2.0/Volo.Abp.Specifications.dll",
  6610. "lib/netstandard2.0/Volo.Abp.Specifications.pdb",
  6611. "lib/netstandard2.0/Volo.Abp.Specifications.xml",
  6612. "volo.abp.specifications.6.0.2.nupkg.sha512",
  6613. "volo.abp.specifications.nuspec"
  6614. ]
  6615. },
  6616. "Volo.Abp.Threading/6.0.2": {
  6617. "sha512": "tgTehSlQbfNiUPNLMtw3sQRK2AxaCwLdFPf60aJNlwrWbsUTT17HrJ9Yeu9Mn+li8WARS0lvs9tnkk8blUFeuQ==",
  6618. "type": "package",
  6619. "path": "volo.abp.threading/6.0.2",
  6620. "files": [
  6621. ".nupkg.metadata",
  6622. ".signature.p7s",
  6623. "lib/netstandard2.0/Volo.Abp.Threading.dll",
  6624. "lib/netstandard2.0/Volo.Abp.Threading.pdb",
  6625. "lib/netstandard2.0/Volo.Abp.Threading.xml",
  6626. "volo.abp.threading.6.0.2.nupkg.sha512",
  6627. "volo.abp.threading.nuspec"
  6628. ]
  6629. },
  6630. "Volo.Abp.Timing/6.0.2": {
  6631. "sha512": "MbGt9ZJ9U01oHK5+bxUBGuq62w/uI++dFQdR/ghyA3M4r2k435+Snzs+oRoaRcUqvxaE97dPDd578yDwWLl3fQ==",
  6632. "type": "package",
  6633. "path": "volo.abp.timing/6.0.2",
  6634. "files": [
  6635. ".nupkg.metadata",
  6636. ".signature.p7s",
  6637. "lib/netstandard2.0/Volo.Abp.Timing.dll",
  6638. "lib/netstandard2.0/Volo.Abp.Timing.pdb",
  6639. "lib/netstandard2.0/Volo.Abp.Timing.xml",
  6640. "volo.abp.timing.6.0.2.nupkg.sha512",
  6641. "volo.abp.timing.nuspec"
  6642. ]
  6643. },
  6644. "Volo.Abp.Uow/6.0.2": {
  6645. "sha512": "frheu6miUaSeDzSaKpk4IUT1vZQ1a5Yji9s4pRmX7skd13bTeB6P45n+555qDBEf4/plpr4GPz+9Fd+u/EnVvQ==",
  6646. "type": "package",
  6647. "path": "volo.abp.uow/6.0.2",
  6648. "files": [
  6649. ".nupkg.metadata",
  6650. ".signature.p7s",
  6651. "lib/netstandard2.0/Volo.Abp.Uow.dll",
  6652. "lib/netstandard2.0/Volo.Abp.Uow.pdb",
  6653. "lib/netstandard2.0/Volo.Abp.Uow.xml",
  6654. "volo.abp.uow.6.0.2.nupkg.sha512",
  6655. "volo.abp.uow.nuspec"
  6656. ]
  6657. },
  6658. "Volo.Abp.Validation/6.0.0": {
  6659. "sha512": "Iza3FCoOaClOzHb+ue6q1UPd+MzfXjPfZ29YF8AUe6VfWx49EbquvSk0zjYVx3ikOBhnhffQiqv/QzzQtYmq6A==",
  6660. "type": "package",
  6661. "path": "volo.abp.validation/6.0.0",
  6662. "files": [
  6663. ".nupkg.metadata",
  6664. ".signature.p7s",
  6665. "lib/netstandard2.0/Volo.Abp.Validation.dll",
  6666. "lib/netstandard2.0/Volo.Abp.Validation.pdb",
  6667. "lib/netstandard2.0/Volo.Abp.Validation.xml",
  6668. "volo.abp.validation.6.0.0.nupkg.sha512",
  6669. "volo.abp.validation.nuspec"
  6670. ]
  6671. },
  6672. "Volo.Abp.Validation.Abstractions/6.0.2": {
  6673. "sha512": "LEeESHPMPHrrkf0sFjgUKiHayaStq4uTt7PTQyUvU3WaAJZWrENuC3aXkz4aHJhO2jjW2bRoRHNqfmoGjdzqRg==",
  6674. "type": "package",
  6675. "path": "volo.abp.validation.abstractions/6.0.2",
  6676. "files": [
  6677. ".nupkg.metadata",
  6678. ".signature.p7s",
  6679. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll",
  6680. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.pdb",
  6681. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.xml",
  6682. "volo.abp.validation.abstractions.6.0.2.nupkg.sha512",
  6683. "volo.abp.validation.abstractions.nuspec"
  6684. ]
  6685. },
  6686. "Volo.Abp.VirtualFileSystem/6.0.2": {
  6687. "sha512": "/uA+KzInBEgg31HRis/z7qDsK1rNT8vCEdgQ4cZzUujB6vV7j8cBJQfsXLVmctSEadt0DibFa/XLn7w51J1oXg==",
  6688. "type": "package",
  6689. "path": "volo.abp.virtualfilesystem/6.0.2",
  6690. "files": [
  6691. ".nupkg.metadata",
  6692. ".signature.p7s",
  6693. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll",
  6694. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.pdb",
  6695. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.xml",
  6696. "volo.abp.virtualfilesystem.6.0.2.nupkg.sha512",
  6697. "volo.abp.virtualfilesystem.nuspec"
  6698. ]
  6699. },
  6700. "Procurement.Domain/1.0.0": {
  6701. "type": "project",
  6702. "path": "../Procurement.Domain/Procurement.Domain.csproj",
  6703. "msbuildProject": "../Procurement.Domain/Procurement.Domain.csproj"
  6704. }
  6705. },
  6706. "projectFileDependencyGroups": {
  6707. "net6.0": [
  6708. "Microsoft.EntityFrameworkCore.Design >= 6.0.3",
  6709. "MySql.Data >= 8.0.32.1",
  6710. "Procurement.Domain >= 1.0.0",
  6711. "System.Data.SqlClient >= 4.8.5",
  6712. "Volo.Abp.EntityFrameworkCore.MySQL >= 6.0.0",
  6713. "Volo.Abp.EntityFrameworkCore.SqlServer >= 6.0.2",
  6714. "Volo.Abp.PermissionManagement.EntityFrameworkCore >= 6.0.0"
  6715. ]
  6716. },
  6717. "packageFolders": {
  6718. "C:\\Users\\fayimi\\.nuget\\packages\\": {},
  6719. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
  6720. "C:\\Microsoft\\Xamarin\\NuGet\\": {},
  6721. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
  6722. },
  6723. "project": {
  6724. "version": "1.0.0",
  6725. "restore": {
  6726. "projectUniqueName": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.EntityFrameworkCore\\Procurement.EntityFrameworkCore.csproj",
  6727. "projectName": "Procurement.EntityFrameworkCore",
  6728. "projectPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.EntityFrameworkCore\\Procurement.EntityFrameworkCore.csproj",
  6729. "packagesPath": "C:\\Users\\fayimi\\.nuget\\packages\\",
  6730. "outputPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.EntityFrameworkCore\\obj\\",
  6731. "projectStyle": "PackageReference",
  6732. "fallbackFolders": [
  6733. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
  6734. "C:\\Microsoft\\Xamarin\\NuGet\\",
  6735. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
  6736. ],
  6737. "configFilePaths": [
  6738. "C:\\Users\\fayimi\\AppData\\Roaming\\NuGet\\NuGet.Config",
  6739. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  6740. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
  6741. "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
  6742. ],
  6743. "originalTargetFrameworks": [
  6744. "net6.0"
  6745. ],
  6746. "sources": {
  6747. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  6748. "https://api.nuget.org/v3/index.json": {}
  6749. },
  6750. "frameworks": {
  6751. "net6.0": {
  6752. "targetAlias": "net6.0",
  6753. "projectReferences": {
  6754. "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Domain\\Procurement.Domain.csproj": {
  6755. "projectPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Domain\\Procurement.Domain.csproj"
  6756. }
  6757. }
  6758. }
  6759. },
  6760. "warningProperties": {
  6761. "warnAsError": [
  6762. "NU1605"
  6763. ]
  6764. }
  6765. },
  6766. "frameworks": {
  6767. "net6.0": {
  6768. "targetAlias": "net6.0",
  6769. "dependencies": {
  6770. "Microsoft.EntityFrameworkCore.Design": {
  6771. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  6772. "suppressParent": "All",
  6773. "target": "Package",
  6774. "version": "[6.0.3, )"
  6775. },
  6776. "MySql.Data": {
  6777. "target": "Package",
  6778. "version": "[8.0.32.1, )"
  6779. },
  6780. "System.Data.SqlClient": {
  6781. "target": "Package",
  6782. "version": "[4.8.5, )"
  6783. },
  6784. "Volo.Abp.EntityFrameworkCore.MySQL": {
  6785. "target": "Package",
  6786. "version": "[6.0.0, )"
  6787. },
  6788. "Volo.Abp.EntityFrameworkCore.SqlServer": {
  6789. "target": "Package",
  6790. "version": "[6.0.2, )"
  6791. },
  6792. "Volo.Abp.PermissionManagement.EntityFrameworkCore": {
  6793. "target": "Package",
  6794. "version": "[6.0.0, )"
  6795. }
  6796. },
  6797. "imports": [
  6798. "net461",
  6799. "net462",
  6800. "net47",
  6801. "net471",
  6802. "net472",
  6803. "net48",
  6804. "net481"
  6805. ],
  6806. "assetTargetFallback": true,
  6807. "warn": true,
  6808. "frameworkReferences": {
  6809. "Microsoft.NETCore.App": {
  6810. "privateAssets": "all"
  6811. }
  6812. },
  6813. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  6814. }
  6815. }
  6816. }
  6817. }