project.assets.json 281 KB

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