project.assets.json 320 KB

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