project.assets.json 289 KB

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