project.assets.json 378 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "Microsoft.AspNetCore.Html.Abstractions/2.2.0": {
  6. "type": "package",
  7. "dependencies": {
  8. "System.Text.Encodings.Web": "4.5.0"
  9. },
  10. "compile": {
  11. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  12. },
  13. "runtime": {
  14. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  15. }
  16. },
  17. "Microsoft.AspNetCore.Razor/2.2.0": {
  18. "type": "package",
  19. "dependencies": {
  20. "Microsoft.AspNetCore.Html.Abstractions": "2.2.0"
  21. },
  22. "compile": {
  23. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {}
  24. },
  25. "runtime": {
  26. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {}
  27. }
  28. },
  29. "Microsoft.AspNetCore.Razor.Language/3.1.0": {
  30. "type": "package",
  31. "compile": {
  32. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  33. },
  34. "runtime": {
  35. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  36. }
  37. },
  38. "Microsoft.AspNetCore.Razor.Runtime/2.2.0": {
  39. "type": "package",
  40. "dependencies": {
  41. "Microsoft.AspNetCore.Html.Abstractions": "2.2.0",
  42. "Microsoft.AspNetCore.Razor": "2.2.0"
  43. },
  44. "compile": {
  45. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {}
  46. },
  47. "runtime": {
  48. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {}
  49. }
  50. },
  51. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  52. "type": "package",
  53. "compile": {
  54. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  55. },
  56. "runtime": {
  57. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  58. }
  59. },
  60. "Microsoft.Bcl.HashCode/1.1.1": {
  61. "type": "package",
  62. "compile": {
  63. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  64. },
  65. "runtime": {
  66. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  67. }
  68. },
  69. "Microsoft.CodeAnalysis.Analyzers/2.9.4": {
  70. "type": "package",
  71. "build": {
  72. "build/_._": {}
  73. }
  74. },
  75. "Microsoft.CodeAnalysis.Common/3.3.1": {
  76. "type": "package",
  77. "dependencies": {
  78. "Microsoft.CodeAnalysis.Analyzers": "2.9.4",
  79. "System.Collections.Immutable": "1.5.0",
  80. "System.Memory": "4.5.3",
  81. "System.Reflection.Metadata": "1.6.0",
  82. "System.Runtime.CompilerServices.Unsafe": "4.5.2",
  83. "System.Text.Encoding.CodePages": "4.5.1",
  84. "System.Threading.Tasks.Extensions": "4.5.3"
  85. },
  86. "compile": {
  87. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {}
  88. },
  89. "runtime": {
  90. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {}
  91. },
  92. "resource": {
  93. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll": {
  94. "locale": "cs"
  95. },
  96. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll": {
  97. "locale": "de"
  98. },
  99. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll": {
  100. "locale": "es"
  101. },
  102. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll": {
  103. "locale": "fr"
  104. },
  105. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll": {
  106. "locale": "it"
  107. },
  108. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll": {
  109. "locale": "ja"
  110. },
  111. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll": {
  112. "locale": "ko"
  113. },
  114. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll": {
  115. "locale": "pl"
  116. },
  117. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  118. "locale": "pt-BR"
  119. },
  120. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll": {
  121. "locale": "ru"
  122. },
  123. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll": {
  124. "locale": "tr"
  125. },
  126. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  127. "locale": "zh-Hans"
  128. },
  129. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  130. "locale": "zh-Hant"
  131. }
  132. }
  133. },
  134. "Microsoft.CodeAnalysis.CSharp/3.3.1": {
  135. "type": "package",
  136. "dependencies": {
  137. "Microsoft.CodeAnalysis.Common": "[3.3.1]"
  138. },
  139. "compile": {
  140. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {}
  141. },
  142. "runtime": {
  143. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {}
  144. },
  145. "resource": {
  146. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  147. "locale": "cs"
  148. },
  149. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  150. "locale": "de"
  151. },
  152. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  153. "locale": "es"
  154. },
  155. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  156. "locale": "fr"
  157. },
  158. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  159. "locale": "it"
  160. },
  161. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  162. "locale": "ja"
  163. },
  164. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  165. "locale": "ko"
  166. },
  167. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  168. "locale": "pl"
  169. },
  170. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  171. "locale": "pt-BR"
  172. },
  173. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  174. "locale": "ru"
  175. },
  176. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  177. "locale": "tr"
  178. },
  179. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  180. "locale": "zh-Hans"
  181. },
  182. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  183. "locale": "zh-Hant"
  184. }
  185. }
  186. },
  187. "Microsoft.CodeAnalysis.CSharp.Workspaces/3.3.1": {
  188. "type": "package",
  189. "dependencies": {
  190. "Microsoft.CodeAnalysis.CSharp": "[3.3.1]",
  191. "Microsoft.CodeAnalysis.Common": "[3.3.1]",
  192. "Microsoft.CodeAnalysis.Workspaces.Common": "[3.3.1]"
  193. },
  194. "compile": {
  195. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {}
  196. },
  197. "runtime": {
  198. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {}
  199. },
  200. "resource": {
  201. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  202. "locale": "cs"
  203. },
  204. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  205. "locale": "de"
  206. },
  207. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  208. "locale": "es"
  209. },
  210. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  211. "locale": "fr"
  212. },
  213. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  214. "locale": "it"
  215. },
  216. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  217. "locale": "ja"
  218. },
  219. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  220. "locale": "ko"
  221. },
  222. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  223. "locale": "pl"
  224. },
  225. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  226. "locale": "pt-BR"
  227. },
  228. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  229. "locale": "ru"
  230. },
  231. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  232. "locale": "tr"
  233. },
  234. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  235. "locale": "zh-Hans"
  236. },
  237. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  238. "locale": "zh-Hant"
  239. }
  240. }
  241. },
  242. "Microsoft.CodeAnalysis.Razor/3.1.0": {
  243. "type": "package",
  244. "dependencies": {
  245. "Microsoft.AspNetCore.Razor.Language": "3.1.0",
  246. "Microsoft.CodeAnalysis.CSharp": "3.3.0",
  247. "Microsoft.CodeAnalysis.Common": "3.3.0"
  248. },
  249. "compile": {
  250. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  251. },
  252. "runtime": {
  253. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  254. }
  255. },
  256. "Microsoft.CodeAnalysis.Workspaces.Common/3.3.1": {
  257. "type": "package",
  258. "dependencies": {
  259. "Microsoft.CodeAnalysis.Common": "[3.3.1]",
  260. "System.Composition": "1.0.31"
  261. },
  262. "compile": {
  263. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll": {}
  264. },
  265. "runtime": {
  266. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll": {}
  267. },
  268. "resource": {
  269. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  270. "locale": "cs"
  271. },
  272. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  273. "locale": "de"
  274. },
  275. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  276. "locale": "es"
  277. },
  278. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  279. "locale": "fr"
  280. },
  281. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  282. "locale": "it"
  283. },
  284. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  285. "locale": "ja"
  286. },
  287. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  288. "locale": "ko"
  289. },
  290. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  291. "locale": "pl"
  292. },
  293. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  294. "locale": "pt-BR"
  295. },
  296. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  297. "locale": "ru"
  298. },
  299. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  300. "locale": "tr"
  301. },
  302. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  303. "locale": "zh-Hans"
  304. },
  305. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  306. "locale": "zh-Hant"
  307. }
  308. }
  309. },
  310. "Microsoft.CSharp/4.7.0": {
  311. "type": "package",
  312. "compile": {
  313. "ref/netcoreapp2.0/_._": {}
  314. },
  315. "runtime": {
  316. "lib/netcoreapp2.0/_._": {}
  317. }
  318. },
  319. "Microsoft.Data.SqlClient/1.1.3": {
  320. "type": "package",
  321. "dependencies": {
  322. "Microsoft.Identity.Client": "3.0.8",
  323. "Microsoft.IdentityModel.JsonWebTokens": "5.5.0",
  324. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.5.0",
  325. "Microsoft.Win32.Registry": "4.5.0",
  326. "System.Configuration.ConfigurationManager": "4.5.0",
  327. "System.Runtime.Caching": "4.5.0",
  328. "System.Security.Principal.Windows": "4.5.0",
  329. "System.Text.Encoding.CodePages": "4.5.0",
  330. "runtime.native.System.Data.SqlClient.sni": "4.4.0"
  331. },
  332. "compile": {
  333. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {}
  334. },
  335. "runtime": {
  336. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {}
  337. },
  338. "runtimeTargets": {
  339. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {
  340. "assetType": "runtime",
  341. "rid": "unix"
  342. },
  343. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {
  344. "assetType": "runtime",
  345. "rid": "win"
  346. }
  347. }
  348. },
  349. "Microsoft.EntityFrameworkCore/3.1.32": {
  350. "type": "package",
  351. "dependencies": {
  352. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  353. "Microsoft.Bcl.HashCode": "1.1.1",
  354. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.32",
  355. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.32",
  356. "Microsoft.Extensions.Caching.Memory": "3.1.32",
  357. "Microsoft.Extensions.DependencyInjection": "3.1.32",
  358. "Microsoft.Extensions.Logging": "3.1.32",
  359. "System.Collections.Immutable": "1.7.1",
  360. "System.ComponentModel.Annotations": "4.7.0",
  361. "System.Diagnostics.DiagnosticSource": "4.7.1"
  362. },
  363. "compile": {
  364. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  365. },
  366. "runtime": {
  367. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  368. }
  369. },
  370. "Microsoft.EntityFrameworkCore.Abstractions/3.1.32": {
  371. "type": "package",
  372. "compile": {
  373. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  374. },
  375. "runtime": {
  376. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  377. }
  378. },
  379. "Microsoft.EntityFrameworkCore.Analyzers/3.1.32": {
  380. "type": "package",
  381. "compile": {
  382. "lib/netstandard2.0/_._": {}
  383. },
  384. "runtime": {
  385. "lib/netstandard2.0/_._": {}
  386. }
  387. },
  388. "Microsoft.EntityFrameworkCore.Design/3.1.32": {
  389. "type": "package",
  390. "dependencies": {
  391. "Microsoft.CSharp": "4.7.0",
  392. "Microsoft.EntityFrameworkCore.Relational": "3.1.32"
  393. },
  394. "compile": {
  395. "lib/netstandard2.0/_._": {}
  396. },
  397. "runtime": {
  398. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {}
  399. },
  400. "build": {
  401. "build/netcoreapp2.0/Microsoft.EntityFrameworkCore.Design.props": {}
  402. }
  403. },
  404. "Microsoft.EntityFrameworkCore.Relational/3.1.32": {
  405. "type": "package",
  406. "dependencies": {
  407. "Microsoft.EntityFrameworkCore": "3.1.32"
  408. },
  409. "compile": {
  410. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  411. },
  412. "runtime": {
  413. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  414. }
  415. },
  416. "Microsoft.EntityFrameworkCore.SqlServer/3.1.32": {
  417. "type": "package",
  418. "dependencies": {
  419. "Microsoft.Data.SqlClient": "1.1.3",
  420. "Microsoft.EntityFrameworkCore.Relational": "3.1.32"
  421. },
  422. "compile": {
  423. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
  424. },
  425. "runtime": {
  426. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
  427. }
  428. },
  429. "Microsoft.EntityFrameworkCore.Tools/3.1.32": {
  430. "type": "package",
  431. "dependencies": {
  432. "Microsoft.EntityFrameworkCore.Design": "3.1.32"
  433. },
  434. "compile": {
  435. "lib/netstandard2.0/_._": {}
  436. },
  437. "runtime": {
  438. "lib/netstandard2.0/_._": {}
  439. }
  440. },
  441. "Microsoft.Extensions.Caching.Abstractions/3.1.32": {
  442. "type": "package",
  443. "dependencies": {
  444. "Microsoft.Extensions.Primitives": "3.1.32"
  445. },
  446. "compile": {
  447. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  448. },
  449. "runtime": {
  450. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  451. }
  452. },
  453. "Microsoft.Extensions.Caching.Memory/3.1.32": {
  454. "type": "package",
  455. "dependencies": {
  456. "Microsoft.Extensions.Caching.Abstractions": "3.1.32",
  457. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32",
  458. "Microsoft.Extensions.Logging.Abstractions": "3.1.32",
  459. "Microsoft.Extensions.Options": "3.1.32"
  460. },
  461. "compile": {
  462. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  463. },
  464. "runtime": {
  465. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  466. }
  467. },
  468. "Microsoft.Extensions.Configuration/3.1.32": {
  469. "type": "package",
  470. "dependencies": {
  471. "Microsoft.Extensions.Configuration.Abstractions": "3.1.32"
  472. },
  473. "compile": {
  474. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
  475. },
  476. "runtime": {
  477. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
  478. }
  479. },
  480. "Microsoft.Extensions.Configuration.Abstractions/3.1.32": {
  481. "type": "package",
  482. "dependencies": {
  483. "Microsoft.Extensions.Primitives": "3.1.32"
  484. },
  485. "compile": {
  486. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  487. },
  488. "runtime": {
  489. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  490. }
  491. },
  492. "Microsoft.Extensions.Configuration.Binder/3.1.32": {
  493. "type": "package",
  494. "dependencies": {
  495. "Microsoft.Extensions.Configuration": "3.1.32"
  496. },
  497. "compile": {
  498. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
  499. },
  500. "runtime": {
  501. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
  502. }
  503. },
  504. "Microsoft.Extensions.DependencyInjection/3.1.32": {
  505. "type": "package",
  506. "dependencies": {
  507. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32"
  508. },
  509. "compile": {
  510. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
  511. },
  512. "runtime": {
  513. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
  514. }
  515. },
  516. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.32": {
  517. "type": "package",
  518. "compile": {
  519. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  520. },
  521. "runtime": {
  522. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  523. }
  524. },
  525. "Microsoft.Extensions.Logging/3.1.32": {
  526. "type": "package",
  527. "dependencies": {
  528. "Microsoft.Extensions.Configuration.Binder": "3.1.32",
  529. "Microsoft.Extensions.DependencyInjection": "3.1.32",
  530. "Microsoft.Extensions.Logging.Abstractions": "3.1.32",
  531. "Microsoft.Extensions.Options": "3.1.32"
  532. },
  533. "compile": {
  534. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
  535. },
  536. "runtime": {
  537. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
  538. }
  539. },
  540. "Microsoft.Extensions.Logging.Abstractions/3.1.32": {
  541. "type": "package",
  542. "compile": {
  543. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  544. },
  545. "runtime": {
  546. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  547. }
  548. },
  549. "Microsoft.Extensions.Options/3.1.32": {
  550. "type": "package",
  551. "dependencies": {
  552. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32",
  553. "Microsoft.Extensions.Primitives": "3.1.32"
  554. },
  555. "compile": {
  556. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
  557. },
  558. "runtime": {
  559. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
  560. }
  561. },
  562. "Microsoft.Extensions.Primitives/3.1.32": {
  563. "type": "package",
  564. "compile": {
  565. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  566. },
  567. "runtime": {
  568. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  569. }
  570. },
  571. "Microsoft.Identity.Client/3.0.8": {
  572. "type": "package",
  573. "dependencies": {
  574. "Microsoft.CSharp": "4.5.0",
  575. "System.ComponentModel.TypeConverter": "4.3.0",
  576. "System.Net.NameResolution": "4.3.0",
  577. "System.Runtime.Serialization.Formatters": "4.3.0",
  578. "System.Runtime.Serialization.Json": "4.3.0",
  579. "System.Runtime.Serialization.Primitives": "4.3.0",
  580. "System.Security.SecureString": "4.3.0",
  581. "System.Xml.XDocument": "4.3.0"
  582. },
  583. "compile": {
  584. "ref/netcoreapp2.1/_._": {}
  585. },
  586. "runtime": {
  587. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {}
  588. }
  589. },
  590. "Microsoft.IdentityModel.JsonWebTokens/5.5.0": {
  591. "type": "package",
  592. "dependencies": {
  593. "Microsoft.IdentityModel.Tokens": "5.5.0",
  594. "Newtonsoft.Json": "10.0.1"
  595. },
  596. "compile": {
  597. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  598. },
  599. "runtime": {
  600. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  601. }
  602. },
  603. "Microsoft.IdentityModel.Logging/5.5.0": {
  604. "type": "package",
  605. "compile": {
  606. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  607. },
  608. "runtime": {
  609. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  610. }
  611. },
  612. "Microsoft.IdentityModel.Protocols/5.5.0": {
  613. "type": "package",
  614. "dependencies": {
  615. "Microsoft.IdentityModel.Logging": "5.5.0",
  616. "Microsoft.IdentityModel.Tokens": "5.5.0"
  617. },
  618. "compile": {
  619. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
  620. },
  621. "runtime": {
  622. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
  623. }
  624. },
  625. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.5.0": {
  626. "type": "package",
  627. "dependencies": {
  628. "Microsoft.IdentityModel.Protocols": "5.5.0",
  629. "Newtonsoft.Json": "10.0.1",
  630. "System.IdentityModel.Tokens.Jwt": "5.5.0"
  631. },
  632. "compile": {
  633. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  634. },
  635. "runtime": {
  636. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  637. }
  638. },
  639. "Microsoft.IdentityModel.Tokens/5.5.0": {
  640. "type": "package",
  641. "dependencies": {
  642. "Microsoft.IdentityModel.Logging": "5.5.0",
  643. "Newtonsoft.Json": "10.0.1",
  644. "System.Security.Cryptography.Cng": "4.5.0"
  645. },
  646. "compile": {
  647. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  648. },
  649. "runtime": {
  650. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  651. }
  652. },
  653. "Microsoft.NETCore.Platforms/2.1.2": {
  654. "type": "package",
  655. "compile": {
  656. "lib/netstandard1.0/_._": {}
  657. },
  658. "runtime": {
  659. "lib/netstandard1.0/_._": {}
  660. }
  661. },
  662. "Microsoft.NETCore.Targets/1.1.0": {
  663. "type": "package",
  664. "compile": {
  665. "lib/netstandard1.0/_._": {}
  666. },
  667. "runtime": {
  668. "lib/netstandard1.0/_._": {}
  669. }
  670. },
  671. "Microsoft.VisualStudio.Web.CodeGeneration/3.1.5": {
  672. "type": "package",
  673. "dependencies": {
  674. "Microsoft.Extensions.DependencyInjection": "3.1.0",
  675. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "3.1.5"
  676. },
  677. "compile": {
  678. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {}
  679. },
  680. "runtime": {
  681. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {}
  682. }
  683. },
  684. "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/3.1.5": {
  685. "type": "package",
  686. "dependencies": {
  687. "Newtonsoft.Json": "11.0.2"
  688. },
  689. "compile": {
  690. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {}
  691. },
  692. "runtime": {
  693. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {}
  694. }
  695. },
  696. "Microsoft.VisualStudio.Web.CodeGeneration.Core/3.1.5": {
  697. "type": "package",
  698. "dependencies": {
  699. "Microsoft.Extensions.DependencyInjection": "3.1.0",
  700. "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "3.1.5",
  701. "Newtonsoft.Json": "11.0.2"
  702. },
  703. "compile": {
  704. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {}
  705. },
  706. "runtime": {
  707. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {}
  708. }
  709. },
  710. "Microsoft.VisualStudio.Web.CodeGeneration.Design/3.1.5": {
  711. "type": "package",
  712. "dependencies": {
  713. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "3.1.5"
  714. },
  715. "compile": {
  716. "lib/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll": {}
  717. },
  718. "runtime": {
  719. "lib/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll": {}
  720. }
  721. },
  722. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/3.1.5": {
  723. "type": "package",
  724. "dependencies": {
  725. "Microsoft.VisualStudio.Web.CodeGeneration.Core": "3.1.5"
  726. },
  727. "compile": {
  728. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {}
  729. },
  730. "runtime": {
  731. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {}
  732. }
  733. },
  734. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/3.1.5": {
  735. "type": "package",
  736. "dependencies": {
  737. "Microsoft.AspNetCore.Razor.Language": "3.1.0",
  738. "Microsoft.AspNetCore.Razor.Runtime": "2.2.0",
  739. "Microsoft.CodeAnalysis.CSharp": "3.3.1",
  740. "Microsoft.CodeAnalysis.Razor": "3.1.0",
  741. "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "3.1.5"
  742. },
  743. "compile": {
  744. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {}
  745. },
  746. "runtime": {
  747. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {}
  748. }
  749. },
  750. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/3.1.5": {
  751. "type": "package",
  752. "dependencies": {
  753. "Microsoft.CodeAnalysis.CSharp.Workspaces": "3.3.1",
  754. "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "3.1.5",
  755. "Newtonsoft.Json": "11.0.2",
  756. "NuGet.Frameworks": "4.7.0"
  757. },
  758. "compile": {
  759. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {}
  760. },
  761. "runtime": {
  762. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {}
  763. }
  764. },
  765. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/3.1.5": {
  766. "type": "package",
  767. "dependencies": {
  768. "Microsoft.VisualStudio.Web.CodeGeneration": "3.1.5"
  769. },
  770. "compile": {
  771. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
  772. },
  773. "runtime": {
  774. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
  775. }
  776. },
  777. "Microsoft.Win32.Primitives/4.3.0": {
  778. "type": "package",
  779. "dependencies": {
  780. "Microsoft.NETCore.Platforms": "1.1.0",
  781. "Microsoft.NETCore.Targets": "1.1.0",
  782. "System.Runtime": "4.3.0"
  783. },
  784. "compile": {
  785. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  786. }
  787. },
  788. "Microsoft.Win32.Registry/4.5.0": {
  789. "type": "package",
  790. "dependencies": {
  791. "System.Security.AccessControl": "4.5.0",
  792. "System.Security.Principal.Windows": "4.5.0"
  793. },
  794. "compile": {
  795. "ref/netstandard2.0/_._": {}
  796. },
  797. "runtime": {
  798. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  799. },
  800. "runtimeTargets": {
  801. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  802. "assetType": "runtime",
  803. "rid": "unix"
  804. },
  805. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  806. "assetType": "runtime",
  807. "rid": "win"
  808. }
  809. }
  810. },
  811. "MQTTnet/4.1.2.350": {
  812. "type": "package",
  813. "compile": {
  814. "lib/netcoreapp3.1/MQTTnet.dll": {}
  815. },
  816. "runtime": {
  817. "lib/netcoreapp3.1/MQTTnet.dll": {}
  818. }
  819. },
  820. "MQTTnet.AspNetCore/4.1.2.350": {
  821. "type": "package",
  822. "dependencies": {
  823. "MQTTnet": "4.1.2.350"
  824. },
  825. "compile": {
  826. "lib/netcoreapp3.1/MQTTnet.AspNetCore.dll": {}
  827. },
  828. "runtime": {
  829. "lib/netcoreapp3.1/MQTTnet.AspNetCore.dll": {}
  830. },
  831. "frameworkReferences": [
  832. "Microsoft.AspNetCore.App"
  833. ]
  834. },
  835. "NETStandard.Library/1.6.1": {
  836. "type": "package",
  837. "dependencies": {
  838. "Microsoft.NETCore.Platforms": "1.1.0",
  839. "Microsoft.Win32.Primitives": "4.3.0",
  840. "System.AppContext": "4.3.0",
  841. "System.Collections": "4.3.0",
  842. "System.Collections.Concurrent": "4.3.0",
  843. "System.Console": "4.3.0",
  844. "System.Diagnostics.Debug": "4.3.0",
  845. "System.Diagnostics.Tools": "4.3.0",
  846. "System.Diagnostics.Tracing": "4.3.0",
  847. "System.Globalization": "4.3.0",
  848. "System.Globalization.Calendars": "4.3.0",
  849. "System.IO": "4.3.0",
  850. "System.IO.Compression": "4.3.0",
  851. "System.IO.Compression.ZipFile": "4.3.0",
  852. "System.IO.FileSystem": "4.3.0",
  853. "System.IO.FileSystem.Primitives": "4.3.0",
  854. "System.Linq": "4.3.0",
  855. "System.Linq.Expressions": "4.3.0",
  856. "System.Net.Http": "4.3.0",
  857. "System.Net.Primitives": "4.3.0",
  858. "System.Net.Sockets": "4.3.0",
  859. "System.ObjectModel": "4.3.0",
  860. "System.Reflection": "4.3.0",
  861. "System.Reflection.Extensions": "4.3.0",
  862. "System.Reflection.Primitives": "4.3.0",
  863. "System.Resources.ResourceManager": "4.3.0",
  864. "System.Runtime": "4.3.0",
  865. "System.Runtime.Extensions": "4.3.0",
  866. "System.Runtime.Handles": "4.3.0",
  867. "System.Runtime.InteropServices": "4.3.0",
  868. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  869. "System.Runtime.Numerics": "4.3.0",
  870. "System.Security.Cryptography.Algorithms": "4.3.0",
  871. "System.Security.Cryptography.Encoding": "4.3.0",
  872. "System.Security.Cryptography.Primitives": "4.3.0",
  873. "System.Security.Cryptography.X509Certificates": "4.3.0",
  874. "System.Text.Encoding": "4.3.0",
  875. "System.Text.Encoding.Extensions": "4.3.0",
  876. "System.Text.RegularExpressions": "4.3.0",
  877. "System.Threading": "4.3.0",
  878. "System.Threading.Tasks": "4.3.0",
  879. "System.Threading.Timer": "4.3.0",
  880. "System.Xml.ReaderWriter": "4.3.0",
  881. "System.Xml.XDocument": "4.3.0"
  882. }
  883. },
  884. "Newtonsoft.Json/11.0.2": {
  885. "type": "package",
  886. "compile": {
  887. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  888. },
  889. "runtime": {
  890. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  891. }
  892. },
  893. "NuGet.Frameworks/4.7.0": {
  894. "type": "package",
  895. "dependencies": {
  896. "NETStandard.Library": "1.6.1"
  897. },
  898. "compile": {
  899. "lib/netstandard1.6/NuGet.Frameworks.dll": {}
  900. },
  901. "runtime": {
  902. "lib/netstandard1.6/NuGet.Frameworks.dll": {}
  903. }
  904. },
  905. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  906. "type": "package",
  907. "runtimeTargets": {
  908. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  909. "assetType": "native",
  910. "rid": "debian.8-x64"
  911. }
  912. }
  913. },
  914. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  915. "type": "package",
  916. "runtimeTargets": {
  917. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  918. "assetType": "native",
  919. "rid": "fedora.23-x64"
  920. }
  921. }
  922. },
  923. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  924. "type": "package",
  925. "runtimeTargets": {
  926. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  927. "assetType": "native",
  928. "rid": "fedora.24-x64"
  929. }
  930. }
  931. },
  932. "runtime.native.System/4.3.0": {
  933. "type": "package",
  934. "dependencies": {
  935. "Microsoft.NETCore.Platforms": "1.1.0",
  936. "Microsoft.NETCore.Targets": "1.1.0"
  937. },
  938. "compile": {
  939. "lib/netstandard1.0/_._": {}
  940. },
  941. "runtime": {
  942. "lib/netstandard1.0/_._": {}
  943. }
  944. },
  945. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  946. "type": "package",
  947. "dependencies": {
  948. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  949. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  950. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  951. }
  952. },
  953. "runtime.native.System.IO.Compression/4.3.0": {
  954. "type": "package",
  955. "dependencies": {
  956. "Microsoft.NETCore.Platforms": "1.1.0",
  957. "Microsoft.NETCore.Targets": "1.1.0"
  958. },
  959. "compile": {
  960. "lib/netstandard1.0/_._": {}
  961. },
  962. "runtime": {
  963. "lib/netstandard1.0/_._": {}
  964. }
  965. },
  966. "runtime.native.System.Net.Http/4.3.0": {
  967. "type": "package",
  968. "dependencies": {
  969. "Microsoft.NETCore.Platforms": "1.1.0",
  970. "Microsoft.NETCore.Targets": "1.1.0"
  971. },
  972. "compile": {
  973. "lib/netstandard1.0/_._": {}
  974. },
  975. "runtime": {
  976. "lib/netstandard1.0/_._": {}
  977. }
  978. },
  979. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  980. "type": "package",
  981. "dependencies": {
  982. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  983. },
  984. "compile": {
  985. "lib/netstandard1.0/_._": {}
  986. },
  987. "runtime": {
  988. "lib/netstandard1.0/_._": {}
  989. }
  990. },
  991. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  992. "type": "package",
  993. "dependencies": {
  994. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  995. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  996. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  997. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  998. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  999. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1000. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1001. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1002. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1003. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1004. },
  1005. "compile": {
  1006. "lib/netstandard1.0/_._": {}
  1007. },
  1008. "runtime": {
  1009. "lib/netstandard1.0/_._": {}
  1010. }
  1011. },
  1012. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1013. "type": "package",
  1014. "runtimeTargets": {
  1015. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1016. "assetType": "native",
  1017. "rid": "opensuse.13.2-x64"
  1018. }
  1019. }
  1020. },
  1021. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1022. "type": "package",
  1023. "runtimeTargets": {
  1024. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1025. "assetType": "native",
  1026. "rid": "opensuse.42.1-x64"
  1027. }
  1028. }
  1029. },
  1030. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1031. "type": "package",
  1032. "runtimeTargets": {
  1033. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1034. "assetType": "native",
  1035. "rid": "osx.10.10-x64"
  1036. }
  1037. }
  1038. },
  1039. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1040. "type": "package",
  1041. "runtimeTargets": {
  1042. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1043. "assetType": "native",
  1044. "rid": "osx.10.10-x64"
  1045. }
  1046. }
  1047. },
  1048. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1049. "type": "package",
  1050. "runtimeTargets": {
  1051. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1052. "assetType": "native",
  1053. "rid": "rhel.7-x64"
  1054. }
  1055. }
  1056. },
  1057. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1058. "type": "package",
  1059. "runtimeTargets": {
  1060. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1061. "assetType": "native",
  1062. "rid": "ubuntu.14.04-x64"
  1063. }
  1064. }
  1065. },
  1066. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1067. "type": "package",
  1068. "runtimeTargets": {
  1069. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1070. "assetType": "native",
  1071. "rid": "ubuntu.16.04-x64"
  1072. }
  1073. }
  1074. },
  1075. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1076. "type": "package",
  1077. "runtimeTargets": {
  1078. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1079. "assetType": "native",
  1080. "rid": "ubuntu.16.10-x64"
  1081. }
  1082. }
  1083. },
  1084. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1085. "type": "package",
  1086. "runtimeTargets": {
  1087. "runtimes/win-arm64/native/sni.dll": {
  1088. "assetType": "native",
  1089. "rid": "win-arm64"
  1090. }
  1091. }
  1092. },
  1093. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1094. "type": "package",
  1095. "runtimeTargets": {
  1096. "runtimes/win-x64/native/sni.dll": {
  1097. "assetType": "native",
  1098. "rid": "win-x64"
  1099. }
  1100. }
  1101. },
  1102. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1103. "type": "package",
  1104. "runtimeTargets": {
  1105. "runtimes/win-x86/native/sni.dll": {
  1106. "assetType": "native",
  1107. "rid": "win-x86"
  1108. }
  1109. }
  1110. },
  1111. "System.AppContext/4.3.0": {
  1112. "type": "package",
  1113. "dependencies": {
  1114. "System.Runtime": "4.3.0"
  1115. },
  1116. "compile": {
  1117. "ref/netstandard1.6/System.AppContext.dll": {}
  1118. },
  1119. "runtime": {
  1120. "lib/netstandard1.6/System.AppContext.dll": {}
  1121. }
  1122. },
  1123. "System.Buffers/4.3.0": {
  1124. "type": "package",
  1125. "dependencies": {
  1126. "System.Diagnostics.Debug": "4.3.0",
  1127. "System.Diagnostics.Tracing": "4.3.0",
  1128. "System.Resources.ResourceManager": "4.3.0",
  1129. "System.Runtime": "4.3.0",
  1130. "System.Threading": "4.3.0"
  1131. },
  1132. "compile": {
  1133. "lib/netstandard1.1/_._": {}
  1134. },
  1135. "runtime": {
  1136. "lib/netstandard1.1/System.Buffers.dll": {}
  1137. }
  1138. },
  1139. "System.Collections/4.3.0": {
  1140. "type": "package",
  1141. "dependencies": {
  1142. "Microsoft.NETCore.Platforms": "1.1.0",
  1143. "Microsoft.NETCore.Targets": "1.1.0",
  1144. "System.Runtime": "4.3.0"
  1145. },
  1146. "compile": {
  1147. "ref/netstandard1.3/System.Collections.dll": {}
  1148. }
  1149. },
  1150. "System.Collections.Concurrent/4.3.0": {
  1151. "type": "package",
  1152. "dependencies": {
  1153. "System.Collections": "4.3.0",
  1154. "System.Diagnostics.Debug": "4.3.0",
  1155. "System.Diagnostics.Tracing": "4.3.0",
  1156. "System.Globalization": "4.3.0",
  1157. "System.Reflection": "4.3.0",
  1158. "System.Resources.ResourceManager": "4.3.0",
  1159. "System.Runtime": "4.3.0",
  1160. "System.Runtime.Extensions": "4.3.0",
  1161. "System.Threading": "4.3.0",
  1162. "System.Threading.Tasks": "4.3.0"
  1163. },
  1164. "compile": {
  1165. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1166. },
  1167. "runtime": {
  1168. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1169. }
  1170. },
  1171. "System.Collections.Immutable/1.7.1": {
  1172. "type": "package",
  1173. "compile": {
  1174. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1175. },
  1176. "runtime": {
  1177. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1178. }
  1179. },
  1180. "System.Collections.NonGeneric/4.3.0": {
  1181. "type": "package",
  1182. "dependencies": {
  1183. "System.Diagnostics.Debug": "4.3.0",
  1184. "System.Globalization": "4.3.0",
  1185. "System.Resources.ResourceManager": "4.3.0",
  1186. "System.Runtime": "4.3.0",
  1187. "System.Runtime.Extensions": "4.3.0",
  1188. "System.Threading": "4.3.0"
  1189. },
  1190. "compile": {
  1191. "ref/netstandard1.3/_._": {}
  1192. },
  1193. "runtime": {
  1194. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1195. }
  1196. },
  1197. "System.Collections.Specialized/4.3.0": {
  1198. "type": "package",
  1199. "dependencies": {
  1200. "System.Collections.NonGeneric": "4.3.0",
  1201. "System.Globalization": "4.3.0",
  1202. "System.Globalization.Extensions": "4.3.0",
  1203. "System.Resources.ResourceManager": "4.3.0",
  1204. "System.Runtime": "4.3.0",
  1205. "System.Runtime.Extensions": "4.3.0",
  1206. "System.Threading": "4.3.0"
  1207. },
  1208. "compile": {
  1209. "ref/netstandard1.3/_._": {}
  1210. },
  1211. "runtime": {
  1212. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1213. }
  1214. },
  1215. "System.ComponentModel/4.3.0": {
  1216. "type": "package",
  1217. "dependencies": {
  1218. "System.Runtime": "4.3.0"
  1219. },
  1220. "compile": {
  1221. "ref/netstandard1.0/_._": {}
  1222. },
  1223. "runtime": {
  1224. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1225. }
  1226. },
  1227. "System.ComponentModel.Annotations/4.7.0": {
  1228. "type": "package",
  1229. "compile": {
  1230. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1231. },
  1232. "runtime": {
  1233. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1234. }
  1235. },
  1236. "System.ComponentModel.Primitives/4.3.0": {
  1237. "type": "package",
  1238. "dependencies": {
  1239. "System.ComponentModel": "4.3.0",
  1240. "System.Resources.ResourceManager": "4.3.0",
  1241. "System.Runtime": "4.3.0"
  1242. },
  1243. "compile": {
  1244. "ref/netstandard1.0/_._": {}
  1245. },
  1246. "runtime": {
  1247. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1248. }
  1249. },
  1250. "System.ComponentModel.TypeConverter/4.3.0": {
  1251. "type": "package",
  1252. "dependencies": {
  1253. "System.Collections": "4.3.0",
  1254. "System.Collections.NonGeneric": "4.3.0",
  1255. "System.Collections.Specialized": "4.3.0",
  1256. "System.ComponentModel": "4.3.0",
  1257. "System.ComponentModel.Primitives": "4.3.0",
  1258. "System.Globalization": "4.3.0",
  1259. "System.Linq": "4.3.0",
  1260. "System.Reflection": "4.3.0",
  1261. "System.Reflection.Extensions": "4.3.0",
  1262. "System.Reflection.Primitives": "4.3.0",
  1263. "System.Reflection.TypeExtensions": "4.3.0",
  1264. "System.Resources.ResourceManager": "4.3.0",
  1265. "System.Runtime": "4.3.0",
  1266. "System.Runtime.Extensions": "4.3.0",
  1267. "System.Threading": "4.3.0"
  1268. },
  1269. "compile": {
  1270. "ref/netstandard1.5/_._": {}
  1271. },
  1272. "runtime": {
  1273. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1274. }
  1275. },
  1276. "System.Composition/1.0.31": {
  1277. "type": "package",
  1278. "dependencies": {
  1279. "System.Composition.AttributedModel": "1.0.31",
  1280. "System.Composition.Convention": "1.0.31",
  1281. "System.Composition.Hosting": "1.0.31",
  1282. "System.Composition.Runtime": "1.0.31",
  1283. "System.Composition.TypedParts": "1.0.31"
  1284. }
  1285. },
  1286. "System.Composition.AttributedModel/1.0.31": {
  1287. "type": "package",
  1288. "dependencies": {
  1289. "System.Reflection": "4.3.0",
  1290. "System.Runtime": "4.3.0"
  1291. },
  1292. "compile": {
  1293. "lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
  1294. },
  1295. "runtime": {
  1296. "lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
  1297. }
  1298. },
  1299. "System.Composition.Convention/1.0.31": {
  1300. "type": "package",
  1301. "dependencies": {
  1302. "System.Collections": "4.3.0",
  1303. "System.Composition.AttributedModel": "1.0.31",
  1304. "System.Diagnostics.Debug": "4.3.0",
  1305. "System.Diagnostics.Tools": "4.3.0",
  1306. "System.Globalization": "4.3.0",
  1307. "System.Linq": "4.3.0",
  1308. "System.Linq.Expressions": "4.3.0",
  1309. "System.Reflection": "4.3.0",
  1310. "System.Reflection.Extensions": "4.3.0",
  1311. "System.Resources.ResourceManager": "4.3.0",
  1312. "System.Runtime": "4.3.0",
  1313. "System.Threading": "4.3.0"
  1314. },
  1315. "compile": {
  1316. "lib/netstandard1.0/System.Composition.Convention.dll": {}
  1317. },
  1318. "runtime": {
  1319. "lib/netstandard1.0/System.Composition.Convention.dll": {}
  1320. }
  1321. },
  1322. "System.Composition.Hosting/1.0.31": {
  1323. "type": "package",
  1324. "dependencies": {
  1325. "System.Collections": "4.3.0",
  1326. "System.Composition.Runtime": "1.0.31",
  1327. "System.Diagnostics.Debug": "4.3.0",
  1328. "System.Diagnostics.Tools": "4.3.0",
  1329. "System.Globalization": "4.3.0",
  1330. "System.Linq": "4.3.0",
  1331. "System.Linq.Expressions": "4.3.0",
  1332. "System.ObjectModel": "4.3.0",
  1333. "System.Reflection": "4.3.0",
  1334. "System.Reflection.Extensions": "4.3.0",
  1335. "System.Resources.ResourceManager": "4.3.0",
  1336. "System.Runtime": "4.3.0",
  1337. "System.Threading": "4.3.0"
  1338. },
  1339. "compile": {
  1340. "lib/netstandard1.0/System.Composition.Hosting.dll": {}
  1341. },
  1342. "runtime": {
  1343. "lib/netstandard1.0/System.Composition.Hosting.dll": {}
  1344. }
  1345. },
  1346. "System.Composition.Runtime/1.0.31": {
  1347. "type": "package",
  1348. "dependencies": {
  1349. "System.Collections": "4.3.0",
  1350. "System.Diagnostics.Debug": "4.3.0",
  1351. "System.Diagnostics.Tools": "4.3.0",
  1352. "System.Globalization": "4.3.0",
  1353. "System.Linq": "4.3.0",
  1354. "System.Reflection": "4.3.0",
  1355. "System.Resources.ResourceManager": "4.3.0",
  1356. "System.Runtime": "4.3.0"
  1357. },
  1358. "compile": {
  1359. "lib/netstandard1.0/System.Composition.Runtime.dll": {}
  1360. },
  1361. "runtime": {
  1362. "lib/netstandard1.0/System.Composition.Runtime.dll": {}
  1363. }
  1364. },
  1365. "System.Composition.TypedParts/1.0.31": {
  1366. "type": "package",
  1367. "dependencies": {
  1368. "System.Collections": "4.3.0",
  1369. "System.Composition.AttributedModel": "1.0.31",
  1370. "System.Composition.Hosting": "1.0.31",
  1371. "System.Composition.Runtime": "1.0.31",
  1372. "System.Diagnostics.Debug": "4.3.0",
  1373. "System.Diagnostics.Tools": "4.3.0",
  1374. "System.Globalization": "4.3.0",
  1375. "System.Linq": "4.3.0",
  1376. "System.Linq.Expressions": "4.3.0",
  1377. "System.Reflection": "4.3.0",
  1378. "System.Reflection.Extensions": "4.3.0",
  1379. "System.Resources.ResourceManager": "4.3.0",
  1380. "System.Runtime": "4.3.0",
  1381. "System.Runtime.Extensions": "4.3.0"
  1382. },
  1383. "compile": {
  1384. "lib/netstandard1.0/System.Composition.TypedParts.dll": {}
  1385. },
  1386. "runtime": {
  1387. "lib/netstandard1.0/System.Composition.TypedParts.dll": {}
  1388. }
  1389. },
  1390. "System.Configuration.ConfigurationManager/4.5.0": {
  1391. "type": "package",
  1392. "dependencies": {
  1393. "System.Security.Cryptography.ProtectedData": "4.5.0",
  1394. "System.Security.Permissions": "4.5.0"
  1395. },
  1396. "compile": {
  1397. "ref/netstandard2.0/_._": {}
  1398. },
  1399. "runtime": {
  1400. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1401. }
  1402. },
  1403. "System.Console/4.3.0": {
  1404. "type": "package",
  1405. "dependencies": {
  1406. "Microsoft.NETCore.Platforms": "1.1.0",
  1407. "Microsoft.NETCore.Targets": "1.1.0",
  1408. "System.IO": "4.3.0",
  1409. "System.Runtime": "4.3.0",
  1410. "System.Text.Encoding": "4.3.0"
  1411. },
  1412. "compile": {
  1413. "ref/netstandard1.3/System.Console.dll": {}
  1414. }
  1415. },
  1416. "System.Diagnostics.Debug/4.3.0": {
  1417. "type": "package",
  1418. "dependencies": {
  1419. "Microsoft.NETCore.Platforms": "1.1.0",
  1420. "Microsoft.NETCore.Targets": "1.1.0",
  1421. "System.Runtime": "4.3.0"
  1422. },
  1423. "compile": {
  1424. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1425. }
  1426. },
  1427. "System.Diagnostics.DiagnosticSource/4.7.1": {
  1428. "type": "package",
  1429. "compile": {
  1430. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1431. },
  1432. "runtime": {
  1433. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1434. }
  1435. },
  1436. "System.Diagnostics.Tools/4.3.0": {
  1437. "type": "package",
  1438. "dependencies": {
  1439. "Microsoft.NETCore.Platforms": "1.1.0",
  1440. "Microsoft.NETCore.Targets": "1.1.0",
  1441. "System.Runtime": "4.3.0"
  1442. },
  1443. "compile": {
  1444. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1445. }
  1446. },
  1447. "System.Diagnostics.Tracing/4.3.0": {
  1448. "type": "package",
  1449. "dependencies": {
  1450. "Microsoft.NETCore.Platforms": "1.1.0",
  1451. "Microsoft.NETCore.Targets": "1.1.0",
  1452. "System.Runtime": "4.3.0"
  1453. },
  1454. "compile": {
  1455. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1456. }
  1457. },
  1458. "System.Globalization/4.3.0": {
  1459. "type": "package",
  1460. "dependencies": {
  1461. "Microsoft.NETCore.Platforms": "1.1.0",
  1462. "Microsoft.NETCore.Targets": "1.1.0",
  1463. "System.Runtime": "4.3.0"
  1464. },
  1465. "compile": {
  1466. "ref/netstandard1.3/System.Globalization.dll": {}
  1467. }
  1468. },
  1469. "System.Globalization.Calendars/4.3.0": {
  1470. "type": "package",
  1471. "dependencies": {
  1472. "Microsoft.NETCore.Platforms": "1.1.0",
  1473. "Microsoft.NETCore.Targets": "1.1.0",
  1474. "System.Globalization": "4.3.0",
  1475. "System.Runtime": "4.3.0"
  1476. },
  1477. "compile": {
  1478. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1479. }
  1480. },
  1481. "System.Globalization.Extensions/4.3.0": {
  1482. "type": "package",
  1483. "dependencies": {
  1484. "Microsoft.NETCore.Platforms": "1.1.0",
  1485. "System.Globalization": "4.3.0",
  1486. "System.Resources.ResourceManager": "4.3.0",
  1487. "System.Runtime": "4.3.0",
  1488. "System.Runtime.Extensions": "4.3.0",
  1489. "System.Runtime.InteropServices": "4.3.0"
  1490. },
  1491. "compile": {
  1492. "ref/netstandard1.3/_._": {}
  1493. },
  1494. "runtimeTargets": {
  1495. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1496. "assetType": "runtime",
  1497. "rid": "unix"
  1498. },
  1499. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1500. "assetType": "runtime",
  1501. "rid": "win"
  1502. }
  1503. }
  1504. },
  1505. "System.IdentityModel.Tokens.Jwt/5.5.0": {
  1506. "type": "package",
  1507. "dependencies": {
  1508. "Microsoft.IdentityModel.JsonWebTokens": "5.5.0",
  1509. "Microsoft.IdentityModel.Tokens": "5.5.0",
  1510. "Newtonsoft.Json": "10.0.1"
  1511. },
  1512. "compile": {
  1513. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1514. },
  1515. "runtime": {
  1516. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1517. }
  1518. },
  1519. "System.IO/4.3.0": {
  1520. "type": "package",
  1521. "dependencies": {
  1522. "Microsoft.NETCore.Platforms": "1.1.0",
  1523. "Microsoft.NETCore.Targets": "1.1.0",
  1524. "System.Runtime": "4.3.0",
  1525. "System.Text.Encoding": "4.3.0",
  1526. "System.Threading.Tasks": "4.3.0"
  1527. },
  1528. "compile": {
  1529. "ref/netstandard1.5/System.IO.dll": {}
  1530. }
  1531. },
  1532. "System.IO.Compression/4.3.0": {
  1533. "type": "package",
  1534. "dependencies": {
  1535. "Microsoft.NETCore.Platforms": "1.1.0",
  1536. "System.Buffers": "4.3.0",
  1537. "System.Collections": "4.3.0",
  1538. "System.Diagnostics.Debug": "4.3.0",
  1539. "System.IO": "4.3.0",
  1540. "System.Resources.ResourceManager": "4.3.0",
  1541. "System.Runtime": "4.3.0",
  1542. "System.Runtime.Extensions": "4.3.0",
  1543. "System.Runtime.Handles": "4.3.0",
  1544. "System.Runtime.InteropServices": "4.3.0",
  1545. "System.Text.Encoding": "4.3.0",
  1546. "System.Threading": "4.3.0",
  1547. "System.Threading.Tasks": "4.3.0",
  1548. "runtime.native.System": "4.3.0",
  1549. "runtime.native.System.IO.Compression": "4.3.0"
  1550. },
  1551. "compile": {
  1552. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1553. },
  1554. "runtimeTargets": {
  1555. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1556. "assetType": "runtime",
  1557. "rid": "unix"
  1558. },
  1559. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1560. "assetType": "runtime",
  1561. "rid": "win"
  1562. }
  1563. }
  1564. },
  1565. "System.IO.Compression.ZipFile/4.3.0": {
  1566. "type": "package",
  1567. "dependencies": {
  1568. "System.Buffers": "4.3.0",
  1569. "System.IO": "4.3.0",
  1570. "System.IO.Compression": "4.3.0",
  1571. "System.IO.FileSystem": "4.3.0",
  1572. "System.IO.FileSystem.Primitives": "4.3.0",
  1573. "System.Resources.ResourceManager": "4.3.0",
  1574. "System.Runtime": "4.3.0",
  1575. "System.Runtime.Extensions": "4.3.0",
  1576. "System.Text.Encoding": "4.3.0"
  1577. },
  1578. "compile": {
  1579. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1580. },
  1581. "runtime": {
  1582. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1583. }
  1584. },
  1585. "System.IO.FileSystem/4.3.0": {
  1586. "type": "package",
  1587. "dependencies": {
  1588. "Microsoft.NETCore.Platforms": "1.1.0",
  1589. "Microsoft.NETCore.Targets": "1.1.0",
  1590. "System.IO": "4.3.0",
  1591. "System.IO.FileSystem.Primitives": "4.3.0",
  1592. "System.Runtime": "4.3.0",
  1593. "System.Runtime.Handles": "4.3.0",
  1594. "System.Text.Encoding": "4.3.0",
  1595. "System.Threading.Tasks": "4.3.0"
  1596. },
  1597. "compile": {
  1598. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1599. }
  1600. },
  1601. "System.IO.FileSystem.Primitives/4.3.0": {
  1602. "type": "package",
  1603. "dependencies": {
  1604. "System.Runtime": "4.3.0"
  1605. },
  1606. "compile": {
  1607. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1608. },
  1609. "runtime": {
  1610. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1611. }
  1612. },
  1613. "System.Linq/4.3.0": {
  1614. "type": "package",
  1615. "dependencies": {
  1616. "System.Collections": "4.3.0",
  1617. "System.Diagnostics.Debug": "4.3.0",
  1618. "System.Resources.ResourceManager": "4.3.0",
  1619. "System.Runtime": "4.3.0",
  1620. "System.Runtime.Extensions": "4.3.0"
  1621. },
  1622. "compile": {
  1623. "ref/netstandard1.6/System.Linq.dll": {}
  1624. },
  1625. "runtime": {
  1626. "lib/netstandard1.6/System.Linq.dll": {}
  1627. }
  1628. },
  1629. "System.Linq.Expressions/4.3.0": {
  1630. "type": "package",
  1631. "dependencies": {
  1632. "System.Collections": "4.3.0",
  1633. "System.Diagnostics.Debug": "4.3.0",
  1634. "System.Globalization": "4.3.0",
  1635. "System.IO": "4.3.0",
  1636. "System.Linq": "4.3.0",
  1637. "System.ObjectModel": "4.3.0",
  1638. "System.Reflection": "4.3.0",
  1639. "System.Reflection.Emit": "4.3.0",
  1640. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1641. "System.Reflection.Emit.Lightweight": "4.3.0",
  1642. "System.Reflection.Extensions": "4.3.0",
  1643. "System.Reflection.Primitives": "4.3.0",
  1644. "System.Reflection.TypeExtensions": "4.3.0",
  1645. "System.Resources.ResourceManager": "4.3.0",
  1646. "System.Runtime": "4.3.0",
  1647. "System.Runtime.Extensions": "4.3.0",
  1648. "System.Threading": "4.3.0"
  1649. },
  1650. "compile": {
  1651. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1652. },
  1653. "runtime": {
  1654. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1655. }
  1656. },
  1657. "System.Memory/4.5.3": {
  1658. "type": "package",
  1659. "compile": {
  1660. "ref/netcoreapp2.1/_._": {}
  1661. },
  1662. "runtime": {
  1663. "lib/netcoreapp2.1/_._": {}
  1664. }
  1665. },
  1666. "System.Net.Http/4.3.0": {
  1667. "type": "package",
  1668. "dependencies": {
  1669. "Microsoft.NETCore.Platforms": "1.1.0",
  1670. "System.Collections": "4.3.0",
  1671. "System.Diagnostics.Debug": "4.3.0",
  1672. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1673. "System.Diagnostics.Tracing": "4.3.0",
  1674. "System.Globalization": "4.3.0",
  1675. "System.Globalization.Extensions": "4.3.0",
  1676. "System.IO": "4.3.0",
  1677. "System.IO.FileSystem": "4.3.0",
  1678. "System.Net.Primitives": "4.3.0",
  1679. "System.Resources.ResourceManager": "4.3.0",
  1680. "System.Runtime": "4.3.0",
  1681. "System.Runtime.Extensions": "4.3.0",
  1682. "System.Runtime.Handles": "4.3.0",
  1683. "System.Runtime.InteropServices": "4.3.0",
  1684. "System.Security.Cryptography.Algorithms": "4.3.0",
  1685. "System.Security.Cryptography.Encoding": "4.3.0",
  1686. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1687. "System.Security.Cryptography.Primitives": "4.3.0",
  1688. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1689. "System.Text.Encoding": "4.3.0",
  1690. "System.Threading": "4.3.0",
  1691. "System.Threading.Tasks": "4.3.0",
  1692. "runtime.native.System": "4.3.0",
  1693. "runtime.native.System.Net.Http": "4.3.0",
  1694. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1695. },
  1696. "compile": {
  1697. "ref/netstandard1.3/System.Net.Http.dll": {}
  1698. },
  1699. "runtimeTargets": {
  1700. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1701. "assetType": "runtime",
  1702. "rid": "unix"
  1703. },
  1704. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1705. "assetType": "runtime",
  1706. "rid": "win"
  1707. }
  1708. }
  1709. },
  1710. "System.Net.NameResolution/4.3.0": {
  1711. "type": "package",
  1712. "dependencies": {
  1713. "Microsoft.NETCore.Platforms": "1.1.0",
  1714. "System.Collections": "4.3.0",
  1715. "System.Diagnostics.Tracing": "4.3.0",
  1716. "System.Globalization": "4.3.0",
  1717. "System.Net.Primitives": "4.3.0",
  1718. "System.Resources.ResourceManager": "4.3.0",
  1719. "System.Runtime": "4.3.0",
  1720. "System.Runtime.Extensions": "4.3.0",
  1721. "System.Runtime.Handles": "4.3.0",
  1722. "System.Runtime.InteropServices": "4.3.0",
  1723. "System.Security.Principal.Windows": "4.3.0",
  1724. "System.Threading": "4.3.0",
  1725. "System.Threading.Tasks": "4.3.0",
  1726. "runtime.native.System": "4.3.0"
  1727. },
  1728. "compile": {
  1729. "ref/netstandard1.3/_._": {}
  1730. },
  1731. "runtimeTargets": {
  1732. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1733. "assetType": "runtime",
  1734. "rid": "unix"
  1735. },
  1736. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1737. "assetType": "runtime",
  1738. "rid": "win"
  1739. }
  1740. }
  1741. },
  1742. "System.Net.Primitives/4.3.0": {
  1743. "type": "package",
  1744. "dependencies": {
  1745. "Microsoft.NETCore.Platforms": "1.1.0",
  1746. "Microsoft.NETCore.Targets": "1.1.0",
  1747. "System.Runtime": "4.3.0",
  1748. "System.Runtime.Handles": "4.3.0"
  1749. },
  1750. "compile": {
  1751. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1752. }
  1753. },
  1754. "System.Net.Sockets/4.3.0": {
  1755. "type": "package",
  1756. "dependencies": {
  1757. "Microsoft.NETCore.Platforms": "1.1.0",
  1758. "Microsoft.NETCore.Targets": "1.1.0",
  1759. "System.IO": "4.3.0",
  1760. "System.Net.Primitives": "4.3.0",
  1761. "System.Runtime": "4.3.0",
  1762. "System.Threading.Tasks": "4.3.0"
  1763. },
  1764. "compile": {
  1765. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1766. }
  1767. },
  1768. "System.ObjectModel/4.3.0": {
  1769. "type": "package",
  1770. "dependencies": {
  1771. "System.Collections": "4.3.0",
  1772. "System.Diagnostics.Debug": "4.3.0",
  1773. "System.Resources.ResourceManager": "4.3.0",
  1774. "System.Runtime": "4.3.0",
  1775. "System.Threading": "4.3.0"
  1776. },
  1777. "compile": {
  1778. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1779. },
  1780. "runtime": {
  1781. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1782. }
  1783. },
  1784. "System.Private.DataContractSerialization/4.3.0": {
  1785. "type": "package",
  1786. "dependencies": {
  1787. "System.Collections": "4.3.0",
  1788. "System.Collections.Concurrent": "4.3.0",
  1789. "System.Diagnostics.Debug": "4.3.0",
  1790. "System.Globalization": "4.3.0",
  1791. "System.IO": "4.3.0",
  1792. "System.Linq": "4.3.0",
  1793. "System.Reflection": "4.3.0",
  1794. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1795. "System.Reflection.Emit.Lightweight": "4.3.0",
  1796. "System.Reflection.Extensions": "4.3.0",
  1797. "System.Reflection.Primitives": "4.3.0",
  1798. "System.Reflection.TypeExtensions": "4.3.0",
  1799. "System.Resources.ResourceManager": "4.3.0",
  1800. "System.Runtime": "4.3.0",
  1801. "System.Runtime.Extensions": "4.3.0",
  1802. "System.Runtime.Serialization.Primitives": "4.3.0",
  1803. "System.Text.Encoding": "4.3.0",
  1804. "System.Text.Encoding.Extensions": "4.3.0",
  1805. "System.Text.RegularExpressions": "4.3.0",
  1806. "System.Threading": "4.3.0",
  1807. "System.Threading.Tasks": "4.3.0",
  1808. "System.Xml.ReaderWriter": "4.3.0",
  1809. "System.Xml.XDocument": "4.3.0",
  1810. "System.Xml.XmlDocument": "4.3.0",
  1811. "System.Xml.XmlSerializer": "4.3.0"
  1812. },
  1813. "compile": {
  1814. "ref/netstandard/_._": {}
  1815. },
  1816. "runtime": {
  1817. "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
  1818. }
  1819. },
  1820. "System.Reflection/4.3.0": {
  1821. "type": "package",
  1822. "dependencies": {
  1823. "Microsoft.NETCore.Platforms": "1.1.0",
  1824. "Microsoft.NETCore.Targets": "1.1.0",
  1825. "System.IO": "4.3.0",
  1826. "System.Reflection.Primitives": "4.3.0",
  1827. "System.Runtime": "4.3.0"
  1828. },
  1829. "compile": {
  1830. "ref/netstandard1.5/System.Reflection.dll": {}
  1831. }
  1832. },
  1833. "System.Reflection.Emit/4.3.0": {
  1834. "type": "package",
  1835. "dependencies": {
  1836. "System.IO": "4.3.0",
  1837. "System.Reflection": "4.3.0",
  1838. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1839. "System.Reflection.Primitives": "4.3.0",
  1840. "System.Runtime": "4.3.0"
  1841. },
  1842. "compile": {
  1843. "ref/netstandard1.1/_._": {}
  1844. },
  1845. "runtime": {
  1846. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1847. }
  1848. },
  1849. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1850. "type": "package",
  1851. "dependencies": {
  1852. "System.Reflection": "4.3.0",
  1853. "System.Reflection.Primitives": "4.3.0",
  1854. "System.Runtime": "4.3.0"
  1855. },
  1856. "compile": {
  1857. "ref/netstandard1.0/_._": {}
  1858. },
  1859. "runtime": {
  1860. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1861. }
  1862. },
  1863. "System.Reflection.Emit.Lightweight/4.3.0": {
  1864. "type": "package",
  1865. "dependencies": {
  1866. "System.Reflection": "4.3.0",
  1867. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1868. "System.Reflection.Primitives": "4.3.0",
  1869. "System.Runtime": "4.3.0"
  1870. },
  1871. "compile": {
  1872. "ref/netstandard1.0/_._": {}
  1873. },
  1874. "runtime": {
  1875. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1876. }
  1877. },
  1878. "System.Reflection.Extensions/4.3.0": {
  1879. "type": "package",
  1880. "dependencies": {
  1881. "Microsoft.NETCore.Platforms": "1.1.0",
  1882. "Microsoft.NETCore.Targets": "1.1.0",
  1883. "System.Reflection": "4.3.0",
  1884. "System.Runtime": "4.3.0"
  1885. },
  1886. "compile": {
  1887. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1888. }
  1889. },
  1890. "System.Reflection.Metadata/1.6.0": {
  1891. "type": "package",
  1892. "compile": {
  1893. "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
  1894. },
  1895. "runtime": {
  1896. "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
  1897. }
  1898. },
  1899. "System.Reflection.Primitives/4.3.0": {
  1900. "type": "package",
  1901. "dependencies": {
  1902. "Microsoft.NETCore.Platforms": "1.1.0",
  1903. "Microsoft.NETCore.Targets": "1.1.0",
  1904. "System.Runtime": "4.3.0"
  1905. },
  1906. "compile": {
  1907. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1908. }
  1909. },
  1910. "System.Reflection.TypeExtensions/4.3.0": {
  1911. "type": "package",
  1912. "dependencies": {
  1913. "System.Reflection": "4.3.0",
  1914. "System.Runtime": "4.3.0"
  1915. },
  1916. "compile": {
  1917. "ref/netstandard1.5/_._": {}
  1918. },
  1919. "runtime": {
  1920. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1921. }
  1922. },
  1923. "System.Resources.ResourceManager/4.3.0": {
  1924. "type": "package",
  1925. "dependencies": {
  1926. "Microsoft.NETCore.Platforms": "1.1.0",
  1927. "Microsoft.NETCore.Targets": "1.1.0",
  1928. "System.Globalization": "4.3.0",
  1929. "System.Reflection": "4.3.0",
  1930. "System.Runtime": "4.3.0"
  1931. },
  1932. "compile": {
  1933. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1934. }
  1935. },
  1936. "System.Runtime/4.3.0": {
  1937. "type": "package",
  1938. "dependencies": {
  1939. "Microsoft.NETCore.Platforms": "1.1.0",
  1940. "Microsoft.NETCore.Targets": "1.1.0"
  1941. },
  1942. "compile": {
  1943. "ref/netstandard1.5/System.Runtime.dll": {}
  1944. }
  1945. },
  1946. "System.Runtime.Caching/4.5.0": {
  1947. "type": "package",
  1948. "dependencies": {
  1949. "Microsoft.NETCore.Platforms": "2.0.0",
  1950. "System.Configuration.ConfigurationManager": "4.5.0"
  1951. },
  1952. "compile": {
  1953. "ref/netstandard2.0/_._": {}
  1954. },
  1955. "runtime": {
  1956. "lib/netstandard2.0/System.Runtime.Caching.dll": {}
  1957. },
  1958. "runtimeTargets": {
  1959. "runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll": {
  1960. "assetType": "runtime",
  1961. "rid": "unix"
  1962. },
  1963. "runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll": {
  1964. "assetType": "runtime",
  1965. "rid": "win"
  1966. }
  1967. }
  1968. },
  1969. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  1970. "type": "package",
  1971. "compile": {
  1972. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1973. },
  1974. "runtime": {
  1975. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1976. }
  1977. },
  1978. "System.Runtime.Extensions/4.3.0": {
  1979. "type": "package",
  1980. "dependencies": {
  1981. "Microsoft.NETCore.Platforms": "1.1.0",
  1982. "Microsoft.NETCore.Targets": "1.1.0",
  1983. "System.Runtime": "4.3.0"
  1984. },
  1985. "compile": {
  1986. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1987. }
  1988. },
  1989. "System.Runtime.Handles/4.3.0": {
  1990. "type": "package",
  1991. "dependencies": {
  1992. "Microsoft.NETCore.Platforms": "1.1.0",
  1993. "Microsoft.NETCore.Targets": "1.1.0",
  1994. "System.Runtime": "4.3.0"
  1995. },
  1996. "compile": {
  1997. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1998. }
  1999. },
  2000. "System.Runtime.InteropServices/4.3.0": {
  2001. "type": "package",
  2002. "dependencies": {
  2003. "Microsoft.NETCore.Platforms": "1.1.0",
  2004. "Microsoft.NETCore.Targets": "1.1.0",
  2005. "System.Reflection": "4.3.0",
  2006. "System.Reflection.Primitives": "4.3.0",
  2007. "System.Runtime": "4.3.0",
  2008. "System.Runtime.Handles": "4.3.0"
  2009. },
  2010. "compile": {
  2011. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2012. }
  2013. },
  2014. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2015. "type": "package",
  2016. "dependencies": {
  2017. "System.Reflection": "4.3.0",
  2018. "System.Reflection.Extensions": "4.3.0",
  2019. "System.Resources.ResourceManager": "4.3.0",
  2020. "System.Runtime": "4.3.0",
  2021. "System.Runtime.InteropServices": "4.3.0",
  2022. "System.Threading": "4.3.0",
  2023. "runtime.native.System": "4.3.0"
  2024. },
  2025. "compile": {
  2026. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2027. },
  2028. "runtime": {
  2029. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2030. },
  2031. "runtimeTargets": {
  2032. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2033. "assetType": "runtime",
  2034. "rid": "unix"
  2035. },
  2036. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2037. "assetType": "runtime",
  2038. "rid": "win"
  2039. }
  2040. }
  2041. },
  2042. "System.Runtime.Numerics/4.3.0": {
  2043. "type": "package",
  2044. "dependencies": {
  2045. "System.Globalization": "4.3.0",
  2046. "System.Resources.ResourceManager": "4.3.0",
  2047. "System.Runtime": "4.3.0",
  2048. "System.Runtime.Extensions": "4.3.0"
  2049. },
  2050. "compile": {
  2051. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  2052. },
  2053. "runtime": {
  2054. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2055. }
  2056. },
  2057. "System.Runtime.Serialization.Formatters/4.3.0": {
  2058. "type": "package",
  2059. "dependencies": {
  2060. "System.Collections": "4.3.0",
  2061. "System.Reflection": "4.3.0",
  2062. "System.Resources.ResourceManager": "4.3.0",
  2063. "System.Runtime": "4.3.0",
  2064. "System.Runtime.Serialization.Primitives": "4.3.0"
  2065. },
  2066. "compile": {
  2067. "ref/netstandard1.3/_._": {}
  2068. },
  2069. "runtime": {
  2070. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
  2071. }
  2072. },
  2073. "System.Runtime.Serialization.Json/4.3.0": {
  2074. "type": "package",
  2075. "dependencies": {
  2076. "System.IO": "4.3.0",
  2077. "System.Private.DataContractSerialization": "4.3.0",
  2078. "System.Runtime": "4.3.0"
  2079. },
  2080. "compile": {
  2081. "ref/netstandard1.0/_._": {}
  2082. },
  2083. "runtime": {
  2084. "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {}
  2085. }
  2086. },
  2087. "System.Runtime.Serialization.Primitives/4.3.0": {
  2088. "type": "package",
  2089. "dependencies": {
  2090. "System.Resources.ResourceManager": "4.3.0",
  2091. "System.Runtime": "4.3.0"
  2092. },
  2093. "compile": {
  2094. "ref/netstandard1.3/_._": {}
  2095. },
  2096. "runtime": {
  2097. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2098. }
  2099. },
  2100. "System.Security.AccessControl/4.5.0": {
  2101. "type": "package",
  2102. "dependencies": {
  2103. "Microsoft.NETCore.Platforms": "2.0.0",
  2104. "System.Security.Principal.Windows": "4.5.0"
  2105. },
  2106. "compile": {
  2107. "ref/netstandard2.0/_._": {}
  2108. },
  2109. "runtime": {
  2110. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  2111. },
  2112. "runtimeTargets": {
  2113. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2114. "assetType": "runtime",
  2115. "rid": "win"
  2116. }
  2117. }
  2118. },
  2119. "System.Security.Cryptography.Algorithms/4.3.0": {
  2120. "type": "package",
  2121. "dependencies": {
  2122. "Microsoft.NETCore.Platforms": "1.1.0",
  2123. "System.Collections": "4.3.0",
  2124. "System.IO": "4.3.0",
  2125. "System.Resources.ResourceManager": "4.3.0",
  2126. "System.Runtime": "4.3.0",
  2127. "System.Runtime.Extensions": "4.3.0",
  2128. "System.Runtime.Handles": "4.3.0",
  2129. "System.Runtime.InteropServices": "4.3.0",
  2130. "System.Runtime.Numerics": "4.3.0",
  2131. "System.Security.Cryptography.Encoding": "4.3.0",
  2132. "System.Security.Cryptography.Primitives": "4.3.0",
  2133. "System.Text.Encoding": "4.3.0",
  2134. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2135. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2136. },
  2137. "compile": {
  2138. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2139. },
  2140. "runtimeTargets": {
  2141. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2142. "assetType": "runtime",
  2143. "rid": "osx"
  2144. },
  2145. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2146. "assetType": "runtime",
  2147. "rid": "unix"
  2148. },
  2149. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2150. "assetType": "runtime",
  2151. "rid": "win"
  2152. }
  2153. }
  2154. },
  2155. "System.Security.Cryptography.Cng/4.5.0": {
  2156. "type": "package",
  2157. "compile": {
  2158. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2159. },
  2160. "runtime": {
  2161. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2162. },
  2163. "runtimeTargets": {
  2164. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2165. "assetType": "runtime",
  2166. "rid": "win"
  2167. }
  2168. }
  2169. },
  2170. "System.Security.Cryptography.Csp/4.3.0": {
  2171. "type": "package",
  2172. "dependencies": {
  2173. "Microsoft.NETCore.Platforms": "1.1.0",
  2174. "System.IO": "4.3.0",
  2175. "System.Reflection": "4.3.0",
  2176. "System.Resources.ResourceManager": "4.3.0",
  2177. "System.Runtime": "4.3.0",
  2178. "System.Runtime.Extensions": "4.3.0",
  2179. "System.Runtime.Handles": "4.3.0",
  2180. "System.Runtime.InteropServices": "4.3.0",
  2181. "System.Security.Cryptography.Algorithms": "4.3.0",
  2182. "System.Security.Cryptography.Encoding": "4.3.0",
  2183. "System.Security.Cryptography.Primitives": "4.3.0",
  2184. "System.Text.Encoding": "4.3.0",
  2185. "System.Threading": "4.3.0"
  2186. },
  2187. "compile": {
  2188. "ref/netstandard1.3/_._": {}
  2189. },
  2190. "runtimeTargets": {
  2191. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2192. "assetType": "runtime",
  2193. "rid": "unix"
  2194. },
  2195. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2196. "assetType": "runtime",
  2197. "rid": "win"
  2198. }
  2199. }
  2200. },
  2201. "System.Security.Cryptography.Encoding/4.3.0": {
  2202. "type": "package",
  2203. "dependencies": {
  2204. "Microsoft.NETCore.Platforms": "1.1.0",
  2205. "System.Collections": "4.3.0",
  2206. "System.Collections.Concurrent": "4.3.0",
  2207. "System.Linq": "4.3.0",
  2208. "System.Resources.ResourceManager": "4.3.0",
  2209. "System.Runtime": "4.3.0",
  2210. "System.Runtime.Extensions": "4.3.0",
  2211. "System.Runtime.Handles": "4.3.0",
  2212. "System.Runtime.InteropServices": "4.3.0",
  2213. "System.Security.Cryptography.Primitives": "4.3.0",
  2214. "System.Text.Encoding": "4.3.0",
  2215. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2216. },
  2217. "compile": {
  2218. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  2219. },
  2220. "runtimeTargets": {
  2221. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2222. "assetType": "runtime",
  2223. "rid": "unix"
  2224. },
  2225. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2226. "assetType": "runtime",
  2227. "rid": "win"
  2228. }
  2229. }
  2230. },
  2231. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2232. "type": "package",
  2233. "dependencies": {
  2234. "System.Collections": "4.3.0",
  2235. "System.IO": "4.3.0",
  2236. "System.Resources.ResourceManager": "4.3.0",
  2237. "System.Runtime": "4.3.0",
  2238. "System.Runtime.Extensions": "4.3.0",
  2239. "System.Runtime.Handles": "4.3.0",
  2240. "System.Runtime.InteropServices": "4.3.0",
  2241. "System.Runtime.Numerics": "4.3.0",
  2242. "System.Security.Cryptography.Algorithms": "4.3.0",
  2243. "System.Security.Cryptography.Encoding": "4.3.0",
  2244. "System.Security.Cryptography.Primitives": "4.3.0",
  2245. "System.Text.Encoding": "4.3.0",
  2246. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2247. },
  2248. "compile": {
  2249. "ref/netstandard1.6/_._": {}
  2250. },
  2251. "runtime": {
  2252. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2253. },
  2254. "runtimeTargets": {
  2255. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2256. "assetType": "runtime",
  2257. "rid": "unix"
  2258. }
  2259. }
  2260. },
  2261. "System.Security.Cryptography.Primitives/4.3.0": {
  2262. "type": "package",
  2263. "dependencies": {
  2264. "System.Diagnostics.Debug": "4.3.0",
  2265. "System.Globalization": "4.3.0",
  2266. "System.IO": "4.3.0",
  2267. "System.Resources.ResourceManager": "4.3.0",
  2268. "System.Runtime": "4.3.0",
  2269. "System.Threading": "4.3.0",
  2270. "System.Threading.Tasks": "4.3.0"
  2271. },
  2272. "compile": {
  2273. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2274. },
  2275. "runtime": {
  2276. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2277. }
  2278. },
  2279. "System.Security.Cryptography.ProtectedData/4.5.0": {
  2280. "type": "package",
  2281. "compile": {
  2282. "ref/netstandard2.0/_._": {}
  2283. },
  2284. "runtime": {
  2285. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2286. },
  2287. "runtimeTargets": {
  2288. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2289. "assetType": "runtime",
  2290. "rid": "win"
  2291. }
  2292. }
  2293. },
  2294. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2295. "type": "package",
  2296. "dependencies": {
  2297. "Microsoft.NETCore.Platforms": "1.1.0",
  2298. "System.Collections": "4.3.0",
  2299. "System.Diagnostics.Debug": "4.3.0",
  2300. "System.Globalization": "4.3.0",
  2301. "System.Globalization.Calendars": "4.3.0",
  2302. "System.IO": "4.3.0",
  2303. "System.IO.FileSystem": "4.3.0",
  2304. "System.IO.FileSystem.Primitives": "4.3.0",
  2305. "System.Resources.ResourceManager": "4.3.0",
  2306. "System.Runtime": "4.3.0",
  2307. "System.Runtime.Extensions": "4.3.0",
  2308. "System.Runtime.Handles": "4.3.0",
  2309. "System.Runtime.InteropServices": "4.3.0",
  2310. "System.Runtime.Numerics": "4.3.0",
  2311. "System.Security.Cryptography.Algorithms": "4.3.0",
  2312. "System.Security.Cryptography.Cng": "4.3.0",
  2313. "System.Security.Cryptography.Csp": "4.3.0",
  2314. "System.Security.Cryptography.Encoding": "4.3.0",
  2315. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2316. "System.Security.Cryptography.Primitives": "4.3.0",
  2317. "System.Text.Encoding": "4.3.0",
  2318. "System.Threading": "4.3.0",
  2319. "runtime.native.System": "4.3.0",
  2320. "runtime.native.System.Net.Http": "4.3.0",
  2321. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2322. },
  2323. "compile": {
  2324. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2325. },
  2326. "runtimeTargets": {
  2327. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2328. "assetType": "runtime",
  2329. "rid": "unix"
  2330. },
  2331. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2332. "assetType": "runtime",
  2333. "rid": "win"
  2334. }
  2335. }
  2336. },
  2337. "System.Security.Permissions/4.5.0": {
  2338. "type": "package",
  2339. "dependencies": {
  2340. "System.Security.AccessControl": "4.5.0"
  2341. },
  2342. "compile": {
  2343. "ref/netstandard2.0/_._": {}
  2344. },
  2345. "runtime": {
  2346. "lib/netstandard2.0/System.Security.Permissions.dll": {}
  2347. }
  2348. },
  2349. "System.Security.Principal.Windows/4.5.0": {
  2350. "type": "package",
  2351. "dependencies": {
  2352. "Microsoft.NETCore.Platforms": "2.0.0"
  2353. },
  2354. "compile": {
  2355. "ref/netstandard2.0/_._": {}
  2356. },
  2357. "runtime": {
  2358. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2359. },
  2360. "runtimeTargets": {
  2361. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
  2362. "assetType": "runtime",
  2363. "rid": "unix"
  2364. },
  2365. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
  2366. "assetType": "runtime",
  2367. "rid": "win"
  2368. }
  2369. }
  2370. },
  2371. "System.Security.SecureString/4.3.0": {
  2372. "type": "package",
  2373. "dependencies": {
  2374. "Microsoft.NETCore.Platforms": "1.1.0",
  2375. "System.Resources.ResourceManager": "4.3.0",
  2376. "System.Runtime": "4.3.0",
  2377. "System.Runtime.Handles": "4.3.0",
  2378. "System.Runtime.InteropServices": "4.3.0",
  2379. "System.Security.Cryptography.Primitives": "4.3.0",
  2380. "System.Text.Encoding": "4.3.0",
  2381. "System.Threading": "4.3.0"
  2382. },
  2383. "compile": {
  2384. "ref/netstandard1.3/_._": {}
  2385. },
  2386. "runtimeTargets": {
  2387. "runtimes/unix/lib/netstandard1.3/System.Security.SecureString.dll": {
  2388. "assetType": "runtime",
  2389. "rid": "unix"
  2390. },
  2391. "runtimes/win/lib/netstandard1.3/System.Security.SecureString.dll": {
  2392. "assetType": "runtime",
  2393. "rid": "win"
  2394. }
  2395. }
  2396. },
  2397. "System.Text.Encoding/4.3.0": {
  2398. "type": "package",
  2399. "dependencies": {
  2400. "Microsoft.NETCore.Platforms": "1.1.0",
  2401. "Microsoft.NETCore.Targets": "1.1.0",
  2402. "System.Runtime": "4.3.0"
  2403. },
  2404. "compile": {
  2405. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2406. }
  2407. },
  2408. "System.Text.Encoding.CodePages/4.5.1": {
  2409. "type": "package",
  2410. "dependencies": {
  2411. "Microsoft.NETCore.Platforms": "2.1.2",
  2412. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2413. },
  2414. "compile": {
  2415. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2416. },
  2417. "runtime": {
  2418. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2419. },
  2420. "runtimeTargets": {
  2421. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2422. "assetType": "runtime",
  2423. "rid": "win"
  2424. }
  2425. }
  2426. },
  2427. "System.Text.Encoding.Extensions/4.3.0": {
  2428. "type": "package",
  2429. "dependencies": {
  2430. "Microsoft.NETCore.Platforms": "1.1.0",
  2431. "Microsoft.NETCore.Targets": "1.1.0",
  2432. "System.Runtime": "4.3.0",
  2433. "System.Text.Encoding": "4.3.0"
  2434. },
  2435. "compile": {
  2436. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2437. }
  2438. },
  2439. "System.Text.Encodings.Web/4.5.0": {
  2440. "type": "package",
  2441. "compile": {
  2442. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2443. },
  2444. "runtime": {
  2445. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2446. }
  2447. },
  2448. "System.Text.RegularExpressions/4.3.0": {
  2449. "type": "package",
  2450. "dependencies": {
  2451. "System.Runtime": "4.3.0"
  2452. },
  2453. "compile": {
  2454. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2455. },
  2456. "runtime": {
  2457. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2458. }
  2459. },
  2460. "System.Threading/4.3.0": {
  2461. "type": "package",
  2462. "dependencies": {
  2463. "System.Runtime": "4.3.0",
  2464. "System.Threading.Tasks": "4.3.0"
  2465. },
  2466. "compile": {
  2467. "ref/netstandard1.3/System.Threading.dll": {}
  2468. },
  2469. "runtime": {
  2470. "lib/netstandard1.3/System.Threading.dll": {}
  2471. }
  2472. },
  2473. "System.Threading.Tasks/4.3.0": {
  2474. "type": "package",
  2475. "dependencies": {
  2476. "Microsoft.NETCore.Platforms": "1.1.0",
  2477. "Microsoft.NETCore.Targets": "1.1.0",
  2478. "System.Runtime": "4.3.0"
  2479. },
  2480. "compile": {
  2481. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2482. }
  2483. },
  2484. "System.Threading.Tasks.Extensions/4.5.3": {
  2485. "type": "package",
  2486. "compile": {
  2487. "ref/netcoreapp2.1/_._": {}
  2488. },
  2489. "runtime": {
  2490. "lib/netcoreapp2.1/_._": {}
  2491. }
  2492. },
  2493. "System.Threading.Timer/4.3.0": {
  2494. "type": "package",
  2495. "dependencies": {
  2496. "Microsoft.NETCore.Platforms": "1.1.0",
  2497. "Microsoft.NETCore.Targets": "1.1.0",
  2498. "System.Runtime": "4.3.0"
  2499. },
  2500. "compile": {
  2501. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2502. }
  2503. },
  2504. "System.Xml.ReaderWriter/4.3.0": {
  2505. "type": "package",
  2506. "dependencies": {
  2507. "System.Collections": "4.3.0",
  2508. "System.Diagnostics.Debug": "4.3.0",
  2509. "System.Globalization": "4.3.0",
  2510. "System.IO": "4.3.0",
  2511. "System.IO.FileSystem": "4.3.0",
  2512. "System.IO.FileSystem.Primitives": "4.3.0",
  2513. "System.Resources.ResourceManager": "4.3.0",
  2514. "System.Runtime": "4.3.0",
  2515. "System.Runtime.Extensions": "4.3.0",
  2516. "System.Runtime.InteropServices": "4.3.0",
  2517. "System.Text.Encoding": "4.3.0",
  2518. "System.Text.Encoding.Extensions": "4.3.0",
  2519. "System.Text.RegularExpressions": "4.3.0",
  2520. "System.Threading.Tasks": "4.3.0",
  2521. "System.Threading.Tasks.Extensions": "4.3.0"
  2522. },
  2523. "compile": {
  2524. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2525. },
  2526. "runtime": {
  2527. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2528. }
  2529. },
  2530. "System.Xml.XDocument/4.3.0": {
  2531. "type": "package",
  2532. "dependencies": {
  2533. "System.Collections": "4.3.0",
  2534. "System.Diagnostics.Debug": "4.3.0",
  2535. "System.Diagnostics.Tools": "4.3.0",
  2536. "System.Globalization": "4.3.0",
  2537. "System.IO": "4.3.0",
  2538. "System.Reflection": "4.3.0",
  2539. "System.Resources.ResourceManager": "4.3.0",
  2540. "System.Runtime": "4.3.0",
  2541. "System.Runtime.Extensions": "4.3.0",
  2542. "System.Text.Encoding": "4.3.0",
  2543. "System.Threading": "4.3.0",
  2544. "System.Xml.ReaderWriter": "4.3.0"
  2545. },
  2546. "compile": {
  2547. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2548. },
  2549. "runtime": {
  2550. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2551. }
  2552. },
  2553. "System.Xml.XmlDocument/4.3.0": {
  2554. "type": "package",
  2555. "dependencies": {
  2556. "System.Collections": "4.3.0",
  2557. "System.Diagnostics.Debug": "4.3.0",
  2558. "System.Globalization": "4.3.0",
  2559. "System.IO": "4.3.0",
  2560. "System.Resources.ResourceManager": "4.3.0",
  2561. "System.Runtime": "4.3.0",
  2562. "System.Runtime.Extensions": "4.3.0",
  2563. "System.Text.Encoding": "4.3.0",
  2564. "System.Threading": "4.3.0",
  2565. "System.Xml.ReaderWriter": "4.3.0"
  2566. },
  2567. "compile": {
  2568. "ref/netstandard1.3/_._": {}
  2569. },
  2570. "runtime": {
  2571. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2572. }
  2573. },
  2574. "System.Xml.XmlSerializer/4.3.0": {
  2575. "type": "package",
  2576. "dependencies": {
  2577. "System.Collections": "4.3.0",
  2578. "System.Globalization": "4.3.0",
  2579. "System.IO": "4.3.0",
  2580. "System.Linq": "4.3.0",
  2581. "System.Reflection": "4.3.0",
  2582. "System.Reflection.Emit": "4.3.0",
  2583. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2584. "System.Reflection.Extensions": "4.3.0",
  2585. "System.Reflection.Primitives": "4.3.0",
  2586. "System.Reflection.TypeExtensions": "4.3.0",
  2587. "System.Resources.ResourceManager": "4.3.0",
  2588. "System.Runtime": "4.3.0",
  2589. "System.Runtime.Extensions": "4.3.0",
  2590. "System.Text.RegularExpressions": "4.3.0",
  2591. "System.Threading": "4.3.0",
  2592. "System.Xml.ReaderWriter": "4.3.0",
  2593. "System.Xml.XmlDocument": "4.3.0"
  2594. },
  2595. "compile": {
  2596. "ref/netstandard1.3/_._": {}
  2597. },
  2598. "runtime": {
  2599. "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {}
  2600. }
  2601. }
  2602. }
  2603. },
  2604. "libraries": {
  2605. "Microsoft.AspNetCore.Html.Abstractions/2.2.0": {
  2606. "sha512": "Y4rs5aMEXY8G7wJo5S3EEt6ltqyOTr/qOeZzfn+hw/fuQj5GppGckMY5psGLETo1U9hcT5MmAhaT5xtusM1b5g==",
  2607. "type": "package",
  2608. "path": "microsoft.aspnetcore.html.abstractions/2.2.0",
  2609. "files": [
  2610. ".nupkg.metadata",
  2611. ".signature.p7s",
  2612. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll",
  2613. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.xml",
  2614. "microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512",
  2615. "microsoft.aspnetcore.html.abstractions.nuspec"
  2616. ]
  2617. },
  2618. "Microsoft.AspNetCore.Razor/2.2.0": {
  2619. "sha512": "V54PIyDCFl8COnTp9gezNHpUNHk7F9UnerGeZy3UfbnwYvfzbo+ipqQmSgeoESH8e0JvKhRTyQyZquW2EPtCmg==",
  2620. "type": "package",
  2621. "path": "microsoft.aspnetcore.razor/2.2.0",
  2622. "files": [
  2623. ".nupkg.metadata",
  2624. ".signature.p7s",
  2625. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll",
  2626. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.xml",
  2627. "microsoft.aspnetcore.razor.2.2.0.nupkg.sha512",
  2628. "microsoft.aspnetcore.razor.nuspec"
  2629. ]
  2630. },
  2631. "Microsoft.AspNetCore.Razor.Language/3.1.0": {
  2632. "sha512": "e/atqZ5CzmJWuG/yaYOzbWNON+oqNKfk1M/xTYW+hje/RoiUUjVP88wrX1s9rEHzaAU4UljIOSvMxLABc2X2gg==",
  2633. "type": "package",
  2634. "path": "microsoft.aspnetcore.razor.language/3.1.0",
  2635. "files": [
  2636. ".nupkg.metadata",
  2637. ".signature.p7s",
  2638. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  2639. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.xml",
  2640. "microsoft.aspnetcore.razor.language.3.1.0.nupkg.sha512",
  2641. "microsoft.aspnetcore.razor.language.nuspec",
  2642. "packageIcon.png"
  2643. ]
  2644. },
  2645. "Microsoft.AspNetCore.Razor.Runtime/2.2.0": {
  2646. "sha512": "7YqK+H61lN6yj9RiQUko7oaOhKtRR9Q/kBcoWNRemhJdTIWOh1OmdvJKzZrMWOlff3BAjejkPQm+0V0qXk+B1w==",
  2647. "type": "package",
  2648. "path": "microsoft.aspnetcore.razor.runtime/2.2.0",
  2649. "files": [
  2650. ".nupkg.metadata",
  2651. ".signature.p7s",
  2652. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll",
  2653. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.xml",
  2654. "microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512",
  2655. "microsoft.aspnetcore.razor.runtime.nuspec"
  2656. ]
  2657. },
  2658. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  2659. "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
  2660. "type": "package",
  2661. "path": "microsoft.bcl.asyncinterfaces/1.1.1",
  2662. "files": [
  2663. ".nupkg.metadata",
  2664. ".signature.p7s",
  2665. "Icon.png",
  2666. "LICENSE.TXT",
  2667. "THIRD-PARTY-NOTICES.TXT",
  2668. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2669. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  2670. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2671. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  2672. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2673. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  2674. "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
  2675. "microsoft.bcl.asyncinterfaces.nuspec",
  2676. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2677. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2678. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2679. "useSharedDesignerContext.txt",
  2680. "version.txt"
  2681. ]
  2682. },
  2683. "Microsoft.Bcl.HashCode/1.1.1": {
  2684. "sha512": "MalY0Y/uM/LjXtHfX/26l2VtN4LDNZ2OE3aumNOHDLsT4fNYy2hiHXI4CXCqKpNUNm7iJ2brrc4J89UdaL56FA==",
  2685. "type": "package",
  2686. "path": "microsoft.bcl.hashcode/1.1.1",
  2687. "files": [
  2688. ".nupkg.metadata",
  2689. ".signature.p7s",
  2690. "Icon.png",
  2691. "LICENSE.TXT",
  2692. "THIRD-PARTY-NOTICES.TXT",
  2693. "lib/net461/Microsoft.Bcl.HashCode.dll",
  2694. "lib/net461/Microsoft.Bcl.HashCode.xml",
  2695. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  2696. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  2697. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  2698. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  2699. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  2700. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  2701. "microsoft.bcl.hashcode.1.1.1.nupkg.sha512",
  2702. "microsoft.bcl.hashcode.nuspec",
  2703. "ref/net461/Microsoft.Bcl.HashCode.dll",
  2704. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  2705. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  2706. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  2707. "useSharedDesignerContext.txt",
  2708. "version.txt"
  2709. ]
  2710. },
  2711. "Microsoft.CodeAnalysis.Analyzers/2.9.4": {
  2712. "sha512": "alIJhS0VUg/7x5AsHEoovh/wRZ0RfCSS7k5pDSqpRLTyuMTtRgj6OJJPRApRhJHOGYYsLakf1hKeXFoDwKwNkg==",
  2713. "type": "package",
  2714. "path": "microsoft.codeanalysis.analyzers/2.9.4",
  2715. "hasTools": true,
  2716. "files": [
  2717. ".nupkg.metadata",
  2718. ".signature.p7s",
  2719. "ThirdPartyNotices.rtf",
  2720. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  2721. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  2722. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2723. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2724. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2725. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2726. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2727. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2728. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2729. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2730. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2731. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2732. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2733. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2734. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2735. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  2736. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  2737. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2738. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2739. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2740. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2741. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2742. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2743. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2744. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2745. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2746. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2747. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2748. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2749. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2750. "build/Microsoft.CodeAnalysis.Analyzers.props",
  2751. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  2752. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  2753. "microsoft.codeanalysis.analyzers.2.9.4.nupkg.sha512",
  2754. "microsoft.codeanalysis.analyzers.nuspec",
  2755. "rulesets/AllRulesDefault.ruleset",
  2756. "rulesets/AllRulesDisabled.ruleset",
  2757. "rulesets/AllRulesEnabled.ruleset",
  2758. "rulesets/CorrectnessRulesDefault.ruleset",
  2759. "rulesets/CorrectnessRulesEnabled.ruleset",
  2760. "rulesets/DataflowRulesDefault.ruleset",
  2761. "rulesets/DataflowRulesEnabled.ruleset",
  2762. "rulesets/LibraryRulesDefault.ruleset",
  2763. "rulesets/LibraryRulesEnabled.ruleset",
  2764. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  2765. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  2766. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  2767. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  2768. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  2769. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  2770. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  2771. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  2772. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  2773. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  2774. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  2775. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  2776. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  2777. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  2778. "tools/install.ps1",
  2779. "tools/uninstall.ps1"
  2780. ]
  2781. },
  2782. "Microsoft.CodeAnalysis.Common/3.3.1": {
  2783. "sha512": "N5yQdGy+M4kimVG7hwCeGTCfgYjK2o5b/Shumkb/rCC+/SAkvP1HUAYK+vxPFS7dLJNtXLRsmPHKj3fnyNWnrw==",
  2784. "type": "package",
  2785. "path": "microsoft.codeanalysis.common/3.3.1",
  2786. "files": [
  2787. ".nupkg.metadata",
  2788. ".signature.p7s",
  2789. "ThirdPartyNotices.rtf",
  2790. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  2791. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  2792. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  2793. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  2794. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  2795. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  2796. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  2797. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  2798. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  2799. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  2800. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  2801. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  2802. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  2803. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  2804. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  2805. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  2806. "microsoft.codeanalysis.common.3.3.1.nupkg.sha512",
  2807. "microsoft.codeanalysis.common.nuspec"
  2808. ]
  2809. },
  2810. "Microsoft.CodeAnalysis.CSharp/3.3.1": {
  2811. "sha512": "WDUIhTHem38H6VJ98x2Ssq0fweakJHnHYl7vbG8ARnsAwLoJKCQCy78EeY1oRrCKG42j0v6JVljKkeqSDA28UA==",
  2812. "type": "package",
  2813. "path": "microsoft.codeanalysis.csharp/3.3.1",
  2814. "files": [
  2815. ".nupkg.metadata",
  2816. ".signature.p7s",
  2817. "ThirdPartyNotices.rtf",
  2818. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  2819. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  2820. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  2821. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2822. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2823. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2824. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2825. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2826. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2827. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2828. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2829. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2830. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2831. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2832. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2833. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2834. "microsoft.codeanalysis.csharp.3.3.1.nupkg.sha512",
  2835. "microsoft.codeanalysis.csharp.nuspec"
  2836. ]
  2837. },
  2838. "Microsoft.CodeAnalysis.CSharp.Workspaces/3.3.1": {
  2839. "sha512": "dHs/UyfLgzsVC4FjTi/x+H+yQifgOnpe3rSN8GwkHWjnidePZ3kSqr1JHmFDf5HTQEydYwrwCAfQ0JSzhsEqDA==",
  2840. "type": "package",
  2841. "path": "microsoft.codeanalysis.csharp.workspaces/3.3.1",
  2842. "files": [
  2843. ".nupkg.metadata",
  2844. ".signature.p7s",
  2845. "ThirdPartyNotices.rtf",
  2846. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  2847. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  2848. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  2849. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2850. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2851. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2852. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2853. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2854. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2855. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2856. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2857. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2858. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2859. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2860. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2861. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2862. "microsoft.codeanalysis.csharp.workspaces.3.3.1.nupkg.sha512",
  2863. "microsoft.codeanalysis.csharp.workspaces.nuspec"
  2864. ]
  2865. },
  2866. "Microsoft.CodeAnalysis.Razor/3.1.0": {
  2867. "sha512": "EI/9iVMneil8nZn7mqEujJvV63VRaz01Czc69NTrCQAh5CRfBvoeqBVsDx6oC9CIYla/AJYss+U4B/6Usecx7A==",
  2868. "type": "package",
  2869. "path": "microsoft.codeanalysis.razor/3.1.0",
  2870. "files": [
  2871. ".nupkg.metadata",
  2872. ".signature.p7s",
  2873. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  2874. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.xml",
  2875. "microsoft.codeanalysis.razor.3.1.0.nupkg.sha512",
  2876. "microsoft.codeanalysis.razor.nuspec",
  2877. "packageIcon.png"
  2878. ]
  2879. },
  2880. "Microsoft.CodeAnalysis.Workspaces.Common/3.3.1": {
  2881. "sha512": "NfBz3b5hFSbO+7xsCNryD+p8axsIJFTG7qM3jvMTC/MqYrU6b8E1b6JoRj5rJSOBB+pSunk+CMqyGQTOWHeDUg==",
  2882. "type": "package",
  2883. "path": "microsoft.codeanalysis.workspaces.common/3.3.1",
  2884. "files": [
  2885. ".nupkg.metadata",
  2886. ".signature.p7s",
  2887. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
  2888. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
  2889. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
  2890. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2891. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2892. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2893. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2894. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2895. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2896. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2897. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2898. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2899. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2900. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2901. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2902. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2903. "microsoft.codeanalysis.workspaces.common.3.3.1.nupkg.sha512",
  2904. "microsoft.codeanalysis.workspaces.common.nuspec"
  2905. ]
  2906. },
  2907. "Microsoft.CSharp/4.7.0": {
  2908. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2909. "type": "package",
  2910. "path": "microsoft.csharp/4.7.0",
  2911. "files": [
  2912. ".nupkg.metadata",
  2913. ".signature.p7s",
  2914. "LICENSE.TXT",
  2915. "THIRD-PARTY-NOTICES.TXT",
  2916. "lib/MonoAndroid10/_._",
  2917. "lib/MonoTouch10/_._",
  2918. "lib/net45/_._",
  2919. "lib/netcore50/Microsoft.CSharp.dll",
  2920. "lib/netcoreapp2.0/_._",
  2921. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2922. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2923. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2924. "lib/portable-net45+win8+wp8+wpa81/_._",
  2925. "lib/uap10.0.16299/_._",
  2926. "lib/win8/_._",
  2927. "lib/wp80/_._",
  2928. "lib/wpa81/_._",
  2929. "lib/xamarinios10/_._",
  2930. "lib/xamarinmac20/_._",
  2931. "lib/xamarintvos10/_._",
  2932. "lib/xamarinwatchos10/_._",
  2933. "microsoft.csharp.4.7.0.nupkg.sha512",
  2934. "microsoft.csharp.nuspec",
  2935. "ref/MonoAndroid10/_._",
  2936. "ref/MonoTouch10/_._",
  2937. "ref/net45/_._",
  2938. "ref/netcore50/Microsoft.CSharp.dll",
  2939. "ref/netcore50/Microsoft.CSharp.xml",
  2940. "ref/netcore50/de/Microsoft.CSharp.xml",
  2941. "ref/netcore50/es/Microsoft.CSharp.xml",
  2942. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2943. "ref/netcore50/it/Microsoft.CSharp.xml",
  2944. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2945. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2946. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2947. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2948. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2949. "ref/netcoreapp2.0/_._",
  2950. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2951. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2952. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2953. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2954. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2955. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2956. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2957. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2958. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2959. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2960. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2961. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2962. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2963. "ref/portable-net45+win8+wp8+wpa81/_._",
  2964. "ref/uap10.0.16299/_._",
  2965. "ref/win8/_._",
  2966. "ref/wp80/_._",
  2967. "ref/wpa81/_._",
  2968. "ref/xamarinios10/_._",
  2969. "ref/xamarinmac20/_._",
  2970. "ref/xamarintvos10/_._",
  2971. "ref/xamarinwatchos10/_._",
  2972. "useSharedDesignerContext.txt",
  2973. "version.txt"
  2974. ]
  2975. },
  2976. "Microsoft.Data.SqlClient/1.1.3": {
  2977. "sha512": "KOT5AoOXIQCF98y+ynMLMaemS05RebDconYlCtqdFGbcpviW+S2/wXhrDNPtZ3MWeB+6ej3t4CrzykRGQKk9gA==",
  2978. "type": "package",
  2979. "path": "microsoft.data.sqlclient/1.1.3",
  2980. "files": [
  2981. ".nupkg.metadata",
  2982. ".signature.p7s",
  2983. "dotnet.png",
  2984. "lib/net46/Microsoft.Data.SqlClient.dll",
  2985. "lib/net46/Microsoft.Data.SqlClient.pdb",
  2986. "lib/net46/Microsoft.Data.SqlClient.xml",
  2987. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  2988. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  2989. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  2990. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  2991. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  2992. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  2993. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  2994. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  2995. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  2996. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  2997. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2998. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2999. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  3000. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3001. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3002. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  3003. "microsoft.data.sqlclient.1.1.3.nupkg.sha512",
  3004. "microsoft.data.sqlclient.nuspec",
  3005. "ref/net46/Microsoft.Data.SqlClient.dll",
  3006. "ref/net46/Microsoft.Data.SqlClient.pdb",
  3007. "ref/net46/Microsoft.Data.SqlClient.xml",
  3008. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  3009. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  3010. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  3011. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3012. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3013. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  3014. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  3015. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  3016. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3017. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3018. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  3019. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  3020. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  3021. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  3022. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3023. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb"
  3024. ]
  3025. },
  3026. "Microsoft.EntityFrameworkCore/3.1.32": {
  3027. "sha512": "I6C1GTTg9xS/eLEIaea5m3vIKMZLQAt9RU6QnAoYTJDS03NHXXl8xNgsdcN4a5Zyc8hvnWPbYAW18ONLcG5+AQ==",
  3028. "type": "package",
  3029. "path": "microsoft.entityframeworkcore/3.1.32",
  3030. "files": [
  3031. ".nupkg.metadata",
  3032. ".signature.p7s",
  3033. "Icon.png",
  3034. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  3035. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  3036. "microsoft.entityframeworkcore.3.1.32.nupkg.sha512",
  3037. "microsoft.entityframeworkcore.nuspec"
  3038. ]
  3039. },
  3040. "Microsoft.EntityFrameworkCore.Abstractions/3.1.32": {
  3041. "sha512": "4y0VcTXWIQIWduWSFl+mZcESPQBlIPlZMeP221YvWmkQnHt1iHDHaaNBilqGAH6q1P0SvHfHDOqwVXpppiztbw==",
  3042. "type": "package",
  3043. "path": "microsoft.entityframeworkcore.abstractions/3.1.32",
  3044. "files": [
  3045. ".nupkg.metadata",
  3046. ".signature.p7s",
  3047. "Icon.png",
  3048. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3049. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3050. "microsoft.entityframeworkcore.abstractions.3.1.32.nupkg.sha512",
  3051. "microsoft.entityframeworkcore.abstractions.nuspec"
  3052. ]
  3053. },
  3054. "Microsoft.EntityFrameworkCore.Analyzers/3.1.32": {
  3055. "sha512": "yvQBsos0/oAqN9rjcTRAFflBRcgFd8JINb9m0Zl7y12ac5jswvD8ILNVDSu5UCAd1y84xehjRKcq2ptIceBeGg==",
  3056. "type": "package",
  3057. "path": "microsoft.entityframeworkcore.analyzers/3.1.32",
  3058. "files": [
  3059. ".nupkg.metadata",
  3060. ".signature.p7s",
  3061. "Icon.png",
  3062. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3063. "lib/netstandard2.0/_._",
  3064. "microsoft.entityframeworkcore.analyzers.3.1.32.nupkg.sha512",
  3065. "microsoft.entityframeworkcore.analyzers.nuspec"
  3066. ]
  3067. },
  3068. "Microsoft.EntityFrameworkCore.Design/3.1.32": {
  3069. "sha512": "j3J9cHpTBi1zoOVyOsDT27bTZENhqsOij+EPfRWxojxgo5qn3Ayp+xdtxM1E37av7oy4yB+DJTY1pOKYWJtAOQ==",
  3070. "type": "package",
  3071. "path": "microsoft.entityframeworkcore.design/3.1.32",
  3072. "files": [
  3073. ".nupkg.metadata",
  3074. ".signature.p7s",
  3075. "Icon.png",
  3076. "build/net461/Microsoft.EntityFrameworkCore.Design.props",
  3077. "build/netcoreapp2.0/Microsoft.EntityFrameworkCore.Design.props",
  3078. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll",
  3079. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.xml",
  3080. "microsoft.entityframeworkcore.design.3.1.32.nupkg.sha512",
  3081. "microsoft.entityframeworkcore.design.nuspec"
  3082. ]
  3083. },
  3084. "Microsoft.EntityFrameworkCore.Relational/3.1.32": {
  3085. "sha512": "ex5Dr6GzZdzAiJoGRPxubSDLMSIzmMa4Cxea4eFMb8tSvfv+AUhlKIasU7WMq0v9qlqudbf5tiUAdhoehiv+iw==",
  3086. "type": "package",
  3087. "path": "microsoft.entityframeworkcore.relational/3.1.32",
  3088. "files": [
  3089. ".nupkg.metadata",
  3090. ".signature.p7s",
  3091. "Icon.png",
  3092. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  3093. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  3094. "microsoft.entityframeworkcore.relational.3.1.32.nupkg.sha512",
  3095. "microsoft.entityframeworkcore.relational.nuspec"
  3096. ]
  3097. },
  3098. "Microsoft.EntityFrameworkCore.SqlServer/3.1.32": {
  3099. "sha512": "f+FdDq9TirUG/qESHtEps9ZLR0FSwESczGrHr6Q7rzkqdarHZS444cCZcJaUgpdKO0a990U/juNogB67BbzHTA==",
  3100. "type": "package",
  3101. "path": "microsoft.entityframeworkcore.sqlserver/3.1.32",
  3102. "files": [
  3103. ".nupkg.metadata",
  3104. ".signature.p7s",
  3105. "Icon.png",
  3106. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
  3107. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
  3108. "microsoft.entityframeworkcore.sqlserver.3.1.32.nupkg.sha512",
  3109. "microsoft.entityframeworkcore.sqlserver.nuspec"
  3110. ]
  3111. },
  3112. "Microsoft.EntityFrameworkCore.Tools/3.1.32": {
  3113. "sha512": "YarqBbDMJjJm/Gn2vRM4xDONXWCHrFhKLuNntI4wQA14HWJSDjExs9yIAXCvRJjUaHESKnYZxMLn0RARe0Km+Q==",
  3114. "type": "package",
  3115. "path": "microsoft.entityframeworkcore.tools/3.1.32",
  3116. "hasTools": true,
  3117. "files": [
  3118. ".nupkg.metadata",
  3119. ".signature.p7s",
  3120. "Icon.png",
  3121. "lib/netstandard2.0/_._",
  3122. "microsoft.entityframeworkcore.tools.3.1.32.nupkg.sha512",
  3123. "microsoft.entityframeworkcore.tools.nuspec",
  3124. "tools/EntityFrameworkCore.PS2.psd1",
  3125. "tools/EntityFrameworkCore.PS2.psm1",
  3126. "tools/EntityFrameworkCore.psd1",
  3127. "tools/EntityFrameworkCore.psm1",
  3128. "tools/about_EntityFrameworkCore.help.txt",
  3129. "tools/init.ps1",
  3130. "tools/net461/any/ef.exe",
  3131. "tools/net461/win-arm64/ef.exe",
  3132. "tools/net461/win-x86/ef.exe",
  3133. "tools/netcoreapp2.0/any/ef.dll",
  3134. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  3135. ]
  3136. },
  3137. "Microsoft.Extensions.Caching.Abstractions/3.1.32": {
  3138. "sha512": "cZdm91JlYwshLdYtg01a/FIuAiKQf/K/pg8q3+qLBnSEwy5dbPQYnS+/1W8aQb5JVTpb/+ZH3BvKab6V0M9Y/w==",
  3139. "type": "package",
  3140. "path": "microsoft.extensions.caching.abstractions/3.1.32",
  3141. "files": [
  3142. ".nupkg.metadata",
  3143. ".signature.p7s",
  3144. "Icon.png",
  3145. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  3146. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  3147. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3148. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3149. "microsoft.extensions.caching.abstractions.3.1.32.nupkg.sha512",
  3150. "microsoft.extensions.caching.abstractions.nuspec"
  3151. ]
  3152. },
  3153. "Microsoft.Extensions.Caching.Memory/3.1.32": {
  3154. "sha512": "ANoYCSOuKSh7jYBhqhqLHb4aOEYhsqdKeyA3ralscLxaq6sftQZDia3wvebMYEoMjwxTBMwyEEKcDEb9+QQzKw==",
  3155. "type": "package",
  3156. "path": "microsoft.extensions.caching.memory/3.1.32",
  3157. "files": [
  3158. ".nupkg.metadata",
  3159. ".signature.p7s",
  3160. "Icon.png",
  3161. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  3162. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  3163. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3164. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3165. "microsoft.extensions.caching.memory.3.1.32.nupkg.sha512",
  3166. "microsoft.extensions.caching.memory.nuspec"
  3167. ]
  3168. },
  3169. "Microsoft.Extensions.Configuration/3.1.32": {
  3170. "sha512": "WuOHTU9FB1yHaIU+/Ar1s5swHshH+7YjU7eA9Lmv0kO+rta7xOrR5Xu68srdxNpE9HjqjzxGZhPJFLxpP3J1Og==",
  3171. "type": "package",
  3172. "path": "microsoft.extensions.configuration/3.1.32",
  3173. "files": [
  3174. ".nupkg.metadata",
  3175. ".signature.p7s",
  3176. "Icon.png",
  3177. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
  3178. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
  3179. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3180. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3181. "microsoft.extensions.configuration.3.1.32.nupkg.sha512",
  3182. "microsoft.extensions.configuration.nuspec"
  3183. ]
  3184. },
  3185. "Microsoft.Extensions.Configuration.Abstractions/3.1.32": {
  3186. "sha512": "w8WEwVFYbTkoDQ/eJgGUPiL4SqZOiIVBkGxbkmnJAWnFxRigFk4WZla/3MDkN9fGSis6JwJfc57YgnleTw48AA==",
  3187. "type": "package",
  3188. "path": "microsoft.extensions.configuration.abstractions/3.1.32",
  3189. "files": [
  3190. ".nupkg.metadata",
  3191. ".signature.p7s",
  3192. "Icon.png",
  3193. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
  3194. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
  3195. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3196. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3197. "microsoft.extensions.configuration.abstractions.3.1.32.nupkg.sha512",
  3198. "microsoft.extensions.configuration.abstractions.nuspec"
  3199. ]
  3200. },
  3201. "Microsoft.Extensions.Configuration.Binder/3.1.32": {
  3202. "sha512": "e89Od7dtbQpSPL3wNLlZ5LYv6KtMczxr2KSTULt4mhhUnMJtSfDIe1JJJJaL/Ed2+cwyAXtkMpqf4aR/Sd4mTQ==",
  3203. "type": "package",
  3204. "path": "microsoft.extensions.configuration.binder/3.1.32",
  3205. "files": [
  3206. ".nupkg.metadata",
  3207. ".signature.p7s",
  3208. "Icon.png",
  3209. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
  3210. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
  3211. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3212. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3213. "microsoft.extensions.configuration.binder.3.1.32.nupkg.sha512",
  3214. "microsoft.extensions.configuration.binder.nuspec"
  3215. ]
  3216. },
  3217. "Microsoft.Extensions.DependencyInjection/3.1.32": {
  3218. "sha512": "VUbvtpsoHZf4XtBhsfio0+2cpqC9bJs6ZiApT3G81CwBfcDV5OSeU9SaI6it6wxaGf0K2uADzzIS+4yTADaTRg==",
  3219. "type": "package",
  3220. "path": "microsoft.extensions.dependencyinjection/3.1.32",
  3221. "files": [
  3222. ".nupkg.metadata",
  3223. ".signature.p7s",
  3224. "Icon.png",
  3225. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3226. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3227. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
  3228. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
  3229. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3230. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3231. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3232. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3233. "microsoft.extensions.dependencyinjection.3.1.32.nupkg.sha512",
  3234. "microsoft.extensions.dependencyinjection.nuspec"
  3235. ]
  3236. },
  3237. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.32": {
  3238. "sha512": "dARl3iAcHZshMvnXtKpLGES4QZq8ExxIQnF2s8pXfP3MJOOXRSBsk+UmA3TMVN4hPr4O2QFS8AMJp9GDD/4lDw==",
  3239. "type": "package",
  3240. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.32",
  3241. "files": [
  3242. ".nupkg.metadata",
  3243. ".signature.p7s",
  3244. "Icon.png",
  3245. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3246. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3247. "microsoft.extensions.dependencyinjection.abstractions.3.1.32.nupkg.sha512",
  3248. "microsoft.extensions.dependencyinjection.abstractions.nuspec"
  3249. ]
  3250. },
  3251. "Microsoft.Extensions.Logging/3.1.32": {
  3252. "sha512": "5nx7SuLJnqINfv9zslFGig1Czt2AWAyKLiSEZj8eHxYJucuHcoenvD8p75FafYANsMMOach6ZiNZ1MdlPFS/MQ==",
  3253. "type": "package",
  3254. "path": "microsoft.extensions.logging/3.1.32",
  3255. "files": [
  3256. ".nupkg.metadata",
  3257. ".signature.p7s",
  3258. "Icon.png",
  3259. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
  3260. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
  3261. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3262. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3263. "microsoft.extensions.logging.3.1.32.nupkg.sha512",
  3264. "microsoft.extensions.logging.nuspec"
  3265. ]
  3266. },
  3267. "Microsoft.Extensions.Logging.Abstractions/3.1.32": {
  3268. "sha512": "BShtU4APsEGa72vaj42rHc8CW40xpFp1dousoNeziHwOUFJLNOJP2wxKX2jyfer0nFaLSkIMtgKn+qeJtS3Pcw==",
  3269. "type": "package",
  3270. "path": "microsoft.extensions.logging.abstractions/3.1.32",
  3271. "files": [
  3272. ".nupkg.metadata",
  3273. ".signature.p7s",
  3274. "Icon.png",
  3275. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3276. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3277. "microsoft.extensions.logging.abstractions.3.1.32.nupkg.sha512",
  3278. "microsoft.extensions.logging.abstractions.nuspec"
  3279. ]
  3280. },
  3281. "Microsoft.Extensions.Options/3.1.32": {
  3282. "sha512": "JRX2+OxOC/jqWrkyjJZstpe0NdY/HfOJNPOzVkMxqCxTirecIYfaKXAms4HDsEKl3i6CD8jDkwHyv3fyWZO6hQ==",
  3283. "type": "package",
  3284. "path": "microsoft.extensions.options/3.1.32",
  3285. "files": [
  3286. ".nupkg.metadata",
  3287. ".signature.p7s",
  3288. "Icon.png",
  3289. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
  3290. "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
  3291. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3292. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3293. "microsoft.extensions.options.3.1.32.nupkg.sha512",
  3294. "microsoft.extensions.options.nuspec"
  3295. ]
  3296. },
  3297. "Microsoft.Extensions.Primitives/3.1.32": {
  3298. "sha512": "N8lTVwdjR+df9Sx3VdHfrecV6zl8KQoAx7kQXJ3rYwQBEw2vuZM0LKVAqjnaA/TBC8ZKnt99ptwH5iaEOxBuYQ==",
  3299. "type": "package",
  3300. "path": "microsoft.extensions.primitives/3.1.32",
  3301. "files": [
  3302. ".nupkg.metadata",
  3303. ".signature.p7s",
  3304. "Icon.png",
  3305. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  3306. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  3307. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3308. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3309. "microsoft.extensions.primitives.3.1.32.nupkg.sha512",
  3310. "microsoft.extensions.primitives.nuspec"
  3311. ]
  3312. },
  3313. "Microsoft.Identity.Client/3.0.8": {
  3314. "sha512": "9E1gXBRJta8+UXooYpJkp/8g6Cy4kFQl3iURduGhR7/vU8rGKTWEMJ3tUKOO2m1qzJOfaog/n89lyjdi7S56Rg==",
  3315. "type": "package",
  3316. "path": "microsoft.identity.client/3.0.8",
  3317. "files": [
  3318. ".nupkg.metadata",
  3319. ".signature.p7s",
  3320. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  3321. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  3322. "lib/net45/Microsoft.Identity.Client.dll",
  3323. "lib/net45/Microsoft.Identity.Client.xml",
  3324. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3325. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3326. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  3327. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  3328. "lib/uap10.0/Microsoft.Identity.Client.dll",
  3329. "lib/uap10.0/Microsoft.Identity.Client.pri",
  3330. "lib/uap10.0/Microsoft.Identity.Client.xml",
  3331. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  3332. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  3333. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  3334. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  3335. "microsoft.identity.client.3.0.8.nupkg.sha512",
  3336. "microsoft.identity.client.nuspec",
  3337. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  3338. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  3339. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  3340. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  3341. "ref/net45/Microsoft.Identity.Client.dll",
  3342. "ref/net45/Microsoft.Identity.Client.xml",
  3343. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3344. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3345. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  3346. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  3347. "ref/uap10.0/Microsoft.Identity.Client.dll",
  3348. "ref/uap10.0/Microsoft.Identity.Client.xml",
  3349. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  3350. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  3351. ]
  3352. },
  3353. "Microsoft.IdentityModel.JsonWebTokens/5.5.0": {
  3354. "sha512": "cT9SCW/dN+ulrvAtbh37c36DR6aArENH3S4UtFmvXRx+VGC0ArDgzRaEbEh+ChS4koxdl2oS691250iZhgKvwg==",
  3355. "type": "package",
  3356. "path": "microsoft.identitymodel.jsonwebtokens/5.5.0",
  3357. "files": [
  3358. ".nupkg.metadata",
  3359. ".signature.p7s",
  3360. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3361. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3362. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll",
  3363. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml",
  3364. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3365. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3366. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll",
  3367. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml",
  3368. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3369. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3370. "microsoft.identitymodel.jsonwebtokens.5.5.0.nupkg.sha512",
  3371. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3372. ]
  3373. },
  3374. "Microsoft.IdentityModel.Logging/5.5.0": {
  3375. "sha512": "1w/Hz/7+al+ugQn+6y0tAPmpN8U0u1aBtl1QXYCVkiJfbCC4tgyroFOuhdztOq48rgeM+3JW9bGqOtkfVurW8w==",
  3376. "type": "package",
  3377. "path": "microsoft.identitymodel.logging/5.5.0",
  3378. "files": [
  3379. ".nupkg.metadata",
  3380. ".signature.p7s",
  3381. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3382. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3383. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  3384. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  3385. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3386. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3387. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  3388. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  3389. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3390. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3391. "microsoft.identitymodel.logging.5.5.0.nupkg.sha512",
  3392. "microsoft.identitymodel.logging.nuspec"
  3393. ]
  3394. },
  3395. "Microsoft.IdentityModel.Protocols/5.5.0": {
  3396. "sha512": "m1gwAQwZjUxzRBC+4H40vYSo9Cms9yUbMdW492rQoXHU77G/ItiKxpk2+W9bWYcdsKUDKudye7im3T3MlVxEkg==",
  3397. "type": "package",
  3398. "path": "microsoft.identitymodel.protocols/5.5.0",
  3399. "files": [
  3400. ".nupkg.metadata",
  3401. ".signature.p7s",
  3402. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  3403. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  3404. "lib/net451/Microsoft.IdentityModel.Protocols.dll",
  3405. "lib/net451/Microsoft.IdentityModel.Protocols.xml",
  3406. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  3407. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  3408. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll",
  3409. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.xml",
  3410. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  3411. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  3412. "microsoft.identitymodel.protocols.5.5.0.nupkg.sha512",
  3413. "microsoft.identitymodel.protocols.nuspec"
  3414. ]
  3415. },
  3416. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.5.0": {
  3417. "sha512": "21F4QlbaD5CXNs2urNRCO6vljbbrhv3gmGT8P18SKGKZ9IYBCn29extoJriHiPfhABd5b8S7RcdKU50XhERkYg==",
  3418. "type": "package",
  3419. "path": "microsoft.identitymodel.protocols.openidconnect/5.5.0",
  3420. "files": [
  3421. ".nupkg.metadata",
  3422. ".signature.p7s",
  3423. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3424. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3425. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3426. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3427. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3428. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3429. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3430. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3431. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3432. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3433. "microsoft.identitymodel.protocols.openidconnect.5.5.0.nupkg.sha512",
  3434. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  3435. ]
  3436. },
  3437. "Microsoft.IdentityModel.Tokens/5.5.0": {
  3438. "sha512": "cu1klZiuCwVYbXHs0QdnseuoRGG1/85VX9d1Sk0vbJlKp+HJUN/4pAS/fe2m9bTOYyIPdeCHeksMiVHgo1EfAA==",
  3439. "type": "package",
  3440. "path": "microsoft.identitymodel.tokens/5.5.0",
  3441. "files": [
  3442. ".nupkg.metadata",
  3443. ".signature.p7s",
  3444. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3445. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3446. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  3447. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  3448. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3449. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3450. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  3451. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  3452. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3453. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3454. "microsoft.identitymodel.tokens.5.5.0.nupkg.sha512",
  3455. "microsoft.identitymodel.tokens.nuspec"
  3456. ]
  3457. },
  3458. "Microsoft.NETCore.Platforms/2.1.2": {
  3459. "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
  3460. "type": "package",
  3461. "path": "microsoft.netcore.platforms/2.1.2",
  3462. "files": [
  3463. ".nupkg.metadata",
  3464. ".signature.p7s",
  3465. "LICENSE.TXT",
  3466. "THIRD-PARTY-NOTICES.TXT",
  3467. "lib/netstandard1.0/_._",
  3468. "microsoft.netcore.platforms.2.1.2.nupkg.sha512",
  3469. "microsoft.netcore.platforms.nuspec",
  3470. "runtime.json",
  3471. "useSharedDesignerContext.txt",
  3472. "version.txt"
  3473. ]
  3474. },
  3475. "Microsoft.NETCore.Targets/1.1.0": {
  3476. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3477. "type": "package",
  3478. "path": "microsoft.netcore.targets/1.1.0",
  3479. "files": [
  3480. ".nupkg.metadata",
  3481. ".signature.p7s",
  3482. "ThirdPartyNotices.txt",
  3483. "dotnet_library_license.txt",
  3484. "lib/netstandard1.0/_._",
  3485. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3486. "microsoft.netcore.targets.nuspec",
  3487. "runtime.json"
  3488. ]
  3489. },
  3490. "Microsoft.VisualStudio.Web.CodeGeneration/3.1.5": {
  3491. "sha512": "KSXhD6QzyoyNc52blbf5DJ7QNtul1VXcpOcYO5svlbFRRWjcB3+lpYTr5n9I6fcgMDGkhb4mndLZuXSTz0ukaA==",
  3492. "type": "package",
  3493. "path": "microsoft.visualstudio.web.codegeneration/3.1.5",
  3494. "files": [
  3495. ".nupkg.metadata",
  3496. ".signature.p7s",
  3497. "Icon.png",
  3498. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll",
  3499. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.xml",
  3500. "microsoft.visualstudio.web.codegeneration.3.1.5.nupkg.sha512",
  3501. "microsoft.visualstudio.web.codegeneration.nuspec"
  3502. ]
  3503. },
  3504. "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/3.1.5": {
  3505. "sha512": "mwtlStv7cvgmOC7zM9ZGV/9KN5gtYpDW1w0oOx675nPT/CECsftaCBRfxP0D3Ho8bj1+UgiI7hVLwyYud58E9g==",
  3506. "type": "package",
  3507. "path": "microsoft.visualstudio.web.codegeneration.contracts/3.1.5",
  3508. "files": [
  3509. ".nupkg.metadata",
  3510. ".signature.p7s",
  3511. "Icon.png",
  3512. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll",
  3513. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.xml",
  3514. "microsoft.visualstudio.web.codegeneration.contracts.3.1.5.nupkg.sha512",
  3515. "microsoft.visualstudio.web.codegeneration.contracts.nuspec"
  3516. ]
  3517. },
  3518. "Microsoft.VisualStudio.Web.CodeGeneration.Core/3.1.5": {
  3519. "sha512": "VWSQrOR9ayVTe7tv1IghlyRCdxVHt3cFBH3p1gmDaF1wNHwFfFJvZ3NT6HeqeNqysLftvQdJKVmRckfoaOuqMQ==",
  3520. "type": "package",
  3521. "path": "microsoft.visualstudio.web.codegeneration.core/3.1.5",
  3522. "files": [
  3523. ".nupkg.metadata",
  3524. ".signature.p7s",
  3525. "Icon.png",
  3526. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll",
  3527. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml",
  3528. "microsoft.visualstudio.web.codegeneration.core.3.1.5.nupkg.sha512",
  3529. "microsoft.visualstudio.web.codegeneration.core.nuspec"
  3530. ]
  3531. },
  3532. "Microsoft.VisualStudio.Web.CodeGeneration.Design/3.1.5": {
  3533. "sha512": "OtcAfUxX/etRLVIVEk5PpVt1hChZosqNKkhLjLuubdpCIX5P7OCihVScYMzdjXfvD3tNkWcNed2nvpLd61wBYA==",
  3534. "type": "package",
  3535. "path": "microsoft.visualstudio.web.codegeneration.design/3.1.5",
  3536. "files": [
  3537. ".nupkg.metadata",
  3538. ".signature.p7s",
  3539. "lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3540. "lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3541. "lib/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll",
  3542. "lib/netcoreapp3.1/dotnet-aspnet-codegenerator-design.xml",
  3543. "microsoft.visualstudio.web.codegeneration.design.3.1.5.nupkg.sha512",
  3544. "microsoft.visualstudio.web.codegeneration.design.nuspec",
  3545. "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3546. "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3547. "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3548. "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3549. "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3550. "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3551. "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3552. "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.xml"
  3553. ]
  3554. },
  3555. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/3.1.5": {
  3556. "sha512": "7ABg+Xc56gxWlmId+vCAdf5sGY9+GZiBi2LB5epaufvoaww4n74zv+FzQUP0jApurmA0RDiJzQ8u8XL+Cl8VcQ==",
  3557. "type": "package",
  3558. "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/3.1.5",
  3559. "files": [
  3560. ".nupkg.metadata",
  3561. ".signature.p7s",
  3562. "Icon.png",
  3563. "Templates/DbContext/NewLocalDbContext.cshtml",
  3564. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll",
  3565. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml",
  3566. "microsoft.visualstudio.web.codegeneration.entityframeworkcore.3.1.5.nupkg.sha512",
  3567. "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec"
  3568. ]
  3569. },
  3570. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/3.1.5": {
  3571. "sha512": "fYdTlypZex1lkrZif924cp4StqzAXehIdgYiRXre7HpjnRVMH6dHWEW4n7vY2IAnXI3dmp+ekD10k6z98YLTwA==",
  3572. "type": "package",
  3573. "path": "microsoft.visualstudio.web.codegeneration.templating/3.1.5",
  3574. "files": [
  3575. ".nupkg.metadata",
  3576. ".signature.p7s",
  3577. "Icon.png",
  3578. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll",
  3579. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml",
  3580. "microsoft.visualstudio.web.codegeneration.templating.3.1.5.nupkg.sha512",
  3581. "microsoft.visualstudio.web.codegeneration.templating.nuspec"
  3582. ]
  3583. },
  3584. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/3.1.5": {
  3585. "sha512": "vSEMlRifsRn4VYoaqWcTeJvrKfKfuZZlMZblKWMUP/cwAAZkDweJqfA6E7trvcuRsyauQyEPsKicElqbZHRnzg==",
  3586. "type": "package",
  3587. "path": "microsoft.visualstudio.web.codegeneration.utils/3.1.5",
  3588. "files": [
  3589. ".nupkg.metadata",
  3590. ".signature.p7s",
  3591. "Icon.png",
  3592. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll",
  3593. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml",
  3594. "microsoft.visualstudio.web.codegeneration.utils.3.1.5.nupkg.sha512",
  3595. "microsoft.visualstudio.web.codegeneration.utils.nuspec"
  3596. ]
  3597. },
  3598. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/3.1.5": {
  3599. "sha512": "w1yGWLgGbZJ8Dz8+4CP4tlwIHpQ/ZaOLWHV0gZo2m1+yU6u/zo2z1Ro7/CHkVWVd04vievsN5UQ19lcWLSfqBw==",
  3600. "type": "package",
  3601. "path": "microsoft.visualstudio.web.codegenerators.mvc/3.1.5",
  3602. "files": [
  3603. ".nupkg.metadata",
  3604. ".signature.p7s",
  3605. "Generators/ParameterDefinitions/area.json",
  3606. "Generators/ParameterDefinitions/controller.json",
  3607. "Generators/ParameterDefinitions/identity.json",
  3608. "Generators/ParameterDefinitions/razorpage.json",
  3609. "Generators/ParameterDefinitions/view.json",
  3610. "Icon.png",
  3611. "Templates/ControllerGenerator/ApiControllerWithActions.cshtml",
  3612. "Templates/ControllerGenerator/ApiControllerWithContext.cshtml",
  3613. "Templates/ControllerGenerator/ApiEmptyController.cshtml",
  3614. "Templates/ControllerGenerator/ControllerWithActions.cshtml",
  3615. "Templates/ControllerGenerator/EmptyController.cshtml",
  3616. "Templates/ControllerGenerator/MvcControllerWithContext.cshtml",
  3617. "Templates/Identity/Data/ApplicationDbContext.cshtml",
  3618. "Templates/Identity/Data/ApplicationUser.cshtml",
  3619. "Templates/Identity/IdentityHostingStartup.cshtml",
  3620. "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml",
  3621. "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml",
  3622. "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  3623. "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml",
  3624. "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  3625. "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cshtml",
  3626. "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml",
  3627. "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml",
  3628. "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml",
  3629. "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml",
  3630. "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  3631. "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  3632. "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml",
  3633. "Templates/Identity/Pages/Account/Account.Lockout.cshtml",
  3634. "Templates/Identity/Pages/Account/Account.Login.cs.cshtml",
  3635. "Templates/Identity/Pages/Account/Account.Login.cshtml",
  3636. "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  3637. "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml",
  3638. "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  3639. "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  3640. "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml",
  3641. "Templates/Identity/Pages/Account/Account.Logout.cshtml",
  3642. "Templates/Identity/Pages/Account/Account.Register.cs.cshtml",
  3643. "Templates/Identity/Pages/Account/Account.Register.cshtml",
  3644. "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  3645. "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cshtml",
  3646. "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  3647. "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml",
  3648. "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml",
  3649. "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  3650. "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  3651. "Templates/Identity/Pages/Account/Account._StatusMessage.cshtml",
  3652. "Templates/Identity/Pages/Account/Account._ViewImports.cshtml",
  3653. "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  3654. "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  3655. "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  3656. "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  3657. "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  3658. "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  3659. "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  3660. "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  3661. "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  3662. "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cshtml",
  3663. "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  3664. "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  3665. "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  3666. "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  3667. "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  3668. "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  3669. "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  3670. "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml",
  3671. "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  3672. "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  3673. "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  3674. "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  3675. "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  3676. "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  3677. "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  3678. "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  3679. "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  3680. "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  3681. "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  3682. "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  3683. "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  3684. "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  3685. "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  3686. "Templates/Identity/Pages/Error.cs.cshtml",
  3687. "Templates/Identity/Pages/Error.cshtml",
  3688. "Templates/Identity/Pages/_Layout.cshtml",
  3689. "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml",
  3690. "Templates/Identity/Pages/_ViewImports.cshtml",
  3691. "Templates/Identity/Pages/_ViewStart.cshtml",
  3692. "Templates/Identity/ScaffoldingReadme.cshtml",
  3693. "Templates/Identity/SupportPages._CookieConsentPartial.cshtml",
  3694. "Templates/Identity/SupportPages._ViewImports.cshtml",
  3695. "Templates/Identity/SupportPages._ViewStart.cshtml",
  3696. "Templates/Identity/_LoginPartial.cshtml",
  3697. "Templates/Identity/wwwroot/css/site.css",
  3698. "Templates/Identity/wwwroot/favicon.ico",
  3699. "Templates/Identity/wwwroot/js/site.js",
  3700. "Templates/Identity/wwwroot/lib/bootstrap/LICENSE",
  3701. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
  3702. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  3703. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  3704. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  3705. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
  3706. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  3707. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  3708. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  3709. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  3710. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  3711. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  3712. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  3713. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
  3714. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  3715. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  3716. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  3717. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  3718. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
  3719. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  3720. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
  3721. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  3722. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  3723. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  3724. "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md",
  3725. "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  3726. "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  3727. "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  3728. "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  3729. "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt",
  3730. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js",
  3731. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js",
  3732. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map",
  3733. "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml",
  3734. "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml",
  3735. "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml",
  3736. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml",
  3737. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml",
  3738. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  3739. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml",
  3740. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  3741. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cshtml",
  3742. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml",
  3743. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml",
  3744. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml",
  3745. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml",
  3746. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  3747. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  3748. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml",
  3749. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml",
  3750. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml",
  3751. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml",
  3752. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  3753. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml",
  3754. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  3755. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  3756. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml",
  3757. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml",
  3758. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml",
  3759. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml",
  3760. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  3761. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cshtml",
  3762. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  3763. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml",
  3764. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml",
  3765. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  3766. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  3767. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._StatusMessage.cshtml",
  3768. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml",
  3769. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  3770. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  3771. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  3772. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  3773. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  3774. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  3775. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  3776. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  3777. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  3778. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cshtml",
  3779. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  3780. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  3781. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  3782. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  3783. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  3784. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  3785. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  3786. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml",
  3787. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  3788. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  3789. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  3790. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  3791. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  3792. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  3793. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  3794. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  3795. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  3796. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  3797. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  3798. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  3799. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  3800. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  3801. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  3802. "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml",
  3803. "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml",
  3804. "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml",
  3805. "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml",
  3806. "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml",
  3807. "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml",
  3808. "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml",
  3809. "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml",
  3810. "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml",
  3811. "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml",
  3812. "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml",
  3813. "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css",
  3814. "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico",
  3815. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg",
  3816. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg",
  3817. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg",
  3818. "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js",
  3819. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE",
  3820. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css",
  3821. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map",
  3822. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css",
  3823. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map",
  3824. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  3825. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  3826. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  3827. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  3828. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot",
  3829. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg",
  3830. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf",
  3831. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff",
  3832. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2",
  3833. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  3834. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  3835. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js",
  3836. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  3837. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  3838. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  3839. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md",
  3840. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  3841. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  3842. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  3843. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  3844. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt",
  3845. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js",
  3846. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js",
  3847. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map",
  3848. "Templates/MvcLayout/Error.cshtml",
  3849. "Templates/MvcLayout/_Layout.cshtml",
  3850. "Templates/RazorPageGenerator/Create.cshtml",
  3851. "Templates/RazorPageGenerator/CreatePageModel.cshtml",
  3852. "Templates/RazorPageGenerator/Delete.cshtml",
  3853. "Templates/RazorPageGenerator/DeletePageModel.cshtml",
  3854. "Templates/RazorPageGenerator/Details.cshtml",
  3855. "Templates/RazorPageGenerator/DetailsPageModel.cshtml",
  3856. "Templates/RazorPageGenerator/Edit.cshtml",
  3857. "Templates/RazorPageGenerator/EditPageModel.cshtml",
  3858. "Templates/RazorPageGenerator/Empty.cshtml",
  3859. "Templates/RazorPageGenerator/EmptyPageModel.cshtml",
  3860. "Templates/RazorPageGenerator/List.cshtml",
  3861. "Templates/RazorPageGenerator/ListPageModel.cshtml",
  3862. "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml",
  3863. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml",
  3864. "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml",
  3865. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml",
  3866. "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml",
  3867. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml",
  3868. "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml",
  3869. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml",
  3870. "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml",
  3871. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml",
  3872. "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml",
  3873. "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml",
  3874. "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml",
  3875. "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
  3876. "Templates/Startup/ReadMe.cshtml",
  3877. "Templates/Startup/Startup.cshtml",
  3878. "Templates/ViewGenerator/Create.cshtml",
  3879. "Templates/ViewGenerator/Delete.cshtml",
  3880. "Templates/ViewGenerator/Details.cshtml",
  3881. "Templates/ViewGenerator/Edit.cshtml",
  3882. "Templates/ViewGenerator/Empty.cshtml",
  3883. "Templates/ViewGenerator/List.cshtml",
  3884. "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml",
  3885. "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml",
  3886. "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml",
  3887. "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml",
  3888. "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml",
  3889. "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml",
  3890. "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml",
  3891. "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
  3892. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll",
  3893. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml",
  3894. "lib/netstandard2.0/bootstrap3_identitygeneratorfilesconfig.json",
  3895. "lib/netstandard2.0/bootstrap4_identitygeneratorfilesconfig.json",
  3896. "microsoft.visualstudio.web.codegenerators.mvc.3.1.5.nupkg.sha512",
  3897. "microsoft.visualstudio.web.codegenerators.mvc.nuspec"
  3898. ]
  3899. },
  3900. "Microsoft.Win32.Primitives/4.3.0": {
  3901. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  3902. "type": "package",
  3903. "path": "microsoft.win32.primitives/4.3.0",
  3904. "files": [
  3905. ".nupkg.metadata",
  3906. ".signature.p7s",
  3907. "ThirdPartyNotices.txt",
  3908. "dotnet_library_license.txt",
  3909. "lib/MonoAndroid10/_._",
  3910. "lib/MonoTouch10/_._",
  3911. "lib/net46/Microsoft.Win32.Primitives.dll",
  3912. "lib/xamarinios10/_._",
  3913. "lib/xamarinmac20/_._",
  3914. "lib/xamarintvos10/_._",
  3915. "lib/xamarinwatchos10/_._",
  3916. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  3917. "microsoft.win32.primitives.nuspec",
  3918. "ref/MonoAndroid10/_._",
  3919. "ref/MonoTouch10/_._",
  3920. "ref/net46/Microsoft.Win32.Primitives.dll",
  3921. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3922. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3923. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3924. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3925. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3926. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3927. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3928. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3929. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3930. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3931. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3932. "ref/xamarinios10/_._",
  3933. "ref/xamarinmac20/_._",
  3934. "ref/xamarintvos10/_._",
  3935. "ref/xamarinwatchos10/_._"
  3936. ]
  3937. },
  3938. "Microsoft.Win32.Registry/4.5.0": {
  3939. "sha512": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
  3940. "type": "package",
  3941. "path": "microsoft.win32.registry/4.5.0",
  3942. "files": [
  3943. ".nupkg.metadata",
  3944. ".signature.p7s",
  3945. "LICENSE.TXT",
  3946. "THIRD-PARTY-NOTICES.TXT",
  3947. "lib/net46/Microsoft.Win32.Registry.dll",
  3948. "lib/net461/Microsoft.Win32.Registry.dll",
  3949. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3950. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3951. "microsoft.win32.registry.4.5.0.nupkg.sha512",
  3952. "microsoft.win32.registry.nuspec",
  3953. "ref/net46/Microsoft.Win32.Registry.dll",
  3954. "ref/net461/Microsoft.Win32.Registry.dll",
  3955. "ref/net461/Microsoft.Win32.Registry.xml",
  3956. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3957. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3958. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3959. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3960. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3961. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3962. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3963. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3964. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3965. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3966. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3967. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3968. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3969. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3970. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3971. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3972. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3973. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3974. "useSharedDesignerContext.txt",
  3975. "version.txt"
  3976. ]
  3977. },
  3978. "MQTTnet/4.1.2.350": {
  3979. "sha512": "etoNFb3b3wm/Ti1RROXbSDtpx4kuYoWkOjACdZqsmPNb2pWk8QjzwTNW5yqWL91DxCKo6T8pjfrxvADicd8+9w==",
  3980. "type": "package",
  3981. "path": "mqttnet/4.1.2.350",
  3982. "files": [
  3983. ".nupkg.metadata",
  3984. ".signature.p7s",
  3985. "lib/net452/MQTTnet.dll",
  3986. "lib/net452/MQTTnet.xml",
  3987. "lib/net461/MQTTnet.dll",
  3988. "lib/net461/MQTTnet.xml",
  3989. "lib/net5.0/MQTTnet.dll",
  3990. "lib/net5.0/MQTTnet.xml",
  3991. "lib/net6.0/MQTTnet.dll",
  3992. "lib/net6.0/MQTTnet.xml",
  3993. "lib/netcoreapp3.1/MQTTnet.dll",
  3994. "lib/netcoreapp3.1/MQTTnet.xml",
  3995. "lib/netstandard1.3/MQTTnet.dll",
  3996. "lib/netstandard1.3/MQTTnet.xml",
  3997. "lib/netstandard2.0/MQTTnet.dll",
  3998. "lib/netstandard2.0/MQTTnet.xml",
  3999. "lib/netstandard2.1/MQTTnet.dll",
  4000. "lib/netstandard2.1/MQTTnet.xml",
  4001. "lib/uap10.0.10240/MQTTnet.dll",
  4002. "lib/uap10.0.10240/MQTTnet.pri",
  4003. "lib/uap10.0.10240/MQTTnet.xml",
  4004. "mqttnet.4.1.2.350.nupkg.sha512",
  4005. "mqttnet.nuspec",
  4006. "nuget.png"
  4007. ]
  4008. },
  4009. "MQTTnet.AspNetCore/4.1.2.350": {
  4010. "sha512": "BmU5523+cLeUi1nrlXFsICHvLCvd34R4uORF2slL3UfEwPKVgO7w3aQql50ukQZHIzr/4vc6cPwQihP34KUmTw==",
  4011. "type": "package",
  4012. "path": "mqttnet.aspnetcore/4.1.2.350",
  4013. "files": [
  4014. ".nupkg.metadata",
  4015. ".signature.p7s",
  4016. "lib/net5.0/MQTTnet.AspNetCore.dll",
  4017. "lib/net5.0/MQTTnet.AspNetCore.xml",
  4018. "lib/net6.0/MQTTnet.AspNetCore.dll",
  4019. "lib/net6.0/MQTTnet.AspNetCore.xml",
  4020. "lib/netcoreapp2.1/MQTTnet.AspNetCore.dll",
  4021. "lib/netcoreapp2.1/MQTTnet.AspNetCore.xml",
  4022. "lib/netcoreapp3.1/MQTTnet.AspNetCore.dll",
  4023. "lib/netcoreapp3.1/MQTTnet.AspNetCore.xml",
  4024. "lib/netstandard2.0/MQTTnet.AspNetCore.dll",
  4025. "lib/netstandard2.0/MQTTnet.AspNetCore.xml",
  4026. "mqttnet.aspnetcore.4.1.2.350.nupkg.sha512",
  4027. "mqttnet.aspnetcore.nuspec",
  4028. "nuget.png"
  4029. ]
  4030. },
  4031. "NETStandard.Library/1.6.1": {
  4032. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4033. "type": "package",
  4034. "path": "netstandard.library/1.6.1",
  4035. "files": [
  4036. ".nupkg.metadata",
  4037. ".signature.p7s",
  4038. "ThirdPartyNotices.txt",
  4039. "dotnet_library_license.txt",
  4040. "netstandard.library.1.6.1.nupkg.sha512",
  4041. "netstandard.library.nuspec"
  4042. ]
  4043. },
  4044. "Newtonsoft.Json/11.0.2": {
  4045. "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
  4046. "type": "package",
  4047. "path": "newtonsoft.json/11.0.2",
  4048. "files": [
  4049. ".nupkg.metadata",
  4050. ".signature.p7s",
  4051. "LICENSE.md",
  4052. "lib/net20/Newtonsoft.Json.dll",
  4053. "lib/net20/Newtonsoft.Json.xml",
  4054. "lib/net35/Newtonsoft.Json.dll",
  4055. "lib/net35/Newtonsoft.Json.xml",
  4056. "lib/net40/Newtonsoft.Json.dll",
  4057. "lib/net40/Newtonsoft.Json.xml",
  4058. "lib/net45/Newtonsoft.Json.dll",
  4059. "lib/net45/Newtonsoft.Json.xml",
  4060. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4061. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4062. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4063. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4064. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4065. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4066. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4067. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4068. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4069. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4070. "newtonsoft.json.11.0.2.nupkg.sha512",
  4071. "newtonsoft.json.nuspec"
  4072. ]
  4073. },
  4074. "NuGet.Frameworks/4.7.0": {
  4075. "sha512": "qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==",
  4076. "type": "package",
  4077. "path": "nuget.frameworks/4.7.0",
  4078. "files": [
  4079. ".nupkg.metadata",
  4080. ".signature.p7s",
  4081. "lib/net40/NuGet.Frameworks.dll",
  4082. "lib/net40/NuGet.Frameworks.xml",
  4083. "lib/net46/NuGet.Frameworks.dll",
  4084. "lib/net46/NuGet.Frameworks.xml",
  4085. "lib/netstandard1.6/NuGet.Frameworks.dll",
  4086. "lib/netstandard1.6/NuGet.Frameworks.xml",
  4087. "nuget.frameworks.4.7.0.nupkg.sha512",
  4088. "nuget.frameworks.nuspec"
  4089. ]
  4090. },
  4091. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4092. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4093. "type": "package",
  4094. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4095. "files": [
  4096. ".nupkg.metadata",
  4097. ".signature.p7s",
  4098. "ThirdPartyNotices.txt",
  4099. "dotnet_library_license.txt",
  4100. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4101. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4102. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4103. ]
  4104. },
  4105. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4106. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4107. "type": "package",
  4108. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4109. "files": [
  4110. ".nupkg.metadata",
  4111. ".signature.p7s",
  4112. "ThirdPartyNotices.txt",
  4113. "dotnet_library_license.txt",
  4114. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4115. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4116. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4117. ]
  4118. },
  4119. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4120. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4121. "type": "package",
  4122. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4123. "files": [
  4124. ".nupkg.metadata",
  4125. ".signature.p7s",
  4126. "ThirdPartyNotices.txt",
  4127. "dotnet_library_license.txt",
  4128. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4129. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4130. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4131. ]
  4132. },
  4133. "runtime.native.System/4.3.0": {
  4134. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4135. "type": "package",
  4136. "path": "runtime.native.system/4.3.0",
  4137. "files": [
  4138. ".nupkg.metadata",
  4139. ".signature.p7s",
  4140. "ThirdPartyNotices.txt",
  4141. "dotnet_library_license.txt",
  4142. "lib/netstandard1.0/_._",
  4143. "runtime.native.system.4.3.0.nupkg.sha512",
  4144. "runtime.native.system.nuspec"
  4145. ]
  4146. },
  4147. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4148. "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
  4149. "type": "package",
  4150. "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
  4151. "files": [
  4152. ".nupkg.metadata",
  4153. ".signature.p7s",
  4154. "LICENSE.TXT",
  4155. "THIRD-PARTY-NOTICES.TXT",
  4156. "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4157. "runtime.native.system.data.sqlclient.sni.nuspec",
  4158. "useSharedDesignerContext.txt",
  4159. "version.txt"
  4160. ]
  4161. },
  4162. "runtime.native.System.IO.Compression/4.3.0": {
  4163. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4164. "type": "package",
  4165. "path": "runtime.native.system.io.compression/4.3.0",
  4166. "files": [
  4167. ".nupkg.metadata",
  4168. ".signature.p7s",
  4169. "ThirdPartyNotices.txt",
  4170. "dotnet_library_license.txt",
  4171. "lib/netstandard1.0/_._",
  4172. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4173. "runtime.native.system.io.compression.nuspec"
  4174. ]
  4175. },
  4176. "runtime.native.System.Net.Http/4.3.0": {
  4177. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4178. "type": "package",
  4179. "path": "runtime.native.system.net.http/4.3.0",
  4180. "files": [
  4181. ".nupkg.metadata",
  4182. ".signature.p7s",
  4183. "ThirdPartyNotices.txt",
  4184. "dotnet_library_license.txt",
  4185. "lib/netstandard1.0/_._",
  4186. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4187. "runtime.native.system.net.http.nuspec"
  4188. ]
  4189. },
  4190. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4191. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4192. "type": "package",
  4193. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4194. "files": [
  4195. ".nupkg.metadata",
  4196. ".signature.p7s",
  4197. "ThirdPartyNotices.txt",
  4198. "dotnet_library_license.txt",
  4199. "lib/netstandard1.0/_._",
  4200. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4201. "runtime.native.system.security.cryptography.apple.nuspec"
  4202. ]
  4203. },
  4204. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4205. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4206. "type": "package",
  4207. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4208. "files": [
  4209. ".nupkg.metadata",
  4210. ".signature.p7s",
  4211. "ThirdPartyNotices.txt",
  4212. "dotnet_library_license.txt",
  4213. "lib/netstandard1.0/_._",
  4214. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4215. "runtime.native.system.security.cryptography.openssl.nuspec"
  4216. ]
  4217. },
  4218. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4219. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4220. "type": "package",
  4221. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4222. "files": [
  4223. ".nupkg.metadata",
  4224. ".signature.p7s",
  4225. "ThirdPartyNotices.txt",
  4226. "dotnet_library_license.txt",
  4227. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4228. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4229. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4230. ]
  4231. },
  4232. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4233. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4234. "type": "package",
  4235. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4236. "files": [
  4237. ".nupkg.metadata",
  4238. ".signature.p7s",
  4239. "ThirdPartyNotices.txt",
  4240. "dotnet_library_license.txt",
  4241. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4242. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4243. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4244. ]
  4245. },
  4246. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4247. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4248. "type": "package",
  4249. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4250. "files": [
  4251. ".nupkg.metadata",
  4252. ".signature.p7s",
  4253. "ThirdPartyNotices.txt",
  4254. "dotnet_library_license.txt",
  4255. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4256. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4257. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4258. ]
  4259. },
  4260. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4261. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4262. "type": "package",
  4263. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4264. "files": [
  4265. ".nupkg.metadata",
  4266. ".signature.p7s",
  4267. "ThirdPartyNotices.txt",
  4268. "dotnet_library_license.txt",
  4269. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4270. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4271. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4272. ]
  4273. },
  4274. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4275. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4276. "type": "package",
  4277. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4278. "files": [
  4279. ".nupkg.metadata",
  4280. ".signature.p7s",
  4281. "ThirdPartyNotices.txt",
  4282. "dotnet_library_license.txt",
  4283. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4284. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4285. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4286. ]
  4287. },
  4288. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4289. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4290. "type": "package",
  4291. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4292. "files": [
  4293. ".nupkg.metadata",
  4294. ".signature.p7s",
  4295. "ThirdPartyNotices.txt",
  4296. "dotnet_library_license.txt",
  4297. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4298. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4299. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4300. ]
  4301. },
  4302. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4303. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4304. "type": "package",
  4305. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4306. "files": [
  4307. ".nupkg.metadata",
  4308. ".signature.p7s",
  4309. "ThirdPartyNotices.txt",
  4310. "dotnet_library_license.txt",
  4311. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4312. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4313. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4314. ]
  4315. },
  4316. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4317. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4318. "type": "package",
  4319. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4320. "files": [
  4321. ".nupkg.metadata",
  4322. ".signature.p7s",
  4323. "ThirdPartyNotices.txt",
  4324. "dotnet_library_license.txt",
  4325. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4326. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4327. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4328. ]
  4329. },
  4330. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4331. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  4332. "type": "package",
  4333. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4334. "files": [
  4335. ".nupkg.metadata",
  4336. ".signature.p7s",
  4337. "ThirdPartyNotices.txt",
  4338. "dotnet_library_license.txt",
  4339. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4340. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  4341. "runtimes/win-arm64/native/sni.dll",
  4342. "useSharedDesignerContext.txt",
  4343. "version.txt"
  4344. ]
  4345. },
  4346. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4347. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  4348. "type": "package",
  4349. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4350. "files": [
  4351. ".nupkg.metadata",
  4352. ".signature.p7s",
  4353. "ThirdPartyNotices.txt",
  4354. "dotnet_library_license.txt",
  4355. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4356. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  4357. "runtimes/win-x64/native/sni.dll",
  4358. "useSharedDesignerContext.txt",
  4359. "version.txt"
  4360. ]
  4361. },
  4362. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4363. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  4364. "type": "package",
  4365. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  4366. "files": [
  4367. ".nupkg.metadata",
  4368. ".signature.p7s",
  4369. "ThirdPartyNotices.txt",
  4370. "dotnet_library_license.txt",
  4371. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4372. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  4373. "runtimes/win-x86/native/sni.dll",
  4374. "useSharedDesignerContext.txt",
  4375. "version.txt"
  4376. ]
  4377. },
  4378. "System.AppContext/4.3.0": {
  4379. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4380. "type": "package",
  4381. "path": "system.appcontext/4.3.0",
  4382. "files": [
  4383. ".nupkg.metadata",
  4384. ".signature.p7s",
  4385. "ThirdPartyNotices.txt",
  4386. "dotnet_library_license.txt",
  4387. "lib/MonoAndroid10/_._",
  4388. "lib/MonoTouch10/_._",
  4389. "lib/net46/System.AppContext.dll",
  4390. "lib/net463/System.AppContext.dll",
  4391. "lib/netcore50/System.AppContext.dll",
  4392. "lib/netstandard1.6/System.AppContext.dll",
  4393. "lib/xamarinios10/_._",
  4394. "lib/xamarinmac20/_._",
  4395. "lib/xamarintvos10/_._",
  4396. "lib/xamarinwatchos10/_._",
  4397. "ref/MonoAndroid10/_._",
  4398. "ref/MonoTouch10/_._",
  4399. "ref/net46/System.AppContext.dll",
  4400. "ref/net463/System.AppContext.dll",
  4401. "ref/netstandard/_._",
  4402. "ref/netstandard1.3/System.AppContext.dll",
  4403. "ref/netstandard1.3/System.AppContext.xml",
  4404. "ref/netstandard1.3/de/System.AppContext.xml",
  4405. "ref/netstandard1.3/es/System.AppContext.xml",
  4406. "ref/netstandard1.3/fr/System.AppContext.xml",
  4407. "ref/netstandard1.3/it/System.AppContext.xml",
  4408. "ref/netstandard1.3/ja/System.AppContext.xml",
  4409. "ref/netstandard1.3/ko/System.AppContext.xml",
  4410. "ref/netstandard1.3/ru/System.AppContext.xml",
  4411. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4412. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4413. "ref/netstandard1.6/System.AppContext.dll",
  4414. "ref/netstandard1.6/System.AppContext.xml",
  4415. "ref/netstandard1.6/de/System.AppContext.xml",
  4416. "ref/netstandard1.6/es/System.AppContext.xml",
  4417. "ref/netstandard1.6/fr/System.AppContext.xml",
  4418. "ref/netstandard1.6/it/System.AppContext.xml",
  4419. "ref/netstandard1.6/ja/System.AppContext.xml",
  4420. "ref/netstandard1.6/ko/System.AppContext.xml",
  4421. "ref/netstandard1.6/ru/System.AppContext.xml",
  4422. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4423. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4424. "ref/xamarinios10/_._",
  4425. "ref/xamarinmac20/_._",
  4426. "ref/xamarintvos10/_._",
  4427. "ref/xamarinwatchos10/_._",
  4428. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4429. "system.appcontext.4.3.0.nupkg.sha512",
  4430. "system.appcontext.nuspec"
  4431. ]
  4432. },
  4433. "System.Buffers/4.3.0": {
  4434. "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
  4435. "type": "package",
  4436. "path": "system.buffers/4.3.0",
  4437. "files": [
  4438. ".nupkg.metadata",
  4439. ".signature.p7s",
  4440. "ThirdPartyNotices.txt",
  4441. "dotnet_library_license.txt",
  4442. "lib/netstandard1.1/.xml",
  4443. "lib/netstandard1.1/System.Buffers.dll",
  4444. "system.buffers.4.3.0.nupkg.sha512",
  4445. "system.buffers.nuspec"
  4446. ]
  4447. },
  4448. "System.Collections/4.3.0": {
  4449. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4450. "type": "package",
  4451. "path": "system.collections/4.3.0",
  4452. "files": [
  4453. ".nupkg.metadata",
  4454. ".signature.p7s",
  4455. "ThirdPartyNotices.txt",
  4456. "dotnet_library_license.txt",
  4457. "lib/MonoAndroid10/_._",
  4458. "lib/MonoTouch10/_._",
  4459. "lib/net45/_._",
  4460. "lib/portable-net45+win8+wp8+wpa81/_._",
  4461. "lib/win8/_._",
  4462. "lib/wp80/_._",
  4463. "lib/wpa81/_._",
  4464. "lib/xamarinios10/_._",
  4465. "lib/xamarinmac20/_._",
  4466. "lib/xamarintvos10/_._",
  4467. "lib/xamarinwatchos10/_._",
  4468. "ref/MonoAndroid10/_._",
  4469. "ref/MonoTouch10/_._",
  4470. "ref/net45/_._",
  4471. "ref/netcore50/System.Collections.dll",
  4472. "ref/netcore50/System.Collections.xml",
  4473. "ref/netcore50/de/System.Collections.xml",
  4474. "ref/netcore50/es/System.Collections.xml",
  4475. "ref/netcore50/fr/System.Collections.xml",
  4476. "ref/netcore50/it/System.Collections.xml",
  4477. "ref/netcore50/ja/System.Collections.xml",
  4478. "ref/netcore50/ko/System.Collections.xml",
  4479. "ref/netcore50/ru/System.Collections.xml",
  4480. "ref/netcore50/zh-hans/System.Collections.xml",
  4481. "ref/netcore50/zh-hant/System.Collections.xml",
  4482. "ref/netstandard1.0/System.Collections.dll",
  4483. "ref/netstandard1.0/System.Collections.xml",
  4484. "ref/netstandard1.0/de/System.Collections.xml",
  4485. "ref/netstandard1.0/es/System.Collections.xml",
  4486. "ref/netstandard1.0/fr/System.Collections.xml",
  4487. "ref/netstandard1.0/it/System.Collections.xml",
  4488. "ref/netstandard1.0/ja/System.Collections.xml",
  4489. "ref/netstandard1.0/ko/System.Collections.xml",
  4490. "ref/netstandard1.0/ru/System.Collections.xml",
  4491. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4492. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4493. "ref/netstandard1.3/System.Collections.dll",
  4494. "ref/netstandard1.3/System.Collections.xml",
  4495. "ref/netstandard1.3/de/System.Collections.xml",
  4496. "ref/netstandard1.3/es/System.Collections.xml",
  4497. "ref/netstandard1.3/fr/System.Collections.xml",
  4498. "ref/netstandard1.3/it/System.Collections.xml",
  4499. "ref/netstandard1.3/ja/System.Collections.xml",
  4500. "ref/netstandard1.3/ko/System.Collections.xml",
  4501. "ref/netstandard1.3/ru/System.Collections.xml",
  4502. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4503. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4504. "ref/portable-net45+win8+wp8+wpa81/_._",
  4505. "ref/win8/_._",
  4506. "ref/wp80/_._",
  4507. "ref/wpa81/_._",
  4508. "ref/xamarinios10/_._",
  4509. "ref/xamarinmac20/_._",
  4510. "ref/xamarintvos10/_._",
  4511. "ref/xamarinwatchos10/_._",
  4512. "system.collections.4.3.0.nupkg.sha512",
  4513. "system.collections.nuspec"
  4514. ]
  4515. },
  4516. "System.Collections.Concurrent/4.3.0": {
  4517. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4518. "type": "package",
  4519. "path": "system.collections.concurrent/4.3.0",
  4520. "files": [
  4521. ".nupkg.metadata",
  4522. ".signature.p7s",
  4523. "ThirdPartyNotices.txt",
  4524. "dotnet_library_license.txt",
  4525. "lib/MonoAndroid10/_._",
  4526. "lib/MonoTouch10/_._",
  4527. "lib/net45/_._",
  4528. "lib/netcore50/System.Collections.Concurrent.dll",
  4529. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4530. "lib/portable-net45+win8+wpa81/_._",
  4531. "lib/win8/_._",
  4532. "lib/wpa81/_._",
  4533. "lib/xamarinios10/_._",
  4534. "lib/xamarinmac20/_._",
  4535. "lib/xamarintvos10/_._",
  4536. "lib/xamarinwatchos10/_._",
  4537. "ref/MonoAndroid10/_._",
  4538. "ref/MonoTouch10/_._",
  4539. "ref/net45/_._",
  4540. "ref/netcore50/System.Collections.Concurrent.dll",
  4541. "ref/netcore50/System.Collections.Concurrent.xml",
  4542. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4543. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4544. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4545. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4546. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4547. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4548. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4549. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4550. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4551. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4552. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4553. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4554. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4555. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4556. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4557. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4558. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4559. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4560. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4561. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4562. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4563. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4564. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4565. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4566. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4567. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4568. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4569. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4570. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  4571. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  4572. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  4573. "ref/portable-net45+win8+wpa81/_._",
  4574. "ref/win8/_._",
  4575. "ref/wpa81/_._",
  4576. "ref/xamarinios10/_._",
  4577. "ref/xamarinmac20/_._",
  4578. "ref/xamarintvos10/_._",
  4579. "ref/xamarinwatchos10/_._",
  4580. "system.collections.concurrent.4.3.0.nupkg.sha512",
  4581. "system.collections.concurrent.nuspec"
  4582. ]
  4583. },
  4584. "System.Collections.Immutable/1.7.1": {
  4585. "sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
  4586. "type": "package",
  4587. "path": "system.collections.immutable/1.7.1",
  4588. "files": [
  4589. ".nupkg.metadata",
  4590. ".signature.p7s",
  4591. "Icon.png",
  4592. "LICENSE.TXT",
  4593. "THIRD-PARTY-NOTICES.TXT",
  4594. "lib/net461/System.Collections.Immutable.dll",
  4595. "lib/net461/System.Collections.Immutable.xml",
  4596. "lib/netstandard1.0/System.Collections.Immutable.dll",
  4597. "lib/netstandard1.0/System.Collections.Immutable.xml",
  4598. "lib/netstandard1.3/System.Collections.Immutable.dll",
  4599. "lib/netstandard1.3/System.Collections.Immutable.xml",
  4600. "lib/netstandard2.0/System.Collections.Immutable.dll",
  4601. "lib/netstandard2.0/System.Collections.Immutable.xml",
  4602. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  4603. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  4604. "system.collections.immutable.1.7.1.nupkg.sha512",
  4605. "system.collections.immutable.nuspec",
  4606. "useSharedDesignerContext.txt",
  4607. "version.txt"
  4608. ]
  4609. },
  4610. "System.Collections.NonGeneric/4.3.0": {
  4611. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  4612. "type": "package",
  4613. "path": "system.collections.nongeneric/4.3.0",
  4614. "files": [
  4615. ".nupkg.metadata",
  4616. ".signature.p7s",
  4617. "ThirdPartyNotices.txt",
  4618. "dotnet_library_license.txt",
  4619. "lib/MonoAndroid10/_._",
  4620. "lib/MonoTouch10/_._",
  4621. "lib/net46/System.Collections.NonGeneric.dll",
  4622. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  4623. "lib/xamarinios10/_._",
  4624. "lib/xamarinmac20/_._",
  4625. "lib/xamarintvos10/_._",
  4626. "lib/xamarinwatchos10/_._",
  4627. "ref/MonoAndroid10/_._",
  4628. "ref/MonoTouch10/_._",
  4629. "ref/net46/System.Collections.NonGeneric.dll",
  4630. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  4631. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  4632. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  4633. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  4634. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  4635. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  4636. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  4637. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  4638. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  4639. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  4640. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  4641. "ref/xamarinios10/_._",
  4642. "ref/xamarinmac20/_._",
  4643. "ref/xamarintvos10/_._",
  4644. "ref/xamarinwatchos10/_._",
  4645. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  4646. "system.collections.nongeneric.nuspec"
  4647. ]
  4648. },
  4649. "System.Collections.Specialized/4.3.0": {
  4650. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  4651. "type": "package",
  4652. "path": "system.collections.specialized/4.3.0",
  4653. "files": [
  4654. ".nupkg.metadata",
  4655. ".signature.p7s",
  4656. "ThirdPartyNotices.txt",
  4657. "dotnet_library_license.txt",
  4658. "lib/MonoAndroid10/_._",
  4659. "lib/MonoTouch10/_._",
  4660. "lib/net46/System.Collections.Specialized.dll",
  4661. "lib/netstandard1.3/System.Collections.Specialized.dll",
  4662. "lib/xamarinios10/_._",
  4663. "lib/xamarinmac20/_._",
  4664. "lib/xamarintvos10/_._",
  4665. "lib/xamarinwatchos10/_._",
  4666. "ref/MonoAndroid10/_._",
  4667. "ref/MonoTouch10/_._",
  4668. "ref/net46/System.Collections.Specialized.dll",
  4669. "ref/netstandard1.3/System.Collections.Specialized.dll",
  4670. "ref/netstandard1.3/System.Collections.Specialized.xml",
  4671. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  4672. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  4673. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  4674. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  4675. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  4676. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  4677. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  4678. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  4679. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  4680. "ref/xamarinios10/_._",
  4681. "ref/xamarinmac20/_._",
  4682. "ref/xamarintvos10/_._",
  4683. "ref/xamarinwatchos10/_._",
  4684. "system.collections.specialized.4.3.0.nupkg.sha512",
  4685. "system.collections.specialized.nuspec"
  4686. ]
  4687. },
  4688. "System.ComponentModel/4.3.0": {
  4689. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  4690. "type": "package",
  4691. "path": "system.componentmodel/4.3.0",
  4692. "files": [
  4693. ".nupkg.metadata",
  4694. ".signature.p7s",
  4695. "ThirdPartyNotices.txt",
  4696. "dotnet_library_license.txt",
  4697. "lib/MonoAndroid10/_._",
  4698. "lib/MonoTouch10/_._",
  4699. "lib/net45/_._",
  4700. "lib/netcore50/System.ComponentModel.dll",
  4701. "lib/netstandard1.3/System.ComponentModel.dll",
  4702. "lib/portable-net45+win8+wp8+wpa81/_._",
  4703. "lib/win8/_._",
  4704. "lib/wp80/_._",
  4705. "lib/wpa81/_._",
  4706. "lib/xamarinios10/_._",
  4707. "lib/xamarinmac20/_._",
  4708. "lib/xamarintvos10/_._",
  4709. "lib/xamarinwatchos10/_._",
  4710. "ref/MonoAndroid10/_._",
  4711. "ref/MonoTouch10/_._",
  4712. "ref/net45/_._",
  4713. "ref/netcore50/System.ComponentModel.dll",
  4714. "ref/netcore50/System.ComponentModel.xml",
  4715. "ref/netcore50/de/System.ComponentModel.xml",
  4716. "ref/netcore50/es/System.ComponentModel.xml",
  4717. "ref/netcore50/fr/System.ComponentModel.xml",
  4718. "ref/netcore50/it/System.ComponentModel.xml",
  4719. "ref/netcore50/ja/System.ComponentModel.xml",
  4720. "ref/netcore50/ko/System.ComponentModel.xml",
  4721. "ref/netcore50/ru/System.ComponentModel.xml",
  4722. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  4723. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  4724. "ref/netstandard1.0/System.ComponentModel.dll",
  4725. "ref/netstandard1.0/System.ComponentModel.xml",
  4726. "ref/netstandard1.0/de/System.ComponentModel.xml",
  4727. "ref/netstandard1.0/es/System.ComponentModel.xml",
  4728. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  4729. "ref/netstandard1.0/it/System.ComponentModel.xml",
  4730. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  4731. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  4732. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  4733. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  4734. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  4735. "ref/portable-net45+win8+wp8+wpa81/_._",
  4736. "ref/win8/_._",
  4737. "ref/wp80/_._",
  4738. "ref/wpa81/_._",
  4739. "ref/xamarinios10/_._",
  4740. "ref/xamarinmac20/_._",
  4741. "ref/xamarintvos10/_._",
  4742. "ref/xamarinwatchos10/_._",
  4743. "system.componentmodel.4.3.0.nupkg.sha512",
  4744. "system.componentmodel.nuspec"
  4745. ]
  4746. },
  4747. "System.ComponentModel.Annotations/4.7.0": {
  4748. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  4749. "type": "package",
  4750. "path": "system.componentmodel.annotations/4.7.0",
  4751. "files": [
  4752. ".nupkg.metadata",
  4753. ".signature.p7s",
  4754. "LICENSE.TXT",
  4755. "THIRD-PARTY-NOTICES.TXT",
  4756. "lib/MonoAndroid10/_._",
  4757. "lib/MonoTouch10/_._",
  4758. "lib/net45/_._",
  4759. "lib/net461/System.ComponentModel.Annotations.dll",
  4760. "lib/netcore50/System.ComponentModel.Annotations.dll",
  4761. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  4762. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  4763. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  4764. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  4765. "lib/portable-net45+win8/_._",
  4766. "lib/win8/_._",
  4767. "lib/xamarinios10/_._",
  4768. "lib/xamarinmac20/_._",
  4769. "lib/xamarintvos10/_._",
  4770. "lib/xamarinwatchos10/_._",
  4771. "ref/MonoAndroid10/_._",
  4772. "ref/MonoTouch10/_._",
  4773. "ref/net45/_._",
  4774. "ref/net461/System.ComponentModel.Annotations.dll",
  4775. "ref/net461/System.ComponentModel.Annotations.xml",
  4776. "ref/netcore50/System.ComponentModel.Annotations.dll",
  4777. "ref/netcore50/System.ComponentModel.Annotations.xml",
  4778. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  4779. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  4780. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  4781. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  4782. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  4783. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  4784. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  4785. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  4786. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  4787. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  4788. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  4789. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  4790. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  4791. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  4792. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  4793. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  4794. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  4795. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  4796. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  4797. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  4798. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  4799. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  4800. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  4801. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  4802. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  4803. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  4804. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  4805. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  4806. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  4807. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  4808. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  4809. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  4810. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  4811. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  4812. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  4813. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  4814. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  4815. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  4816. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  4817. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  4818. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  4819. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  4820. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  4821. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  4822. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  4823. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  4824. "ref/portable-net45+win8/_._",
  4825. "ref/win8/_._",
  4826. "ref/xamarinios10/_._",
  4827. "ref/xamarinmac20/_._",
  4828. "ref/xamarintvos10/_._",
  4829. "ref/xamarinwatchos10/_._",
  4830. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  4831. "system.componentmodel.annotations.nuspec",
  4832. "useSharedDesignerContext.txt",
  4833. "version.txt"
  4834. ]
  4835. },
  4836. "System.ComponentModel.Primitives/4.3.0": {
  4837. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  4838. "type": "package",
  4839. "path": "system.componentmodel.primitives/4.3.0",
  4840. "files": [
  4841. ".nupkg.metadata",
  4842. ".signature.p7s",
  4843. "ThirdPartyNotices.txt",
  4844. "dotnet_library_license.txt",
  4845. "lib/MonoAndroid10/_._",
  4846. "lib/MonoTouch10/_._",
  4847. "lib/net45/System.ComponentModel.Primitives.dll",
  4848. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  4849. "lib/xamarinios10/_._",
  4850. "lib/xamarinmac20/_._",
  4851. "lib/xamarintvos10/_._",
  4852. "lib/xamarinwatchos10/_._",
  4853. "ref/MonoAndroid10/_._",
  4854. "ref/MonoTouch10/_._",
  4855. "ref/net45/System.ComponentModel.Primitives.dll",
  4856. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  4857. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  4858. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  4859. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  4860. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  4861. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  4862. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  4863. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  4864. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  4865. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  4866. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  4867. "ref/xamarinios10/_._",
  4868. "ref/xamarinmac20/_._",
  4869. "ref/xamarintvos10/_._",
  4870. "ref/xamarinwatchos10/_._",
  4871. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  4872. "system.componentmodel.primitives.nuspec"
  4873. ]
  4874. },
  4875. "System.ComponentModel.TypeConverter/4.3.0": {
  4876. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  4877. "type": "package",
  4878. "path": "system.componentmodel.typeconverter/4.3.0",
  4879. "files": [
  4880. ".nupkg.metadata",
  4881. ".signature.p7s",
  4882. "ThirdPartyNotices.txt",
  4883. "dotnet_library_license.txt",
  4884. "lib/MonoAndroid10/_._",
  4885. "lib/MonoTouch10/_._",
  4886. "lib/net45/System.ComponentModel.TypeConverter.dll",
  4887. "lib/net462/System.ComponentModel.TypeConverter.dll",
  4888. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4889. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4890. "lib/xamarinios10/_._",
  4891. "lib/xamarinmac20/_._",
  4892. "lib/xamarintvos10/_._",
  4893. "lib/xamarinwatchos10/_._",
  4894. "ref/MonoAndroid10/_._",
  4895. "ref/MonoTouch10/_._",
  4896. "ref/net45/System.ComponentModel.TypeConverter.dll",
  4897. "ref/net462/System.ComponentModel.TypeConverter.dll",
  4898. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4899. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  4900. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  4901. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  4902. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  4903. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  4904. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  4905. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  4906. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  4907. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  4908. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  4909. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4910. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  4911. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  4912. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  4913. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  4914. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  4915. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  4916. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  4917. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  4918. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  4919. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  4920. "ref/xamarinios10/_._",
  4921. "ref/xamarinmac20/_._",
  4922. "ref/xamarintvos10/_._",
  4923. "ref/xamarinwatchos10/_._",
  4924. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  4925. "system.componentmodel.typeconverter.nuspec"
  4926. ]
  4927. },
  4928. "System.Composition/1.0.31": {
  4929. "sha512": "I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==",
  4930. "type": "package",
  4931. "path": "system.composition/1.0.31",
  4932. "files": [
  4933. ".nupkg.metadata",
  4934. ".signature.p7s",
  4935. "ThirdPartyNotices.txt",
  4936. "dotnet_library_license.txt",
  4937. "system.composition.1.0.31.nupkg.sha512",
  4938. "system.composition.nuspec"
  4939. ]
  4940. },
  4941. "System.Composition.AttributedModel/1.0.31": {
  4942. "sha512": "NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==",
  4943. "type": "package",
  4944. "path": "system.composition.attributedmodel/1.0.31",
  4945. "files": [
  4946. ".nupkg.metadata",
  4947. ".signature.p7s",
  4948. "ThirdPartyNotices.txt",
  4949. "dotnet_library_license.txt",
  4950. "lib/netstandard1.0/System.Composition.AttributedModel.dll",
  4951. "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll",
  4952. "system.composition.attributedmodel.1.0.31.nupkg.sha512",
  4953. "system.composition.attributedmodel.nuspec"
  4954. ]
  4955. },
  4956. "System.Composition.Convention/1.0.31": {
  4957. "sha512": "GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==",
  4958. "type": "package",
  4959. "path": "system.composition.convention/1.0.31",
  4960. "files": [
  4961. ".nupkg.metadata",
  4962. ".signature.p7s",
  4963. "ThirdPartyNotices.txt",
  4964. "dotnet_library_license.txt",
  4965. "lib/netstandard1.0/System.Composition.Convention.dll",
  4966. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll",
  4967. "system.composition.convention.1.0.31.nupkg.sha512",
  4968. "system.composition.convention.nuspec"
  4969. ]
  4970. },
  4971. "System.Composition.Hosting/1.0.31": {
  4972. "sha512": "fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==",
  4973. "type": "package",
  4974. "path": "system.composition.hosting/1.0.31",
  4975. "files": [
  4976. ".nupkg.metadata",
  4977. ".signature.p7s",
  4978. "ThirdPartyNotices.txt",
  4979. "dotnet_library_license.txt",
  4980. "lib/netstandard1.0/System.Composition.Hosting.dll",
  4981. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll",
  4982. "system.composition.hosting.1.0.31.nupkg.sha512",
  4983. "system.composition.hosting.nuspec"
  4984. ]
  4985. },
  4986. "System.Composition.Runtime/1.0.31": {
  4987. "sha512": "0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==",
  4988. "type": "package",
  4989. "path": "system.composition.runtime/1.0.31",
  4990. "files": [
  4991. ".nupkg.metadata",
  4992. ".signature.p7s",
  4993. "ThirdPartyNotices.txt",
  4994. "dotnet_library_license.txt",
  4995. "lib/netstandard1.0/System.Composition.Runtime.dll",
  4996. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll",
  4997. "system.composition.runtime.1.0.31.nupkg.sha512",
  4998. "system.composition.runtime.nuspec"
  4999. ]
  5000. },
  5001. "System.Composition.TypedParts/1.0.31": {
  5002. "sha512": "0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==",
  5003. "type": "package",
  5004. "path": "system.composition.typedparts/1.0.31",
  5005. "files": [
  5006. ".nupkg.metadata",
  5007. ".signature.p7s",
  5008. "ThirdPartyNotices.txt",
  5009. "dotnet_library_license.txt",
  5010. "lib/netstandard1.0/System.Composition.TypedParts.dll",
  5011. "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll",
  5012. "system.composition.typedparts.1.0.31.nupkg.sha512",
  5013. "system.composition.typedparts.nuspec"
  5014. ]
  5015. },
  5016. "System.Configuration.ConfigurationManager/4.5.0": {
  5017. "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
  5018. "type": "package",
  5019. "path": "system.configuration.configurationmanager/4.5.0",
  5020. "files": [
  5021. ".nupkg.metadata",
  5022. ".signature.p7s",
  5023. "LICENSE.TXT",
  5024. "THIRD-PARTY-NOTICES.TXT",
  5025. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5026. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5027. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5028. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5029. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5030. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5031. "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
  5032. "system.configuration.configurationmanager.nuspec",
  5033. "useSharedDesignerContext.txt",
  5034. "version.txt"
  5035. ]
  5036. },
  5037. "System.Console/4.3.0": {
  5038. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5039. "type": "package",
  5040. "path": "system.console/4.3.0",
  5041. "files": [
  5042. ".nupkg.metadata",
  5043. ".signature.p7s",
  5044. "ThirdPartyNotices.txt",
  5045. "dotnet_library_license.txt",
  5046. "lib/MonoAndroid10/_._",
  5047. "lib/MonoTouch10/_._",
  5048. "lib/net46/System.Console.dll",
  5049. "lib/xamarinios10/_._",
  5050. "lib/xamarinmac20/_._",
  5051. "lib/xamarintvos10/_._",
  5052. "lib/xamarinwatchos10/_._",
  5053. "ref/MonoAndroid10/_._",
  5054. "ref/MonoTouch10/_._",
  5055. "ref/net46/System.Console.dll",
  5056. "ref/netstandard1.3/System.Console.dll",
  5057. "ref/netstandard1.3/System.Console.xml",
  5058. "ref/netstandard1.3/de/System.Console.xml",
  5059. "ref/netstandard1.3/es/System.Console.xml",
  5060. "ref/netstandard1.3/fr/System.Console.xml",
  5061. "ref/netstandard1.3/it/System.Console.xml",
  5062. "ref/netstandard1.3/ja/System.Console.xml",
  5063. "ref/netstandard1.3/ko/System.Console.xml",
  5064. "ref/netstandard1.3/ru/System.Console.xml",
  5065. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5066. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5067. "ref/xamarinios10/_._",
  5068. "ref/xamarinmac20/_._",
  5069. "ref/xamarintvos10/_._",
  5070. "ref/xamarinwatchos10/_._",
  5071. "system.console.4.3.0.nupkg.sha512",
  5072. "system.console.nuspec"
  5073. ]
  5074. },
  5075. "System.Diagnostics.Debug/4.3.0": {
  5076. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5077. "type": "package",
  5078. "path": "system.diagnostics.debug/4.3.0",
  5079. "files": [
  5080. ".nupkg.metadata",
  5081. ".signature.p7s",
  5082. "ThirdPartyNotices.txt",
  5083. "dotnet_library_license.txt",
  5084. "lib/MonoAndroid10/_._",
  5085. "lib/MonoTouch10/_._",
  5086. "lib/net45/_._",
  5087. "lib/portable-net45+win8+wp8+wpa81/_._",
  5088. "lib/win8/_._",
  5089. "lib/wp80/_._",
  5090. "lib/wpa81/_._",
  5091. "lib/xamarinios10/_._",
  5092. "lib/xamarinmac20/_._",
  5093. "lib/xamarintvos10/_._",
  5094. "lib/xamarinwatchos10/_._",
  5095. "ref/MonoAndroid10/_._",
  5096. "ref/MonoTouch10/_._",
  5097. "ref/net45/_._",
  5098. "ref/netcore50/System.Diagnostics.Debug.dll",
  5099. "ref/netcore50/System.Diagnostics.Debug.xml",
  5100. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5101. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5102. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5103. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5104. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5105. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5106. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5107. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5108. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5109. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5110. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5111. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5112. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5113. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5114. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5115. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5116. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5117. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5118. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5119. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5120. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5121. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5122. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5123. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5124. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5125. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5126. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5127. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5128. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5129. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5130. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5131. "ref/portable-net45+win8+wp8+wpa81/_._",
  5132. "ref/win8/_._",
  5133. "ref/wp80/_._",
  5134. "ref/wpa81/_._",
  5135. "ref/xamarinios10/_._",
  5136. "ref/xamarinmac20/_._",
  5137. "ref/xamarintvos10/_._",
  5138. "ref/xamarinwatchos10/_._",
  5139. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5140. "system.diagnostics.debug.nuspec"
  5141. ]
  5142. },
  5143. "System.Diagnostics.DiagnosticSource/4.7.1": {
  5144. "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
  5145. "type": "package",
  5146. "path": "system.diagnostics.diagnosticsource/4.7.1",
  5147. "files": [
  5148. ".nupkg.metadata",
  5149. ".signature.p7s",
  5150. "Icon.png",
  5151. "LICENSE.TXT",
  5152. "THIRD-PARTY-NOTICES.TXT",
  5153. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5154. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5155. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5156. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5157. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5158. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5159. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5160. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5161. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5162. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5163. "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
  5164. "system.diagnostics.diagnosticsource.nuspec",
  5165. "useSharedDesignerContext.txt",
  5166. "version.txt"
  5167. ]
  5168. },
  5169. "System.Diagnostics.Tools/4.3.0": {
  5170. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5171. "type": "package",
  5172. "path": "system.diagnostics.tools/4.3.0",
  5173. "files": [
  5174. ".nupkg.metadata",
  5175. ".signature.p7s",
  5176. "ThirdPartyNotices.txt",
  5177. "dotnet_library_license.txt",
  5178. "lib/MonoAndroid10/_._",
  5179. "lib/MonoTouch10/_._",
  5180. "lib/net45/_._",
  5181. "lib/portable-net45+win8+wp8+wpa81/_._",
  5182. "lib/win8/_._",
  5183. "lib/wp80/_._",
  5184. "lib/wpa81/_._",
  5185. "lib/xamarinios10/_._",
  5186. "lib/xamarinmac20/_._",
  5187. "lib/xamarintvos10/_._",
  5188. "lib/xamarinwatchos10/_._",
  5189. "ref/MonoAndroid10/_._",
  5190. "ref/MonoTouch10/_._",
  5191. "ref/net45/_._",
  5192. "ref/netcore50/System.Diagnostics.Tools.dll",
  5193. "ref/netcore50/System.Diagnostics.Tools.xml",
  5194. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5195. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5196. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5197. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5198. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5199. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5200. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5201. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5202. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5203. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5204. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5205. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5206. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5207. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5208. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5209. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5210. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5211. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5212. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5213. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5214. "ref/portable-net45+win8+wp8+wpa81/_._",
  5215. "ref/win8/_._",
  5216. "ref/wp80/_._",
  5217. "ref/wpa81/_._",
  5218. "ref/xamarinios10/_._",
  5219. "ref/xamarinmac20/_._",
  5220. "ref/xamarintvos10/_._",
  5221. "ref/xamarinwatchos10/_._",
  5222. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5223. "system.diagnostics.tools.nuspec"
  5224. ]
  5225. },
  5226. "System.Diagnostics.Tracing/4.3.0": {
  5227. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5228. "type": "package",
  5229. "path": "system.diagnostics.tracing/4.3.0",
  5230. "files": [
  5231. ".nupkg.metadata",
  5232. ".signature.p7s",
  5233. "ThirdPartyNotices.txt",
  5234. "dotnet_library_license.txt",
  5235. "lib/MonoAndroid10/_._",
  5236. "lib/MonoTouch10/_._",
  5237. "lib/net45/_._",
  5238. "lib/net462/System.Diagnostics.Tracing.dll",
  5239. "lib/portable-net45+win8+wpa81/_._",
  5240. "lib/win8/_._",
  5241. "lib/wpa81/_._",
  5242. "lib/xamarinios10/_._",
  5243. "lib/xamarinmac20/_._",
  5244. "lib/xamarintvos10/_._",
  5245. "lib/xamarinwatchos10/_._",
  5246. "ref/MonoAndroid10/_._",
  5247. "ref/MonoTouch10/_._",
  5248. "ref/net45/_._",
  5249. "ref/net462/System.Diagnostics.Tracing.dll",
  5250. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5251. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5252. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5253. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5254. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5255. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5256. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5257. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5258. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5259. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5260. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5261. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5262. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5263. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5264. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5265. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5266. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5267. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5268. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5269. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5270. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5271. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5272. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5273. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5274. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5275. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5276. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5277. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5278. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5279. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5280. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5281. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5282. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5283. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5284. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5285. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5286. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5287. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5288. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5289. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5290. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5291. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5292. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5293. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5294. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5295. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5296. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5297. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5298. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5299. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5300. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5301. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5302. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5303. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5304. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5305. "ref/portable-net45+win8+wpa81/_._",
  5306. "ref/win8/_._",
  5307. "ref/wpa81/_._",
  5308. "ref/xamarinios10/_._",
  5309. "ref/xamarinmac20/_._",
  5310. "ref/xamarintvos10/_._",
  5311. "ref/xamarinwatchos10/_._",
  5312. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5313. "system.diagnostics.tracing.nuspec"
  5314. ]
  5315. },
  5316. "System.Globalization/4.3.0": {
  5317. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5318. "type": "package",
  5319. "path": "system.globalization/4.3.0",
  5320. "files": [
  5321. ".nupkg.metadata",
  5322. ".signature.p7s",
  5323. "ThirdPartyNotices.txt",
  5324. "dotnet_library_license.txt",
  5325. "lib/MonoAndroid10/_._",
  5326. "lib/MonoTouch10/_._",
  5327. "lib/net45/_._",
  5328. "lib/portable-net45+win8+wp8+wpa81/_._",
  5329. "lib/win8/_._",
  5330. "lib/wp80/_._",
  5331. "lib/wpa81/_._",
  5332. "lib/xamarinios10/_._",
  5333. "lib/xamarinmac20/_._",
  5334. "lib/xamarintvos10/_._",
  5335. "lib/xamarinwatchos10/_._",
  5336. "ref/MonoAndroid10/_._",
  5337. "ref/MonoTouch10/_._",
  5338. "ref/net45/_._",
  5339. "ref/netcore50/System.Globalization.dll",
  5340. "ref/netcore50/System.Globalization.xml",
  5341. "ref/netcore50/de/System.Globalization.xml",
  5342. "ref/netcore50/es/System.Globalization.xml",
  5343. "ref/netcore50/fr/System.Globalization.xml",
  5344. "ref/netcore50/it/System.Globalization.xml",
  5345. "ref/netcore50/ja/System.Globalization.xml",
  5346. "ref/netcore50/ko/System.Globalization.xml",
  5347. "ref/netcore50/ru/System.Globalization.xml",
  5348. "ref/netcore50/zh-hans/System.Globalization.xml",
  5349. "ref/netcore50/zh-hant/System.Globalization.xml",
  5350. "ref/netstandard1.0/System.Globalization.dll",
  5351. "ref/netstandard1.0/System.Globalization.xml",
  5352. "ref/netstandard1.0/de/System.Globalization.xml",
  5353. "ref/netstandard1.0/es/System.Globalization.xml",
  5354. "ref/netstandard1.0/fr/System.Globalization.xml",
  5355. "ref/netstandard1.0/it/System.Globalization.xml",
  5356. "ref/netstandard1.0/ja/System.Globalization.xml",
  5357. "ref/netstandard1.0/ko/System.Globalization.xml",
  5358. "ref/netstandard1.0/ru/System.Globalization.xml",
  5359. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5360. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5361. "ref/netstandard1.3/System.Globalization.dll",
  5362. "ref/netstandard1.3/System.Globalization.xml",
  5363. "ref/netstandard1.3/de/System.Globalization.xml",
  5364. "ref/netstandard1.3/es/System.Globalization.xml",
  5365. "ref/netstandard1.3/fr/System.Globalization.xml",
  5366. "ref/netstandard1.3/it/System.Globalization.xml",
  5367. "ref/netstandard1.3/ja/System.Globalization.xml",
  5368. "ref/netstandard1.3/ko/System.Globalization.xml",
  5369. "ref/netstandard1.3/ru/System.Globalization.xml",
  5370. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5371. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5372. "ref/portable-net45+win8+wp8+wpa81/_._",
  5373. "ref/win8/_._",
  5374. "ref/wp80/_._",
  5375. "ref/wpa81/_._",
  5376. "ref/xamarinios10/_._",
  5377. "ref/xamarinmac20/_._",
  5378. "ref/xamarintvos10/_._",
  5379. "ref/xamarinwatchos10/_._",
  5380. "system.globalization.4.3.0.nupkg.sha512",
  5381. "system.globalization.nuspec"
  5382. ]
  5383. },
  5384. "System.Globalization.Calendars/4.3.0": {
  5385. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  5386. "type": "package",
  5387. "path": "system.globalization.calendars/4.3.0",
  5388. "files": [
  5389. ".nupkg.metadata",
  5390. ".signature.p7s",
  5391. "ThirdPartyNotices.txt",
  5392. "dotnet_library_license.txt",
  5393. "lib/MonoAndroid10/_._",
  5394. "lib/MonoTouch10/_._",
  5395. "lib/net46/System.Globalization.Calendars.dll",
  5396. "lib/xamarinios10/_._",
  5397. "lib/xamarinmac20/_._",
  5398. "lib/xamarintvos10/_._",
  5399. "lib/xamarinwatchos10/_._",
  5400. "ref/MonoAndroid10/_._",
  5401. "ref/MonoTouch10/_._",
  5402. "ref/net46/System.Globalization.Calendars.dll",
  5403. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5404. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5405. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5406. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5407. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5408. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5409. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5410. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5411. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5412. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5413. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5414. "ref/xamarinios10/_._",
  5415. "ref/xamarinmac20/_._",
  5416. "ref/xamarintvos10/_._",
  5417. "ref/xamarinwatchos10/_._",
  5418. "system.globalization.calendars.4.3.0.nupkg.sha512",
  5419. "system.globalization.calendars.nuspec"
  5420. ]
  5421. },
  5422. "System.Globalization.Extensions/4.3.0": {
  5423. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  5424. "type": "package",
  5425. "path": "system.globalization.extensions/4.3.0",
  5426. "files": [
  5427. ".nupkg.metadata",
  5428. ".signature.p7s",
  5429. "ThirdPartyNotices.txt",
  5430. "dotnet_library_license.txt",
  5431. "lib/MonoAndroid10/_._",
  5432. "lib/MonoTouch10/_._",
  5433. "lib/net46/System.Globalization.Extensions.dll",
  5434. "lib/xamarinios10/_._",
  5435. "lib/xamarinmac20/_._",
  5436. "lib/xamarintvos10/_._",
  5437. "lib/xamarinwatchos10/_._",
  5438. "ref/MonoAndroid10/_._",
  5439. "ref/MonoTouch10/_._",
  5440. "ref/net46/System.Globalization.Extensions.dll",
  5441. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5442. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5443. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5444. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5445. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5446. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5447. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5448. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5449. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5450. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5451. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5452. "ref/xamarinios10/_._",
  5453. "ref/xamarinmac20/_._",
  5454. "ref/xamarintvos10/_._",
  5455. "ref/xamarinwatchos10/_._",
  5456. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5457. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5458. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5459. "system.globalization.extensions.4.3.0.nupkg.sha512",
  5460. "system.globalization.extensions.nuspec"
  5461. ]
  5462. },
  5463. "System.IdentityModel.Tokens.Jwt/5.5.0": {
  5464. "sha512": "xa8kptJ+uf9hzj366f3pLcs5HFZ6dQMDKzEGq/yZNF0s3mVfyIhuQwgDcTJlAU4AROne/6Z5+vITwrW3gVNKIA==",
  5465. "type": "package",
  5466. "path": "system.identitymodel.tokens.jwt/5.5.0",
  5467. "files": [
  5468. ".nupkg.metadata",
  5469. ".signature.p7s",
  5470. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  5471. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  5472. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  5473. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  5474. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  5475. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  5476. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  5477. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  5478. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  5479. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  5480. "system.identitymodel.tokens.jwt.5.5.0.nupkg.sha512",
  5481. "system.identitymodel.tokens.jwt.nuspec"
  5482. ]
  5483. },
  5484. "System.IO/4.3.0": {
  5485. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5486. "type": "package",
  5487. "path": "system.io/4.3.0",
  5488. "files": [
  5489. ".nupkg.metadata",
  5490. ".signature.p7s",
  5491. "ThirdPartyNotices.txt",
  5492. "dotnet_library_license.txt",
  5493. "lib/MonoAndroid10/_._",
  5494. "lib/MonoTouch10/_._",
  5495. "lib/net45/_._",
  5496. "lib/net462/System.IO.dll",
  5497. "lib/portable-net45+win8+wp8+wpa81/_._",
  5498. "lib/win8/_._",
  5499. "lib/wp80/_._",
  5500. "lib/wpa81/_._",
  5501. "lib/xamarinios10/_._",
  5502. "lib/xamarinmac20/_._",
  5503. "lib/xamarintvos10/_._",
  5504. "lib/xamarinwatchos10/_._",
  5505. "ref/MonoAndroid10/_._",
  5506. "ref/MonoTouch10/_._",
  5507. "ref/net45/_._",
  5508. "ref/net462/System.IO.dll",
  5509. "ref/netcore50/System.IO.dll",
  5510. "ref/netcore50/System.IO.xml",
  5511. "ref/netcore50/de/System.IO.xml",
  5512. "ref/netcore50/es/System.IO.xml",
  5513. "ref/netcore50/fr/System.IO.xml",
  5514. "ref/netcore50/it/System.IO.xml",
  5515. "ref/netcore50/ja/System.IO.xml",
  5516. "ref/netcore50/ko/System.IO.xml",
  5517. "ref/netcore50/ru/System.IO.xml",
  5518. "ref/netcore50/zh-hans/System.IO.xml",
  5519. "ref/netcore50/zh-hant/System.IO.xml",
  5520. "ref/netstandard1.0/System.IO.dll",
  5521. "ref/netstandard1.0/System.IO.xml",
  5522. "ref/netstandard1.0/de/System.IO.xml",
  5523. "ref/netstandard1.0/es/System.IO.xml",
  5524. "ref/netstandard1.0/fr/System.IO.xml",
  5525. "ref/netstandard1.0/it/System.IO.xml",
  5526. "ref/netstandard1.0/ja/System.IO.xml",
  5527. "ref/netstandard1.0/ko/System.IO.xml",
  5528. "ref/netstandard1.0/ru/System.IO.xml",
  5529. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5530. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5531. "ref/netstandard1.3/System.IO.dll",
  5532. "ref/netstandard1.3/System.IO.xml",
  5533. "ref/netstandard1.3/de/System.IO.xml",
  5534. "ref/netstandard1.3/es/System.IO.xml",
  5535. "ref/netstandard1.3/fr/System.IO.xml",
  5536. "ref/netstandard1.3/it/System.IO.xml",
  5537. "ref/netstandard1.3/ja/System.IO.xml",
  5538. "ref/netstandard1.3/ko/System.IO.xml",
  5539. "ref/netstandard1.3/ru/System.IO.xml",
  5540. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5541. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5542. "ref/netstandard1.5/System.IO.dll",
  5543. "ref/netstandard1.5/System.IO.xml",
  5544. "ref/netstandard1.5/de/System.IO.xml",
  5545. "ref/netstandard1.5/es/System.IO.xml",
  5546. "ref/netstandard1.5/fr/System.IO.xml",
  5547. "ref/netstandard1.5/it/System.IO.xml",
  5548. "ref/netstandard1.5/ja/System.IO.xml",
  5549. "ref/netstandard1.5/ko/System.IO.xml",
  5550. "ref/netstandard1.5/ru/System.IO.xml",
  5551. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5552. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5553. "ref/portable-net45+win8+wp8+wpa81/_._",
  5554. "ref/win8/_._",
  5555. "ref/wp80/_._",
  5556. "ref/wpa81/_._",
  5557. "ref/xamarinios10/_._",
  5558. "ref/xamarinmac20/_._",
  5559. "ref/xamarintvos10/_._",
  5560. "ref/xamarinwatchos10/_._",
  5561. "system.io.4.3.0.nupkg.sha512",
  5562. "system.io.nuspec"
  5563. ]
  5564. },
  5565. "System.IO.Compression/4.3.0": {
  5566. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  5567. "type": "package",
  5568. "path": "system.io.compression/4.3.0",
  5569. "files": [
  5570. ".nupkg.metadata",
  5571. ".signature.p7s",
  5572. "ThirdPartyNotices.txt",
  5573. "dotnet_library_license.txt",
  5574. "lib/MonoAndroid10/_._",
  5575. "lib/MonoTouch10/_._",
  5576. "lib/net45/_._",
  5577. "lib/net46/System.IO.Compression.dll",
  5578. "lib/portable-net45+win8+wpa81/_._",
  5579. "lib/win8/_._",
  5580. "lib/wpa81/_._",
  5581. "lib/xamarinios10/_._",
  5582. "lib/xamarinmac20/_._",
  5583. "lib/xamarintvos10/_._",
  5584. "lib/xamarinwatchos10/_._",
  5585. "ref/MonoAndroid10/_._",
  5586. "ref/MonoTouch10/_._",
  5587. "ref/net45/_._",
  5588. "ref/net46/System.IO.Compression.dll",
  5589. "ref/netcore50/System.IO.Compression.dll",
  5590. "ref/netcore50/System.IO.Compression.xml",
  5591. "ref/netcore50/de/System.IO.Compression.xml",
  5592. "ref/netcore50/es/System.IO.Compression.xml",
  5593. "ref/netcore50/fr/System.IO.Compression.xml",
  5594. "ref/netcore50/it/System.IO.Compression.xml",
  5595. "ref/netcore50/ja/System.IO.Compression.xml",
  5596. "ref/netcore50/ko/System.IO.Compression.xml",
  5597. "ref/netcore50/ru/System.IO.Compression.xml",
  5598. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  5599. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  5600. "ref/netstandard1.1/System.IO.Compression.dll",
  5601. "ref/netstandard1.1/System.IO.Compression.xml",
  5602. "ref/netstandard1.1/de/System.IO.Compression.xml",
  5603. "ref/netstandard1.1/es/System.IO.Compression.xml",
  5604. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  5605. "ref/netstandard1.1/it/System.IO.Compression.xml",
  5606. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  5607. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  5608. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  5609. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  5610. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  5611. "ref/netstandard1.3/System.IO.Compression.dll",
  5612. "ref/netstandard1.3/System.IO.Compression.xml",
  5613. "ref/netstandard1.3/de/System.IO.Compression.xml",
  5614. "ref/netstandard1.3/es/System.IO.Compression.xml",
  5615. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  5616. "ref/netstandard1.3/it/System.IO.Compression.xml",
  5617. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  5618. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  5619. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  5620. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  5621. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  5622. "ref/portable-net45+win8+wpa81/_._",
  5623. "ref/win8/_._",
  5624. "ref/wpa81/_._",
  5625. "ref/xamarinios10/_._",
  5626. "ref/xamarinmac20/_._",
  5627. "ref/xamarintvos10/_._",
  5628. "ref/xamarinwatchos10/_._",
  5629. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  5630. "runtimes/win/lib/net46/System.IO.Compression.dll",
  5631. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  5632. "system.io.compression.4.3.0.nupkg.sha512",
  5633. "system.io.compression.nuspec"
  5634. ]
  5635. },
  5636. "System.IO.Compression.ZipFile/4.3.0": {
  5637. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  5638. "type": "package",
  5639. "path": "system.io.compression.zipfile/4.3.0",
  5640. "files": [
  5641. ".nupkg.metadata",
  5642. ".signature.p7s",
  5643. "ThirdPartyNotices.txt",
  5644. "dotnet_library_license.txt",
  5645. "lib/MonoAndroid10/_._",
  5646. "lib/MonoTouch10/_._",
  5647. "lib/net46/System.IO.Compression.ZipFile.dll",
  5648. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5649. "lib/xamarinios10/_._",
  5650. "lib/xamarinmac20/_._",
  5651. "lib/xamarintvos10/_._",
  5652. "lib/xamarinwatchos10/_._",
  5653. "ref/MonoAndroid10/_._",
  5654. "ref/MonoTouch10/_._",
  5655. "ref/net46/System.IO.Compression.ZipFile.dll",
  5656. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5657. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  5658. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  5659. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  5660. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  5661. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  5662. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  5663. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  5664. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  5665. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  5666. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  5667. "ref/xamarinios10/_._",
  5668. "ref/xamarinmac20/_._",
  5669. "ref/xamarintvos10/_._",
  5670. "ref/xamarinwatchos10/_._",
  5671. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  5672. "system.io.compression.zipfile.nuspec"
  5673. ]
  5674. },
  5675. "System.IO.FileSystem/4.3.0": {
  5676. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  5677. "type": "package",
  5678. "path": "system.io.filesystem/4.3.0",
  5679. "files": [
  5680. ".nupkg.metadata",
  5681. ".signature.p7s",
  5682. "ThirdPartyNotices.txt",
  5683. "dotnet_library_license.txt",
  5684. "lib/MonoAndroid10/_._",
  5685. "lib/MonoTouch10/_._",
  5686. "lib/net46/System.IO.FileSystem.dll",
  5687. "lib/xamarinios10/_._",
  5688. "lib/xamarinmac20/_._",
  5689. "lib/xamarintvos10/_._",
  5690. "lib/xamarinwatchos10/_._",
  5691. "ref/MonoAndroid10/_._",
  5692. "ref/MonoTouch10/_._",
  5693. "ref/net46/System.IO.FileSystem.dll",
  5694. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5695. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5696. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5697. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5698. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5699. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5700. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5701. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5702. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5703. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5704. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5705. "ref/xamarinios10/_._",
  5706. "ref/xamarinmac20/_._",
  5707. "ref/xamarintvos10/_._",
  5708. "ref/xamarinwatchos10/_._",
  5709. "system.io.filesystem.4.3.0.nupkg.sha512",
  5710. "system.io.filesystem.nuspec"
  5711. ]
  5712. },
  5713. "System.IO.FileSystem.Primitives/4.3.0": {
  5714. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  5715. "type": "package",
  5716. "path": "system.io.filesystem.primitives/4.3.0",
  5717. "files": [
  5718. ".nupkg.metadata",
  5719. ".signature.p7s",
  5720. "ThirdPartyNotices.txt",
  5721. "dotnet_library_license.txt",
  5722. "lib/MonoAndroid10/_._",
  5723. "lib/MonoTouch10/_._",
  5724. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5725. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5726. "lib/xamarinios10/_._",
  5727. "lib/xamarinmac20/_._",
  5728. "lib/xamarintvos10/_._",
  5729. "lib/xamarinwatchos10/_._",
  5730. "ref/MonoAndroid10/_._",
  5731. "ref/MonoTouch10/_._",
  5732. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5733. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5734. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5735. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5736. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5737. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5738. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5739. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5740. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5741. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5742. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5743. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5744. "ref/xamarinios10/_._",
  5745. "ref/xamarinmac20/_._",
  5746. "ref/xamarintvos10/_._",
  5747. "ref/xamarinwatchos10/_._",
  5748. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  5749. "system.io.filesystem.primitives.nuspec"
  5750. ]
  5751. },
  5752. "System.Linq/4.3.0": {
  5753. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5754. "type": "package",
  5755. "path": "system.linq/4.3.0",
  5756. "files": [
  5757. ".nupkg.metadata",
  5758. ".signature.p7s",
  5759. "ThirdPartyNotices.txt",
  5760. "dotnet_library_license.txt",
  5761. "lib/MonoAndroid10/_._",
  5762. "lib/MonoTouch10/_._",
  5763. "lib/net45/_._",
  5764. "lib/net463/System.Linq.dll",
  5765. "lib/netcore50/System.Linq.dll",
  5766. "lib/netstandard1.6/System.Linq.dll",
  5767. "lib/portable-net45+win8+wp8+wpa81/_._",
  5768. "lib/win8/_._",
  5769. "lib/wp80/_._",
  5770. "lib/wpa81/_._",
  5771. "lib/xamarinios10/_._",
  5772. "lib/xamarinmac20/_._",
  5773. "lib/xamarintvos10/_._",
  5774. "lib/xamarinwatchos10/_._",
  5775. "ref/MonoAndroid10/_._",
  5776. "ref/MonoTouch10/_._",
  5777. "ref/net45/_._",
  5778. "ref/net463/System.Linq.dll",
  5779. "ref/netcore50/System.Linq.dll",
  5780. "ref/netcore50/System.Linq.xml",
  5781. "ref/netcore50/de/System.Linq.xml",
  5782. "ref/netcore50/es/System.Linq.xml",
  5783. "ref/netcore50/fr/System.Linq.xml",
  5784. "ref/netcore50/it/System.Linq.xml",
  5785. "ref/netcore50/ja/System.Linq.xml",
  5786. "ref/netcore50/ko/System.Linq.xml",
  5787. "ref/netcore50/ru/System.Linq.xml",
  5788. "ref/netcore50/zh-hans/System.Linq.xml",
  5789. "ref/netcore50/zh-hant/System.Linq.xml",
  5790. "ref/netstandard1.0/System.Linq.dll",
  5791. "ref/netstandard1.0/System.Linq.xml",
  5792. "ref/netstandard1.0/de/System.Linq.xml",
  5793. "ref/netstandard1.0/es/System.Linq.xml",
  5794. "ref/netstandard1.0/fr/System.Linq.xml",
  5795. "ref/netstandard1.0/it/System.Linq.xml",
  5796. "ref/netstandard1.0/ja/System.Linq.xml",
  5797. "ref/netstandard1.0/ko/System.Linq.xml",
  5798. "ref/netstandard1.0/ru/System.Linq.xml",
  5799. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5800. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5801. "ref/netstandard1.6/System.Linq.dll",
  5802. "ref/netstandard1.6/System.Linq.xml",
  5803. "ref/netstandard1.6/de/System.Linq.xml",
  5804. "ref/netstandard1.6/es/System.Linq.xml",
  5805. "ref/netstandard1.6/fr/System.Linq.xml",
  5806. "ref/netstandard1.6/it/System.Linq.xml",
  5807. "ref/netstandard1.6/ja/System.Linq.xml",
  5808. "ref/netstandard1.6/ko/System.Linq.xml",
  5809. "ref/netstandard1.6/ru/System.Linq.xml",
  5810. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5811. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5812. "ref/portable-net45+win8+wp8+wpa81/_._",
  5813. "ref/win8/_._",
  5814. "ref/wp80/_._",
  5815. "ref/wpa81/_._",
  5816. "ref/xamarinios10/_._",
  5817. "ref/xamarinmac20/_._",
  5818. "ref/xamarintvos10/_._",
  5819. "ref/xamarinwatchos10/_._",
  5820. "system.linq.4.3.0.nupkg.sha512",
  5821. "system.linq.nuspec"
  5822. ]
  5823. },
  5824. "System.Linq.Expressions/4.3.0": {
  5825. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  5826. "type": "package",
  5827. "path": "system.linq.expressions/4.3.0",
  5828. "files": [
  5829. ".nupkg.metadata",
  5830. ".signature.p7s",
  5831. "ThirdPartyNotices.txt",
  5832. "dotnet_library_license.txt",
  5833. "lib/MonoAndroid10/_._",
  5834. "lib/MonoTouch10/_._",
  5835. "lib/net45/_._",
  5836. "lib/net463/System.Linq.Expressions.dll",
  5837. "lib/netcore50/System.Linq.Expressions.dll",
  5838. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5839. "lib/portable-net45+win8+wp8+wpa81/_._",
  5840. "lib/win8/_._",
  5841. "lib/wp80/_._",
  5842. "lib/wpa81/_._",
  5843. "lib/xamarinios10/_._",
  5844. "lib/xamarinmac20/_._",
  5845. "lib/xamarintvos10/_._",
  5846. "lib/xamarinwatchos10/_._",
  5847. "ref/MonoAndroid10/_._",
  5848. "ref/MonoTouch10/_._",
  5849. "ref/net45/_._",
  5850. "ref/net463/System.Linq.Expressions.dll",
  5851. "ref/netcore50/System.Linq.Expressions.dll",
  5852. "ref/netcore50/System.Linq.Expressions.xml",
  5853. "ref/netcore50/de/System.Linq.Expressions.xml",
  5854. "ref/netcore50/es/System.Linq.Expressions.xml",
  5855. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5856. "ref/netcore50/it/System.Linq.Expressions.xml",
  5857. "ref/netcore50/ja/System.Linq.Expressions.xml",
  5858. "ref/netcore50/ko/System.Linq.Expressions.xml",
  5859. "ref/netcore50/ru/System.Linq.Expressions.xml",
  5860. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  5861. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  5862. "ref/netstandard1.0/System.Linq.Expressions.dll",
  5863. "ref/netstandard1.0/System.Linq.Expressions.xml",
  5864. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  5865. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  5866. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  5867. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  5868. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  5869. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  5870. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  5871. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  5872. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  5873. "ref/netstandard1.3/System.Linq.Expressions.dll",
  5874. "ref/netstandard1.3/System.Linq.Expressions.xml",
  5875. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  5876. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  5877. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  5878. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  5879. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  5880. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  5881. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  5882. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  5883. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  5884. "ref/netstandard1.6/System.Linq.Expressions.dll",
  5885. "ref/netstandard1.6/System.Linq.Expressions.xml",
  5886. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  5887. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  5888. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  5889. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  5890. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  5891. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  5892. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  5893. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  5894. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  5895. "ref/portable-net45+win8+wp8+wpa81/_._",
  5896. "ref/win8/_._",
  5897. "ref/wp80/_._",
  5898. "ref/wpa81/_._",
  5899. "ref/xamarinios10/_._",
  5900. "ref/xamarinmac20/_._",
  5901. "ref/xamarintvos10/_._",
  5902. "ref/xamarinwatchos10/_._",
  5903. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  5904. "system.linq.expressions.4.3.0.nupkg.sha512",
  5905. "system.linq.expressions.nuspec"
  5906. ]
  5907. },
  5908. "System.Memory/4.5.3": {
  5909. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  5910. "type": "package",
  5911. "path": "system.memory/4.5.3",
  5912. "files": [
  5913. ".nupkg.metadata",
  5914. ".signature.p7s",
  5915. "LICENSE.TXT",
  5916. "THIRD-PARTY-NOTICES.TXT",
  5917. "lib/netcoreapp2.1/_._",
  5918. "lib/netstandard1.1/System.Memory.dll",
  5919. "lib/netstandard1.1/System.Memory.xml",
  5920. "lib/netstandard2.0/System.Memory.dll",
  5921. "lib/netstandard2.0/System.Memory.xml",
  5922. "ref/netcoreapp2.1/_._",
  5923. "system.memory.4.5.3.nupkg.sha512",
  5924. "system.memory.nuspec",
  5925. "useSharedDesignerContext.txt",
  5926. "version.txt"
  5927. ]
  5928. },
  5929. "System.Net.Http/4.3.0": {
  5930. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  5931. "type": "package",
  5932. "path": "system.net.http/4.3.0",
  5933. "files": [
  5934. ".nupkg.metadata",
  5935. ".signature.p7s",
  5936. "ThirdPartyNotices.txt",
  5937. "dotnet_library_license.txt",
  5938. "lib/Xamarinmac20/_._",
  5939. "lib/monoandroid10/_._",
  5940. "lib/monotouch10/_._",
  5941. "lib/net45/_._",
  5942. "lib/net46/System.Net.Http.dll",
  5943. "lib/portable-net45+win8+wpa81/_._",
  5944. "lib/win8/_._",
  5945. "lib/wpa81/_._",
  5946. "lib/xamarinios10/_._",
  5947. "lib/xamarintvos10/_._",
  5948. "lib/xamarinwatchos10/_._",
  5949. "ref/Xamarinmac20/_._",
  5950. "ref/monoandroid10/_._",
  5951. "ref/monotouch10/_._",
  5952. "ref/net45/_._",
  5953. "ref/net46/System.Net.Http.dll",
  5954. "ref/net46/System.Net.Http.xml",
  5955. "ref/net46/de/System.Net.Http.xml",
  5956. "ref/net46/es/System.Net.Http.xml",
  5957. "ref/net46/fr/System.Net.Http.xml",
  5958. "ref/net46/it/System.Net.Http.xml",
  5959. "ref/net46/ja/System.Net.Http.xml",
  5960. "ref/net46/ko/System.Net.Http.xml",
  5961. "ref/net46/ru/System.Net.Http.xml",
  5962. "ref/net46/zh-hans/System.Net.Http.xml",
  5963. "ref/net46/zh-hant/System.Net.Http.xml",
  5964. "ref/netcore50/System.Net.Http.dll",
  5965. "ref/netcore50/System.Net.Http.xml",
  5966. "ref/netcore50/de/System.Net.Http.xml",
  5967. "ref/netcore50/es/System.Net.Http.xml",
  5968. "ref/netcore50/fr/System.Net.Http.xml",
  5969. "ref/netcore50/it/System.Net.Http.xml",
  5970. "ref/netcore50/ja/System.Net.Http.xml",
  5971. "ref/netcore50/ko/System.Net.Http.xml",
  5972. "ref/netcore50/ru/System.Net.Http.xml",
  5973. "ref/netcore50/zh-hans/System.Net.Http.xml",
  5974. "ref/netcore50/zh-hant/System.Net.Http.xml",
  5975. "ref/netstandard1.1/System.Net.Http.dll",
  5976. "ref/netstandard1.1/System.Net.Http.xml",
  5977. "ref/netstandard1.1/de/System.Net.Http.xml",
  5978. "ref/netstandard1.1/es/System.Net.Http.xml",
  5979. "ref/netstandard1.1/fr/System.Net.Http.xml",
  5980. "ref/netstandard1.1/it/System.Net.Http.xml",
  5981. "ref/netstandard1.1/ja/System.Net.Http.xml",
  5982. "ref/netstandard1.1/ko/System.Net.Http.xml",
  5983. "ref/netstandard1.1/ru/System.Net.Http.xml",
  5984. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  5985. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  5986. "ref/netstandard1.3/System.Net.Http.dll",
  5987. "ref/netstandard1.3/System.Net.Http.xml",
  5988. "ref/netstandard1.3/de/System.Net.Http.xml",
  5989. "ref/netstandard1.3/es/System.Net.Http.xml",
  5990. "ref/netstandard1.3/fr/System.Net.Http.xml",
  5991. "ref/netstandard1.3/it/System.Net.Http.xml",
  5992. "ref/netstandard1.3/ja/System.Net.Http.xml",
  5993. "ref/netstandard1.3/ko/System.Net.Http.xml",
  5994. "ref/netstandard1.3/ru/System.Net.Http.xml",
  5995. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  5996. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  5997. "ref/portable-net45+win8+wpa81/_._",
  5998. "ref/win8/_._",
  5999. "ref/wpa81/_._",
  6000. "ref/xamarinios10/_._",
  6001. "ref/xamarintvos10/_._",
  6002. "ref/xamarinwatchos10/_._",
  6003. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6004. "runtimes/win/lib/net46/System.Net.Http.dll",
  6005. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6006. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6007. "system.net.http.4.3.0.nupkg.sha512",
  6008. "system.net.http.nuspec"
  6009. ]
  6010. },
  6011. "System.Net.NameResolution/4.3.0": {
  6012. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6013. "type": "package",
  6014. "path": "system.net.nameresolution/4.3.0",
  6015. "files": [
  6016. ".nupkg.metadata",
  6017. ".signature.p7s",
  6018. "ThirdPartyNotices.txt",
  6019. "dotnet_library_license.txt",
  6020. "lib/MonoAndroid10/_._",
  6021. "lib/MonoTouch10/_._",
  6022. "lib/net46/System.Net.NameResolution.dll",
  6023. "lib/xamarinios10/_._",
  6024. "lib/xamarinmac20/_._",
  6025. "lib/xamarintvos10/_._",
  6026. "lib/xamarinwatchos10/_._",
  6027. "ref/MonoAndroid10/_._",
  6028. "ref/MonoTouch10/_._",
  6029. "ref/net46/System.Net.NameResolution.dll",
  6030. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6031. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6032. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6033. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6034. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6035. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6036. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6037. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6038. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6039. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6040. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6041. "ref/xamarinios10/_._",
  6042. "ref/xamarinmac20/_._",
  6043. "ref/xamarintvos10/_._",
  6044. "ref/xamarinwatchos10/_._",
  6045. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6046. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6047. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6048. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6049. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6050. "system.net.nameresolution.nuspec"
  6051. ]
  6052. },
  6053. "System.Net.Primitives/4.3.0": {
  6054. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6055. "type": "package",
  6056. "path": "system.net.primitives/4.3.0",
  6057. "files": [
  6058. ".nupkg.metadata",
  6059. ".signature.p7s",
  6060. "ThirdPartyNotices.txt",
  6061. "dotnet_library_license.txt",
  6062. "lib/MonoAndroid10/_._",
  6063. "lib/MonoTouch10/_._",
  6064. "lib/net45/_._",
  6065. "lib/portable-net45+win8+wp8+wpa81/_._",
  6066. "lib/win8/_._",
  6067. "lib/wp80/_._",
  6068. "lib/wpa81/_._",
  6069. "lib/xamarinios10/_._",
  6070. "lib/xamarinmac20/_._",
  6071. "lib/xamarintvos10/_._",
  6072. "lib/xamarinwatchos10/_._",
  6073. "ref/MonoAndroid10/_._",
  6074. "ref/MonoTouch10/_._",
  6075. "ref/net45/_._",
  6076. "ref/netcore50/System.Net.Primitives.dll",
  6077. "ref/netcore50/System.Net.Primitives.xml",
  6078. "ref/netcore50/de/System.Net.Primitives.xml",
  6079. "ref/netcore50/es/System.Net.Primitives.xml",
  6080. "ref/netcore50/fr/System.Net.Primitives.xml",
  6081. "ref/netcore50/it/System.Net.Primitives.xml",
  6082. "ref/netcore50/ja/System.Net.Primitives.xml",
  6083. "ref/netcore50/ko/System.Net.Primitives.xml",
  6084. "ref/netcore50/ru/System.Net.Primitives.xml",
  6085. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6086. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6087. "ref/netstandard1.0/System.Net.Primitives.dll",
  6088. "ref/netstandard1.0/System.Net.Primitives.xml",
  6089. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6090. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6091. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6092. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6093. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6094. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6095. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6096. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6097. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6098. "ref/netstandard1.1/System.Net.Primitives.dll",
  6099. "ref/netstandard1.1/System.Net.Primitives.xml",
  6100. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6101. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6102. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6103. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6104. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6105. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6106. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6107. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6108. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6109. "ref/netstandard1.3/System.Net.Primitives.dll",
  6110. "ref/netstandard1.3/System.Net.Primitives.xml",
  6111. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6112. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6113. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6114. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6115. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6116. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6117. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6118. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6119. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6120. "ref/portable-net45+win8+wp8+wpa81/_._",
  6121. "ref/win8/_._",
  6122. "ref/wp80/_._",
  6123. "ref/wpa81/_._",
  6124. "ref/xamarinios10/_._",
  6125. "ref/xamarinmac20/_._",
  6126. "ref/xamarintvos10/_._",
  6127. "ref/xamarinwatchos10/_._",
  6128. "system.net.primitives.4.3.0.nupkg.sha512",
  6129. "system.net.primitives.nuspec"
  6130. ]
  6131. },
  6132. "System.Net.Sockets/4.3.0": {
  6133. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6134. "type": "package",
  6135. "path": "system.net.sockets/4.3.0",
  6136. "files": [
  6137. ".nupkg.metadata",
  6138. ".signature.p7s",
  6139. "ThirdPartyNotices.txt",
  6140. "dotnet_library_license.txt",
  6141. "lib/MonoAndroid10/_._",
  6142. "lib/MonoTouch10/_._",
  6143. "lib/net46/System.Net.Sockets.dll",
  6144. "lib/xamarinios10/_._",
  6145. "lib/xamarinmac20/_._",
  6146. "lib/xamarintvos10/_._",
  6147. "lib/xamarinwatchos10/_._",
  6148. "ref/MonoAndroid10/_._",
  6149. "ref/MonoTouch10/_._",
  6150. "ref/net46/System.Net.Sockets.dll",
  6151. "ref/netstandard1.3/System.Net.Sockets.dll",
  6152. "ref/netstandard1.3/System.Net.Sockets.xml",
  6153. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6154. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6155. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6156. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6157. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6158. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6159. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6160. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6161. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6162. "ref/xamarinios10/_._",
  6163. "ref/xamarinmac20/_._",
  6164. "ref/xamarintvos10/_._",
  6165. "ref/xamarinwatchos10/_._",
  6166. "system.net.sockets.4.3.0.nupkg.sha512",
  6167. "system.net.sockets.nuspec"
  6168. ]
  6169. },
  6170. "System.ObjectModel/4.3.0": {
  6171. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6172. "type": "package",
  6173. "path": "system.objectmodel/4.3.0",
  6174. "files": [
  6175. ".nupkg.metadata",
  6176. ".signature.p7s",
  6177. "ThirdPartyNotices.txt",
  6178. "dotnet_library_license.txt",
  6179. "lib/MonoAndroid10/_._",
  6180. "lib/MonoTouch10/_._",
  6181. "lib/net45/_._",
  6182. "lib/netcore50/System.ObjectModel.dll",
  6183. "lib/netstandard1.3/System.ObjectModel.dll",
  6184. "lib/portable-net45+win8+wp8+wpa81/_._",
  6185. "lib/win8/_._",
  6186. "lib/wp80/_._",
  6187. "lib/wpa81/_._",
  6188. "lib/xamarinios10/_._",
  6189. "lib/xamarinmac20/_._",
  6190. "lib/xamarintvos10/_._",
  6191. "lib/xamarinwatchos10/_._",
  6192. "ref/MonoAndroid10/_._",
  6193. "ref/MonoTouch10/_._",
  6194. "ref/net45/_._",
  6195. "ref/netcore50/System.ObjectModel.dll",
  6196. "ref/netcore50/System.ObjectModel.xml",
  6197. "ref/netcore50/de/System.ObjectModel.xml",
  6198. "ref/netcore50/es/System.ObjectModel.xml",
  6199. "ref/netcore50/fr/System.ObjectModel.xml",
  6200. "ref/netcore50/it/System.ObjectModel.xml",
  6201. "ref/netcore50/ja/System.ObjectModel.xml",
  6202. "ref/netcore50/ko/System.ObjectModel.xml",
  6203. "ref/netcore50/ru/System.ObjectModel.xml",
  6204. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6205. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6206. "ref/netstandard1.0/System.ObjectModel.dll",
  6207. "ref/netstandard1.0/System.ObjectModel.xml",
  6208. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6209. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6210. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6211. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6212. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6213. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6214. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6215. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6216. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6217. "ref/netstandard1.3/System.ObjectModel.dll",
  6218. "ref/netstandard1.3/System.ObjectModel.xml",
  6219. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6220. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6221. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6222. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6223. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6224. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6225. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6226. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6227. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6228. "ref/portable-net45+win8+wp8+wpa81/_._",
  6229. "ref/win8/_._",
  6230. "ref/wp80/_._",
  6231. "ref/wpa81/_._",
  6232. "ref/xamarinios10/_._",
  6233. "ref/xamarinmac20/_._",
  6234. "ref/xamarintvos10/_._",
  6235. "ref/xamarinwatchos10/_._",
  6236. "system.objectmodel.4.3.0.nupkg.sha512",
  6237. "system.objectmodel.nuspec"
  6238. ]
  6239. },
  6240. "System.Private.DataContractSerialization/4.3.0": {
  6241. "sha512": "yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
  6242. "type": "package",
  6243. "path": "system.private.datacontractserialization/4.3.0",
  6244. "files": [
  6245. ".nupkg.metadata",
  6246. ".signature.p7s",
  6247. "ThirdPartyNotices.txt",
  6248. "dotnet_library_license.txt",
  6249. "lib/netstandard1.3/System.Private.DataContractSerialization.dll",
  6250. "ref/netstandard/_._",
  6251. "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll",
  6252. "system.private.datacontractserialization.4.3.0.nupkg.sha512",
  6253. "system.private.datacontractserialization.nuspec"
  6254. ]
  6255. },
  6256. "System.Reflection/4.3.0": {
  6257. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6258. "type": "package",
  6259. "path": "system.reflection/4.3.0",
  6260. "files": [
  6261. ".nupkg.metadata",
  6262. ".signature.p7s",
  6263. "ThirdPartyNotices.txt",
  6264. "dotnet_library_license.txt",
  6265. "lib/MonoAndroid10/_._",
  6266. "lib/MonoTouch10/_._",
  6267. "lib/net45/_._",
  6268. "lib/net462/System.Reflection.dll",
  6269. "lib/portable-net45+win8+wp8+wpa81/_._",
  6270. "lib/win8/_._",
  6271. "lib/wp80/_._",
  6272. "lib/wpa81/_._",
  6273. "lib/xamarinios10/_._",
  6274. "lib/xamarinmac20/_._",
  6275. "lib/xamarintvos10/_._",
  6276. "lib/xamarinwatchos10/_._",
  6277. "ref/MonoAndroid10/_._",
  6278. "ref/MonoTouch10/_._",
  6279. "ref/net45/_._",
  6280. "ref/net462/System.Reflection.dll",
  6281. "ref/netcore50/System.Reflection.dll",
  6282. "ref/netcore50/System.Reflection.xml",
  6283. "ref/netcore50/de/System.Reflection.xml",
  6284. "ref/netcore50/es/System.Reflection.xml",
  6285. "ref/netcore50/fr/System.Reflection.xml",
  6286. "ref/netcore50/it/System.Reflection.xml",
  6287. "ref/netcore50/ja/System.Reflection.xml",
  6288. "ref/netcore50/ko/System.Reflection.xml",
  6289. "ref/netcore50/ru/System.Reflection.xml",
  6290. "ref/netcore50/zh-hans/System.Reflection.xml",
  6291. "ref/netcore50/zh-hant/System.Reflection.xml",
  6292. "ref/netstandard1.0/System.Reflection.dll",
  6293. "ref/netstandard1.0/System.Reflection.xml",
  6294. "ref/netstandard1.0/de/System.Reflection.xml",
  6295. "ref/netstandard1.0/es/System.Reflection.xml",
  6296. "ref/netstandard1.0/fr/System.Reflection.xml",
  6297. "ref/netstandard1.0/it/System.Reflection.xml",
  6298. "ref/netstandard1.0/ja/System.Reflection.xml",
  6299. "ref/netstandard1.0/ko/System.Reflection.xml",
  6300. "ref/netstandard1.0/ru/System.Reflection.xml",
  6301. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6302. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6303. "ref/netstandard1.3/System.Reflection.dll",
  6304. "ref/netstandard1.3/System.Reflection.xml",
  6305. "ref/netstandard1.3/de/System.Reflection.xml",
  6306. "ref/netstandard1.3/es/System.Reflection.xml",
  6307. "ref/netstandard1.3/fr/System.Reflection.xml",
  6308. "ref/netstandard1.3/it/System.Reflection.xml",
  6309. "ref/netstandard1.3/ja/System.Reflection.xml",
  6310. "ref/netstandard1.3/ko/System.Reflection.xml",
  6311. "ref/netstandard1.3/ru/System.Reflection.xml",
  6312. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6313. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6314. "ref/netstandard1.5/System.Reflection.dll",
  6315. "ref/netstandard1.5/System.Reflection.xml",
  6316. "ref/netstandard1.5/de/System.Reflection.xml",
  6317. "ref/netstandard1.5/es/System.Reflection.xml",
  6318. "ref/netstandard1.5/fr/System.Reflection.xml",
  6319. "ref/netstandard1.5/it/System.Reflection.xml",
  6320. "ref/netstandard1.5/ja/System.Reflection.xml",
  6321. "ref/netstandard1.5/ko/System.Reflection.xml",
  6322. "ref/netstandard1.5/ru/System.Reflection.xml",
  6323. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6324. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6325. "ref/portable-net45+win8+wp8+wpa81/_._",
  6326. "ref/win8/_._",
  6327. "ref/wp80/_._",
  6328. "ref/wpa81/_._",
  6329. "ref/xamarinios10/_._",
  6330. "ref/xamarinmac20/_._",
  6331. "ref/xamarintvos10/_._",
  6332. "ref/xamarinwatchos10/_._",
  6333. "system.reflection.4.3.0.nupkg.sha512",
  6334. "system.reflection.nuspec"
  6335. ]
  6336. },
  6337. "System.Reflection.Emit/4.3.0": {
  6338. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  6339. "type": "package",
  6340. "path": "system.reflection.emit/4.3.0",
  6341. "files": [
  6342. ".nupkg.metadata",
  6343. ".signature.p7s",
  6344. "ThirdPartyNotices.txt",
  6345. "dotnet_library_license.txt",
  6346. "lib/MonoAndroid10/_._",
  6347. "lib/monotouch10/_._",
  6348. "lib/net45/_._",
  6349. "lib/netcore50/System.Reflection.Emit.dll",
  6350. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6351. "lib/xamarinios10/_._",
  6352. "lib/xamarinmac20/_._",
  6353. "lib/xamarintvos10/_._",
  6354. "lib/xamarinwatchos10/_._",
  6355. "ref/MonoAndroid10/_._",
  6356. "ref/net45/_._",
  6357. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6358. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6359. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6360. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6361. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6362. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6363. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6364. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6365. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6366. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6367. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6368. "ref/xamarinmac20/_._",
  6369. "system.reflection.emit.4.3.0.nupkg.sha512",
  6370. "system.reflection.emit.nuspec"
  6371. ]
  6372. },
  6373. "System.Reflection.Emit.ILGeneration/4.3.0": {
  6374. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  6375. "type": "package",
  6376. "path": "system.reflection.emit.ilgeneration/4.3.0",
  6377. "files": [
  6378. ".nupkg.metadata",
  6379. ".signature.p7s",
  6380. "ThirdPartyNotices.txt",
  6381. "dotnet_library_license.txt",
  6382. "lib/MonoAndroid10/_._",
  6383. "lib/MonoTouch10/_._",
  6384. "lib/net45/_._",
  6385. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6386. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6387. "lib/portable-net45+wp8/_._",
  6388. "lib/wp80/_._",
  6389. "lib/xamarinios10/_._",
  6390. "lib/xamarinmac20/_._",
  6391. "lib/xamarintvos10/_._",
  6392. "lib/xamarinwatchos10/_._",
  6393. "ref/MonoAndroid10/_._",
  6394. "ref/MonoTouch10/_._",
  6395. "ref/net45/_._",
  6396. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  6397. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  6398. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  6399. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  6400. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  6401. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  6402. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  6403. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  6404. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  6405. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  6406. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  6407. "ref/portable-net45+wp8/_._",
  6408. "ref/wp80/_._",
  6409. "ref/xamarinios10/_._",
  6410. "ref/xamarinmac20/_._",
  6411. "ref/xamarintvos10/_._",
  6412. "ref/xamarinwatchos10/_._",
  6413. "runtimes/aot/lib/netcore50/_._",
  6414. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  6415. "system.reflection.emit.ilgeneration.nuspec"
  6416. ]
  6417. },
  6418. "System.Reflection.Emit.Lightweight/4.3.0": {
  6419. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  6420. "type": "package",
  6421. "path": "system.reflection.emit.lightweight/4.3.0",
  6422. "files": [
  6423. ".nupkg.metadata",
  6424. ".signature.p7s",
  6425. "ThirdPartyNotices.txt",
  6426. "dotnet_library_license.txt",
  6427. "lib/MonoAndroid10/_._",
  6428. "lib/MonoTouch10/_._",
  6429. "lib/net45/_._",
  6430. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  6431. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  6432. "lib/portable-net45+wp8/_._",
  6433. "lib/wp80/_._",
  6434. "lib/xamarinios10/_._",
  6435. "lib/xamarinmac20/_._",
  6436. "lib/xamarintvos10/_._",
  6437. "lib/xamarinwatchos10/_._",
  6438. "ref/MonoAndroid10/_._",
  6439. "ref/MonoTouch10/_._",
  6440. "ref/net45/_._",
  6441. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6442. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6443. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6444. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6445. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6446. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6447. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6448. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6449. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6450. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6451. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6452. "ref/portable-net45+wp8/_._",
  6453. "ref/wp80/_._",
  6454. "ref/xamarinios10/_._",
  6455. "ref/xamarinmac20/_._",
  6456. "ref/xamarintvos10/_._",
  6457. "ref/xamarinwatchos10/_._",
  6458. "runtimes/aot/lib/netcore50/_._",
  6459. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  6460. "system.reflection.emit.lightweight.nuspec"
  6461. ]
  6462. },
  6463. "System.Reflection.Extensions/4.3.0": {
  6464. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  6465. "type": "package",
  6466. "path": "system.reflection.extensions/4.3.0",
  6467. "files": [
  6468. ".nupkg.metadata",
  6469. ".signature.p7s",
  6470. "ThirdPartyNotices.txt",
  6471. "dotnet_library_license.txt",
  6472. "lib/MonoAndroid10/_._",
  6473. "lib/MonoTouch10/_._",
  6474. "lib/net45/_._",
  6475. "lib/portable-net45+win8+wp8+wpa81/_._",
  6476. "lib/win8/_._",
  6477. "lib/wp80/_._",
  6478. "lib/wpa81/_._",
  6479. "lib/xamarinios10/_._",
  6480. "lib/xamarinmac20/_._",
  6481. "lib/xamarintvos10/_._",
  6482. "lib/xamarinwatchos10/_._",
  6483. "ref/MonoAndroid10/_._",
  6484. "ref/MonoTouch10/_._",
  6485. "ref/net45/_._",
  6486. "ref/netcore50/System.Reflection.Extensions.dll",
  6487. "ref/netcore50/System.Reflection.Extensions.xml",
  6488. "ref/netcore50/de/System.Reflection.Extensions.xml",
  6489. "ref/netcore50/es/System.Reflection.Extensions.xml",
  6490. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  6491. "ref/netcore50/it/System.Reflection.Extensions.xml",
  6492. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6493. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6494. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6495. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6496. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6497. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6498. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6499. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6500. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6501. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6502. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6503. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6504. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6505. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6506. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6507. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6508. "ref/portable-net45+win8+wp8+wpa81/_._",
  6509. "ref/win8/_._",
  6510. "ref/wp80/_._",
  6511. "ref/wpa81/_._",
  6512. "ref/xamarinios10/_._",
  6513. "ref/xamarinmac20/_._",
  6514. "ref/xamarintvos10/_._",
  6515. "ref/xamarinwatchos10/_._",
  6516. "system.reflection.extensions.4.3.0.nupkg.sha512",
  6517. "system.reflection.extensions.nuspec"
  6518. ]
  6519. },
  6520. "System.Reflection.Metadata/1.6.0": {
  6521. "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  6522. "type": "package",
  6523. "path": "system.reflection.metadata/1.6.0",
  6524. "files": [
  6525. ".nupkg.metadata",
  6526. ".signature.p7s",
  6527. "LICENSE.TXT",
  6528. "THIRD-PARTY-NOTICES.TXT",
  6529. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  6530. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  6531. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  6532. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  6533. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  6534. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  6535. "system.reflection.metadata.1.6.0.nupkg.sha512",
  6536. "system.reflection.metadata.nuspec",
  6537. "useSharedDesignerContext.txt",
  6538. "version.txt"
  6539. ]
  6540. },
  6541. "System.Reflection.Primitives/4.3.0": {
  6542. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6543. "type": "package",
  6544. "path": "system.reflection.primitives/4.3.0",
  6545. "files": [
  6546. ".nupkg.metadata",
  6547. ".signature.p7s",
  6548. "ThirdPartyNotices.txt",
  6549. "dotnet_library_license.txt",
  6550. "lib/MonoAndroid10/_._",
  6551. "lib/MonoTouch10/_._",
  6552. "lib/net45/_._",
  6553. "lib/portable-net45+win8+wp8+wpa81/_._",
  6554. "lib/win8/_._",
  6555. "lib/wp80/_._",
  6556. "lib/wpa81/_._",
  6557. "lib/xamarinios10/_._",
  6558. "lib/xamarinmac20/_._",
  6559. "lib/xamarintvos10/_._",
  6560. "lib/xamarinwatchos10/_._",
  6561. "ref/MonoAndroid10/_._",
  6562. "ref/MonoTouch10/_._",
  6563. "ref/net45/_._",
  6564. "ref/netcore50/System.Reflection.Primitives.dll",
  6565. "ref/netcore50/System.Reflection.Primitives.xml",
  6566. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6567. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6568. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6569. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6570. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6571. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6572. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6573. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6574. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6575. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6576. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6577. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6578. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6579. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6580. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6581. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6582. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6583. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6584. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6585. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6586. "ref/portable-net45+win8+wp8+wpa81/_._",
  6587. "ref/win8/_._",
  6588. "ref/wp80/_._",
  6589. "ref/wpa81/_._",
  6590. "ref/xamarinios10/_._",
  6591. "ref/xamarinmac20/_._",
  6592. "ref/xamarintvos10/_._",
  6593. "ref/xamarinwatchos10/_._",
  6594. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6595. "system.reflection.primitives.nuspec"
  6596. ]
  6597. },
  6598. "System.Reflection.TypeExtensions/4.3.0": {
  6599. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  6600. "type": "package",
  6601. "path": "system.reflection.typeextensions/4.3.0",
  6602. "files": [
  6603. ".nupkg.metadata",
  6604. ".signature.p7s",
  6605. "ThirdPartyNotices.txt",
  6606. "dotnet_library_license.txt",
  6607. "lib/MonoAndroid10/_._",
  6608. "lib/MonoTouch10/_._",
  6609. "lib/net46/System.Reflection.TypeExtensions.dll",
  6610. "lib/net462/System.Reflection.TypeExtensions.dll",
  6611. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6612. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6613. "lib/xamarinios10/_._",
  6614. "lib/xamarinmac20/_._",
  6615. "lib/xamarintvos10/_._",
  6616. "lib/xamarinwatchos10/_._",
  6617. "ref/MonoAndroid10/_._",
  6618. "ref/MonoTouch10/_._",
  6619. "ref/net46/System.Reflection.TypeExtensions.dll",
  6620. "ref/net462/System.Reflection.TypeExtensions.dll",
  6621. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6622. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6623. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6624. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6625. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6626. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6627. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6628. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6629. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6630. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6631. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6632. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6633. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6634. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6635. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6636. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6637. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6638. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6639. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6640. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6641. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6642. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6643. "ref/xamarinios10/_._",
  6644. "ref/xamarinmac20/_._",
  6645. "ref/xamarintvos10/_._",
  6646. "ref/xamarinwatchos10/_._",
  6647. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6648. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  6649. "system.reflection.typeextensions.nuspec"
  6650. ]
  6651. },
  6652. "System.Resources.ResourceManager/4.3.0": {
  6653. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  6654. "type": "package",
  6655. "path": "system.resources.resourcemanager/4.3.0",
  6656. "files": [
  6657. ".nupkg.metadata",
  6658. ".signature.p7s",
  6659. "ThirdPartyNotices.txt",
  6660. "dotnet_library_license.txt",
  6661. "lib/MonoAndroid10/_._",
  6662. "lib/MonoTouch10/_._",
  6663. "lib/net45/_._",
  6664. "lib/portable-net45+win8+wp8+wpa81/_._",
  6665. "lib/win8/_._",
  6666. "lib/wp80/_._",
  6667. "lib/wpa81/_._",
  6668. "lib/xamarinios10/_._",
  6669. "lib/xamarinmac20/_._",
  6670. "lib/xamarintvos10/_._",
  6671. "lib/xamarinwatchos10/_._",
  6672. "ref/MonoAndroid10/_._",
  6673. "ref/MonoTouch10/_._",
  6674. "ref/net45/_._",
  6675. "ref/netcore50/System.Resources.ResourceManager.dll",
  6676. "ref/netcore50/System.Resources.ResourceManager.xml",
  6677. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6678. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6679. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6680. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6681. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6682. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6683. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6684. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6685. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6686. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6687. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6688. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6689. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6690. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6691. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6692. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6693. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6694. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6695. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6696. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6697. "ref/portable-net45+win8+wp8+wpa81/_._",
  6698. "ref/win8/_._",
  6699. "ref/wp80/_._",
  6700. "ref/wpa81/_._",
  6701. "ref/xamarinios10/_._",
  6702. "ref/xamarinmac20/_._",
  6703. "ref/xamarintvos10/_._",
  6704. "ref/xamarinwatchos10/_._",
  6705. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  6706. "system.resources.resourcemanager.nuspec"
  6707. ]
  6708. },
  6709. "System.Runtime/4.3.0": {
  6710. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6711. "type": "package",
  6712. "path": "system.runtime/4.3.0",
  6713. "files": [
  6714. ".nupkg.metadata",
  6715. ".signature.p7s",
  6716. "ThirdPartyNotices.txt",
  6717. "dotnet_library_license.txt",
  6718. "lib/MonoAndroid10/_._",
  6719. "lib/MonoTouch10/_._",
  6720. "lib/net45/_._",
  6721. "lib/net462/System.Runtime.dll",
  6722. "lib/portable-net45+win8+wp80+wpa81/_._",
  6723. "lib/win8/_._",
  6724. "lib/wp80/_._",
  6725. "lib/wpa81/_._",
  6726. "lib/xamarinios10/_._",
  6727. "lib/xamarinmac20/_._",
  6728. "lib/xamarintvos10/_._",
  6729. "lib/xamarinwatchos10/_._",
  6730. "ref/MonoAndroid10/_._",
  6731. "ref/MonoTouch10/_._",
  6732. "ref/net45/_._",
  6733. "ref/net462/System.Runtime.dll",
  6734. "ref/netcore50/System.Runtime.dll",
  6735. "ref/netcore50/System.Runtime.xml",
  6736. "ref/netcore50/de/System.Runtime.xml",
  6737. "ref/netcore50/es/System.Runtime.xml",
  6738. "ref/netcore50/fr/System.Runtime.xml",
  6739. "ref/netcore50/it/System.Runtime.xml",
  6740. "ref/netcore50/ja/System.Runtime.xml",
  6741. "ref/netcore50/ko/System.Runtime.xml",
  6742. "ref/netcore50/ru/System.Runtime.xml",
  6743. "ref/netcore50/zh-hans/System.Runtime.xml",
  6744. "ref/netcore50/zh-hant/System.Runtime.xml",
  6745. "ref/netstandard1.0/System.Runtime.dll",
  6746. "ref/netstandard1.0/System.Runtime.xml",
  6747. "ref/netstandard1.0/de/System.Runtime.xml",
  6748. "ref/netstandard1.0/es/System.Runtime.xml",
  6749. "ref/netstandard1.0/fr/System.Runtime.xml",
  6750. "ref/netstandard1.0/it/System.Runtime.xml",
  6751. "ref/netstandard1.0/ja/System.Runtime.xml",
  6752. "ref/netstandard1.0/ko/System.Runtime.xml",
  6753. "ref/netstandard1.0/ru/System.Runtime.xml",
  6754. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6755. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6756. "ref/netstandard1.2/System.Runtime.dll",
  6757. "ref/netstandard1.2/System.Runtime.xml",
  6758. "ref/netstandard1.2/de/System.Runtime.xml",
  6759. "ref/netstandard1.2/es/System.Runtime.xml",
  6760. "ref/netstandard1.2/fr/System.Runtime.xml",
  6761. "ref/netstandard1.2/it/System.Runtime.xml",
  6762. "ref/netstandard1.2/ja/System.Runtime.xml",
  6763. "ref/netstandard1.2/ko/System.Runtime.xml",
  6764. "ref/netstandard1.2/ru/System.Runtime.xml",
  6765. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6766. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6767. "ref/netstandard1.3/System.Runtime.dll",
  6768. "ref/netstandard1.3/System.Runtime.xml",
  6769. "ref/netstandard1.3/de/System.Runtime.xml",
  6770. "ref/netstandard1.3/es/System.Runtime.xml",
  6771. "ref/netstandard1.3/fr/System.Runtime.xml",
  6772. "ref/netstandard1.3/it/System.Runtime.xml",
  6773. "ref/netstandard1.3/ja/System.Runtime.xml",
  6774. "ref/netstandard1.3/ko/System.Runtime.xml",
  6775. "ref/netstandard1.3/ru/System.Runtime.xml",
  6776. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6777. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6778. "ref/netstandard1.5/System.Runtime.dll",
  6779. "ref/netstandard1.5/System.Runtime.xml",
  6780. "ref/netstandard1.5/de/System.Runtime.xml",
  6781. "ref/netstandard1.5/es/System.Runtime.xml",
  6782. "ref/netstandard1.5/fr/System.Runtime.xml",
  6783. "ref/netstandard1.5/it/System.Runtime.xml",
  6784. "ref/netstandard1.5/ja/System.Runtime.xml",
  6785. "ref/netstandard1.5/ko/System.Runtime.xml",
  6786. "ref/netstandard1.5/ru/System.Runtime.xml",
  6787. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6788. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6789. "ref/portable-net45+win8+wp80+wpa81/_._",
  6790. "ref/win8/_._",
  6791. "ref/wp80/_._",
  6792. "ref/wpa81/_._",
  6793. "ref/xamarinios10/_._",
  6794. "ref/xamarinmac20/_._",
  6795. "ref/xamarintvos10/_._",
  6796. "ref/xamarinwatchos10/_._",
  6797. "system.runtime.4.3.0.nupkg.sha512",
  6798. "system.runtime.nuspec"
  6799. ]
  6800. },
  6801. "System.Runtime.Caching/4.5.0": {
  6802. "sha512": "95j9KShuaAENf2gLbQ/9YoJDHIWAnoaFYA71xo4QVQyLkOMginn34cD1+6RcYIrqJamLkMXgvgUnOzwzBk+U0w==",
  6803. "type": "package",
  6804. "path": "system.runtime.caching/4.5.0",
  6805. "files": [
  6806. ".nupkg.metadata",
  6807. ".signature.p7s",
  6808. "LICENSE.TXT",
  6809. "THIRD-PARTY-NOTICES.TXT",
  6810. "lib/MonoAndroid10/_._",
  6811. "lib/MonoTouch10/_._",
  6812. "lib/net45/_._",
  6813. "lib/netstandard2.0/System.Runtime.Caching.dll",
  6814. "lib/xamarinios10/_._",
  6815. "lib/xamarinmac20/_._",
  6816. "lib/xamarintvos10/_._",
  6817. "lib/xamarinwatchos10/_._",
  6818. "ref/MonoAndroid10/_._",
  6819. "ref/MonoTouch10/_._",
  6820. "ref/net45/_._",
  6821. "ref/netstandard2.0/System.Runtime.Caching.dll",
  6822. "ref/xamarinios10/_._",
  6823. "ref/xamarinmac20/_._",
  6824. "ref/xamarintvos10/_._",
  6825. "ref/xamarinwatchos10/_._",
  6826. "runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll",
  6827. "runtimes/win/lib/net45/_._",
  6828. "runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll",
  6829. "system.runtime.caching.4.5.0.nupkg.sha512",
  6830. "system.runtime.caching.nuspec",
  6831. "useSharedDesignerContext.txt",
  6832. "version.txt"
  6833. ]
  6834. },
  6835. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  6836. "sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==",
  6837. "type": "package",
  6838. "path": "system.runtime.compilerservices.unsafe/4.5.2",
  6839. "files": [
  6840. ".nupkg.metadata",
  6841. ".signature.p7s",
  6842. "LICENSE.TXT",
  6843. "THIRD-PARTY-NOTICES.TXT",
  6844. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6845. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6846. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6847. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6848. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6849. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6850. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6851. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6852. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6853. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6854. "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512",
  6855. "system.runtime.compilerservices.unsafe.nuspec",
  6856. "useSharedDesignerContext.txt",
  6857. "version.txt"
  6858. ]
  6859. },
  6860. "System.Runtime.Extensions/4.3.0": {
  6861. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6862. "type": "package",
  6863. "path": "system.runtime.extensions/4.3.0",
  6864. "files": [
  6865. ".nupkg.metadata",
  6866. ".signature.p7s",
  6867. "ThirdPartyNotices.txt",
  6868. "dotnet_library_license.txt",
  6869. "lib/MonoAndroid10/_._",
  6870. "lib/MonoTouch10/_._",
  6871. "lib/net45/_._",
  6872. "lib/net462/System.Runtime.Extensions.dll",
  6873. "lib/portable-net45+win8+wp8+wpa81/_._",
  6874. "lib/win8/_._",
  6875. "lib/wp80/_._",
  6876. "lib/wpa81/_._",
  6877. "lib/xamarinios10/_._",
  6878. "lib/xamarinmac20/_._",
  6879. "lib/xamarintvos10/_._",
  6880. "lib/xamarinwatchos10/_._",
  6881. "ref/MonoAndroid10/_._",
  6882. "ref/MonoTouch10/_._",
  6883. "ref/net45/_._",
  6884. "ref/net462/System.Runtime.Extensions.dll",
  6885. "ref/netcore50/System.Runtime.Extensions.dll",
  6886. "ref/netcore50/System.Runtime.Extensions.xml",
  6887. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6888. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6889. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6890. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6891. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6892. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6893. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6894. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6895. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6896. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6897. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6898. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6899. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6900. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6901. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6902. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6903. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6904. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6905. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6906. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6907. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6908. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6909. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6910. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6911. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6912. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6913. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6914. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6915. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6916. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6917. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6918. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6919. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6920. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6921. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6922. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6923. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6924. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6925. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6926. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6927. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6928. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6929. "ref/portable-net45+win8+wp8+wpa81/_._",
  6930. "ref/win8/_._",
  6931. "ref/wp80/_._",
  6932. "ref/wpa81/_._",
  6933. "ref/xamarinios10/_._",
  6934. "ref/xamarinmac20/_._",
  6935. "ref/xamarintvos10/_._",
  6936. "ref/xamarinwatchos10/_._",
  6937. "system.runtime.extensions.4.3.0.nupkg.sha512",
  6938. "system.runtime.extensions.nuspec"
  6939. ]
  6940. },
  6941. "System.Runtime.Handles/4.3.0": {
  6942. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  6943. "type": "package",
  6944. "path": "system.runtime.handles/4.3.0",
  6945. "files": [
  6946. ".nupkg.metadata",
  6947. ".signature.p7s",
  6948. "ThirdPartyNotices.txt",
  6949. "dotnet_library_license.txt",
  6950. "lib/MonoAndroid10/_._",
  6951. "lib/MonoTouch10/_._",
  6952. "lib/net46/_._",
  6953. "lib/xamarinios10/_._",
  6954. "lib/xamarinmac20/_._",
  6955. "lib/xamarintvos10/_._",
  6956. "lib/xamarinwatchos10/_._",
  6957. "ref/MonoAndroid10/_._",
  6958. "ref/MonoTouch10/_._",
  6959. "ref/net46/_._",
  6960. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6961. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6962. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6963. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6964. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6965. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6966. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6967. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6968. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6969. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6970. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6971. "ref/xamarinios10/_._",
  6972. "ref/xamarinmac20/_._",
  6973. "ref/xamarintvos10/_._",
  6974. "ref/xamarinwatchos10/_._",
  6975. "system.runtime.handles.4.3.0.nupkg.sha512",
  6976. "system.runtime.handles.nuspec"
  6977. ]
  6978. },
  6979. "System.Runtime.InteropServices/4.3.0": {
  6980. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  6981. "type": "package",
  6982. "path": "system.runtime.interopservices/4.3.0",
  6983. "files": [
  6984. ".nupkg.metadata",
  6985. ".signature.p7s",
  6986. "ThirdPartyNotices.txt",
  6987. "dotnet_library_license.txt",
  6988. "lib/MonoAndroid10/_._",
  6989. "lib/MonoTouch10/_._",
  6990. "lib/net45/_._",
  6991. "lib/net462/System.Runtime.InteropServices.dll",
  6992. "lib/net463/System.Runtime.InteropServices.dll",
  6993. "lib/portable-net45+win8+wpa81/_._",
  6994. "lib/win8/_._",
  6995. "lib/wpa81/_._",
  6996. "lib/xamarinios10/_._",
  6997. "lib/xamarinmac20/_._",
  6998. "lib/xamarintvos10/_._",
  6999. "lib/xamarinwatchos10/_._",
  7000. "ref/MonoAndroid10/_._",
  7001. "ref/MonoTouch10/_._",
  7002. "ref/net45/_._",
  7003. "ref/net462/System.Runtime.InteropServices.dll",
  7004. "ref/net463/System.Runtime.InteropServices.dll",
  7005. "ref/netcore50/System.Runtime.InteropServices.dll",
  7006. "ref/netcore50/System.Runtime.InteropServices.xml",
  7007. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7008. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7009. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7010. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7011. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7012. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7013. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7014. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7015. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7016. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7017. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7018. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7019. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7020. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7021. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7022. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7023. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7024. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7025. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7026. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7027. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7028. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7029. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7030. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7031. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7032. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7033. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7034. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7035. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7036. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7037. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7038. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7039. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7040. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7041. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7042. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7043. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7044. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7045. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7046. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7047. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7048. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7049. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7050. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7051. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7052. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7053. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7054. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7055. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7056. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7057. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7058. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7059. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7060. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7061. "ref/portable-net45+win8+wpa81/_._",
  7062. "ref/win8/_._",
  7063. "ref/wpa81/_._",
  7064. "ref/xamarinios10/_._",
  7065. "ref/xamarinmac20/_._",
  7066. "ref/xamarintvos10/_._",
  7067. "ref/xamarinwatchos10/_._",
  7068. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7069. "system.runtime.interopservices.nuspec"
  7070. ]
  7071. },
  7072. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7073. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7074. "type": "package",
  7075. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7076. "files": [
  7077. ".nupkg.metadata",
  7078. ".signature.p7s",
  7079. "ThirdPartyNotices.txt",
  7080. "dotnet_library_license.txt",
  7081. "lib/MonoAndroid10/_._",
  7082. "lib/MonoTouch10/_._",
  7083. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7084. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7085. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7086. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7087. "lib/xamarinios10/_._",
  7088. "lib/xamarinmac20/_._",
  7089. "lib/xamarintvos10/_._",
  7090. "lib/xamarinwatchos10/_._",
  7091. "ref/MonoAndroid10/_._",
  7092. "ref/MonoTouch10/_._",
  7093. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7094. "ref/xamarinios10/_._",
  7095. "ref/xamarinmac20/_._",
  7096. "ref/xamarintvos10/_._",
  7097. "ref/xamarinwatchos10/_._",
  7098. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7099. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7100. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7101. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7102. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7103. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7104. "system.runtime.interopservices.runtimeinformation.nuspec"
  7105. ]
  7106. },
  7107. "System.Runtime.Numerics/4.3.0": {
  7108. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7109. "type": "package",
  7110. "path": "system.runtime.numerics/4.3.0",
  7111. "files": [
  7112. ".nupkg.metadata",
  7113. ".signature.p7s",
  7114. "ThirdPartyNotices.txt",
  7115. "dotnet_library_license.txt",
  7116. "lib/MonoAndroid10/_._",
  7117. "lib/MonoTouch10/_._",
  7118. "lib/net45/_._",
  7119. "lib/netcore50/System.Runtime.Numerics.dll",
  7120. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7121. "lib/portable-net45+win8+wpa81/_._",
  7122. "lib/win8/_._",
  7123. "lib/wpa81/_._",
  7124. "lib/xamarinios10/_._",
  7125. "lib/xamarinmac20/_._",
  7126. "lib/xamarintvos10/_._",
  7127. "lib/xamarinwatchos10/_._",
  7128. "ref/MonoAndroid10/_._",
  7129. "ref/MonoTouch10/_._",
  7130. "ref/net45/_._",
  7131. "ref/netcore50/System.Runtime.Numerics.dll",
  7132. "ref/netcore50/System.Runtime.Numerics.xml",
  7133. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7134. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7135. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7136. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7137. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7138. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7139. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7140. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7141. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7142. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7143. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7144. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7145. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7146. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7147. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7148. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7149. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7150. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7151. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7152. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7153. "ref/portable-net45+win8+wpa81/_._",
  7154. "ref/win8/_._",
  7155. "ref/wpa81/_._",
  7156. "ref/xamarinios10/_._",
  7157. "ref/xamarinmac20/_._",
  7158. "ref/xamarintvos10/_._",
  7159. "ref/xamarinwatchos10/_._",
  7160. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7161. "system.runtime.numerics.nuspec"
  7162. ]
  7163. },
  7164. "System.Runtime.Serialization.Formatters/4.3.0": {
  7165. "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  7166. "type": "package",
  7167. "path": "system.runtime.serialization.formatters/4.3.0",
  7168. "files": [
  7169. ".nupkg.metadata",
  7170. ".signature.p7s",
  7171. "ThirdPartyNotices.txt",
  7172. "dotnet_library_license.txt",
  7173. "lib/MonoAndroid10/_._",
  7174. "lib/MonoTouch10/_._",
  7175. "lib/net46/System.Runtime.Serialization.Formatters.dll",
  7176. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
  7177. "lib/xamarinios10/_._",
  7178. "lib/xamarinmac20/_._",
  7179. "lib/xamarintvos10/_._",
  7180. "lib/xamarinwatchos10/_._",
  7181. "ref/MonoAndroid10/_._",
  7182. "ref/MonoTouch10/_._",
  7183. "ref/net46/System.Runtime.Serialization.Formatters.dll",
  7184. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
  7185. "ref/xamarinios10/_._",
  7186. "ref/xamarinmac20/_._",
  7187. "ref/xamarintvos10/_._",
  7188. "ref/xamarinwatchos10/_._",
  7189. "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
  7190. "system.runtime.serialization.formatters.nuspec"
  7191. ]
  7192. },
  7193. "System.Runtime.Serialization.Json/4.3.0": {
  7194. "sha512": "CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==",
  7195. "type": "package",
  7196. "path": "system.runtime.serialization.json/4.3.0",
  7197. "files": [
  7198. ".nupkg.metadata",
  7199. ".signature.p7s",
  7200. "ThirdPartyNotices.txt",
  7201. "dotnet_library_license.txt",
  7202. "lib/MonoAndroid10/_._",
  7203. "lib/MonoTouch10/_._",
  7204. "lib/net45/_._",
  7205. "lib/netcore50/System.Runtime.Serialization.Json.dll",
  7206. "lib/netstandard1.3/System.Runtime.Serialization.Json.dll",
  7207. "lib/portable-net45+win8+wp8+wpa81/_._",
  7208. "lib/win8/_._",
  7209. "lib/wp80/_._",
  7210. "lib/wpa81/_._",
  7211. "lib/xamarinios10/_._",
  7212. "lib/xamarinmac20/_._",
  7213. "lib/xamarintvos10/_._",
  7214. "lib/xamarinwatchos10/_._",
  7215. "ref/MonoAndroid10/_._",
  7216. "ref/MonoTouch10/_._",
  7217. "ref/net45/_._",
  7218. "ref/netcore50/System.Runtime.Serialization.Json.dll",
  7219. "ref/netcore50/System.Runtime.Serialization.Json.xml",
  7220. "ref/netcore50/de/System.Runtime.Serialization.Json.xml",
  7221. "ref/netcore50/es/System.Runtime.Serialization.Json.xml",
  7222. "ref/netcore50/fr/System.Runtime.Serialization.Json.xml",
  7223. "ref/netcore50/it/System.Runtime.Serialization.Json.xml",
  7224. "ref/netcore50/ja/System.Runtime.Serialization.Json.xml",
  7225. "ref/netcore50/ko/System.Runtime.Serialization.Json.xml",
  7226. "ref/netcore50/ru/System.Runtime.Serialization.Json.xml",
  7227. "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml",
  7228. "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml",
  7229. "ref/netstandard1.0/System.Runtime.Serialization.Json.dll",
  7230. "ref/netstandard1.0/System.Runtime.Serialization.Json.xml",
  7231. "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml",
  7232. "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml",
  7233. "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml",
  7234. "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml",
  7235. "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml",
  7236. "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml",
  7237. "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml",
  7238. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml",
  7239. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml",
  7240. "ref/portable-net45+win8+wp8+wpa81/_._",
  7241. "ref/win8/_._",
  7242. "ref/wp80/_._",
  7243. "ref/wpa81/_._",
  7244. "ref/xamarinios10/_._",
  7245. "ref/xamarinmac20/_._",
  7246. "ref/xamarintvos10/_._",
  7247. "ref/xamarinwatchos10/_._",
  7248. "system.runtime.serialization.json.4.3.0.nupkg.sha512",
  7249. "system.runtime.serialization.json.nuspec"
  7250. ]
  7251. },
  7252. "System.Runtime.Serialization.Primitives/4.3.0": {
  7253. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  7254. "type": "package",
  7255. "path": "system.runtime.serialization.primitives/4.3.0",
  7256. "files": [
  7257. ".nupkg.metadata",
  7258. ".signature.p7s",
  7259. "ThirdPartyNotices.txt",
  7260. "dotnet_library_license.txt",
  7261. "lib/MonoAndroid10/_._",
  7262. "lib/MonoTouch10/_._",
  7263. "lib/net45/_._",
  7264. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  7265. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7266. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7267. "lib/portable-net45+win8+wp8+wpa81/_._",
  7268. "lib/win8/_._",
  7269. "lib/wp80/_._",
  7270. "lib/wpa81/_._",
  7271. "lib/xamarinios10/_._",
  7272. "lib/xamarinmac20/_._",
  7273. "lib/xamarintvos10/_._",
  7274. "lib/xamarinwatchos10/_._",
  7275. "ref/MonoAndroid10/_._",
  7276. "ref/MonoTouch10/_._",
  7277. "ref/net45/_._",
  7278. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  7279. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  7280. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  7281. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  7282. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  7283. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  7284. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  7285. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  7286. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  7287. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  7288. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7289. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7290. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  7291. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  7292. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  7293. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  7294. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  7295. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  7296. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  7297. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  7298. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  7299. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7300. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7301. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7302. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  7303. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  7304. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  7305. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  7306. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  7307. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  7308. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  7309. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  7310. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7311. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7312. "ref/portable-net45+win8+wp8+wpa81/_._",
  7313. "ref/win8/_._",
  7314. "ref/wp80/_._",
  7315. "ref/wpa81/_._",
  7316. "ref/xamarinios10/_._",
  7317. "ref/xamarinmac20/_._",
  7318. "ref/xamarintvos10/_._",
  7319. "ref/xamarinwatchos10/_._",
  7320. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7321. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  7322. "system.runtime.serialization.primitives.nuspec"
  7323. ]
  7324. },
  7325. "System.Security.AccessControl/4.5.0": {
  7326. "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
  7327. "type": "package",
  7328. "path": "system.security.accesscontrol/4.5.0",
  7329. "files": [
  7330. ".nupkg.metadata",
  7331. ".signature.p7s",
  7332. "LICENSE.TXT",
  7333. "THIRD-PARTY-NOTICES.TXT",
  7334. "lib/net46/System.Security.AccessControl.dll",
  7335. "lib/net461/System.Security.AccessControl.dll",
  7336. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7337. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7338. "lib/uap10.0.16299/_._",
  7339. "ref/net46/System.Security.AccessControl.dll",
  7340. "ref/net461/System.Security.AccessControl.dll",
  7341. "ref/net461/System.Security.AccessControl.xml",
  7342. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7343. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7344. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7345. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7346. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7347. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7348. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7349. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7350. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7351. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7352. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7353. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7354. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7355. "ref/uap10.0.16299/_._",
  7356. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7357. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7358. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7359. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7360. "runtimes/win/lib/uap10.0.16299/_._",
  7361. "system.security.accesscontrol.4.5.0.nupkg.sha512",
  7362. "system.security.accesscontrol.nuspec",
  7363. "useSharedDesignerContext.txt",
  7364. "version.txt"
  7365. ]
  7366. },
  7367. "System.Security.Cryptography.Algorithms/4.3.0": {
  7368. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7369. "type": "package",
  7370. "path": "system.security.cryptography.algorithms/4.3.0",
  7371. "files": [
  7372. ".nupkg.metadata",
  7373. ".signature.p7s",
  7374. "ThirdPartyNotices.txt",
  7375. "dotnet_library_license.txt",
  7376. "lib/MonoAndroid10/_._",
  7377. "lib/MonoTouch10/_._",
  7378. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7379. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7380. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7381. "lib/xamarinios10/_._",
  7382. "lib/xamarinmac20/_._",
  7383. "lib/xamarintvos10/_._",
  7384. "lib/xamarinwatchos10/_._",
  7385. "ref/MonoAndroid10/_._",
  7386. "ref/MonoTouch10/_._",
  7387. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7388. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7389. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7390. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7391. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7392. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7393. "ref/xamarinios10/_._",
  7394. "ref/xamarinmac20/_._",
  7395. "ref/xamarintvos10/_._",
  7396. "ref/xamarinwatchos10/_._",
  7397. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7398. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7399. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7400. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7401. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7402. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7403. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7404. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7405. "system.security.cryptography.algorithms.nuspec"
  7406. ]
  7407. },
  7408. "System.Security.Cryptography.Cng/4.5.0": {
  7409. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  7410. "type": "package",
  7411. "path": "system.security.cryptography.cng/4.5.0",
  7412. "files": [
  7413. ".nupkg.metadata",
  7414. ".signature.p7s",
  7415. "LICENSE.TXT",
  7416. "THIRD-PARTY-NOTICES.TXT",
  7417. "lib/MonoAndroid10/_._",
  7418. "lib/MonoTouch10/_._",
  7419. "lib/net46/System.Security.Cryptography.Cng.dll",
  7420. "lib/net461/System.Security.Cryptography.Cng.dll",
  7421. "lib/net462/System.Security.Cryptography.Cng.dll",
  7422. "lib/net47/System.Security.Cryptography.Cng.dll",
  7423. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7424. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7425. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7426. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7427. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7428. "lib/uap10.0.16299/_._",
  7429. "lib/xamarinios10/_._",
  7430. "lib/xamarinmac20/_._",
  7431. "lib/xamarintvos10/_._",
  7432. "lib/xamarinwatchos10/_._",
  7433. "ref/MonoAndroid10/_._",
  7434. "ref/MonoTouch10/_._",
  7435. "ref/net46/System.Security.Cryptography.Cng.dll",
  7436. "ref/net461/System.Security.Cryptography.Cng.dll",
  7437. "ref/net461/System.Security.Cryptography.Cng.xml",
  7438. "ref/net462/System.Security.Cryptography.Cng.dll",
  7439. "ref/net462/System.Security.Cryptography.Cng.xml",
  7440. "ref/net47/System.Security.Cryptography.Cng.dll",
  7441. "ref/net47/System.Security.Cryptography.Cng.xml",
  7442. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7443. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  7444. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7445. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  7446. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7447. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7448. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7449. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7450. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7451. "ref/uap10.0.16299/_._",
  7452. "ref/xamarinios10/_._",
  7453. "ref/xamarinmac20/_._",
  7454. "ref/xamarintvos10/_._",
  7455. "ref/xamarinwatchos10/_._",
  7456. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7457. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7458. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  7459. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  7460. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7461. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7462. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7463. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7464. "runtimes/win/lib/uap10.0.16299/_._",
  7465. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  7466. "system.security.cryptography.cng.nuspec",
  7467. "useSharedDesignerContext.txt",
  7468. "version.txt"
  7469. ]
  7470. },
  7471. "System.Security.Cryptography.Csp/4.3.0": {
  7472. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  7473. "type": "package",
  7474. "path": "system.security.cryptography.csp/4.3.0",
  7475. "files": [
  7476. ".nupkg.metadata",
  7477. ".signature.p7s",
  7478. "ThirdPartyNotices.txt",
  7479. "dotnet_library_license.txt",
  7480. "lib/MonoAndroid10/_._",
  7481. "lib/MonoTouch10/_._",
  7482. "lib/net46/System.Security.Cryptography.Csp.dll",
  7483. "lib/xamarinios10/_._",
  7484. "lib/xamarinmac20/_._",
  7485. "lib/xamarintvos10/_._",
  7486. "lib/xamarinwatchos10/_._",
  7487. "ref/MonoAndroid10/_._",
  7488. "ref/MonoTouch10/_._",
  7489. "ref/net46/System.Security.Cryptography.Csp.dll",
  7490. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7491. "ref/xamarinios10/_._",
  7492. "ref/xamarinmac20/_._",
  7493. "ref/xamarintvos10/_._",
  7494. "ref/xamarinwatchos10/_._",
  7495. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7496. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7497. "runtimes/win/lib/netcore50/_._",
  7498. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7499. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  7500. "system.security.cryptography.csp.nuspec"
  7501. ]
  7502. },
  7503. "System.Security.Cryptography.Encoding/4.3.0": {
  7504. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  7505. "type": "package",
  7506. "path": "system.security.cryptography.encoding/4.3.0",
  7507. "files": [
  7508. ".nupkg.metadata",
  7509. ".signature.p7s",
  7510. "ThirdPartyNotices.txt",
  7511. "dotnet_library_license.txt",
  7512. "lib/MonoAndroid10/_._",
  7513. "lib/MonoTouch10/_._",
  7514. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7515. "lib/xamarinios10/_._",
  7516. "lib/xamarinmac20/_._",
  7517. "lib/xamarintvos10/_._",
  7518. "lib/xamarinwatchos10/_._",
  7519. "ref/MonoAndroid10/_._",
  7520. "ref/MonoTouch10/_._",
  7521. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7522. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7523. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7524. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7525. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7526. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7527. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7528. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7529. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7530. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7531. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7532. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7533. "ref/xamarinios10/_._",
  7534. "ref/xamarinmac20/_._",
  7535. "ref/xamarintvos10/_._",
  7536. "ref/xamarinwatchos10/_._",
  7537. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7538. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7539. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7540. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7541. "system.security.cryptography.encoding.nuspec"
  7542. ]
  7543. },
  7544. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7545. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7546. "type": "package",
  7547. "path": "system.security.cryptography.openssl/4.3.0",
  7548. "files": [
  7549. ".nupkg.metadata",
  7550. ".signature.p7s",
  7551. "ThirdPartyNotices.txt",
  7552. "dotnet_library_license.txt",
  7553. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7554. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7555. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7556. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7557. "system.security.cryptography.openssl.nuspec"
  7558. ]
  7559. },
  7560. "System.Security.Cryptography.Primitives/4.3.0": {
  7561. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  7562. "type": "package",
  7563. "path": "system.security.cryptography.primitives/4.3.0",
  7564. "files": [
  7565. ".nupkg.metadata",
  7566. ".signature.p7s",
  7567. "ThirdPartyNotices.txt",
  7568. "dotnet_library_license.txt",
  7569. "lib/MonoAndroid10/_._",
  7570. "lib/MonoTouch10/_._",
  7571. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7572. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7573. "lib/xamarinios10/_._",
  7574. "lib/xamarinmac20/_._",
  7575. "lib/xamarintvos10/_._",
  7576. "lib/xamarinwatchos10/_._",
  7577. "ref/MonoAndroid10/_._",
  7578. "ref/MonoTouch10/_._",
  7579. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7580. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7581. "ref/xamarinios10/_._",
  7582. "ref/xamarinmac20/_._",
  7583. "ref/xamarintvos10/_._",
  7584. "ref/xamarinwatchos10/_._",
  7585. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  7586. "system.security.cryptography.primitives.nuspec"
  7587. ]
  7588. },
  7589. "System.Security.Cryptography.ProtectedData/4.5.0": {
  7590. "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  7591. "type": "package",
  7592. "path": "system.security.cryptography.protecteddata/4.5.0",
  7593. "files": [
  7594. ".nupkg.metadata",
  7595. ".signature.p7s",
  7596. "LICENSE.TXT",
  7597. "THIRD-PARTY-NOTICES.TXT",
  7598. "lib/MonoAndroid10/_._",
  7599. "lib/MonoTouch10/_._",
  7600. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7601. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7602. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7603. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7604. "lib/xamarinios10/_._",
  7605. "lib/xamarinmac20/_._",
  7606. "lib/xamarintvos10/_._",
  7607. "lib/xamarinwatchos10/_._",
  7608. "ref/MonoAndroid10/_._",
  7609. "ref/MonoTouch10/_._",
  7610. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  7611. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  7612. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  7613. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7614. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7615. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7616. "ref/xamarinios10/_._",
  7617. "ref/xamarinmac20/_._",
  7618. "ref/xamarintvos10/_._",
  7619. "ref/xamarinwatchos10/_._",
  7620. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7621. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7622. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7623. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7624. "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
  7625. "system.security.cryptography.protecteddata.nuspec",
  7626. "useSharedDesignerContext.txt",
  7627. "version.txt"
  7628. ]
  7629. },
  7630. "System.Security.Cryptography.X509Certificates/4.3.0": {
  7631. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  7632. "type": "package",
  7633. "path": "system.security.cryptography.x509certificates/4.3.0",
  7634. "files": [
  7635. ".nupkg.metadata",
  7636. ".signature.p7s",
  7637. "ThirdPartyNotices.txt",
  7638. "dotnet_library_license.txt",
  7639. "lib/MonoAndroid10/_._",
  7640. "lib/MonoTouch10/_._",
  7641. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7642. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7643. "lib/xamarinios10/_._",
  7644. "lib/xamarinmac20/_._",
  7645. "lib/xamarintvos10/_._",
  7646. "lib/xamarinwatchos10/_._",
  7647. "ref/MonoAndroid10/_._",
  7648. "ref/MonoTouch10/_._",
  7649. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  7650. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  7651. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  7652. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  7653. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  7654. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  7655. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  7656. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  7657. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  7658. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  7659. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  7660. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7661. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7662. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7663. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  7664. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  7665. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  7666. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  7667. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  7668. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  7669. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  7670. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  7671. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7672. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7673. "ref/xamarinios10/_._",
  7674. "ref/xamarinmac20/_._",
  7675. "ref/xamarintvos10/_._",
  7676. "ref/xamarinwatchos10/_._",
  7677. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7678. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7679. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7680. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7681. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7682. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  7683. "system.security.cryptography.x509certificates.nuspec"
  7684. ]
  7685. },
  7686. "System.Security.Permissions/4.5.0": {
  7687. "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
  7688. "type": "package",
  7689. "path": "system.security.permissions/4.5.0",
  7690. "files": [
  7691. ".nupkg.metadata",
  7692. ".signature.p7s",
  7693. "LICENSE.TXT",
  7694. "THIRD-PARTY-NOTICES.TXT",
  7695. "lib/net461/System.Security.Permissions.dll",
  7696. "lib/netstandard2.0/System.Security.Permissions.dll",
  7697. "ref/net461/System.Security.Permissions.dll",
  7698. "ref/net461/System.Security.Permissions.xml",
  7699. "ref/netstandard2.0/System.Security.Permissions.dll",
  7700. "ref/netstandard2.0/System.Security.Permissions.xml",
  7701. "system.security.permissions.4.5.0.nupkg.sha512",
  7702. "system.security.permissions.nuspec",
  7703. "useSharedDesignerContext.txt",
  7704. "version.txt"
  7705. ]
  7706. },
  7707. "System.Security.Principal.Windows/4.5.0": {
  7708. "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==",
  7709. "type": "package",
  7710. "path": "system.security.principal.windows/4.5.0",
  7711. "files": [
  7712. ".nupkg.metadata",
  7713. ".signature.p7s",
  7714. "LICENSE.TXT",
  7715. "THIRD-PARTY-NOTICES.TXT",
  7716. "lib/net46/System.Security.Principal.Windows.dll",
  7717. "lib/net461/System.Security.Principal.Windows.dll",
  7718. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7719. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7720. "lib/uap10.0.16299/_._",
  7721. "ref/net46/System.Security.Principal.Windows.dll",
  7722. "ref/net461/System.Security.Principal.Windows.dll",
  7723. "ref/net461/System.Security.Principal.Windows.xml",
  7724. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7725. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7726. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7727. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7728. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7729. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7730. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7731. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7732. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7733. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7734. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7735. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7736. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7737. "ref/uap10.0.16299/_._",
  7738. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7739. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7740. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7741. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7742. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7743. "runtimes/win/lib/uap10.0.16299/_._",
  7744. "system.security.principal.windows.4.5.0.nupkg.sha512",
  7745. "system.security.principal.windows.nuspec",
  7746. "useSharedDesignerContext.txt",
  7747. "version.txt"
  7748. ]
  7749. },
  7750. "System.Security.SecureString/4.3.0": {
  7751. "sha512": "PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
  7752. "type": "package",
  7753. "path": "system.security.securestring/4.3.0",
  7754. "files": [
  7755. ".nupkg.metadata",
  7756. ".signature.p7s",
  7757. "ThirdPartyNotices.txt",
  7758. "dotnet_library_license.txt",
  7759. "lib/MonoAndroid10/_._",
  7760. "lib/MonoTouch10/_._",
  7761. "lib/net46/System.Security.SecureString.dll",
  7762. "lib/xamarinios10/_._",
  7763. "lib/xamarinmac20/_._",
  7764. "lib/xamarintvos10/_._",
  7765. "lib/xamarinwatchos10/_._",
  7766. "ref/MonoAndroid10/_._",
  7767. "ref/MonoTouch10/_._",
  7768. "ref/net46/System.Security.SecureString.dll",
  7769. "ref/netstandard1.3/System.Security.SecureString.dll",
  7770. "ref/netstandard1.3/System.Security.SecureString.xml",
  7771. "ref/netstandard1.3/de/System.Security.SecureString.xml",
  7772. "ref/netstandard1.3/es/System.Security.SecureString.xml",
  7773. "ref/netstandard1.3/fr/System.Security.SecureString.xml",
  7774. "ref/netstandard1.3/it/System.Security.SecureString.xml",
  7775. "ref/netstandard1.3/ja/System.Security.SecureString.xml",
  7776. "ref/netstandard1.3/ko/System.Security.SecureString.xml",
  7777. "ref/netstandard1.3/ru/System.Security.SecureString.xml",
  7778. "ref/netstandard1.3/zh-hans/System.Security.SecureString.xml",
  7779. "ref/netstandard1.3/zh-hant/System.Security.SecureString.xml",
  7780. "ref/xamarinios10/_._",
  7781. "ref/xamarinmac20/_._",
  7782. "ref/xamarintvos10/_._",
  7783. "ref/xamarinwatchos10/_._",
  7784. "runtimes/unix/lib/netstandard1.3/System.Security.SecureString.dll",
  7785. "runtimes/win/lib/net46/System.Security.SecureString.dll",
  7786. "runtimes/win/lib/netstandard1.3/System.Security.SecureString.dll",
  7787. "system.security.securestring.4.3.0.nupkg.sha512",
  7788. "system.security.securestring.nuspec"
  7789. ]
  7790. },
  7791. "System.Text.Encoding/4.3.0": {
  7792. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7793. "type": "package",
  7794. "path": "system.text.encoding/4.3.0",
  7795. "files": [
  7796. ".nupkg.metadata",
  7797. ".signature.p7s",
  7798. "ThirdPartyNotices.txt",
  7799. "dotnet_library_license.txt",
  7800. "lib/MonoAndroid10/_._",
  7801. "lib/MonoTouch10/_._",
  7802. "lib/net45/_._",
  7803. "lib/portable-net45+win8+wp8+wpa81/_._",
  7804. "lib/win8/_._",
  7805. "lib/wp80/_._",
  7806. "lib/wpa81/_._",
  7807. "lib/xamarinios10/_._",
  7808. "lib/xamarinmac20/_._",
  7809. "lib/xamarintvos10/_._",
  7810. "lib/xamarinwatchos10/_._",
  7811. "ref/MonoAndroid10/_._",
  7812. "ref/MonoTouch10/_._",
  7813. "ref/net45/_._",
  7814. "ref/netcore50/System.Text.Encoding.dll",
  7815. "ref/netcore50/System.Text.Encoding.xml",
  7816. "ref/netcore50/de/System.Text.Encoding.xml",
  7817. "ref/netcore50/es/System.Text.Encoding.xml",
  7818. "ref/netcore50/fr/System.Text.Encoding.xml",
  7819. "ref/netcore50/it/System.Text.Encoding.xml",
  7820. "ref/netcore50/ja/System.Text.Encoding.xml",
  7821. "ref/netcore50/ko/System.Text.Encoding.xml",
  7822. "ref/netcore50/ru/System.Text.Encoding.xml",
  7823. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7824. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7825. "ref/netstandard1.0/System.Text.Encoding.dll",
  7826. "ref/netstandard1.0/System.Text.Encoding.xml",
  7827. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7828. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7829. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7830. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7831. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7832. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7833. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7834. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7835. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7836. "ref/netstandard1.3/System.Text.Encoding.dll",
  7837. "ref/netstandard1.3/System.Text.Encoding.xml",
  7838. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7839. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7840. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7841. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7842. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7843. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7844. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7845. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7846. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7847. "ref/portable-net45+win8+wp8+wpa81/_._",
  7848. "ref/win8/_._",
  7849. "ref/wp80/_._",
  7850. "ref/wpa81/_._",
  7851. "ref/xamarinios10/_._",
  7852. "ref/xamarinmac20/_._",
  7853. "ref/xamarintvos10/_._",
  7854. "ref/xamarinwatchos10/_._",
  7855. "system.text.encoding.4.3.0.nupkg.sha512",
  7856. "system.text.encoding.nuspec"
  7857. ]
  7858. },
  7859. "System.Text.Encoding.CodePages/4.5.1": {
  7860. "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
  7861. "type": "package",
  7862. "path": "system.text.encoding.codepages/4.5.1",
  7863. "files": [
  7864. ".nupkg.metadata",
  7865. ".signature.p7s",
  7866. "LICENSE.TXT",
  7867. "THIRD-PARTY-NOTICES.TXT",
  7868. "lib/MonoAndroid10/_._",
  7869. "lib/MonoTouch10/_._",
  7870. "lib/net46/System.Text.Encoding.CodePages.dll",
  7871. "lib/net461/System.Text.Encoding.CodePages.dll",
  7872. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7873. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7874. "lib/xamarinios10/_._",
  7875. "lib/xamarinmac20/_._",
  7876. "lib/xamarintvos10/_._",
  7877. "lib/xamarinwatchos10/_._",
  7878. "ref/MonoAndroid10/_._",
  7879. "ref/MonoTouch10/_._",
  7880. "ref/xamarinios10/_._",
  7881. "ref/xamarinmac20/_._",
  7882. "ref/xamarintvos10/_._",
  7883. "ref/xamarinwatchos10/_._",
  7884. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7885. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7886. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7887. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7888. "system.text.encoding.codepages.4.5.1.nupkg.sha512",
  7889. "system.text.encoding.codepages.nuspec",
  7890. "useSharedDesignerContext.txt",
  7891. "version.txt"
  7892. ]
  7893. },
  7894. "System.Text.Encoding.Extensions/4.3.0": {
  7895. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  7896. "type": "package",
  7897. "path": "system.text.encoding.extensions/4.3.0",
  7898. "files": [
  7899. ".nupkg.metadata",
  7900. ".signature.p7s",
  7901. "ThirdPartyNotices.txt",
  7902. "dotnet_library_license.txt",
  7903. "lib/MonoAndroid10/_._",
  7904. "lib/MonoTouch10/_._",
  7905. "lib/net45/_._",
  7906. "lib/portable-net45+win8+wp8+wpa81/_._",
  7907. "lib/win8/_._",
  7908. "lib/wp80/_._",
  7909. "lib/wpa81/_._",
  7910. "lib/xamarinios10/_._",
  7911. "lib/xamarinmac20/_._",
  7912. "lib/xamarintvos10/_._",
  7913. "lib/xamarinwatchos10/_._",
  7914. "ref/MonoAndroid10/_._",
  7915. "ref/MonoTouch10/_._",
  7916. "ref/net45/_._",
  7917. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7918. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7919. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7920. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7921. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7922. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7923. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7924. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7925. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7926. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7927. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7928. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7929. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7930. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7931. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7932. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7933. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7934. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7935. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7936. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7937. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7938. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7939. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7940. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7941. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7942. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7943. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7944. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7945. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7946. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7947. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7948. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7949. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7950. "ref/portable-net45+win8+wp8+wpa81/_._",
  7951. "ref/win8/_._",
  7952. "ref/wp80/_._",
  7953. "ref/wpa81/_._",
  7954. "ref/xamarinios10/_._",
  7955. "ref/xamarinmac20/_._",
  7956. "ref/xamarintvos10/_._",
  7957. "ref/xamarinwatchos10/_._",
  7958. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  7959. "system.text.encoding.extensions.nuspec"
  7960. ]
  7961. },
  7962. "System.Text.Encodings.Web/4.5.0": {
  7963. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  7964. "type": "package",
  7965. "path": "system.text.encodings.web/4.5.0",
  7966. "files": [
  7967. ".nupkg.metadata",
  7968. ".signature.p7s",
  7969. "LICENSE.TXT",
  7970. "THIRD-PARTY-NOTICES.TXT",
  7971. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  7972. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  7973. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  7974. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  7975. "system.text.encodings.web.4.5.0.nupkg.sha512",
  7976. "system.text.encodings.web.nuspec",
  7977. "useSharedDesignerContext.txt",
  7978. "version.txt"
  7979. ]
  7980. },
  7981. "System.Text.RegularExpressions/4.3.0": {
  7982. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  7983. "type": "package",
  7984. "path": "system.text.regularexpressions/4.3.0",
  7985. "files": [
  7986. ".nupkg.metadata",
  7987. ".signature.p7s",
  7988. "ThirdPartyNotices.txt",
  7989. "dotnet_library_license.txt",
  7990. "lib/MonoAndroid10/_._",
  7991. "lib/MonoTouch10/_._",
  7992. "lib/net45/_._",
  7993. "lib/net463/System.Text.RegularExpressions.dll",
  7994. "lib/netcore50/System.Text.RegularExpressions.dll",
  7995. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7996. "lib/portable-net45+win8+wp8+wpa81/_._",
  7997. "lib/win8/_._",
  7998. "lib/wp80/_._",
  7999. "lib/wpa81/_._",
  8000. "lib/xamarinios10/_._",
  8001. "lib/xamarinmac20/_._",
  8002. "lib/xamarintvos10/_._",
  8003. "lib/xamarinwatchos10/_._",
  8004. "ref/MonoAndroid10/_._",
  8005. "ref/MonoTouch10/_._",
  8006. "ref/net45/_._",
  8007. "ref/net463/System.Text.RegularExpressions.dll",
  8008. "ref/netcore50/System.Text.RegularExpressions.dll",
  8009. "ref/netcore50/System.Text.RegularExpressions.xml",
  8010. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8011. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8012. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8013. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8014. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8015. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8016. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8017. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8018. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8019. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8020. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8021. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8022. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8023. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8024. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8025. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8026. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8027. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8028. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8029. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8030. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8031. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8032. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8033. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8034. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8035. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8036. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8037. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8038. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8039. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8040. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8041. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8042. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8043. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8044. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8045. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8046. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8047. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8048. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8049. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8050. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8051. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8052. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8053. "ref/portable-net45+win8+wp8+wpa81/_._",
  8054. "ref/win8/_._",
  8055. "ref/wp80/_._",
  8056. "ref/wpa81/_._",
  8057. "ref/xamarinios10/_._",
  8058. "ref/xamarinmac20/_._",
  8059. "ref/xamarintvos10/_._",
  8060. "ref/xamarinwatchos10/_._",
  8061. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8062. "system.text.regularexpressions.nuspec"
  8063. ]
  8064. },
  8065. "System.Threading/4.3.0": {
  8066. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8067. "type": "package",
  8068. "path": "system.threading/4.3.0",
  8069. "files": [
  8070. ".nupkg.metadata",
  8071. ".signature.p7s",
  8072. "ThirdPartyNotices.txt",
  8073. "dotnet_library_license.txt",
  8074. "lib/MonoAndroid10/_._",
  8075. "lib/MonoTouch10/_._",
  8076. "lib/net45/_._",
  8077. "lib/netcore50/System.Threading.dll",
  8078. "lib/netstandard1.3/System.Threading.dll",
  8079. "lib/portable-net45+win8+wp8+wpa81/_._",
  8080. "lib/win8/_._",
  8081. "lib/wp80/_._",
  8082. "lib/wpa81/_._",
  8083. "lib/xamarinios10/_._",
  8084. "lib/xamarinmac20/_._",
  8085. "lib/xamarintvos10/_._",
  8086. "lib/xamarinwatchos10/_._",
  8087. "ref/MonoAndroid10/_._",
  8088. "ref/MonoTouch10/_._",
  8089. "ref/net45/_._",
  8090. "ref/netcore50/System.Threading.dll",
  8091. "ref/netcore50/System.Threading.xml",
  8092. "ref/netcore50/de/System.Threading.xml",
  8093. "ref/netcore50/es/System.Threading.xml",
  8094. "ref/netcore50/fr/System.Threading.xml",
  8095. "ref/netcore50/it/System.Threading.xml",
  8096. "ref/netcore50/ja/System.Threading.xml",
  8097. "ref/netcore50/ko/System.Threading.xml",
  8098. "ref/netcore50/ru/System.Threading.xml",
  8099. "ref/netcore50/zh-hans/System.Threading.xml",
  8100. "ref/netcore50/zh-hant/System.Threading.xml",
  8101. "ref/netstandard1.0/System.Threading.dll",
  8102. "ref/netstandard1.0/System.Threading.xml",
  8103. "ref/netstandard1.0/de/System.Threading.xml",
  8104. "ref/netstandard1.0/es/System.Threading.xml",
  8105. "ref/netstandard1.0/fr/System.Threading.xml",
  8106. "ref/netstandard1.0/it/System.Threading.xml",
  8107. "ref/netstandard1.0/ja/System.Threading.xml",
  8108. "ref/netstandard1.0/ko/System.Threading.xml",
  8109. "ref/netstandard1.0/ru/System.Threading.xml",
  8110. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8111. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8112. "ref/netstandard1.3/System.Threading.dll",
  8113. "ref/netstandard1.3/System.Threading.xml",
  8114. "ref/netstandard1.3/de/System.Threading.xml",
  8115. "ref/netstandard1.3/es/System.Threading.xml",
  8116. "ref/netstandard1.3/fr/System.Threading.xml",
  8117. "ref/netstandard1.3/it/System.Threading.xml",
  8118. "ref/netstandard1.3/ja/System.Threading.xml",
  8119. "ref/netstandard1.3/ko/System.Threading.xml",
  8120. "ref/netstandard1.3/ru/System.Threading.xml",
  8121. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8122. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8123. "ref/portable-net45+win8+wp8+wpa81/_._",
  8124. "ref/win8/_._",
  8125. "ref/wp80/_._",
  8126. "ref/wpa81/_._",
  8127. "ref/xamarinios10/_._",
  8128. "ref/xamarinmac20/_._",
  8129. "ref/xamarintvos10/_._",
  8130. "ref/xamarinwatchos10/_._",
  8131. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8132. "system.threading.4.3.0.nupkg.sha512",
  8133. "system.threading.nuspec"
  8134. ]
  8135. },
  8136. "System.Threading.Tasks/4.3.0": {
  8137. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8138. "type": "package",
  8139. "path": "system.threading.tasks/4.3.0",
  8140. "files": [
  8141. ".nupkg.metadata",
  8142. ".signature.p7s",
  8143. "ThirdPartyNotices.txt",
  8144. "dotnet_library_license.txt",
  8145. "lib/MonoAndroid10/_._",
  8146. "lib/MonoTouch10/_._",
  8147. "lib/net45/_._",
  8148. "lib/portable-net45+win8+wp8+wpa81/_._",
  8149. "lib/win8/_._",
  8150. "lib/wp80/_._",
  8151. "lib/wpa81/_._",
  8152. "lib/xamarinios10/_._",
  8153. "lib/xamarinmac20/_._",
  8154. "lib/xamarintvos10/_._",
  8155. "lib/xamarinwatchos10/_._",
  8156. "ref/MonoAndroid10/_._",
  8157. "ref/MonoTouch10/_._",
  8158. "ref/net45/_._",
  8159. "ref/netcore50/System.Threading.Tasks.dll",
  8160. "ref/netcore50/System.Threading.Tasks.xml",
  8161. "ref/netcore50/de/System.Threading.Tasks.xml",
  8162. "ref/netcore50/es/System.Threading.Tasks.xml",
  8163. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8164. "ref/netcore50/it/System.Threading.Tasks.xml",
  8165. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8166. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8167. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8168. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8169. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8170. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8171. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8172. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8173. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8174. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8175. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8176. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8177. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8178. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8179. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8180. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8181. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8182. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8183. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8184. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8185. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8186. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8187. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8188. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8189. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8190. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8191. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8192. "ref/portable-net45+win8+wp8+wpa81/_._",
  8193. "ref/win8/_._",
  8194. "ref/wp80/_._",
  8195. "ref/wpa81/_._",
  8196. "ref/xamarinios10/_._",
  8197. "ref/xamarinmac20/_._",
  8198. "ref/xamarintvos10/_._",
  8199. "ref/xamarinwatchos10/_._",
  8200. "system.threading.tasks.4.3.0.nupkg.sha512",
  8201. "system.threading.tasks.nuspec"
  8202. ]
  8203. },
  8204. "System.Threading.Tasks.Extensions/4.5.3": {
  8205. "sha512": "+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==",
  8206. "type": "package",
  8207. "path": "system.threading.tasks.extensions/4.5.3",
  8208. "files": [
  8209. ".nupkg.metadata",
  8210. ".signature.p7s",
  8211. "LICENSE.TXT",
  8212. "THIRD-PARTY-NOTICES.TXT",
  8213. "lib/MonoAndroid10/_._",
  8214. "lib/MonoTouch10/_._",
  8215. "lib/netcoreapp2.1/_._",
  8216. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8217. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8218. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  8219. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  8220. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8221. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8222. "lib/xamarinios10/_._",
  8223. "lib/xamarinmac20/_._",
  8224. "lib/xamarintvos10/_._",
  8225. "lib/xamarinwatchos10/_._",
  8226. "ref/MonoAndroid10/_._",
  8227. "ref/MonoTouch10/_._",
  8228. "ref/netcoreapp2.1/_._",
  8229. "ref/xamarinios10/_._",
  8230. "ref/xamarinmac20/_._",
  8231. "ref/xamarintvos10/_._",
  8232. "ref/xamarinwatchos10/_._",
  8233. "system.threading.tasks.extensions.4.5.3.nupkg.sha512",
  8234. "system.threading.tasks.extensions.nuspec",
  8235. "useSharedDesignerContext.txt",
  8236. "version.txt"
  8237. ]
  8238. },
  8239. "System.Threading.Timer/4.3.0": {
  8240. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8241. "type": "package",
  8242. "path": "system.threading.timer/4.3.0",
  8243. "files": [
  8244. ".nupkg.metadata",
  8245. ".signature.p7s",
  8246. "ThirdPartyNotices.txt",
  8247. "dotnet_library_license.txt",
  8248. "lib/MonoAndroid10/_._",
  8249. "lib/MonoTouch10/_._",
  8250. "lib/net451/_._",
  8251. "lib/portable-net451+win81+wpa81/_._",
  8252. "lib/win81/_._",
  8253. "lib/wpa81/_._",
  8254. "lib/xamarinios10/_._",
  8255. "lib/xamarinmac20/_._",
  8256. "lib/xamarintvos10/_._",
  8257. "lib/xamarinwatchos10/_._",
  8258. "ref/MonoAndroid10/_._",
  8259. "ref/MonoTouch10/_._",
  8260. "ref/net451/_._",
  8261. "ref/netcore50/System.Threading.Timer.dll",
  8262. "ref/netcore50/System.Threading.Timer.xml",
  8263. "ref/netcore50/de/System.Threading.Timer.xml",
  8264. "ref/netcore50/es/System.Threading.Timer.xml",
  8265. "ref/netcore50/fr/System.Threading.Timer.xml",
  8266. "ref/netcore50/it/System.Threading.Timer.xml",
  8267. "ref/netcore50/ja/System.Threading.Timer.xml",
  8268. "ref/netcore50/ko/System.Threading.Timer.xml",
  8269. "ref/netcore50/ru/System.Threading.Timer.xml",
  8270. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8271. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8272. "ref/netstandard1.2/System.Threading.Timer.dll",
  8273. "ref/netstandard1.2/System.Threading.Timer.xml",
  8274. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8275. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8276. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8277. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8278. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8279. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8280. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8281. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8282. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8283. "ref/portable-net451+win81+wpa81/_._",
  8284. "ref/win81/_._",
  8285. "ref/wpa81/_._",
  8286. "ref/xamarinios10/_._",
  8287. "ref/xamarinmac20/_._",
  8288. "ref/xamarintvos10/_._",
  8289. "ref/xamarinwatchos10/_._",
  8290. "system.threading.timer.4.3.0.nupkg.sha512",
  8291. "system.threading.timer.nuspec"
  8292. ]
  8293. },
  8294. "System.Xml.ReaderWriter/4.3.0": {
  8295. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8296. "type": "package",
  8297. "path": "system.xml.readerwriter/4.3.0",
  8298. "files": [
  8299. ".nupkg.metadata",
  8300. ".signature.p7s",
  8301. "ThirdPartyNotices.txt",
  8302. "dotnet_library_license.txt",
  8303. "lib/MonoAndroid10/_._",
  8304. "lib/MonoTouch10/_._",
  8305. "lib/net45/_._",
  8306. "lib/net46/System.Xml.ReaderWriter.dll",
  8307. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8308. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8309. "lib/portable-net45+win8+wp8+wpa81/_._",
  8310. "lib/win8/_._",
  8311. "lib/wp80/_._",
  8312. "lib/wpa81/_._",
  8313. "lib/xamarinios10/_._",
  8314. "lib/xamarinmac20/_._",
  8315. "lib/xamarintvos10/_._",
  8316. "lib/xamarinwatchos10/_._",
  8317. "ref/MonoAndroid10/_._",
  8318. "ref/MonoTouch10/_._",
  8319. "ref/net45/_._",
  8320. "ref/net46/System.Xml.ReaderWriter.dll",
  8321. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8322. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8323. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8324. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8325. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8326. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8327. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8328. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8329. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8330. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8331. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8332. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8333. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8334. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8335. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8336. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8337. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8338. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8339. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8340. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8341. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8342. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8343. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8344. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8345. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8346. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8347. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8348. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8349. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8350. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8351. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8352. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8353. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8354. "ref/portable-net45+win8+wp8+wpa81/_._",
  8355. "ref/win8/_._",
  8356. "ref/wp80/_._",
  8357. "ref/wpa81/_._",
  8358. "ref/xamarinios10/_._",
  8359. "ref/xamarinmac20/_._",
  8360. "ref/xamarintvos10/_._",
  8361. "ref/xamarinwatchos10/_._",
  8362. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  8363. "system.xml.readerwriter.nuspec"
  8364. ]
  8365. },
  8366. "System.Xml.XDocument/4.3.0": {
  8367. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  8368. "type": "package",
  8369. "path": "system.xml.xdocument/4.3.0",
  8370. "files": [
  8371. ".nupkg.metadata",
  8372. ".signature.p7s",
  8373. "ThirdPartyNotices.txt",
  8374. "dotnet_library_license.txt",
  8375. "lib/MonoAndroid10/_._",
  8376. "lib/MonoTouch10/_._",
  8377. "lib/net45/_._",
  8378. "lib/netcore50/System.Xml.XDocument.dll",
  8379. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8380. "lib/portable-net45+win8+wp8+wpa81/_._",
  8381. "lib/win8/_._",
  8382. "lib/wp80/_._",
  8383. "lib/wpa81/_._",
  8384. "lib/xamarinios10/_._",
  8385. "lib/xamarinmac20/_._",
  8386. "lib/xamarintvos10/_._",
  8387. "lib/xamarinwatchos10/_._",
  8388. "ref/MonoAndroid10/_._",
  8389. "ref/MonoTouch10/_._",
  8390. "ref/net45/_._",
  8391. "ref/netcore50/System.Xml.XDocument.dll",
  8392. "ref/netcore50/System.Xml.XDocument.xml",
  8393. "ref/netcore50/de/System.Xml.XDocument.xml",
  8394. "ref/netcore50/es/System.Xml.XDocument.xml",
  8395. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8396. "ref/netcore50/it/System.Xml.XDocument.xml",
  8397. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8398. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8399. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8400. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8401. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8402. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8403. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8404. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8405. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8406. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8407. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8408. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8409. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8410. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8411. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8412. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8413. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8414. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8415. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8416. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8417. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8418. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8419. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8420. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8421. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8422. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8423. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8424. "ref/portable-net45+win8+wp8+wpa81/_._",
  8425. "ref/win8/_._",
  8426. "ref/wp80/_._",
  8427. "ref/wpa81/_._",
  8428. "ref/xamarinios10/_._",
  8429. "ref/xamarinmac20/_._",
  8430. "ref/xamarintvos10/_._",
  8431. "ref/xamarinwatchos10/_._",
  8432. "system.xml.xdocument.4.3.0.nupkg.sha512",
  8433. "system.xml.xdocument.nuspec"
  8434. ]
  8435. },
  8436. "System.Xml.XmlDocument/4.3.0": {
  8437. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  8438. "type": "package",
  8439. "path": "system.xml.xmldocument/4.3.0",
  8440. "files": [
  8441. ".nupkg.metadata",
  8442. ".signature.p7s",
  8443. "ThirdPartyNotices.txt",
  8444. "dotnet_library_license.txt",
  8445. "lib/MonoAndroid10/_._",
  8446. "lib/MonoTouch10/_._",
  8447. "lib/net46/System.Xml.XmlDocument.dll",
  8448. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  8449. "lib/xamarinios10/_._",
  8450. "lib/xamarinmac20/_._",
  8451. "lib/xamarintvos10/_._",
  8452. "lib/xamarinwatchos10/_._",
  8453. "ref/MonoAndroid10/_._",
  8454. "ref/MonoTouch10/_._",
  8455. "ref/net46/System.Xml.XmlDocument.dll",
  8456. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  8457. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  8458. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  8459. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  8460. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  8461. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  8462. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  8463. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  8464. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  8465. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  8466. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  8467. "ref/xamarinios10/_._",
  8468. "ref/xamarinmac20/_._",
  8469. "ref/xamarintvos10/_._",
  8470. "ref/xamarinwatchos10/_._",
  8471. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  8472. "system.xml.xmldocument.nuspec"
  8473. ]
  8474. },
  8475. "System.Xml.XmlSerializer/4.3.0": {
  8476. "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
  8477. "type": "package",
  8478. "path": "system.xml.xmlserializer/4.3.0",
  8479. "files": [
  8480. ".nupkg.metadata",
  8481. ".signature.p7s",
  8482. "ThirdPartyNotices.txt",
  8483. "dotnet_library_license.txt",
  8484. "lib/MonoAndroid10/_._",
  8485. "lib/MonoTouch10/_._",
  8486. "lib/net45/_._",
  8487. "lib/netcore50/System.Xml.XmlSerializer.dll",
  8488. "lib/netstandard1.3/System.Xml.XmlSerializer.dll",
  8489. "lib/portable-net45+win8+wp8+wpa81/_._",
  8490. "lib/win8/_._",
  8491. "lib/wp80/_._",
  8492. "lib/wpa81/_._",
  8493. "lib/xamarinios10/_._",
  8494. "lib/xamarinmac20/_._",
  8495. "lib/xamarintvos10/_._",
  8496. "lib/xamarinwatchos10/_._",
  8497. "ref/MonoAndroid10/_._",
  8498. "ref/MonoTouch10/_._",
  8499. "ref/net45/_._",
  8500. "ref/netcore50/System.Xml.XmlSerializer.dll",
  8501. "ref/netcore50/System.Xml.XmlSerializer.xml",
  8502. "ref/netcore50/de/System.Xml.XmlSerializer.xml",
  8503. "ref/netcore50/es/System.Xml.XmlSerializer.xml",
  8504. "ref/netcore50/fr/System.Xml.XmlSerializer.xml",
  8505. "ref/netcore50/it/System.Xml.XmlSerializer.xml",
  8506. "ref/netcore50/ja/System.Xml.XmlSerializer.xml",
  8507. "ref/netcore50/ko/System.Xml.XmlSerializer.xml",
  8508. "ref/netcore50/ru/System.Xml.XmlSerializer.xml",
  8509. "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml",
  8510. "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml",
  8511. "ref/netstandard1.0/System.Xml.XmlSerializer.dll",
  8512. "ref/netstandard1.0/System.Xml.XmlSerializer.xml",
  8513. "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml",
  8514. "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml",
  8515. "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml",
  8516. "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml",
  8517. "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml",
  8518. "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml",
  8519. "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml",
  8520. "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml",
  8521. "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml",
  8522. "ref/netstandard1.3/System.Xml.XmlSerializer.dll",
  8523. "ref/netstandard1.3/System.Xml.XmlSerializer.xml",
  8524. "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml",
  8525. "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml",
  8526. "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml",
  8527. "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml",
  8528. "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml",
  8529. "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml",
  8530. "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml",
  8531. "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml",
  8532. "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml",
  8533. "ref/portable-net45+win8+wp8+wpa81/_._",
  8534. "ref/win8/_._",
  8535. "ref/wp80/_._",
  8536. "ref/wpa81/_._",
  8537. "ref/xamarinios10/_._",
  8538. "ref/xamarinmac20/_._",
  8539. "ref/xamarintvos10/_._",
  8540. "ref/xamarinwatchos10/_._",
  8541. "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll",
  8542. "system.xml.xmlserializer.4.3.0.nupkg.sha512",
  8543. "system.xml.xmlserializer.nuspec"
  8544. ]
  8545. }
  8546. },
  8547. "projectFileDependencyGroups": {
  8548. ".NETCoreApp,Version=v3.1": [
  8549. "MQTTnet >= 4.1.2.350",
  8550. "MQTTnet.AspNetCore >= 4.1.2.350",
  8551. "Microsoft.EntityFrameworkCore.SqlServer >= 3.1.32",
  8552. "Microsoft.EntityFrameworkCore.Tools >= 3.1.32",
  8553. "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 3.1.5"
  8554. ]
  8555. },
  8556. "packageFolders": {
  8557. "D:\\ProgramData\\NugetPackage": {},
  8558. "d:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  8559. },
  8560. "project": {
  8561. "version": "1.0.0",
  8562. "restore": {
  8563. "projectUniqueName": "E:\\yszn\\Fine.OPCDaClient1027_vs2019\\Fine.OPCDaClient1027_vs2019\\YS.Smart.Ctl\\YS.Smart.Ctl.csproj",
  8564. "projectName": "YS.Smart.Ctl",
  8565. "projectPath": "E:\\yszn\\Fine.OPCDaClient1027_vs2019\\Fine.OPCDaClient1027_vs2019\\YS.Smart.Ctl\\YS.Smart.Ctl.csproj",
  8566. "packagesPath": "D:\\ProgramData\\NugetPackage",
  8567. "outputPath": "E:\\yszn\\Fine.OPCDaClient1027_vs2019\\Fine.OPCDaClient1027_vs2019\\YS.Smart.Ctl\\obj\\",
  8568. "projectStyle": "PackageReference",
  8569. "fallbackFolders": [
  8570. "d:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  8571. ],
  8572. "configFilePaths": [
  8573. "C:\\Users\\朱雄\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8574. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  8575. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  8576. ],
  8577. "originalTargetFrameworks": [
  8578. "netcoreapp3.1"
  8579. ],
  8580. "sources": {
  8581. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8582. "https://api.nuget.org/v3/index.json": {}
  8583. },
  8584. "frameworks": {
  8585. "netcoreapp3.1": {
  8586. "targetAlias": "netcoreapp3.1",
  8587. "projectReferences": {}
  8588. }
  8589. },
  8590. "warningProperties": {
  8591. "warnAsError": [
  8592. "NU1605"
  8593. ]
  8594. }
  8595. },
  8596. "frameworks": {
  8597. "netcoreapp3.1": {
  8598. "targetAlias": "netcoreapp3.1",
  8599. "dependencies": {
  8600. "MQTTnet": {
  8601. "target": "Package",
  8602. "version": "[4.1.2.350, )"
  8603. },
  8604. "MQTTnet.AspNetCore": {
  8605. "target": "Package",
  8606. "version": "[4.1.2.350, )"
  8607. },
  8608. "Microsoft.EntityFrameworkCore.SqlServer": {
  8609. "target": "Package",
  8610. "version": "[3.1.32, )"
  8611. },
  8612. "Microsoft.EntityFrameworkCore.Tools": {
  8613. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  8614. "suppressParent": "All",
  8615. "target": "Package",
  8616. "version": "[3.1.32, )"
  8617. },
  8618. "Microsoft.VisualStudio.Web.CodeGeneration.Design": {
  8619. "target": "Package",
  8620. "version": "[3.1.5, )"
  8621. }
  8622. },
  8623. "imports": [
  8624. "net461",
  8625. "net462",
  8626. "net47",
  8627. "net471",
  8628. "net472",
  8629. "net48"
  8630. ],
  8631. "assetTargetFallback": true,
  8632. "warn": true,
  8633. "frameworkReferences": {
  8634. "Microsoft.AspNetCore.App": {
  8635. "privateAssets": "none"
  8636. },
  8637. "Microsoft.NETCore.App": {
  8638. "privateAssets": "all"
  8639. }
  8640. },
  8641. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.416\\RuntimeIdentifierGraph.json"
  8642. }
  8643. }
  8644. }
  8645. }