project.assets.json 284 KB

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