project.assets.json 350 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETStandard,Version=v2.1": {
  5. "Exceptionless/4.3.2027": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
  9. "System.Reflection.Emit.Lightweight": "4.3.0"
  10. },
  11. "compile": {
  12. "lib/netstandard2.0/Exceptionless.dll": {
  13. "related": ".pdb;.xml"
  14. }
  15. },
  16. "runtime": {
  17. "lib/netstandard2.0/Exceptionless.dll": {
  18. "related": ".pdb;.xml"
  19. }
  20. }
  21. },
  22. "Microsoft.AspNetCore.Antiforgery/2.2.0": {
  23. "type": "package",
  24. "dependencies": {
  25. "Microsoft.AspNetCore.DataProtection": "2.2.0",
  26. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  27. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  28. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  29. "Microsoft.Extensions.ObjectPool": "2.2.0"
  30. },
  31. "compile": {
  32. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {
  33. "related": ".xml"
  34. }
  35. },
  36. "runtime": {
  37. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {
  38. "related": ".xml"
  39. }
  40. }
  41. },
  42. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  43. "type": "package",
  44. "dependencies": {
  45. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  46. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  47. "Microsoft.Extensions.Options": "2.2.0"
  48. },
  49. "compile": {
  50. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  51. "related": ".xml"
  52. }
  53. },
  54. "runtime": {
  55. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  56. "related": ".xml"
  57. }
  58. }
  59. },
  60. "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
  61. "type": "package",
  62. "dependencies": {
  63. "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
  64. "Microsoft.AspNetCore.Http": "2.2.0",
  65. "Microsoft.AspNetCore.Http.Extensions": "2.2.0"
  66. },
  67. "compile": {
  68. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
  69. "related": ".xml"
  70. }
  71. },
  72. "runtime": {
  73. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
  74. "related": ".xml"
  75. }
  76. }
  77. },
  78. "Microsoft.AspNetCore.Authorization/2.2.0": {
  79. "type": "package",
  80. "dependencies": {
  81. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  82. "Microsoft.Extensions.Options": "2.2.0"
  83. },
  84. "compile": {
  85. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  86. "related": ".xml"
  87. }
  88. },
  89. "runtime": {
  90. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  91. "related": ".xml"
  92. }
  93. }
  94. },
  95. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  96. "type": "package",
  97. "dependencies": {
  98. "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
  99. "Microsoft.AspNetCore.Authorization": "2.2.0"
  100. },
  101. "compile": {
  102. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  103. "related": ".xml"
  104. }
  105. },
  106. "runtime": {
  107. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  108. "related": ".xml"
  109. }
  110. }
  111. },
  112. "Microsoft.AspNetCore.Cors/2.2.0": {
  113. "type": "package",
  114. "dependencies": {
  115. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  116. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  117. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  118. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  119. "Microsoft.Extensions.Options": "2.2.0"
  120. },
  121. "compile": {
  122. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {
  123. "related": ".xml"
  124. }
  125. },
  126. "runtime": {
  127. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {
  128. "related": ".xml"
  129. }
  130. }
  131. },
  132. "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": {
  133. "type": "package",
  134. "compile": {
  135. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  136. "related": ".xml"
  137. }
  138. },
  139. "runtime": {
  140. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  141. "related": ".xml"
  142. }
  143. }
  144. },
  145. "Microsoft.AspNetCore.DataProtection/2.2.0": {
  146. "type": "package",
  147. "dependencies": {
  148. "Microsoft.AspNetCore.Cryptography.Internal": "2.2.0",
  149. "Microsoft.AspNetCore.DataProtection.Abstractions": "2.2.0",
  150. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  151. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  152. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  153. "Microsoft.Extensions.Options": "2.2.0",
  154. "Microsoft.Win32.Registry": "4.5.0",
  155. "System.Security.Cryptography.Xml": "4.5.0",
  156. "System.Security.Principal.Windows": "4.5.0"
  157. },
  158. "compile": {
  159. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {
  160. "related": ".xml"
  161. }
  162. },
  163. "runtime": {
  164. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {
  165. "related": ".xml"
  166. }
  167. }
  168. },
  169. "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": {
  170. "type": "package",
  171. "compile": {
  172. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  173. "related": ".xml"
  174. }
  175. },
  176. "runtime": {
  177. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  178. "related": ".xml"
  179. }
  180. }
  181. },
  182. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": {
  183. "type": "package",
  184. "compile": {
  185. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
  186. "related": ".xml"
  187. }
  188. },
  189. "runtime": {
  190. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
  191. "related": ".xml"
  192. }
  193. }
  194. },
  195. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  196. "type": "package",
  197. "dependencies": {
  198. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  199. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  200. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  201. },
  202. "compile": {
  203. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  204. "related": ".xml"
  205. }
  206. },
  207. "runtime": {
  208. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  209. "related": ".xml"
  210. }
  211. }
  212. },
  213. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  214. "type": "package",
  215. "dependencies": {
  216. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  217. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  218. },
  219. "compile": {
  220. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  221. "related": ".xml"
  222. }
  223. },
  224. "runtime": {
  225. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  226. "related": ".xml"
  227. }
  228. }
  229. },
  230. "Microsoft.AspNetCore.Html.Abstractions/2.2.0": {
  231. "type": "package",
  232. "dependencies": {
  233. "System.Text.Encodings.Web": "4.5.0"
  234. },
  235. "compile": {
  236. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {
  237. "related": ".xml"
  238. }
  239. },
  240. "runtime": {
  241. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {
  242. "related": ".xml"
  243. }
  244. }
  245. },
  246. "Microsoft.AspNetCore.Http/2.2.0": {
  247. "type": "package",
  248. "dependencies": {
  249. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  250. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  251. "Microsoft.Extensions.ObjectPool": "2.2.0",
  252. "Microsoft.Extensions.Options": "2.2.0",
  253. "Microsoft.Net.Http.Headers": "2.2.0"
  254. },
  255. "compile": {
  256. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  257. "related": ".xml"
  258. }
  259. },
  260. "runtime": {
  261. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  262. "related": ".xml"
  263. }
  264. }
  265. },
  266. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  267. "type": "package",
  268. "dependencies": {
  269. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  270. "System.Text.Encodings.Web": "4.5.0"
  271. },
  272. "compile": {
  273. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  274. "related": ".xml"
  275. }
  276. },
  277. "runtime": {
  278. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  279. "related": ".xml"
  280. }
  281. }
  282. },
  283. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  284. "type": "package",
  285. "dependencies": {
  286. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  287. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  288. "Microsoft.Net.Http.Headers": "2.2.0",
  289. "System.Buffers": "4.5.0"
  290. },
  291. "compile": {
  292. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  293. "related": ".xml"
  294. }
  295. },
  296. "runtime": {
  297. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  298. "related": ".xml"
  299. }
  300. }
  301. },
  302. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  303. "type": "package",
  304. "dependencies": {
  305. "Microsoft.Extensions.Primitives": "2.2.0"
  306. },
  307. "compile": {
  308. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  309. "related": ".xml"
  310. }
  311. },
  312. "runtime": {
  313. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  314. "related": ".xml"
  315. }
  316. }
  317. },
  318. "Microsoft.AspNetCore.JsonPatch/2.2.0": {
  319. "type": "package",
  320. "dependencies": {
  321. "Microsoft.CSharp": "4.5.0",
  322. "Newtonsoft.Json": "11.0.2"
  323. },
  324. "compile": {
  325. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  326. "related": ".xml"
  327. }
  328. },
  329. "runtime": {
  330. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  331. "related": ".xml"
  332. }
  333. }
  334. },
  335. "Microsoft.AspNetCore.Localization/2.2.0": {
  336. "type": "package",
  337. "dependencies": {
  338. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  339. "Microsoft.Extensions.Localization.Abstractions": "2.2.0",
  340. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  341. "Microsoft.Extensions.Options": "2.2.0"
  342. },
  343. "compile": {
  344. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {
  345. "related": ".xml"
  346. }
  347. },
  348. "runtime": {
  349. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {
  350. "related": ".xml"
  351. }
  352. }
  353. },
  354. "Microsoft.AspNetCore.Mvc/2.2.0": {
  355. "type": "package",
  356. "dependencies": {
  357. "Microsoft.AspNetCore.Mvc.Analyzers": "2.2.0",
  358. "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.2.0",
  359. "Microsoft.AspNetCore.Mvc.Cors": "2.2.0",
  360. "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.2.0",
  361. "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0",
  362. "Microsoft.AspNetCore.Mvc.Localization": "2.2.0",
  363. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0",
  364. "Microsoft.AspNetCore.Mvc.RazorPages": "2.2.0",
  365. "Microsoft.AspNetCore.Mvc.TagHelpers": "2.2.0",
  366. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0",
  367. "Microsoft.AspNetCore.Razor.Design": "2.2.0",
  368. "Microsoft.Extensions.Caching.Memory": "2.2.0",
  369. "Microsoft.Extensions.DependencyInjection": "2.2.0"
  370. },
  371. "compile": {
  372. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {
  373. "related": ".xml"
  374. }
  375. },
  376. "runtime": {
  377. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {
  378. "related": ".xml"
  379. }
  380. }
  381. },
  382. "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": {
  383. "type": "package",
  384. "dependencies": {
  385. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  386. "Microsoft.Net.Http.Headers": "2.2.0"
  387. },
  388. "compile": {
  389. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
  390. "related": ".xml"
  391. }
  392. },
  393. "runtime": {
  394. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
  395. "related": ".xml"
  396. }
  397. }
  398. },
  399. "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": {
  400. "type": "package"
  401. },
  402. "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": {
  403. "type": "package",
  404. "dependencies": {
  405. "Microsoft.AspNetCore.Mvc.Core": "2.2.0"
  406. },
  407. "compile": {
  408. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {
  409. "related": ".xml"
  410. }
  411. },
  412. "runtime": {
  413. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {
  414. "related": ".xml"
  415. }
  416. }
  417. },
  418. "Microsoft.AspNetCore.Mvc.Core/2.2.0": {
  419. "type": "package",
  420. "dependencies": {
  421. "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
  422. "Microsoft.AspNetCore.Authorization.Policy": "2.2.0",
  423. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  424. "Microsoft.AspNetCore.Http": "2.2.0",
  425. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  426. "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0",
  427. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0",
  428. "Microsoft.AspNetCore.Routing": "2.2.0",
  429. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  430. "Microsoft.Extensions.DependencyInjection": "2.2.0",
  431. "Microsoft.Extensions.DependencyModel": "2.1.0",
  432. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  433. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  434. "System.Diagnostics.DiagnosticSource": "4.5.0",
  435. "System.Threading.Tasks.Extensions": "4.5.1"
  436. },
  437. "compile": {
  438. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
  439. "related": ".xml"
  440. }
  441. },
  442. "runtime": {
  443. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
  444. "related": ".xml"
  445. }
  446. }
  447. },
  448. "Microsoft.AspNetCore.Mvc.Cors/2.2.0": {
  449. "type": "package",
  450. "dependencies": {
  451. "Microsoft.AspNetCore.Cors": "2.2.0",
  452. "Microsoft.AspNetCore.Mvc.Core": "2.2.0"
  453. },
  454. "compile": {
  455. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {
  456. "related": ".xml"
  457. }
  458. },
  459. "runtime": {
  460. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {
  461. "related": ".xml"
  462. }
  463. }
  464. },
  465. "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": {
  466. "type": "package",
  467. "dependencies": {
  468. "Microsoft.AspNetCore.Mvc.Core": "2.2.0",
  469. "Microsoft.Extensions.Localization": "2.2.0",
  470. "System.ComponentModel.Annotations": "4.5.0"
  471. },
  472. "compile": {
  473. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
  474. "related": ".xml"
  475. }
  476. },
  477. "runtime": {
  478. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
  479. "related": ".xml"
  480. }
  481. }
  482. },
  483. "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": {
  484. "type": "package",
  485. "dependencies": {
  486. "Microsoft.AspNetCore.JsonPatch": "2.2.0",
  487. "Microsoft.AspNetCore.Mvc.Core": "2.2.0"
  488. },
  489. "compile": {
  490. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
  491. "related": ".xml"
  492. }
  493. },
  494. "runtime": {
  495. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
  496. "related": ".xml"
  497. }
  498. }
  499. },
  500. "Microsoft.AspNetCore.Mvc.Localization/2.2.0": {
  501. "type": "package",
  502. "dependencies": {
  503. "Microsoft.AspNetCore.Localization": "2.2.0",
  504. "Microsoft.AspNetCore.Mvc.Razor": "2.2.0",
  505. "Microsoft.Extensions.DependencyInjection": "2.2.0",
  506. "Microsoft.Extensions.Localization": "2.2.0"
  507. },
  508. "compile": {
  509. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {
  510. "related": ".xml"
  511. }
  512. },
  513. "runtime": {
  514. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {
  515. "related": ".xml"
  516. }
  517. }
  518. },
  519. "Microsoft.AspNetCore.Mvc.Razor/2.2.0": {
  520. "type": "package",
  521. "dependencies": {
  522. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0",
  523. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0",
  524. "Microsoft.AspNetCore.Razor.Runtime": "2.2.0",
  525. "Microsoft.CodeAnalysis.CSharp": "2.8.0",
  526. "Microsoft.CodeAnalysis.Razor": "2.2.0",
  527. "Microsoft.Extensions.Caching.Memory": "2.2.0",
  528. "Microsoft.Extensions.FileProviders.Composite": "2.2.0"
  529. },
  530. "compile": {
  531. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {
  532. "related": ".xml"
  533. }
  534. },
  535. "runtime": {
  536. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {
  537. "related": ".xml"
  538. }
  539. }
  540. },
  541. "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": {
  542. "type": "package",
  543. "dependencies": {
  544. "Microsoft.AspNetCore.Razor.Language": "2.2.0",
  545. "Microsoft.CodeAnalysis.Razor": "2.2.0"
  546. },
  547. "compile": {
  548. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
  549. "related": ".xml"
  550. }
  551. },
  552. "runtime": {
  553. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
  554. "related": ".xml"
  555. }
  556. },
  557. "build": {
  558. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.props": {},
  559. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.targets": {}
  560. }
  561. },
  562. "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": {
  563. "type": "package",
  564. "dependencies": {
  565. "Microsoft.AspNetCore.Mvc.Razor": "2.2.0"
  566. },
  567. "compile": {
  568. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {
  569. "related": ".xml"
  570. }
  571. },
  572. "runtime": {
  573. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {
  574. "related": ".xml"
  575. }
  576. }
  577. },
  578. "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": {
  579. "type": "package",
  580. "dependencies": {
  581. "Microsoft.AspNetCore.Mvc.Razor": "2.2.0",
  582. "Microsoft.AspNetCore.Razor.Runtime": "2.2.0",
  583. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  584. "Microsoft.Extensions.Caching.Memory": "2.2.0",
  585. "Microsoft.Extensions.FileSystemGlobbing": "2.2.0",
  586. "Microsoft.Extensions.Primitives": "2.2.0"
  587. },
  588. "compile": {
  589. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
  590. "related": ".xml"
  591. }
  592. },
  593. "runtime": {
  594. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
  595. "related": ".xml"
  596. }
  597. }
  598. },
  599. "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": {
  600. "type": "package",
  601. "dependencies": {
  602. "Microsoft.AspNetCore.Antiforgery": "2.2.0",
  603. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.2.0",
  604. "Microsoft.AspNetCore.Html.Abstractions": "2.2.0",
  605. "Microsoft.AspNetCore.Mvc.Core": "2.2.0",
  606. "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.2.0",
  607. "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0",
  608. "Microsoft.Extensions.WebEncoders": "2.2.0",
  609. "Newtonsoft.Json.Bson": "1.0.1"
  610. },
  611. "compile": {
  612. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
  613. "related": ".xml"
  614. }
  615. },
  616. "runtime": {
  617. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
  618. "related": ".xml"
  619. }
  620. }
  621. },
  622. "Microsoft.AspNetCore.Razor/2.2.0": {
  623. "type": "package",
  624. "dependencies": {
  625. "Microsoft.AspNetCore.Html.Abstractions": "2.2.0"
  626. },
  627. "compile": {
  628. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {
  629. "related": ".xml"
  630. }
  631. },
  632. "runtime": {
  633. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {
  634. "related": ".xml"
  635. }
  636. }
  637. },
  638. "Microsoft.AspNetCore.Razor.Design/2.2.0": {
  639. "type": "package",
  640. "build": {
  641. "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.props": {}
  642. },
  643. "buildMultiTargeting": {
  644. "buildMultiTargeting/Microsoft.AspNetCore.Razor.Design.props": {}
  645. }
  646. },
  647. "Microsoft.AspNetCore.Razor.Language/2.2.0": {
  648. "type": "package",
  649. "compile": {
  650. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {
  651. "related": ".xml"
  652. }
  653. },
  654. "runtime": {
  655. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {
  656. "related": ".xml"
  657. }
  658. }
  659. },
  660. "Microsoft.AspNetCore.Razor.Runtime/2.2.0": {
  661. "type": "package",
  662. "dependencies": {
  663. "Microsoft.AspNetCore.Html.Abstractions": "2.2.0",
  664. "Microsoft.AspNetCore.Razor": "2.2.0"
  665. },
  666. "compile": {
  667. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {
  668. "related": ".xml"
  669. }
  670. },
  671. "runtime": {
  672. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {
  673. "related": ".xml"
  674. }
  675. }
  676. },
  677. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": {
  678. "type": "package",
  679. "dependencies": {
  680. "Microsoft.Extensions.Primitives": "2.2.0"
  681. },
  682. "compile": {
  683. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
  684. "related": ".xml"
  685. }
  686. },
  687. "runtime": {
  688. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
  689. "related": ".xml"
  690. }
  691. }
  692. },
  693. "Microsoft.AspNetCore.Routing/2.2.0": {
  694. "type": "package",
  695. "dependencies": {
  696. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  697. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  698. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  699. "Microsoft.Extensions.ObjectPool": "2.2.0",
  700. "Microsoft.Extensions.Options": "2.2.0"
  701. },
  702. "compile": {
  703. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll": {
  704. "related": ".xml"
  705. }
  706. },
  707. "runtime": {
  708. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll": {
  709. "related": ".xml"
  710. }
  711. }
  712. },
  713. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  714. "type": "package",
  715. "dependencies": {
  716. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
  717. },
  718. "compile": {
  719. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  720. "related": ".xml"
  721. }
  722. },
  723. "runtime": {
  724. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  725. "related": ".xml"
  726. }
  727. }
  728. },
  729. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  730. "type": "package",
  731. "dependencies": {
  732. "Microsoft.Net.Http.Headers": "2.2.0",
  733. "System.Text.Encodings.Web": "4.5.0"
  734. },
  735. "compile": {
  736. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  737. "related": ".xml"
  738. }
  739. },
  740. "runtime": {
  741. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  742. "related": ".xml"
  743. }
  744. }
  745. },
  746. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  747. "type": "package"
  748. },
  749. "Microsoft.CodeAnalysis.Common/2.8.0": {
  750. "type": "package",
  751. "dependencies": {
  752. "Microsoft.CodeAnalysis.Analyzers": "1.1.0",
  753. "System.AppContext": "4.3.0",
  754. "System.Collections": "4.3.0",
  755. "System.Collections.Concurrent": "4.3.0",
  756. "System.Collections.Immutable": "1.3.1",
  757. "System.Console": "4.3.0",
  758. "System.Diagnostics.Debug": "4.3.0",
  759. "System.Diagnostics.FileVersionInfo": "4.3.0",
  760. "System.Diagnostics.StackTrace": "4.3.0",
  761. "System.Diagnostics.Tools": "4.3.0",
  762. "System.Dynamic.Runtime": "4.3.0",
  763. "System.Globalization": "4.3.0",
  764. "System.IO.Compression": "4.3.0",
  765. "System.IO.FileSystem": "4.3.0",
  766. "System.IO.FileSystem.Primitives": "4.3.0",
  767. "System.Linq": "4.3.0",
  768. "System.Linq.Expressions": "4.3.0",
  769. "System.Reflection": "4.3.0",
  770. "System.Reflection.Metadata": "1.4.2",
  771. "System.Resources.ResourceManager": "4.3.0",
  772. "System.Runtime": "4.3.0",
  773. "System.Runtime.Extensions": "4.3.0",
  774. "System.Runtime.InteropServices": "4.3.0",
  775. "System.Runtime.Numerics": "4.3.0",
  776. "System.Security.Cryptography.Algorithms": "4.3.0",
  777. "System.Security.Cryptography.Encoding": "4.3.0",
  778. "System.Security.Cryptography.X509Certificates": "4.3.0",
  779. "System.Text.Encoding": "4.3.0",
  780. "System.Text.Encoding.CodePages": "4.3.0",
  781. "System.Text.Encoding.Extensions": "4.3.0",
  782. "System.Threading": "4.3.0",
  783. "System.Threading.Tasks": "4.3.0",
  784. "System.Threading.Tasks.Parallel": "4.3.0",
  785. "System.Threading.Thread": "4.3.0",
  786. "System.ValueTuple": "4.3.0",
  787. "System.Xml.ReaderWriter": "4.3.0",
  788. "System.Xml.XDocument": "4.3.0",
  789. "System.Xml.XPath.XDocument": "4.3.0",
  790. "System.Xml.XmlDocument": "4.3.0"
  791. },
  792. "compile": {
  793. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {
  794. "related": ".pdb;.xml"
  795. }
  796. },
  797. "runtime": {
  798. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {
  799. "related": ".pdb;.xml"
  800. }
  801. }
  802. },
  803. "Microsoft.CodeAnalysis.CSharp/2.8.0": {
  804. "type": "package",
  805. "dependencies": {
  806. "Microsoft.CodeAnalysis.Common": "[2.8.0]"
  807. },
  808. "compile": {
  809. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {
  810. "related": ".pdb;.xml"
  811. }
  812. },
  813. "runtime": {
  814. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {
  815. "related": ".pdb;.xml"
  816. }
  817. }
  818. },
  819. "Microsoft.CodeAnalysis.Razor/2.2.0": {
  820. "type": "package",
  821. "dependencies": {
  822. "Microsoft.AspNetCore.Razor.Language": "2.2.0",
  823. "Microsoft.CodeAnalysis.CSharp": "2.8.0",
  824. "Microsoft.CodeAnalysis.Common": "2.8.0"
  825. },
  826. "compile": {
  827. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {
  828. "related": ".xml"
  829. }
  830. },
  831. "runtime": {
  832. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {
  833. "related": ".xml"
  834. }
  835. }
  836. },
  837. "Microsoft.CSharp/4.5.0": {
  838. "type": "package",
  839. "compile": {
  840. "ref/netstandard2.0/Microsoft.CSharp.dll": {
  841. "related": ".xml"
  842. }
  843. },
  844. "runtime": {
  845. "lib/netstandard2.0/Microsoft.CSharp.dll": {}
  846. }
  847. },
  848. "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
  849. "type": "package",
  850. "dependencies": {
  851. "System.AppContext": "4.1.0",
  852. "System.Collections": "4.0.11",
  853. "System.IO": "4.1.0",
  854. "System.IO.FileSystem": "4.0.1",
  855. "System.Reflection.TypeExtensions": "4.1.0",
  856. "System.Runtime.Extensions": "4.1.0",
  857. "System.Runtime.InteropServices": "4.1.0",
  858. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
  859. },
  860. "compile": {
  861. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  862. },
  863. "runtime": {
  864. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  865. }
  866. },
  867. "Microsoft.Extensions.Caching.Abstractions/2.2.0": {
  868. "type": "package",
  869. "dependencies": {
  870. "Microsoft.Extensions.Primitives": "2.2.0"
  871. },
  872. "compile": {
  873. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  874. "related": ".xml"
  875. }
  876. },
  877. "runtime": {
  878. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  879. "related": ".xml"
  880. }
  881. }
  882. },
  883. "Microsoft.Extensions.Caching.Memory/2.2.0": {
  884. "type": "package",
  885. "dependencies": {
  886. "Microsoft.Extensions.Caching.Abstractions": "2.2.0",
  887. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  888. "Microsoft.Extensions.Options": "2.2.0"
  889. },
  890. "compile": {
  891. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  892. "related": ".xml"
  893. }
  894. },
  895. "runtime": {
  896. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  897. "related": ".xml"
  898. }
  899. }
  900. },
  901. "Microsoft.Extensions.Configuration/3.1.2": {
  902. "type": "package",
  903. "dependencies": {
  904. "Microsoft.Extensions.Configuration.Abstractions": "3.1.2"
  905. },
  906. "compile": {
  907. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  908. "related": ".xml"
  909. }
  910. },
  911. "runtime": {
  912. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  913. "related": ".xml"
  914. }
  915. }
  916. },
  917. "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
  918. "type": "package",
  919. "dependencies": {
  920. "Microsoft.Extensions.Primitives": "3.1.2"
  921. },
  922. "compile": {
  923. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  924. "related": ".xml"
  925. }
  926. },
  927. "runtime": {
  928. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  929. "related": ".xml"
  930. }
  931. }
  932. },
  933. "Microsoft.Extensions.Configuration.Binder/3.1.2": {
  934. "type": "package",
  935. "dependencies": {
  936. "Microsoft.Extensions.Configuration": "3.1.2"
  937. },
  938. "compile": {
  939. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  940. "related": ".xml"
  941. }
  942. },
  943. "runtime": {
  944. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  945. "related": ".xml"
  946. }
  947. }
  948. },
  949. "Microsoft.Extensions.DependencyInjection/3.1.2": {
  950. "type": "package",
  951. "dependencies": {
  952. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2"
  953. },
  954. "compile": {
  955. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  956. "related": ".xml"
  957. }
  958. },
  959. "runtime": {
  960. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  961. "related": ".xml"
  962. }
  963. }
  964. },
  965. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
  966. "type": "package",
  967. "compile": {
  968. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  969. "related": ".xml"
  970. }
  971. },
  972. "runtime": {
  973. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  974. "related": ".xml"
  975. }
  976. }
  977. },
  978. "Microsoft.Extensions.DependencyModel/2.1.0": {
  979. "type": "package",
  980. "dependencies": {
  981. "Microsoft.DotNet.PlatformAbstractions": "2.1.0",
  982. "Newtonsoft.Json": "9.0.1",
  983. "System.Diagnostics.Debug": "4.0.11",
  984. "System.Dynamic.Runtime": "4.0.11",
  985. "System.Linq": "4.1.0"
  986. },
  987. "compile": {
  988. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  989. },
  990. "runtime": {
  991. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  992. }
  993. },
  994. "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
  995. "type": "package",
  996. "dependencies": {
  997. "Microsoft.Extensions.Primitives": "2.2.0"
  998. },
  999. "compile": {
  1000. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1001. "related": ".xml"
  1002. }
  1003. },
  1004. "runtime": {
  1005. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1006. "related": ".xml"
  1007. }
  1008. }
  1009. },
  1010. "Microsoft.Extensions.FileProviders.Composite/2.2.0": {
  1011. "type": "package",
  1012. "dependencies": {
  1013. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0"
  1014. },
  1015. "compile": {
  1016. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  1017. "related": ".xml"
  1018. }
  1019. },
  1020. "runtime": {
  1021. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  1022. "related": ".xml"
  1023. }
  1024. }
  1025. },
  1026. "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
  1027. "type": "package",
  1028. "compile": {
  1029. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1030. "related": ".xml"
  1031. }
  1032. },
  1033. "runtime": {
  1034. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1035. "related": ".xml"
  1036. }
  1037. }
  1038. },
  1039. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  1040. "type": "package",
  1041. "dependencies": {
  1042. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  1043. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  1044. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  1045. "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
  1046. },
  1047. "compile": {
  1048. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1049. "related": ".xml"
  1050. }
  1051. },
  1052. "runtime": {
  1053. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1054. "related": ".xml"
  1055. }
  1056. }
  1057. },
  1058. "Microsoft.Extensions.Localization/2.2.0": {
  1059. "type": "package",
  1060. "dependencies": {
  1061. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  1062. "Microsoft.Extensions.Localization.Abstractions": "2.2.0",
  1063. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  1064. "Microsoft.Extensions.Options": "2.2.0"
  1065. },
  1066. "compile": {
  1067. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
  1068. "related": ".xml"
  1069. }
  1070. },
  1071. "runtime": {
  1072. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
  1073. "related": ".xml"
  1074. }
  1075. }
  1076. },
  1077. "Microsoft.Extensions.Localization.Abstractions/2.2.0": {
  1078. "type": "package",
  1079. "compile": {
  1080. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  1081. "related": ".xml"
  1082. }
  1083. },
  1084. "runtime": {
  1085. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  1086. "related": ".xml"
  1087. }
  1088. }
  1089. },
  1090. "Microsoft.Extensions.Logging/3.1.2": {
  1091. "type": "package",
  1092. "dependencies": {
  1093. "Microsoft.Extensions.Configuration.Binder": "3.1.2",
  1094. "Microsoft.Extensions.DependencyInjection": "3.1.2",
  1095. "Microsoft.Extensions.Logging.Abstractions": "3.1.2",
  1096. "Microsoft.Extensions.Options": "3.1.2"
  1097. },
  1098. "compile": {
  1099. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
  1100. "related": ".xml"
  1101. }
  1102. },
  1103. "runtime": {
  1104. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
  1105. "related": ".xml"
  1106. }
  1107. }
  1108. },
  1109. "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
  1110. "type": "package",
  1111. "compile": {
  1112. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1113. "related": ".xml"
  1114. }
  1115. },
  1116. "runtime": {
  1117. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1118. "related": ".xml"
  1119. }
  1120. }
  1121. },
  1122. "Microsoft.Extensions.ObjectPool/2.2.0": {
  1123. "type": "package",
  1124. "compile": {
  1125. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1126. "related": ".xml"
  1127. }
  1128. },
  1129. "runtime": {
  1130. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1131. "related": ".xml"
  1132. }
  1133. }
  1134. },
  1135. "Microsoft.Extensions.Options/3.1.2": {
  1136. "type": "package",
  1137. "dependencies": {
  1138. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.2",
  1139. "Microsoft.Extensions.Primitives": "3.1.2",
  1140. "System.ComponentModel.Annotations": "4.7.0"
  1141. },
  1142. "compile": {
  1143. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
  1144. "related": ".xml"
  1145. }
  1146. },
  1147. "runtime": {
  1148. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
  1149. "related": ".xml"
  1150. }
  1151. }
  1152. },
  1153. "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
  1154. "type": "package",
  1155. "dependencies": {
  1156. "NETStandard.Library": "1.6.1",
  1157. "System.Reflection.TypeExtensions": "4.3.0"
  1158. },
  1159. "compile": {
  1160. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {
  1161. "related": ".xml"
  1162. }
  1163. },
  1164. "runtime": {
  1165. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {
  1166. "related": ".xml"
  1167. }
  1168. }
  1169. },
  1170. "Microsoft.Extensions.Primitives/3.1.2": {
  1171. "type": "package",
  1172. "dependencies": {
  1173. "System.Memory": "4.5.2",
  1174. "System.Runtime.CompilerServices.Unsafe": "4.7.0"
  1175. },
  1176. "compile": {
  1177. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  1178. "related": ".xml"
  1179. }
  1180. },
  1181. "runtime": {
  1182. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  1183. "related": ".xml"
  1184. }
  1185. }
  1186. },
  1187. "Microsoft.Extensions.WebEncoders/2.2.0": {
  1188. "type": "package",
  1189. "dependencies": {
  1190. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  1191. "Microsoft.Extensions.Options": "2.2.0",
  1192. "System.Text.Encodings.Web": "4.5.0"
  1193. },
  1194. "compile": {
  1195. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
  1196. "related": ".xml"
  1197. }
  1198. },
  1199. "runtime": {
  1200. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
  1201. "related": ".xml"
  1202. }
  1203. }
  1204. },
  1205. "Microsoft.Net.Http.Headers/2.2.0": {
  1206. "type": "package",
  1207. "dependencies": {
  1208. "Microsoft.Extensions.Primitives": "2.2.0",
  1209. "System.Buffers": "4.5.0"
  1210. },
  1211. "compile": {
  1212. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1213. "related": ".xml"
  1214. }
  1215. },
  1216. "runtime": {
  1217. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1218. "related": ".xml"
  1219. }
  1220. }
  1221. },
  1222. "Microsoft.NETCore.Platforms/1.1.0": {
  1223. "type": "package",
  1224. "compile": {
  1225. "lib/netstandard1.0/_._": {}
  1226. },
  1227. "runtime": {
  1228. "lib/netstandard1.0/_._": {}
  1229. }
  1230. },
  1231. "Microsoft.NETCore.Targets/1.1.0": {
  1232. "type": "package",
  1233. "compile": {
  1234. "lib/netstandard1.0/_._": {}
  1235. },
  1236. "runtime": {
  1237. "lib/netstandard1.0/_._": {}
  1238. }
  1239. },
  1240. "Microsoft.Win32.Primitives/4.3.0": {
  1241. "type": "package",
  1242. "dependencies": {
  1243. "Microsoft.NETCore.Platforms": "1.1.0",
  1244. "Microsoft.NETCore.Targets": "1.1.0",
  1245. "System.Runtime": "4.3.0"
  1246. },
  1247. "compile": {
  1248. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1249. "related": ".xml"
  1250. }
  1251. }
  1252. },
  1253. "Microsoft.Win32.Registry/4.5.0": {
  1254. "type": "package",
  1255. "dependencies": {
  1256. "System.Buffers": "4.4.0",
  1257. "System.Memory": "4.5.0",
  1258. "System.Security.AccessControl": "4.5.0",
  1259. "System.Security.Principal.Windows": "4.5.0"
  1260. },
  1261. "compile": {
  1262. "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1263. "related": ".xml"
  1264. }
  1265. },
  1266. "runtime": {
  1267. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  1268. },
  1269. "runtimeTargets": {
  1270. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1271. "assetType": "runtime",
  1272. "rid": "unix"
  1273. },
  1274. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1275. "assetType": "runtime",
  1276. "rid": "win"
  1277. }
  1278. }
  1279. },
  1280. "NETStandard.Library/1.6.1": {
  1281. "type": "package",
  1282. "dependencies": {
  1283. "Microsoft.NETCore.Platforms": "1.1.0",
  1284. "Microsoft.Win32.Primitives": "4.3.0",
  1285. "System.AppContext": "4.3.0",
  1286. "System.Collections": "4.3.0",
  1287. "System.Collections.Concurrent": "4.3.0",
  1288. "System.Console": "4.3.0",
  1289. "System.Diagnostics.Debug": "4.3.0",
  1290. "System.Diagnostics.Tools": "4.3.0",
  1291. "System.Diagnostics.Tracing": "4.3.0",
  1292. "System.Globalization": "4.3.0",
  1293. "System.Globalization.Calendars": "4.3.0",
  1294. "System.IO": "4.3.0",
  1295. "System.IO.Compression": "4.3.0",
  1296. "System.IO.Compression.ZipFile": "4.3.0",
  1297. "System.IO.FileSystem": "4.3.0",
  1298. "System.IO.FileSystem.Primitives": "4.3.0",
  1299. "System.Linq": "4.3.0",
  1300. "System.Linq.Expressions": "4.3.0",
  1301. "System.Net.Http": "4.3.0",
  1302. "System.Net.Primitives": "4.3.0",
  1303. "System.Net.Sockets": "4.3.0",
  1304. "System.ObjectModel": "4.3.0",
  1305. "System.Reflection": "4.3.0",
  1306. "System.Reflection.Extensions": "4.3.0",
  1307. "System.Reflection.Primitives": "4.3.0",
  1308. "System.Resources.ResourceManager": "4.3.0",
  1309. "System.Runtime": "4.3.0",
  1310. "System.Runtime.Extensions": "4.3.0",
  1311. "System.Runtime.Handles": "4.3.0",
  1312. "System.Runtime.InteropServices": "4.3.0",
  1313. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1314. "System.Runtime.Numerics": "4.3.0",
  1315. "System.Security.Cryptography.Algorithms": "4.3.0",
  1316. "System.Security.Cryptography.Encoding": "4.3.0",
  1317. "System.Security.Cryptography.Primitives": "4.3.0",
  1318. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1319. "System.Text.Encoding": "4.3.0",
  1320. "System.Text.Encoding.Extensions": "4.3.0",
  1321. "System.Text.RegularExpressions": "4.3.0",
  1322. "System.Threading": "4.3.0",
  1323. "System.Threading.Tasks": "4.3.0",
  1324. "System.Threading.Timer": "4.3.0",
  1325. "System.Xml.ReaderWriter": "4.3.0",
  1326. "System.Xml.XDocument": "4.3.0"
  1327. }
  1328. },
  1329. "Newtonsoft.Json/11.0.2": {
  1330. "type": "package",
  1331. "compile": {
  1332. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1333. "related": ".xml"
  1334. }
  1335. },
  1336. "runtime": {
  1337. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1338. "related": ".xml"
  1339. }
  1340. }
  1341. },
  1342. "Newtonsoft.Json.Bson/1.0.1": {
  1343. "type": "package",
  1344. "dependencies": {
  1345. "NETStandard.Library": "1.6.1",
  1346. "Newtonsoft.Json": "10.0.1"
  1347. },
  1348. "compile": {
  1349. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
  1350. "related": ".xml"
  1351. }
  1352. },
  1353. "runtime": {
  1354. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
  1355. "related": ".xml"
  1356. }
  1357. }
  1358. },
  1359. "Polly/7.2.0": {
  1360. "type": "package",
  1361. "compile": {
  1362. "lib/netstandard2.0/Polly.dll": {
  1363. "related": ".pdb;.xml"
  1364. }
  1365. },
  1366. "runtime": {
  1367. "lib/netstandard2.0/Polly.dll": {
  1368. "related": ".pdb;.xml"
  1369. }
  1370. }
  1371. },
  1372. "RabbitMQ.Client/5.1.2": {
  1373. "type": "package",
  1374. "compile": {
  1375. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1376. "related": ".xml"
  1377. }
  1378. },
  1379. "runtime": {
  1380. "lib/netstandard2.0/RabbitMQ.Client.dll": {
  1381. "related": ".xml"
  1382. }
  1383. }
  1384. },
  1385. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1386. "type": "package",
  1387. "runtimeTargets": {
  1388. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1389. "assetType": "native",
  1390. "rid": "debian.8-x64"
  1391. }
  1392. }
  1393. },
  1394. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1395. "type": "package",
  1396. "runtimeTargets": {
  1397. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1398. "assetType": "native",
  1399. "rid": "fedora.23-x64"
  1400. }
  1401. }
  1402. },
  1403. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1404. "type": "package",
  1405. "runtimeTargets": {
  1406. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1407. "assetType": "native",
  1408. "rid": "fedora.24-x64"
  1409. }
  1410. }
  1411. },
  1412. "runtime.native.System/4.3.0": {
  1413. "type": "package",
  1414. "dependencies": {
  1415. "Microsoft.NETCore.Platforms": "1.1.0",
  1416. "Microsoft.NETCore.Targets": "1.1.0"
  1417. },
  1418. "compile": {
  1419. "lib/netstandard1.0/_._": {}
  1420. },
  1421. "runtime": {
  1422. "lib/netstandard1.0/_._": {}
  1423. }
  1424. },
  1425. "runtime.native.System.IO.Compression/4.3.0": {
  1426. "type": "package",
  1427. "dependencies": {
  1428. "Microsoft.NETCore.Platforms": "1.1.0",
  1429. "Microsoft.NETCore.Targets": "1.1.0"
  1430. },
  1431. "compile": {
  1432. "lib/netstandard1.0/_._": {}
  1433. },
  1434. "runtime": {
  1435. "lib/netstandard1.0/_._": {}
  1436. }
  1437. },
  1438. "runtime.native.System.Net.Http/4.3.0": {
  1439. "type": "package",
  1440. "dependencies": {
  1441. "Microsoft.NETCore.Platforms": "1.1.0",
  1442. "Microsoft.NETCore.Targets": "1.1.0"
  1443. },
  1444. "compile": {
  1445. "lib/netstandard1.0/_._": {}
  1446. },
  1447. "runtime": {
  1448. "lib/netstandard1.0/_._": {}
  1449. }
  1450. },
  1451. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1452. "type": "package",
  1453. "dependencies": {
  1454. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1455. },
  1456. "compile": {
  1457. "lib/netstandard1.0/_._": {}
  1458. },
  1459. "runtime": {
  1460. "lib/netstandard1.0/_._": {}
  1461. }
  1462. },
  1463. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1464. "type": "package",
  1465. "dependencies": {
  1466. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1467. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1468. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1469. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1470. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1471. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1472. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1473. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1474. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1475. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1476. },
  1477. "compile": {
  1478. "lib/netstandard1.0/_._": {}
  1479. },
  1480. "runtime": {
  1481. "lib/netstandard1.0/_._": {}
  1482. }
  1483. },
  1484. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1485. "type": "package",
  1486. "runtimeTargets": {
  1487. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1488. "assetType": "native",
  1489. "rid": "opensuse.13.2-x64"
  1490. }
  1491. }
  1492. },
  1493. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1494. "type": "package",
  1495. "runtimeTargets": {
  1496. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1497. "assetType": "native",
  1498. "rid": "opensuse.42.1-x64"
  1499. }
  1500. }
  1501. },
  1502. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1503. "type": "package",
  1504. "runtimeTargets": {
  1505. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1506. "assetType": "native",
  1507. "rid": "osx.10.10-x64"
  1508. }
  1509. }
  1510. },
  1511. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1512. "type": "package",
  1513. "runtimeTargets": {
  1514. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1515. "assetType": "native",
  1516. "rid": "osx.10.10-x64"
  1517. }
  1518. }
  1519. },
  1520. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1521. "type": "package",
  1522. "runtimeTargets": {
  1523. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1524. "assetType": "native",
  1525. "rid": "rhel.7-x64"
  1526. }
  1527. }
  1528. },
  1529. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1530. "type": "package",
  1531. "runtimeTargets": {
  1532. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1533. "assetType": "native",
  1534. "rid": "ubuntu.14.04-x64"
  1535. }
  1536. }
  1537. },
  1538. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1539. "type": "package",
  1540. "runtimeTargets": {
  1541. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1542. "assetType": "native",
  1543. "rid": "ubuntu.16.04-x64"
  1544. }
  1545. }
  1546. },
  1547. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1548. "type": "package",
  1549. "runtimeTargets": {
  1550. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1551. "assetType": "native",
  1552. "rid": "ubuntu.16.10-x64"
  1553. }
  1554. }
  1555. },
  1556. "Swifter.Core/1.2.9.6": {
  1557. "type": "package",
  1558. "dependencies": {
  1559. "Swifter.Unsafe": "1.0.9",
  1560. "System.Reflection.Emit": "4.3.0",
  1561. "System.Reflection.Emit.Lightweight": "4.3.0"
  1562. },
  1563. "compile": {
  1564. "lib/netstandard2.0/Swifter.Core.dll": {
  1565. "related": ".xml"
  1566. }
  1567. },
  1568. "runtime": {
  1569. "lib/netstandard2.0/Swifter.Core.dll": {
  1570. "related": ".xml"
  1571. }
  1572. }
  1573. },
  1574. "Swifter.Json/1.2.9.6": {
  1575. "type": "package",
  1576. "dependencies": {
  1577. "Swifter.Core": "1.2.9.6"
  1578. },
  1579. "compile": {
  1580. "lib/netstandard2.0/Swifter.Json.dll": {
  1581. "related": ".xml"
  1582. }
  1583. },
  1584. "runtime": {
  1585. "lib/netstandard2.0/Swifter.Json.dll": {
  1586. "related": ".xml"
  1587. }
  1588. }
  1589. },
  1590. "Swifter.Unsafe/1.0.9": {
  1591. "type": "package",
  1592. "compile": {
  1593. "lib/netstandard2.0/Swifter.Unsafe.dll": {}
  1594. },
  1595. "runtime": {
  1596. "lib/netstandard2.0/Swifter.Unsafe.dll": {}
  1597. }
  1598. },
  1599. "System.AppContext/4.3.0": {
  1600. "type": "package",
  1601. "dependencies": {
  1602. "System.Runtime": "4.3.0"
  1603. },
  1604. "compile": {
  1605. "ref/netstandard1.6/System.AppContext.dll": {
  1606. "related": ".xml"
  1607. }
  1608. },
  1609. "runtime": {
  1610. "lib/netstandard1.6/System.AppContext.dll": {}
  1611. }
  1612. },
  1613. "System.Buffers/4.5.0": {
  1614. "type": "package",
  1615. "compile": {
  1616. "ref/netstandard2.0/System.Buffers.dll": {
  1617. "related": ".xml"
  1618. }
  1619. },
  1620. "runtime": {
  1621. "lib/netstandard2.0/System.Buffers.dll": {
  1622. "related": ".xml"
  1623. }
  1624. }
  1625. },
  1626. "System.Collections/4.3.0": {
  1627. "type": "package",
  1628. "dependencies": {
  1629. "Microsoft.NETCore.Platforms": "1.1.0",
  1630. "Microsoft.NETCore.Targets": "1.1.0",
  1631. "System.Runtime": "4.3.0"
  1632. },
  1633. "compile": {
  1634. "ref/netstandard1.3/System.Collections.dll": {
  1635. "related": ".xml"
  1636. }
  1637. }
  1638. },
  1639. "System.Collections.Concurrent/4.3.0": {
  1640. "type": "package",
  1641. "dependencies": {
  1642. "System.Collections": "4.3.0",
  1643. "System.Diagnostics.Debug": "4.3.0",
  1644. "System.Diagnostics.Tracing": "4.3.0",
  1645. "System.Globalization": "4.3.0",
  1646. "System.Reflection": "4.3.0",
  1647. "System.Resources.ResourceManager": "4.3.0",
  1648. "System.Runtime": "4.3.0",
  1649. "System.Runtime.Extensions": "4.3.0",
  1650. "System.Threading": "4.3.0",
  1651. "System.Threading.Tasks": "4.3.0"
  1652. },
  1653. "compile": {
  1654. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1655. "related": ".xml"
  1656. }
  1657. },
  1658. "runtime": {
  1659. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1660. }
  1661. },
  1662. "System.Collections.Immutable/1.3.1": {
  1663. "type": "package",
  1664. "dependencies": {
  1665. "System.Collections": "4.3.0",
  1666. "System.Diagnostics.Debug": "4.3.0",
  1667. "System.Globalization": "4.3.0",
  1668. "System.Linq": "4.3.0",
  1669. "System.Resources.ResourceManager": "4.3.0",
  1670. "System.Runtime": "4.3.0",
  1671. "System.Runtime.Extensions": "4.3.0",
  1672. "System.Threading": "4.3.0"
  1673. },
  1674. "compile": {
  1675. "lib/netstandard1.0/System.Collections.Immutable.dll": {
  1676. "related": ".xml"
  1677. }
  1678. },
  1679. "runtime": {
  1680. "lib/netstandard1.0/System.Collections.Immutable.dll": {
  1681. "related": ".xml"
  1682. }
  1683. }
  1684. },
  1685. "System.ComponentModel.Annotations/4.7.0": {
  1686. "type": "package",
  1687. "compile": {
  1688. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1689. "related": ".xml"
  1690. }
  1691. },
  1692. "runtime": {
  1693. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1694. "related": ".xml"
  1695. }
  1696. }
  1697. },
  1698. "System.Console/4.3.0": {
  1699. "type": "package",
  1700. "dependencies": {
  1701. "Microsoft.NETCore.Platforms": "1.1.0",
  1702. "Microsoft.NETCore.Targets": "1.1.0",
  1703. "System.IO": "4.3.0",
  1704. "System.Runtime": "4.3.0",
  1705. "System.Text.Encoding": "4.3.0"
  1706. },
  1707. "compile": {
  1708. "ref/netstandard1.3/System.Console.dll": {
  1709. "related": ".xml"
  1710. }
  1711. }
  1712. },
  1713. "System.Diagnostics.Debug/4.3.0": {
  1714. "type": "package",
  1715. "dependencies": {
  1716. "Microsoft.NETCore.Platforms": "1.1.0",
  1717. "Microsoft.NETCore.Targets": "1.1.0",
  1718. "System.Runtime": "4.3.0"
  1719. },
  1720. "compile": {
  1721. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1722. "related": ".xml"
  1723. }
  1724. }
  1725. },
  1726. "System.Diagnostics.DiagnosticSource/4.5.0": {
  1727. "type": "package",
  1728. "compile": {
  1729. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  1730. "related": ".xml"
  1731. }
  1732. },
  1733. "runtime": {
  1734. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  1735. "related": ".xml"
  1736. }
  1737. }
  1738. },
  1739. "System.Diagnostics.FileVersionInfo/4.3.0": {
  1740. "type": "package",
  1741. "dependencies": {
  1742. "Microsoft.NETCore.Platforms": "1.1.0",
  1743. "System.Globalization": "4.3.0",
  1744. "System.IO": "4.3.0",
  1745. "System.IO.FileSystem": "4.3.0",
  1746. "System.IO.FileSystem.Primitives": "4.3.0",
  1747. "System.Reflection.Metadata": "1.4.1",
  1748. "System.Runtime": "4.3.0",
  1749. "System.Runtime.Extensions": "4.3.0",
  1750. "System.Runtime.InteropServices": "4.3.0"
  1751. },
  1752. "compile": {
  1753. "ref/netstandard1.3/_._": {
  1754. "related": ".xml"
  1755. }
  1756. },
  1757. "runtimeTargets": {
  1758. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
  1759. "assetType": "runtime",
  1760. "rid": "unix"
  1761. },
  1762. "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
  1763. "assetType": "runtime",
  1764. "rid": "win"
  1765. }
  1766. }
  1767. },
  1768. "System.Diagnostics.StackTrace/4.3.0": {
  1769. "type": "package",
  1770. "dependencies": {
  1771. "System.IO.FileSystem": "4.3.0",
  1772. "System.Reflection": "4.3.0",
  1773. "System.Reflection.Metadata": "1.4.1",
  1774. "System.Runtime": "4.3.0"
  1775. },
  1776. "compile": {
  1777. "ref/netstandard1.3/_._": {
  1778. "related": ".xml"
  1779. }
  1780. },
  1781. "runtime": {
  1782. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
  1783. }
  1784. },
  1785. "System.Diagnostics.Tools/4.3.0": {
  1786. "type": "package",
  1787. "dependencies": {
  1788. "Microsoft.NETCore.Platforms": "1.1.0",
  1789. "Microsoft.NETCore.Targets": "1.1.0",
  1790. "System.Runtime": "4.3.0"
  1791. },
  1792. "compile": {
  1793. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1794. "related": ".xml"
  1795. }
  1796. }
  1797. },
  1798. "System.Diagnostics.Tracing/4.3.0": {
  1799. "type": "package",
  1800. "dependencies": {
  1801. "Microsoft.NETCore.Platforms": "1.1.0",
  1802. "Microsoft.NETCore.Targets": "1.1.0",
  1803. "System.Runtime": "4.3.0"
  1804. },
  1805. "compile": {
  1806. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1807. "related": ".xml"
  1808. }
  1809. }
  1810. },
  1811. "System.Dynamic.Runtime/4.3.0": {
  1812. "type": "package",
  1813. "dependencies": {
  1814. "System.Collections": "4.3.0",
  1815. "System.Diagnostics.Debug": "4.3.0",
  1816. "System.Linq": "4.3.0",
  1817. "System.Linq.Expressions": "4.3.0",
  1818. "System.ObjectModel": "4.3.0",
  1819. "System.Reflection": "4.3.0",
  1820. "System.Reflection.Emit": "4.3.0",
  1821. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1822. "System.Reflection.Primitives": "4.3.0",
  1823. "System.Reflection.TypeExtensions": "4.3.0",
  1824. "System.Resources.ResourceManager": "4.3.0",
  1825. "System.Runtime": "4.3.0",
  1826. "System.Runtime.Extensions": "4.3.0",
  1827. "System.Threading": "4.3.0"
  1828. },
  1829. "compile": {
  1830. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  1831. "related": ".xml"
  1832. }
  1833. },
  1834. "runtime": {
  1835. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1836. }
  1837. },
  1838. "System.Globalization/4.3.0": {
  1839. "type": "package",
  1840. "dependencies": {
  1841. "Microsoft.NETCore.Platforms": "1.1.0",
  1842. "Microsoft.NETCore.Targets": "1.1.0",
  1843. "System.Runtime": "4.3.0"
  1844. },
  1845. "compile": {
  1846. "ref/netstandard1.3/System.Globalization.dll": {
  1847. "related": ".xml"
  1848. }
  1849. }
  1850. },
  1851. "System.Globalization.Calendars/4.3.0": {
  1852. "type": "package",
  1853. "dependencies": {
  1854. "Microsoft.NETCore.Platforms": "1.1.0",
  1855. "Microsoft.NETCore.Targets": "1.1.0",
  1856. "System.Globalization": "4.3.0",
  1857. "System.Runtime": "4.3.0"
  1858. },
  1859. "compile": {
  1860. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1861. "related": ".xml"
  1862. }
  1863. }
  1864. },
  1865. "System.Globalization.Extensions/4.3.0": {
  1866. "type": "package",
  1867. "dependencies": {
  1868. "Microsoft.NETCore.Platforms": "1.1.0",
  1869. "System.Globalization": "4.3.0",
  1870. "System.Resources.ResourceManager": "4.3.0",
  1871. "System.Runtime": "4.3.0",
  1872. "System.Runtime.Extensions": "4.3.0",
  1873. "System.Runtime.InteropServices": "4.3.0"
  1874. },
  1875. "compile": {
  1876. "ref/netstandard1.3/_._": {
  1877. "related": ".xml"
  1878. }
  1879. },
  1880. "runtimeTargets": {
  1881. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1882. "assetType": "runtime",
  1883. "rid": "unix"
  1884. },
  1885. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1886. "assetType": "runtime",
  1887. "rid": "win"
  1888. }
  1889. }
  1890. },
  1891. "System.IO/4.3.0": {
  1892. "type": "package",
  1893. "dependencies": {
  1894. "Microsoft.NETCore.Platforms": "1.1.0",
  1895. "Microsoft.NETCore.Targets": "1.1.0",
  1896. "System.Runtime": "4.3.0",
  1897. "System.Text.Encoding": "4.3.0",
  1898. "System.Threading.Tasks": "4.3.0"
  1899. },
  1900. "compile": {
  1901. "ref/netstandard1.5/System.IO.dll": {
  1902. "related": ".xml"
  1903. }
  1904. }
  1905. },
  1906. "System.IO.Compression/4.3.0": {
  1907. "type": "package",
  1908. "dependencies": {
  1909. "Microsoft.NETCore.Platforms": "1.1.0",
  1910. "System.Buffers": "4.3.0",
  1911. "System.Collections": "4.3.0",
  1912. "System.Diagnostics.Debug": "4.3.0",
  1913. "System.IO": "4.3.0",
  1914. "System.Resources.ResourceManager": "4.3.0",
  1915. "System.Runtime": "4.3.0",
  1916. "System.Runtime.Extensions": "4.3.0",
  1917. "System.Runtime.Handles": "4.3.0",
  1918. "System.Runtime.InteropServices": "4.3.0",
  1919. "System.Text.Encoding": "4.3.0",
  1920. "System.Threading": "4.3.0",
  1921. "System.Threading.Tasks": "4.3.0",
  1922. "runtime.native.System": "4.3.0",
  1923. "runtime.native.System.IO.Compression": "4.3.0"
  1924. },
  1925. "compile": {
  1926. "ref/netstandard1.3/System.IO.Compression.dll": {
  1927. "related": ".xml"
  1928. }
  1929. },
  1930. "runtimeTargets": {
  1931. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1932. "assetType": "runtime",
  1933. "rid": "unix"
  1934. },
  1935. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1936. "assetType": "runtime",
  1937. "rid": "win"
  1938. }
  1939. }
  1940. },
  1941. "System.IO.Compression.ZipFile/4.3.0": {
  1942. "type": "package",
  1943. "dependencies": {
  1944. "System.Buffers": "4.3.0",
  1945. "System.IO": "4.3.0",
  1946. "System.IO.Compression": "4.3.0",
  1947. "System.IO.FileSystem": "4.3.0",
  1948. "System.IO.FileSystem.Primitives": "4.3.0",
  1949. "System.Resources.ResourceManager": "4.3.0",
  1950. "System.Runtime": "4.3.0",
  1951. "System.Runtime.Extensions": "4.3.0",
  1952. "System.Text.Encoding": "4.3.0"
  1953. },
  1954. "compile": {
  1955. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1956. "related": ".xml"
  1957. }
  1958. },
  1959. "runtime": {
  1960. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1961. }
  1962. },
  1963. "System.IO.FileSystem/4.3.0": {
  1964. "type": "package",
  1965. "dependencies": {
  1966. "Microsoft.NETCore.Platforms": "1.1.0",
  1967. "Microsoft.NETCore.Targets": "1.1.0",
  1968. "System.IO": "4.3.0",
  1969. "System.IO.FileSystem.Primitives": "4.3.0",
  1970. "System.Runtime": "4.3.0",
  1971. "System.Runtime.Handles": "4.3.0",
  1972. "System.Text.Encoding": "4.3.0",
  1973. "System.Threading.Tasks": "4.3.0"
  1974. },
  1975. "compile": {
  1976. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1977. "related": ".xml"
  1978. }
  1979. }
  1980. },
  1981. "System.IO.FileSystem.Primitives/4.3.0": {
  1982. "type": "package",
  1983. "dependencies": {
  1984. "System.Runtime": "4.3.0"
  1985. },
  1986. "compile": {
  1987. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1988. "related": ".xml"
  1989. }
  1990. },
  1991. "runtime": {
  1992. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1993. }
  1994. },
  1995. "System.Linq/4.3.0": {
  1996. "type": "package",
  1997. "dependencies": {
  1998. "System.Collections": "4.3.0",
  1999. "System.Diagnostics.Debug": "4.3.0",
  2000. "System.Resources.ResourceManager": "4.3.0",
  2001. "System.Runtime": "4.3.0",
  2002. "System.Runtime.Extensions": "4.3.0"
  2003. },
  2004. "compile": {
  2005. "ref/netstandard1.6/System.Linq.dll": {
  2006. "related": ".xml"
  2007. }
  2008. },
  2009. "runtime": {
  2010. "lib/netstandard1.6/System.Linq.dll": {}
  2011. }
  2012. },
  2013. "System.Linq.Expressions/4.3.0": {
  2014. "type": "package",
  2015. "dependencies": {
  2016. "System.Collections": "4.3.0",
  2017. "System.Diagnostics.Debug": "4.3.0",
  2018. "System.Globalization": "4.3.0",
  2019. "System.IO": "4.3.0",
  2020. "System.Linq": "4.3.0",
  2021. "System.ObjectModel": "4.3.0",
  2022. "System.Reflection": "4.3.0",
  2023. "System.Reflection.Emit": "4.3.0",
  2024. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2025. "System.Reflection.Emit.Lightweight": "4.3.0",
  2026. "System.Reflection.Extensions": "4.3.0",
  2027. "System.Reflection.Primitives": "4.3.0",
  2028. "System.Reflection.TypeExtensions": "4.3.0",
  2029. "System.Resources.ResourceManager": "4.3.0",
  2030. "System.Runtime": "4.3.0",
  2031. "System.Runtime.Extensions": "4.3.0",
  2032. "System.Threading": "4.3.0"
  2033. },
  2034. "compile": {
  2035. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2036. "related": ".xml"
  2037. }
  2038. },
  2039. "runtime": {
  2040. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2041. }
  2042. },
  2043. "System.Memory/4.5.2": {
  2044. "type": "package",
  2045. "dependencies": {
  2046. "System.Buffers": "4.4.0",
  2047. "System.Numerics.Vectors": "4.4.0",
  2048. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2049. },
  2050. "compile": {
  2051. "lib/netstandard2.0/System.Memory.dll": {
  2052. "related": ".xml"
  2053. }
  2054. },
  2055. "runtime": {
  2056. "lib/netstandard2.0/System.Memory.dll": {
  2057. "related": ".xml"
  2058. }
  2059. }
  2060. },
  2061. "System.Net.Http/4.3.0": {
  2062. "type": "package",
  2063. "dependencies": {
  2064. "Microsoft.NETCore.Platforms": "1.1.0",
  2065. "System.Collections": "4.3.0",
  2066. "System.Diagnostics.Debug": "4.3.0",
  2067. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2068. "System.Diagnostics.Tracing": "4.3.0",
  2069. "System.Globalization": "4.3.0",
  2070. "System.Globalization.Extensions": "4.3.0",
  2071. "System.IO": "4.3.0",
  2072. "System.IO.FileSystem": "4.3.0",
  2073. "System.Net.Primitives": "4.3.0",
  2074. "System.Resources.ResourceManager": "4.3.0",
  2075. "System.Runtime": "4.3.0",
  2076. "System.Runtime.Extensions": "4.3.0",
  2077. "System.Runtime.Handles": "4.3.0",
  2078. "System.Runtime.InteropServices": "4.3.0",
  2079. "System.Security.Cryptography.Algorithms": "4.3.0",
  2080. "System.Security.Cryptography.Encoding": "4.3.0",
  2081. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2082. "System.Security.Cryptography.Primitives": "4.3.0",
  2083. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2084. "System.Text.Encoding": "4.3.0",
  2085. "System.Threading": "4.3.0",
  2086. "System.Threading.Tasks": "4.3.0",
  2087. "runtime.native.System": "4.3.0",
  2088. "runtime.native.System.Net.Http": "4.3.0",
  2089. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2090. },
  2091. "compile": {
  2092. "ref/netstandard1.3/System.Net.Http.dll": {
  2093. "related": ".xml"
  2094. }
  2095. },
  2096. "runtimeTargets": {
  2097. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2098. "assetType": "runtime",
  2099. "rid": "unix"
  2100. },
  2101. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2102. "assetType": "runtime",
  2103. "rid": "win"
  2104. }
  2105. }
  2106. },
  2107. "System.Net.Primitives/4.3.0": {
  2108. "type": "package",
  2109. "dependencies": {
  2110. "Microsoft.NETCore.Platforms": "1.1.0",
  2111. "Microsoft.NETCore.Targets": "1.1.0",
  2112. "System.Runtime": "4.3.0",
  2113. "System.Runtime.Handles": "4.3.0"
  2114. },
  2115. "compile": {
  2116. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2117. "related": ".xml"
  2118. }
  2119. }
  2120. },
  2121. "System.Net.Sockets/4.3.0": {
  2122. "type": "package",
  2123. "dependencies": {
  2124. "Microsoft.NETCore.Platforms": "1.1.0",
  2125. "Microsoft.NETCore.Targets": "1.1.0",
  2126. "System.IO": "4.3.0",
  2127. "System.Net.Primitives": "4.3.0",
  2128. "System.Runtime": "4.3.0",
  2129. "System.Threading.Tasks": "4.3.0"
  2130. },
  2131. "compile": {
  2132. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2133. "related": ".xml"
  2134. }
  2135. }
  2136. },
  2137. "System.Numerics.Vectors/4.4.0": {
  2138. "type": "package",
  2139. "compile": {
  2140. "ref/netstandard2.0/System.Numerics.Vectors.dll": {
  2141. "related": ".xml"
  2142. }
  2143. },
  2144. "runtime": {
  2145. "lib/netstandard2.0/System.Numerics.Vectors.dll": {
  2146. "related": ".xml"
  2147. }
  2148. }
  2149. },
  2150. "System.ObjectModel/4.3.0": {
  2151. "type": "package",
  2152. "dependencies": {
  2153. "System.Collections": "4.3.0",
  2154. "System.Diagnostics.Debug": "4.3.0",
  2155. "System.Resources.ResourceManager": "4.3.0",
  2156. "System.Runtime": "4.3.0",
  2157. "System.Threading": "4.3.0"
  2158. },
  2159. "compile": {
  2160. "ref/netstandard1.3/System.ObjectModel.dll": {
  2161. "related": ".xml"
  2162. }
  2163. },
  2164. "runtime": {
  2165. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2166. }
  2167. },
  2168. "System.Reflection/4.3.0": {
  2169. "type": "package",
  2170. "dependencies": {
  2171. "Microsoft.NETCore.Platforms": "1.1.0",
  2172. "Microsoft.NETCore.Targets": "1.1.0",
  2173. "System.IO": "4.3.0",
  2174. "System.Reflection.Primitives": "4.3.0",
  2175. "System.Runtime": "4.3.0"
  2176. },
  2177. "compile": {
  2178. "ref/netstandard1.5/System.Reflection.dll": {
  2179. "related": ".xml"
  2180. }
  2181. }
  2182. },
  2183. "System.Reflection.Emit/4.3.0": {
  2184. "type": "package",
  2185. "dependencies": {
  2186. "System.IO": "4.3.0",
  2187. "System.Reflection": "4.3.0",
  2188. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2189. "System.Reflection.Primitives": "4.3.0",
  2190. "System.Runtime": "4.3.0"
  2191. },
  2192. "compile": {
  2193. "ref/netstandard1.1/System.Reflection.Emit.dll": {
  2194. "related": ".xml"
  2195. }
  2196. },
  2197. "runtime": {
  2198. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2199. }
  2200. },
  2201. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2202. "type": "package",
  2203. "dependencies": {
  2204. "System.Reflection": "4.3.0",
  2205. "System.Reflection.Primitives": "4.3.0",
  2206. "System.Runtime": "4.3.0"
  2207. },
  2208. "compile": {
  2209. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
  2210. "related": ".xml"
  2211. }
  2212. },
  2213. "runtime": {
  2214. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2215. }
  2216. },
  2217. "System.Reflection.Emit.Lightweight/4.3.0": {
  2218. "type": "package",
  2219. "dependencies": {
  2220. "System.Reflection": "4.3.0",
  2221. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2222. "System.Reflection.Primitives": "4.3.0",
  2223. "System.Runtime": "4.3.0"
  2224. },
  2225. "compile": {
  2226. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
  2227. "related": ".xml"
  2228. }
  2229. },
  2230. "runtime": {
  2231. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2232. }
  2233. },
  2234. "System.Reflection.Extensions/4.3.0": {
  2235. "type": "package",
  2236. "dependencies": {
  2237. "Microsoft.NETCore.Platforms": "1.1.0",
  2238. "Microsoft.NETCore.Targets": "1.1.0",
  2239. "System.Reflection": "4.3.0",
  2240. "System.Runtime": "4.3.0"
  2241. },
  2242. "compile": {
  2243. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2244. "related": ".xml"
  2245. }
  2246. }
  2247. },
  2248. "System.Reflection.Metadata/1.4.2": {
  2249. "type": "package",
  2250. "dependencies": {
  2251. "System.Collections": "4.3.0",
  2252. "System.Collections.Immutable": "1.3.1",
  2253. "System.Diagnostics.Debug": "4.3.0",
  2254. "System.IO": "4.3.0",
  2255. "System.IO.Compression": "4.3.0",
  2256. "System.Linq": "4.3.0",
  2257. "System.Reflection": "4.3.0",
  2258. "System.Reflection.Extensions": "4.3.0",
  2259. "System.Reflection.Primitives": "4.3.0",
  2260. "System.Resources.ResourceManager": "4.3.0",
  2261. "System.Runtime": "4.3.0",
  2262. "System.Runtime.Extensions": "4.3.0",
  2263. "System.Runtime.InteropServices": "4.3.0",
  2264. "System.Text.Encoding": "4.3.0",
  2265. "System.Text.Encoding.Extensions": "4.3.0",
  2266. "System.Threading": "4.3.0"
  2267. },
  2268. "compile": {
  2269. "lib/netstandard1.1/System.Reflection.Metadata.dll": {
  2270. "related": ".xml"
  2271. }
  2272. },
  2273. "runtime": {
  2274. "lib/netstandard1.1/System.Reflection.Metadata.dll": {
  2275. "related": ".xml"
  2276. }
  2277. }
  2278. },
  2279. "System.Reflection.Primitives/4.3.0": {
  2280. "type": "package",
  2281. "dependencies": {
  2282. "Microsoft.NETCore.Platforms": "1.1.0",
  2283. "Microsoft.NETCore.Targets": "1.1.0",
  2284. "System.Runtime": "4.3.0"
  2285. },
  2286. "compile": {
  2287. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2288. "related": ".xml"
  2289. }
  2290. }
  2291. },
  2292. "System.Reflection.TypeExtensions/4.3.0": {
  2293. "type": "package",
  2294. "dependencies": {
  2295. "System.Reflection": "4.3.0",
  2296. "System.Runtime": "4.3.0"
  2297. },
  2298. "compile": {
  2299. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2300. "related": ".xml"
  2301. }
  2302. },
  2303. "runtime": {
  2304. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2305. }
  2306. },
  2307. "System.Resources.ResourceManager/4.3.0": {
  2308. "type": "package",
  2309. "dependencies": {
  2310. "Microsoft.NETCore.Platforms": "1.1.0",
  2311. "Microsoft.NETCore.Targets": "1.1.0",
  2312. "System.Globalization": "4.3.0",
  2313. "System.Reflection": "4.3.0",
  2314. "System.Runtime": "4.3.0"
  2315. },
  2316. "compile": {
  2317. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2318. "related": ".xml"
  2319. }
  2320. }
  2321. },
  2322. "System.Runtime/4.3.0": {
  2323. "type": "package",
  2324. "dependencies": {
  2325. "Microsoft.NETCore.Platforms": "1.1.0",
  2326. "Microsoft.NETCore.Targets": "1.1.0"
  2327. },
  2328. "compile": {
  2329. "ref/netstandard1.5/System.Runtime.dll": {
  2330. "related": ".xml"
  2331. }
  2332. }
  2333. },
  2334. "System.Runtime.CompilerServices.Unsafe/4.7.0": {
  2335. "type": "package",
  2336. "compile": {
  2337. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2338. "related": ".xml"
  2339. }
  2340. },
  2341. "runtime": {
  2342. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2343. "related": ".xml"
  2344. }
  2345. }
  2346. },
  2347. "System.Runtime.Extensions/4.3.0": {
  2348. "type": "package",
  2349. "dependencies": {
  2350. "Microsoft.NETCore.Platforms": "1.1.0",
  2351. "Microsoft.NETCore.Targets": "1.1.0",
  2352. "System.Runtime": "4.3.0"
  2353. },
  2354. "compile": {
  2355. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2356. "related": ".xml"
  2357. }
  2358. }
  2359. },
  2360. "System.Runtime.Handles/4.3.0": {
  2361. "type": "package",
  2362. "dependencies": {
  2363. "Microsoft.NETCore.Platforms": "1.1.0",
  2364. "Microsoft.NETCore.Targets": "1.1.0",
  2365. "System.Runtime": "4.3.0"
  2366. },
  2367. "compile": {
  2368. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2369. "related": ".xml"
  2370. }
  2371. }
  2372. },
  2373. "System.Runtime.InteropServices/4.3.0": {
  2374. "type": "package",
  2375. "dependencies": {
  2376. "Microsoft.NETCore.Platforms": "1.1.0",
  2377. "Microsoft.NETCore.Targets": "1.1.0",
  2378. "System.Reflection": "4.3.0",
  2379. "System.Reflection.Primitives": "4.3.0",
  2380. "System.Runtime": "4.3.0",
  2381. "System.Runtime.Handles": "4.3.0"
  2382. },
  2383. "compile": {
  2384. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {
  2385. "related": ".xml"
  2386. }
  2387. }
  2388. },
  2389. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2390. "type": "package",
  2391. "dependencies": {
  2392. "System.Reflection": "4.3.0",
  2393. "System.Reflection.Extensions": "4.3.0",
  2394. "System.Resources.ResourceManager": "4.3.0",
  2395. "System.Runtime": "4.3.0",
  2396. "System.Runtime.InteropServices": "4.3.0",
  2397. "System.Threading": "4.3.0",
  2398. "runtime.native.System": "4.3.0"
  2399. },
  2400. "compile": {
  2401. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2402. },
  2403. "runtime": {
  2404. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2405. },
  2406. "runtimeTargets": {
  2407. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2408. "assetType": "runtime",
  2409. "rid": "unix"
  2410. },
  2411. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2412. "assetType": "runtime",
  2413. "rid": "win"
  2414. }
  2415. }
  2416. },
  2417. "System.Runtime.Loader/4.3.0": {
  2418. "type": "package",
  2419. "dependencies": {
  2420. "System.IO": "4.3.0",
  2421. "System.Reflection": "4.3.0",
  2422. "System.Runtime": "4.3.0"
  2423. },
  2424. "compile": {
  2425. "ref/netstandard1.5/System.Runtime.Loader.dll": {
  2426. "related": ".xml"
  2427. }
  2428. },
  2429. "runtime": {
  2430. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  2431. }
  2432. },
  2433. "System.Runtime.Numerics/4.3.0": {
  2434. "type": "package",
  2435. "dependencies": {
  2436. "System.Globalization": "4.3.0",
  2437. "System.Resources.ResourceManager": "4.3.0",
  2438. "System.Runtime": "4.3.0",
  2439. "System.Runtime.Extensions": "4.3.0"
  2440. },
  2441. "compile": {
  2442. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2443. "related": ".xml"
  2444. }
  2445. },
  2446. "runtime": {
  2447. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2448. }
  2449. },
  2450. "System.Security.AccessControl/4.5.0": {
  2451. "type": "package",
  2452. "dependencies": {
  2453. "System.Security.Principal.Windows": "4.5.0"
  2454. },
  2455. "compile": {
  2456. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  2457. "related": ".xml"
  2458. }
  2459. },
  2460. "runtime": {
  2461. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  2462. },
  2463. "runtimeTargets": {
  2464. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll": {
  2465. "assetType": "runtime",
  2466. "rid": "win"
  2467. }
  2468. }
  2469. },
  2470. "System.Security.Cryptography.Algorithms/4.3.0": {
  2471. "type": "package",
  2472. "dependencies": {
  2473. "Microsoft.NETCore.Platforms": "1.1.0",
  2474. "System.Collections": "4.3.0",
  2475. "System.IO": "4.3.0",
  2476. "System.Resources.ResourceManager": "4.3.0",
  2477. "System.Runtime": "4.3.0",
  2478. "System.Runtime.Extensions": "4.3.0",
  2479. "System.Runtime.Handles": "4.3.0",
  2480. "System.Runtime.InteropServices": "4.3.0",
  2481. "System.Runtime.Numerics": "4.3.0",
  2482. "System.Security.Cryptography.Encoding": "4.3.0",
  2483. "System.Security.Cryptography.Primitives": "4.3.0",
  2484. "System.Text.Encoding": "4.3.0",
  2485. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2486. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2487. },
  2488. "compile": {
  2489. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2490. },
  2491. "runtimeTargets": {
  2492. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2493. "assetType": "runtime",
  2494. "rid": "osx"
  2495. },
  2496. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2497. "assetType": "runtime",
  2498. "rid": "unix"
  2499. },
  2500. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2501. "assetType": "runtime",
  2502. "rid": "win"
  2503. }
  2504. }
  2505. },
  2506. "System.Security.Cryptography.Cng/4.4.0": {
  2507. "type": "package",
  2508. "compile": {
  2509. "ref/netstandard2.0/_._": {
  2510. "related": ".xml"
  2511. }
  2512. },
  2513. "runtime": {
  2514. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll": {}
  2515. },
  2516. "runtimeTargets": {
  2517. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2518. "assetType": "runtime",
  2519. "rid": "win"
  2520. }
  2521. }
  2522. },
  2523. "System.Security.Cryptography.Csp/4.3.0": {
  2524. "type": "package",
  2525. "dependencies": {
  2526. "Microsoft.NETCore.Platforms": "1.1.0",
  2527. "System.IO": "4.3.0",
  2528. "System.Reflection": "4.3.0",
  2529. "System.Resources.ResourceManager": "4.3.0",
  2530. "System.Runtime": "4.3.0",
  2531. "System.Runtime.Extensions": "4.3.0",
  2532. "System.Runtime.Handles": "4.3.0",
  2533. "System.Runtime.InteropServices": "4.3.0",
  2534. "System.Security.Cryptography.Algorithms": "4.3.0",
  2535. "System.Security.Cryptography.Encoding": "4.3.0",
  2536. "System.Security.Cryptography.Primitives": "4.3.0",
  2537. "System.Text.Encoding": "4.3.0",
  2538. "System.Threading": "4.3.0"
  2539. },
  2540. "compile": {
  2541. "ref/netstandard1.3/_._": {}
  2542. },
  2543. "runtimeTargets": {
  2544. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2545. "assetType": "runtime",
  2546. "rid": "unix"
  2547. },
  2548. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2549. "assetType": "runtime",
  2550. "rid": "win"
  2551. }
  2552. }
  2553. },
  2554. "System.Security.Cryptography.Encoding/4.3.0": {
  2555. "type": "package",
  2556. "dependencies": {
  2557. "Microsoft.NETCore.Platforms": "1.1.0",
  2558. "System.Collections": "4.3.0",
  2559. "System.Collections.Concurrent": "4.3.0",
  2560. "System.Linq": "4.3.0",
  2561. "System.Resources.ResourceManager": "4.3.0",
  2562. "System.Runtime": "4.3.0",
  2563. "System.Runtime.Extensions": "4.3.0",
  2564. "System.Runtime.Handles": "4.3.0",
  2565. "System.Runtime.InteropServices": "4.3.0",
  2566. "System.Security.Cryptography.Primitives": "4.3.0",
  2567. "System.Text.Encoding": "4.3.0",
  2568. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2569. },
  2570. "compile": {
  2571. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2572. "related": ".xml"
  2573. }
  2574. },
  2575. "runtimeTargets": {
  2576. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2577. "assetType": "runtime",
  2578. "rid": "unix"
  2579. },
  2580. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2581. "assetType": "runtime",
  2582. "rid": "win"
  2583. }
  2584. }
  2585. },
  2586. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2587. "type": "package",
  2588. "dependencies": {
  2589. "System.Collections": "4.3.0",
  2590. "System.IO": "4.3.0",
  2591. "System.Resources.ResourceManager": "4.3.0",
  2592. "System.Runtime": "4.3.0",
  2593. "System.Runtime.Extensions": "4.3.0",
  2594. "System.Runtime.Handles": "4.3.0",
  2595. "System.Runtime.InteropServices": "4.3.0",
  2596. "System.Runtime.Numerics": "4.3.0",
  2597. "System.Security.Cryptography.Algorithms": "4.3.0",
  2598. "System.Security.Cryptography.Encoding": "4.3.0",
  2599. "System.Security.Cryptography.Primitives": "4.3.0",
  2600. "System.Text.Encoding": "4.3.0",
  2601. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2602. },
  2603. "compile": {
  2604. "ref/netstandard1.6/_._": {}
  2605. },
  2606. "runtime": {
  2607. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2608. },
  2609. "runtimeTargets": {
  2610. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2611. "assetType": "runtime",
  2612. "rid": "unix"
  2613. }
  2614. }
  2615. },
  2616. "System.Security.Cryptography.Pkcs/4.5.0": {
  2617. "type": "package",
  2618. "dependencies": {
  2619. "System.Buffers": "4.4.0",
  2620. "System.Memory": "4.5.0",
  2621. "System.Security.Cryptography.Cng": "4.4.0"
  2622. },
  2623. "compile": {
  2624. "ref/netstandard2.0/_._": {
  2625. "related": ".xml"
  2626. }
  2627. },
  2628. "runtime": {
  2629. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll": {}
  2630. },
  2631. "runtimeTargets": {
  2632. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll": {
  2633. "assetType": "runtime",
  2634. "rid": "win"
  2635. }
  2636. }
  2637. },
  2638. "System.Security.Cryptography.Primitives/4.3.0": {
  2639. "type": "package",
  2640. "dependencies": {
  2641. "System.Diagnostics.Debug": "4.3.0",
  2642. "System.Globalization": "4.3.0",
  2643. "System.IO": "4.3.0",
  2644. "System.Resources.ResourceManager": "4.3.0",
  2645. "System.Runtime": "4.3.0",
  2646. "System.Threading": "4.3.0",
  2647. "System.Threading.Tasks": "4.3.0"
  2648. },
  2649. "compile": {
  2650. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2651. },
  2652. "runtime": {
  2653. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2654. }
  2655. },
  2656. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2657. "type": "package",
  2658. "dependencies": {
  2659. "Microsoft.NETCore.Platforms": "1.1.0",
  2660. "System.Collections": "4.3.0",
  2661. "System.Diagnostics.Debug": "4.3.0",
  2662. "System.Globalization": "4.3.0",
  2663. "System.Globalization.Calendars": "4.3.0",
  2664. "System.IO": "4.3.0",
  2665. "System.IO.FileSystem": "4.3.0",
  2666. "System.IO.FileSystem.Primitives": "4.3.0",
  2667. "System.Resources.ResourceManager": "4.3.0",
  2668. "System.Runtime": "4.3.0",
  2669. "System.Runtime.Extensions": "4.3.0",
  2670. "System.Runtime.Handles": "4.3.0",
  2671. "System.Runtime.InteropServices": "4.3.0",
  2672. "System.Runtime.Numerics": "4.3.0",
  2673. "System.Security.Cryptography.Algorithms": "4.3.0",
  2674. "System.Security.Cryptography.Cng": "4.3.0",
  2675. "System.Security.Cryptography.Csp": "4.3.0",
  2676. "System.Security.Cryptography.Encoding": "4.3.0",
  2677. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2678. "System.Security.Cryptography.Primitives": "4.3.0",
  2679. "System.Text.Encoding": "4.3.0",
  2680. "System.Threading": "4.3.0",
  2681. "runtime.native.System": "4.3.0",
  2682. "runtime.native.System.Net.Http": "4.3.0",
  2683. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2684. },
  2685. "compile": {
  2686. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2687. "related": ".xml"
  2688. }
  2689. },
  2690. "runtimeTargets": {
  2691. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2692. "assetType": "runtime",
  2693. "rid": "unix"
  2694. },
  2695. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2696. "assetType": "runtime",
  2697. "rid": "win"
  2698. }
  2699. }
  2700. },
  2701. "System.Security.Cryptography.Xml/4.5.0": {
  2702. "type": "package",
  2703. "dependencies": {
  2704. "System.Security.Cryptography.Pkcs": "4.5.0",
  2705. "System.Security.Permissions": "4.5.0"
  2706. },
  2707. "compile": {
  2708. "ref/netstandard2.0/System.Security.Cryptography.Xml.dll": {
  2709. "related": ".xml"
  2710. }
  2711. },
  2712. "runtime": {
  2713. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {}
  2714. }
  2715. },
  2716. "System.Security.Permissions/4.5.0": {
  2717. "type": "package",
  2718. "dependencies": {
  2719. "System.Security.AccessControl": "4.5.0"
  2720. },
  2721. "compile": {
  2722. "ref/netstandard2.0/System.Security.Permissions.dll": {
  2723. "related": ".xml"
  2724. }
  2725. },
  2726. "runtime": {
  2727. "lib/netstandard2.0/System.Security.Permissions.dll": {}
  2728. }
  2729. },
  2730. "System.Security.Principal.Windows/4.5.0": {
  2731. "type": "package",
  2732. "compile": {
  2733. "ref/netstandard2.0/System.Security.Principal.Windows.dll": {
  2734. "related": ".xml"
  2735. }
  2736. },
  2737. "runtime": {
  2738. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2739. },
  2740. "runtimeTargets": {
  2741. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
  2742. "assetType": "runtime",
  2743. "rid": "win"
  2744. }
  2745. }
  2746. },
  2747. "System.Text.Encoding/4.3.0": {
  2748. "type": "package",
  2749. "dependencies": {
  2750. "Microsoft.NETCore.Platforms": "1.1.0",
  2751. "Microsoft.NETCore.Targets": "1.1.0",
  2752. "System.Runtime": "4.3.0"
  2753. },
  2754. "compile": {
  2755. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2756. "related": ".xml"
  2757. }
  2758. }
  2759. },
  2760. "System.Text.Encoding.CodePages/4.3.0": {
  2761. "type": "package",
  2762. "dependencies": {
  2763. "Microsoft.NETCore.Platforms": "1.1.0",
  2764. "System.Collections": "4.3.0",
  2765. "System.Globalization": "4.3.0",
  2766. "System.IO": "4.3.0",
  2767. "System.Reflection": "4.3.0",
  2768. "System.Resources.ResourceManager": "4.3.0",
  2769. "System.Runtime": "4.3.0",
  2770. "System.Runtime.Extensions": "4.3.0",
  2771. "System.Runtime.Handles": "4.3.0",
  2772. "System.Runtime.InteropServices": "4.3.0",
  2773. "System.Text.Encoding": "4.3.0",
  2774. "System.Threading": "4.3.0"
  2775. },
  2776. "compile": {
  2777. "ref/netstandard1.3/_._": {
  2778. "related": ".xml"
  2779. }
  2780. },
  2781. "runtimeTargets": {
  2782. "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
  2783. "assetType": "runtime",
  2784. "rid": "unix"
  2785. },
  2786. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
  2787. "assetType": "runtime",
  2788. "rid": "win"
  2789. }
  2790. }
  2791. },
  2792. "System.Text.Encoding.Extensions/4.3.0": {
  2793. "type": "package",
  2794. "dependencies": {
  2795. "Microsoft.NETCore.Platforms": "1.1.0",
  2796. "Microsoft.NETCore.Targets": "1.1.0",
  2797. "System.Runtime": "4.3.0",
  2798. "System.Text.Encoding": "4.3.0"
  2799. },
  2800. "compile": {
  2801. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2802. "related": ".xml"
  2803. }
  2804. }
  2805. },
  2806. "System.Text.Encodings.Web/4.5.0": {
  2807. "type": "package",
  2808. "compile": {
  2809. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2810. "related": ".xml"
  2811. }
  2812. },
  2813. "runtime": {
  2814. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2815. "related": ".xml"
  2816. }
  2817. }
  2818. },
  2819. "System.Text.RegularExpressions/4.3.0": {
  2820. "type": "package",
  2821. "dependencies": {
  2822. "System.Collections": "4.3.0",
  2823. "System.Globalization": "4.3.0",
  2824. "System.Resources.ResourceManager": "4.3.0",
  2825. "System.Runtime": "4.3.0",
  2826. "System.Runtime.Extensions": "4.3.0",
  2827. "System.Threading": "4.3.0"
  2828. },
  2829. "compile": {
  2830. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {
  2831. "related": ".xml"
  2832. }
  2833. },
  2834. "runtime": {
  2835. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2836. }
  2837. },
  2838. "System.Threading/4.3.0": {
  2839. "type": "package",
  2840. "dependencies": {
  2841. "System.Runtime": "4.3.0",
  2842. "System.Threading.Tasks": "4.3.0"
  2843. },
  2844. "compile": {
  2845. "ref/netstandard1.3/System.Threading.dll": {
  2846. "related": ".xml"
  2847. }
  2848. },
  2849. "runtime": {
  2850. "lib/netstandard1.3/System.Threading.dll": {}
  2851. }
  2852. },
  2853. "System.Threading.Tasks/4.3.0": {
  2854. "type": "package",
  2855. "dependencies": {
  2856. "Microsoft.NETCore.Platforms": "1.1.0",
  2857. "Microsoft.NETCore.Targets": "1.1.0",
  2858. "System.Runtime": "4.3.0"
  2859. },
  2860. "compile": {
  2861. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2862. "related": ".xml"
  2863. }
  2864. }
  2865. },
  2866. "System.Threading.Tasks.Extensions/4.5.1": {
  2867. "type": "package",
  2868. "dependencies": {
  2869. "System.Runtime.CompilerServices.Unsafe": "4.5.0"
  2870. },
  2871. "compile": {
  2872. "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
  2873. "related": ".xml"
  2874. }
  2875. },
  2876. "runtime": {
  2877. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
  2878. "related": ".xml"
  2879. }
  2880. }
  2881. },
  2882. "System.Threading.Tasks.Parallel/4.3.0": {
  2883. "type": "package",
  2884. "dependencies": {
  2885. "System.Collections.Concurrent": "4.3.0",
  2886. "System.Diagnostics.Debug": "4.3.0",
  2887. "System.Diagnostics.Tracing": "4.3.0",
  2888. "System.Resources.ResourceManager": "4.3.0",
  2889. "System.Runtime": "4.3.0",
  2890. "System.Runtime.Extensions": "4.3.0",
  2891. "System.Threading": "4.3.0",
  2892. "System.Threading.Tasks": "4.3.0"
  2893. },
  2894. "compile": {
  2895. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {
  2896. "related": ".xml"
  2897. }
  2898. },
  2899. "runtime": {
  2900. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
  2901. }
  2902. },
  2903. "System.Threading.Thread/4.3.0": {
  2904. "type": "package",
  2905. "dependencies": {
  2906. "System.Runtime": "4.3.0"
  2907. },
  2908. "compile": {
  2909. "ref/netstandard1.3/_._": {
  2910. "related": ".xml"
  2911. }
  2912. },
  2913. "runtime": {
  2914. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2915. }
  2916. },
  2917. "System.Threading.Timer/4.3.0": {
  2918. "type": "package",
  2919. "dependencies": {
  2920. "Microsoft.NETCore.Platforms": "1.1.0",
  2921. "Microsoft.NETCore.Targets": "1.1.0",
  2922. "System.Runtime": "4.3.0"
  2923. },
  2924. "compile": {
  2925. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2926. "related": ".xml"
  2927. }
  2928. }
  2929. },
  2930. "System.ValueTuple/4.3.0": {
  2931. "type": "package",
  2932. "dependencies": {
  2933. "System.Collections": "4.3.0",
  2934. "System.Resources.ResourceManager": "4.3.0",
  2935. "System.Runtime": "4.3.0"
  2936. },
  2937. "compile": {
  2938. "lib/netstandard1.0/System.ValueTuple.dll": {}
  2939. },
  2940. "runtime": {
  2941. "lib/netstandard1.0/System.ValueTuple.dll": {}
  2942. }
  2943. },
  2944. "System.Xml.ReaderWriter/4.3.0": {
  2945. "type": "package",
  2946. "dependencies": {
  2947. "System.Collections": "4.3.0",
  2948. "System.Diagnostics.Debug": "4.3.0",
  2949. "System.Globalization": "4.3.0",
  2950. "System.IO": "4.3.0",
  2951. "System.IO.FileSystem": "4.3.0",
  2952. "System.IO.FileSystem.Primitives": "4.3.0",
  2953. "System.Resources.ResourceManager": "4.3.0",
  2954. "System.Runtime": "4.3.0",
  2955. "System.Runtime.Extensions": "4.3.0",
  2956. "System.Runtime.InteropServices": "4.3.0",
  2957. "System.Text.Encoding": "4.3.0",
  2958. "System.Text.Encoding.Extensions": "4.3.0",
  2959. "System.Text.RegularExpressions": "4.3.0",
  2960. "System.Threading.Tasks": "4.3.0",
  2961. "System.Threading.Tasks.Extensions": "4.3.0"
  2962. },
  2963. "compile": {
  2964. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2965. "related": ".xml"
  2966. }
  2967. },
  2968. "runtime": {
  2969. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2970. }
  2971. },
  2972. "System.Xml.XDocument/4.3.0": {
  2973. "type": "package",
  2974. "dependencies": {
  2975. "System.Collections": "4.3.0",
  2976. "System.Diagnostics.Debug": "4.3.0",
  2977. "System.Diagnostics.Tools": "4.3.0",
  2978. "System.Globalization": "4.3.0",
  2979. "System.IO": "4.3.0",
  2980. "System.Reflection": "4.3.0",
  2981. "System.Resources.ResourceManager": "4.3.0",
  2982. "System.Runtime": "4.3.0",
  2983. "System.Runtime.Extensions": "4.3.0",
  2984. "System.Text.Encoding": "4.3.0",
  2985. "System.Threading": "4.3.0",
  2986. "System.Xml.ReaderWriter": "4.3.0"
  2987. },
  2988. "compile": {
  2989. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2990. "related": ".xml"
  2991. }
  2992. },
  2993. "runtime": {
  2994. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2995. }
  2996. },
  2997. "System.Xml.XmlDocument/4.3.0": {
  2998. "type": "package",
  2999. "dependencies": {
  3000. "System.Collections": "4.3.0",
  3001. "System.Diagnostics.Debug": "4.3.0",
  3002. "System.Globalization": "4.3.0",
  3003. "System.IO": "4.3.0",
  3004. "System.Resources.ResourceManager": "4.3.0",
  3005. "System.Runtime": "4.3.0",
  3006. "System.Runtime.Extensions": "4.3.0",
  3007. "System.Text.Encoding": "4.3.0",
  3008. "System.Threading": "4.3.0",
  3009. "System.Xml.ReaderWriter": "4.3.0"
  3010. },
  3011. "compile": {
  3012. "ref/netstandard1.3/_._": {
  3013. "related": ".xml"
  3014. }
  3015. },
  3016. "runtime": {
  3017. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3018. }
  3019. },
  3020. "System.Xml.XPath/4.3.0": {
  3021. "type": "package",
  3022. "dependencies": {
  3023. "System.Collections": "4.3.0",
  3024. "System.Diagnostics.Debug": "4.3.0",
  3025. "System.Globalization": "4.3.0",
  3026. "System.IO": "4.3.0",
  3027. "System.Resources.ResourceManager": "4.3.0",
  3028. "System.Runtime": "4.3.0",
  3029. "System.Runtime.Extensions": "4.3.0",
  3030. "System.Threading": "4.3.0",
  3031. "System.Xml.ReaderWriter": "4.3.0"
  3032. },
  3033. "compile": {
  3034. "ref/netstandard1.3/_._": {
  3035. "related": ".xml"
  3036. }
  3037. },
  3038. "runtime": {
  3039. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  3040. }
  3041. },
  3042. "System.Xml.XPath.XDocument/4.3.0": {
  3043. "type": "package",
  3044. "dependencies": {
  3045. "System.Diagnostics.Debug": "4.3.0",
  3046. "System.Linq": "4.3.0",
  3047. "System.Resources.ResourceManager": "4.3.0",
  3048. "System.Runtime": "4.3.0",
  3049. "System.Runtime.Extensions": "4.3.0",
  3050. "System.Threading": "4.3.0",
  3051. "System.Xml.ReaderWriter": "4.3.0",
  3052. "System.Xml.XDocument": "4.3.0",
  3053. "System.Xml.XPath": "4.3.0"
  3054. },
  3055. "compile": {
  3056. "ref/netstandard1.3/_._": {
  3057. "related": ".xml"
  3058. }
  3059. },
  3060. "runtime": {
  3061. "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {}
  3062. }
  3063. },
  3064. "Core.RabbitMQBus.Common/1.0.0": {
  3065. "type": "project",
  3066. "framework": ".NETStandard,Version=v2.1",
  3067. "compile": {
  3068. "bin/placeholder/Core.RabbitMQBus.Common.dll": {}
  3069. },
  3070. "runtime": {
  3071. "bin/placeholder/Core.RabbitMQBus.Common.dll": {}
  3072. }
  3073. }
  3074. }
  3075. },
  3076. "libraries": {
  3077. "Exceptionless/4.3.2027": {
  3078. "sha512": "b+XSF/qEmiMbUyAaO42kfbBBMmbFGaKsUoXyfiQ9uY3rVqk5cP49KN3U3G14yESg2404TaktcWseJ3TG5ch+3g==",
  3079. "type": "package",
  3080. "path": "exceptionless/4.3.2027",
  3081. "hasTools": true,
  3082. "files": [
  3083. ".nupkg.metadata",
  3084. ".signature.p7s",
  3085. "exceptionless.4.3.2027.nupkg.sha512",
  3086. "exceptionless.nuspec",
  3087. "lib/net45/Exceptionless.dll",
  3088. "lib/net45/Exceptionless.pdb",
  3089. "lib/net45/Exceptionless.xml",
  3090. "lib/netstandard1.2/Exceptionless.dll",
  3091. "lib/netstandard1.2/Exceptionless.pdb",
  3092. "lib/netstandard1.2/Exceptionless.xml",
  3093. "lib/netstandard1.3/Exceptionless.dll",
  3094. "lib/netstandard1.3/Exceptionless.pdb",
  3095. "lib/netstandard1.3/Exceptionless.xml",
  3096. "lib/netstandard1.4/Exceptionless.dll",
  3097. "lib/netstandard1.4/Exceptionless.pdb",
  3098. "lib/netstandard1.4/Exceptionless.xml",
  3099. "lib/netstandard1.5/Exceptionless.dll",
  3100. "lib/netstandard1.5/Exceptionless.pdb",
  3101. "lib/netstandard1.5/Exceptionless.xml",
  3102. "lib/netstandard2.0/Exceptionless.dll",
  3103. "lib/netstandard2.0/Exceptionless.pdb",
  3104. "lib/netstandard2.0/Exceptionless.xml",
  3105. "lib/portable46-net451+win81+wpa81/Exceptionless.dll",
  3106. "lib/portable46-net451+win81+wpa81/Exceptionless.pdb",
  3107. "lib/portable46-net451+win81+wpa81/Exceptionless.xml",
  3108. "readme.txt",
  3109. "tools/exceptionless.psm1",
  3110. "tools/install.ps1",
  3111. "tools/uninstall.ps1"
  3112. ]
  3113. },
  3114. "Microsoft.AspNetCore.Antiforgery/2.2.0": {
  3115. "sha512": "fVQsSXNZz38Ysx8iKwwqfOLHhLrAeKEMBS5Ia3Lh7BJjOC2vPV28/yk08AovOMsB3SNQPGnE7bv+lsIBTmAkvw==",
  3116. "type": "package",
  3117. "path": "microsoft.aspnetcore.antiforgery/2.2.0",
  3118. "files": [
  3119. ".nupkg.metadata",
  3120. ".signature.p7s",
  3121. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll",
  3122. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.xml",
  3123. "microsoft.aspnetcore.antiforgery.2.2.0.nupkg.sha512",
  3124. "microsoft.aspnetcore.antiforgery.nuspec"
  3125. ]
  3126. },
  3127. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  3128. "sha512": "VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==",
  3129. "type": "package",
  3130. "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0",
  3131. "files": [
  3132. ".nupkg.metadata",
  3133. ".signature.p7s",
  3134. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll",
  3135. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml",
  3136. "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512",
  3137. "microsoft.aspnetcore.authentication.abstractions.nuspec"
  3138. ]
  3139. },
  3140. "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
  3141. "sha512": "XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==",
  3142. "type": "package",
  3143. "path": "microsoft.aspnetcore.authentication.core/2.2.0",
  3144. "files": [
  3145. ".nupkg.metadata",
  3146. ".signature.p7s",
  3147. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll",
  3148. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml",
  3149. "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512",
  3150. "microsoft.aspnetcore.authentication.core.nuspec"
  3151. ]
  3152. },
  3153. "Microsoft.AspNetCore.Authorization/2.2.0": {
  3154. "sha512": "/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==",
  3155. "type": "package",
  3156. "path": "microsoft.aspnetcore.authorization/2.2.0",
  3157. "files": [
  3158. ".nupkg.metadata",
  3159. ".signature.p7s",
  3160. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
  3161. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
  3162. "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512",
  3163. "microsoft.aspnetcore.authorization.nuspec"
  3164. ]
  3165. },
  3166. "Microsoft.AspNetCore.Authorization.Policy/2.2.0": {
  3167. "sha512": "aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==",
  3168. "type": "package",
  3169. "path": "microsoft.aspnetcore.authorization.policy/2.2.0",
  3170. "files": [
  3171. ".nupkg.metadata",
  3172. ".signature.p7s",
  3173. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll",
  3174. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml",
  3175. "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512",
  3176. "microsoft.aspnetcore.authorization.policy.nuspec"
  3177. ]
  3178. },
  3179. "Microsoft.AspNetCore.Cors/2.2.0": {
  3180. "sha512": "LFlTM3ThS3ZCILuKnjy8HyK9/IlDh3opogdbCVx6tMGyDzTQBgMPXLjGDLtMk5QmLDCcP3l1TO3z/+1viA8GUg==",
  3181. "type": "package",
  3182. "path": "microsoft.aspnetcore.cors/2.2.0",
  3183. "files": [
  3184. ".nupkg.metadata",
  3185. ".signature.p7s",
  3186. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll",
  3187. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.xml",
  3188. "microsoft.aspnetcore.cors.2.2.0.nupkg.sha512",
  3189. "microsoft.aspnetcore.cors.nuspec"
  3190. ]
  3191. },
  3192. "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": {
  3193. "sha512": "GXmMD8/vuTLPLvKzKEPz/4vapC5e0cwx1tUVd83ePRyWF9CCrn/pg4/1I+tGkQqFLPvi3nlI2QtPtC6MQN8Nww==",
  3194. "type": "package",
  3195. "path": "microsoft.aspnetcore.cryptography.internal/2.2.0",
  3196. "files": [
  3197. ".nupkg.metadata",
  3198. ".signature.p7s",
  3199. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3200. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3201. "microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512",
  3202. "microsoft.aspnetcore.cryptography.internal.nuspec"
  3203. ]
  3204. },
  3205. "Microsoft.AspNetCore.DataProtection/2.2.0": {
  3206. "sha512": "G6dvu5Nd2vjpYbzazZ//qBFbSEf2wmBUbyAR7E4AwO3gWjhoJD5YxpThcGJb7oE3VUcW65SVMXT+cPCiiBg8Sg==",
  3207. "type": "package",
  3208. "path": "microsoft.aspnetcore.dataprotection/2.2.0",
  3209. "files": [
  3210. ".nupkg.metadata",
  3211. ".signature.p7s",
  3212. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll",
  3213. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml",
  3214. "microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512",
  3215. "microsoft.aspnetcore.dataprotection.nuspec"
  3216. ]
  3217. },
  3218. "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": {
  3219. "sha512": "seANFXmp8mb5Y12m1ShiElJ3ZdOT3mBN3wA1GPhHJIvZ/BxOCPyqEOR+810OWsxEZwA5r5fDRNpG/CqiJmQnJg==",
  3220. "type": "package",
  3221. "path": "microsoft.aspnetcore.dataprotection.abstractions/2.2.0",
  3222. "files": [
  3223. ".nupkg.metadata",
  3224. ".signature.p7s",
  3225. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  3226. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  3227. "microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512",
  3228. "microsoft.aspnetcore.dataprotection.abstractions.nuspec"
  3229. ]
  3230. },
  3231. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": {
  3232. "sha512": "pva9ggfUDtnJIKzv0+wxwTX7LduDx6xLSpMqWwdOJkW52L0t31PI78+v+WqqMpUtMzcKug24jGs3nTFpAmA/2g==",
  3233. "type": "package",
  3234. "path": "microsoft.aspnetcore.diagnostics.abstractions/2.2.0",
  3235. "files": [
  3236. ".nupkg.metadata",
  3237. ".signature.p7s",
  3238. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
  3239. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml",
  3240. "microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512",
  3241. "microsoft.aspnetcore.diagnostics.abstractions.nuspec"
  3242. ]
  3243. },
  3244. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  3245. "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  3246. "type": "package",
  3247. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  3248. "files": [
  3249. ".nupkg.metadata",
  3250. ".signature.p7s",
  3251. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  3252. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  3253. "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
  3254. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  3255. ]
  3256. },
  3257. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  3258. "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  3259. "type": "package",
  3260. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  3261. "files": [
  3262. ".nupkg.metadata",
  3263. ".signature.p7s",
  3264. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  3265. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  3266. "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
  3267. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  3268. ]
  3269. },
  3270. "Microsoft.AspNetCore.Html.Abstractions/2.2.0": {
  3271. "sha512": "Y4rs5aMEXY8G7wJo5S3EEt6ltqyOTr/qOeZzfn+hw/fuQj5GppGckMY5psGLETo1U9hcT5MmAhaT5xtusM1b5g==",
  3272. "type": "package",
  3273. "path": "microsoft.aspnetcore.html.abstractions/2.2.0",
  3274. "files": [
  3275. ".nupkg.metadata",
  3276. ".signature.p7s",
  3277. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll",
  3278. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.xml",
  3279. "microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512",
  3280. "microsoft.aspnetcore.html.abstractions.nuspec"
  3281. ]
  3282. },
  3283. "Microsoft.AspNetCore.Http/2.2.0": {
  3284. "sha512": "YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==",
  3285. "type": "package",
  3286. "path": "microsoft.aspnetcore.http/2.2.0",
  3287. "files": [
  3288. ".nupkg.metadata",
  3289. ".signature.p7s",
  3290. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll",
  3291. "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml",
  3292. "microsoft.aspnetcore.http.2.2.0.nupkg.sha512",
  3293. "microsoft.aspnetcore.http.nuspec"
  3294. ]
  3295. },
  3296. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3297. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3298. "type": "package",
  3299. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3300. "files": [
  3301. ".nupkg.metadata",
  3302. ".signature.p7s",
  3303. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3304. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3305. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3306. "microsoft.aspnetcore.http.abstractions.nuspec"
  3307. ]
  3308. },
  3309. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  3310. "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
  3311. "type": "package",
  3312. "path": "microsoft.aspnetcore.http.extensions/2.2.0",
  3313. "files": [
  3314. ".nupkg.metadata",
  3315. ".signature.p7s",
  3316. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll",
  3317. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml",
  3318. "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512",
  3319. "microsoft.aspnetcore.http.extensions.nuspec"
  3320. ]
  3321. },
  3322. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  3323. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  3324. "type": "package",
  3325. "path": "microsoft.aspnetcore.http.features/2.2.0",
  3326. "files": [
  3327. ".nupkg.metadata",
  3328. ".signature.p7s",
  3329. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3330. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3331. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  3332. "microsoft.aspnetcore.http.features.nuspec"
  3333. ]
  3334. },
  3335. "Microsoft.AspNetCore.JsonPatch/2.2.0": {
  3336. "sha512": "o9BB9hftnCsyJalz9IT0DUFxz8Xvgh3TOfGWolpuf19duxB4FySq7c25XDYBmBMS+sun5/PsEUAi58ra4iJAoA==",
  3337. "type": "package",
  3338. "path": "microsoft.aspnetcore.jsonpatch/2.2.0",
  3339. "files": [
  3340. ".nupkg.metadata",
  3341. ".signature.p7s",
  3342. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  3343. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  3344. "microsoft.aspnetcore.jsonpatch.2.2.0.nupkg.sha512",
  3345. "microsoft.aspnetcore.jsonpatch.nuspec"
  3346. ]
  3347. },
  3348. "Microsoft.AspNetCore.Localization/2.2.0": {
  3349. "sha512": "+PGX1mEfq19EVvskBBb9XBQrXZpZrh6hYhX0x3FkPTEqr+rDM2ZmsEwAAMRmzcidmlDM1/7cyDSU/WhkecU8tA==",
  3350. "type": "package",
  3351. "path": "microsoft.aspnetcore.localization/2.2.0",
  3352. "files": [
  3353. ".nupkg.metadata",
  3354. ".signature.p7s",
  3355. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll",
  3356. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.xml",
  3357. "microsoft.aspnetcore.localization.2.2.0.nupkg.sha512",
  3358. "microsoft.aspnetcore.localization.nuspec"
  3359. ]
  3360. },
  3361. "Microsoft.AspNetCore.Mvc/2.2.0": {
  3362. "sha512": "noun9xcrEvOs/ubczt2OluY9/bOOM2erv1D/gyyYtfS2sfyx2uGknUIAWoqmqc401TvQDysyx8S4M9j5zPIVBw==",
  3363. "type": "package",
  3364. "path": "microsoft.aspnetcore.mvc/2.2.0",
  3365. "files": [
  3366. ".nupkg.metadata",
  3367. ".signature.p7s",
  3368. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll",
  3369. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.xml",
  3370. "microsoft.aspnetcore.mvc.2.2.0.nupkg.sha512",
  3371. "microsoft.aspnetcore.mvc.nuspec"
  3372. ]
  3373. },
  3374. "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": {
  3375. "sha512": "ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==",
  3376. "type": "package",
  3377. "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0",
  3378. "files": [
  3379. ".nupkg.metadata",
  3380. ".signature.p7s",
  3381. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll",
  3382. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml",
  3383. "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512",
  3384. "microsoft.aspnetcore.mvc.abstractions.nuspec"
  3385. ]
  3386. },
  3387. "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": {
  3388. "sha512": "Wxxt1rFVHITp4MDaGQP/wyl+ROVVVeQCTWI6C8hxI8X66C4u6gcxvelqgnmsn+dISMCdE/7FQOwgiMx1HxuZqA==",
  3389. "type": "package",
  3390. "path": "microsoft.aspnetcore.mvc.analyzers/2.2.0",
  3391. "files": [
  3392. ".nupkg.metadata",
  3393. ".signature.p7s",
  3394. "analyzers/dotnet/cs/Microsoft.AspNetCore.Mvc.Analyzers.dll",
  3395. "microsoft.aspnetcore.mvc.analyzers.2.2.0.nupkg.sha512",
  3396. "microsoft.aspnetcore.mvc.analyzers.nuspec"
  3397. ]
  3398. },
  3399. "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": {
  3400. "sha512": "iSREQct43Xg2t3KiQ2648e064al/HSLPXpI5yO9VPeTGDspWKHW23XFHRKPN1YjIQHHfBj8ytXbiF0XcSxp5pg==",
  3401. "type": "package",
  3402. "path": "microsoft.aspnetcore.mvc.apiexplorer/2.2.0",
  3403. "files": [
  3404. ".nupkg.metadata",
  3405. ".signature.p7s",
  3406. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll",
  3407. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.xml",
  3408. "microsoft.aspnetcore.mvc.apiexplorer.2.2.0.nupkg.sha512",
  3409. "microsoft.aspnetcore.mvc.apiexplorer.nuspec"
  3410. ]
  3411. },
  3412. "Microsoft.AspNetCore.Mvc.Core/2.2.0": {
  3413. "sha512": "ALiY4a6BYsghw8PT5+VU593Kqp911U3w9f/dH9/ZoI3ezDsDAGiObqPu/HP1oXK80Ceu0XdQ3F0bx5AXBeuN/Q==",
  3414. "type": "package",
  3415. "path": "microsoft.aspnetcore.mvc.core/2.2.0",
  3416. "files": [
  3417. ".nupkg.metadata",
  3418. ".signature.p7s",
  3419. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll",
  3420. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml",
  3421. "microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512",
  3422. "microsoft.aspnetcore.mvc.core.nuspec"
  3423. ]
  3424. },
  3425. "Microsoft.AspNetCore.Mvc.Cors/2.2.0": {
  3426. "sha512": "oINjMqhU7yzT2T9AMuvktlWlMd40i0do8E1aYslJS+c5fof+EMhjnwTh6cHN1dfrgjkoXJ/gutxn5Qaqf/81Kg==",
  3427. "type": "package",
  3428. "path": "microsoft.aspnetcore.mvc.cors/2.2.0",
  3429. "files": [
  3430. ".nupkg.metadata",
  3431. ".signature.p7s",
  3432. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll",
  3433. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.xml",
  3434. "microsoft.aspnetcore.mvc.cors.2.2.0.nupkg.sha512",
  3435. "microsoft.aspnetcore.mvc.cors.nuspec"
  3436. ]
  3437. },
  3438. "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": {
  3439. "sha512": "WOw4SA3oT47aiU7ZjN/88j+b79YU6VftmHmxK29Km3PTI7WZdmw675QTcgWfsjEX4joCB82v7TvarO3D0oqOyw==",
  3440. "type": "package",
  3441. "path": "microsoft.aspnetcore.mvc.dataannotations/2.2.0",
  3442. "files": [
  3443. ".nupkg.metadata",
  3444. ".signature.p7s",
  3445. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
  3446. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
  3447. "microsoft.aspnetcore.mvc.dataannotations.2.2.0.nupkg.sha512",
  3448. "microsoft.aspnetcore.mvc.dataannotations.nuspec"
  3449. ]
  3450. },
  3451. "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": {
  3452. "sha512": "ScWwXrkAvw6PekWUFkIr5qa9NKn4uZGRvxtt3DvtUrBYW5Iu2y4SS/vx79JN0XDHNYgAJ81nVs+4M7UE1Y/O+g==",
  3453. "type": "package",
  3454. "path": "microsoft.aspnetcore.mvc.formatters.json/2.2.0",
  3455. "files": [
  3456. ".nupkg.metadata",
  3457. ".signature.p7s",
  3458. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
  3459. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
  3460. "microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512",
  3461. "microsoft.aspnetcore.mvc.formatters.json.nuspec"
  3462. ]
  3463. },
  3464. "Microsoft.AspNetCore.Mvc.Localization/2.2.0": {
  3465. "sha512": "H1L4pP124mrN6duwOtNVIJUqy4CczC2/ah4MXarRt9ZRpJd2zNp1j3tJCgyEQpqai6zNVP6Vp2ZRMQcNDcNAKA==",
  3466. "type": "package",
  3467. "path": "microsoft.aspnetcore.mvc.localization/2.2.0",
  3468. "files": [
  3469. ".nupkg.metadata",
  3470. ".signature.p7s",
  3471. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll",
  3472. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.xml",
  3473. "microsoft.aspnetcore.mvc.localization.2.2.0.nupkg.sha512",
  3474. "microsoft.aspnetcore.mvc.localization.nuspec"
  3475. ]
  3476. },
  3477. "Microsoft.AspNetCore.Mvc.Razor/2.2.0": {
  3478. "sha512": "TXvEOjp3r6qDEjmDtv3pXjQr/Zia9PpoGkl1MyTEqKqrUehBTpAdCjA8APXFwun19lH20OuyU+e4zDYv9g134w==",
  3479. "type": "package",
  3480. "path": "microsoft.aspnetcore.mvc.razor/2.2.0",
  3481. "files": [
  3482. ".nupkg.metadata",
  3483. ".signature.p7s",
  3484. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll",
  3485. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.xml",
  3486. "microsoft.aspnetcore.mvc.razor.2.2.0.nupkg.sha512",
  3487. "microsoft.aspnetcore.mvc.razor.nuspec"
  3488. ]
  3489. },
  3490. "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": {
  3491. "sha512": "Sei/0moqBDQKaAYT9PtOeRtvYgHQQLyw/jm3exHw2w9VdzejiMEqCQrN2d63Dk4y7IY0Irr/P9JUFkoVURRcNw==",
  3492. "type": "package",
  3493. "path": "microsoft.aspnetcore.mvc.razor.extensions/2.2.0",
  3494. "files": [
  3495. ".nupkg.metadata",
  3496. ".signature.p7s",
  3497. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.props",
  3498. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.targets",
  3499. "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  3500. "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml",
  3501. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  3502. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml",
  3503. "microsoft.aspnetcore.mvc.razor.extensions.2.2.0.nupkg.sha512",
  3504. "microsoft.aspnetcore.mvc.razor.extensions.nuspec"
  3505. ]
  3506. },
  3507. "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": {
  3508. "sha512": "GsMs4QKCf5VgdGZq9/nfAVkMJ/8uE4ie0Iugv4FtxbHBmMdpPQQBfTFKoUpwMbgIRw7hzV8xy2HPPU5o58PsdQ==",
  3509. "type": "package",
  3510. "path": "microsoft.aspnetcore.mvc.razorpages/2.2.0",
  3511. "files": [
  3512. ".nupkg.metadata",
  3513. ".signature.p7s",
  3514. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll",
  3515. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml",
  3516. "microsoft.aspnetcore.mvc.razorpages.2.2.0.nupkg.sha512",
  3517. "microsoft.aspnetcore.mvc.razorpages.nuspec"
  3518. ]
  3519. },
  3520. "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": {
  3521. "sha512": "hsrm/dLx7ztfWV+WEE7O8YqEePW7TmUwFwR7JsOUSTKaV9uSeghdmoOsYuk0HeoTiMhRxH8InQVE9/BgBj+jog==",
  3522. "type": "package",
  3523. "path": "microsoft.aspnetcore.mvc.taghelpers/2.2.0",
  3524. "files": [
  3525. ".nupkg.metadata",
  3526. ".signature.p7s",
  3527. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
  3528. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.xml",
  3529. "microsoft.aspnetcore.mvc.taghelpers.2.2.0.nupkg.sha512",
  3530. "microsoft.aspnetcore.mvc.taghelpers.nuspec"
  3531. ]
  3532. },
  3533. "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": {
  3534. "sha512": "dt7MGkzCFVTAD5oesI8UeVVeiSgaZ0tPdFstQjG6YLJSCiq1koOUSHMpf0PASGdOW/H9hxXkolIBhT5dWqJi7g==",
  3535. "type": "package",
  3536. "path": "microsoft.aspnetcore.mvc.viewfeatures/2.2.0",
  3537. "files": [
  3538. ".nupkg.metadata",
  3539. ".signature.p7s",
  3540. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
  3541. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
  3542. "microsoft.aspnetcore.mvc.viewfeatures.2.2.0.nupkg.sha512",
  3543. "microsoft.aspnetcore.mvc.viewfeatures.nuspec"
  3544. ]
  3545. },
  3546. "Microsoft.AspNetCore.Razor/2.2.0": {
  3547. "sha512": "V54PIyDCFl8COnTp9gezNHpUNHk7F9UnerGeZy3UfbnwYvfzbo+ipqQmSgeoESH8e0JvKhRTyQyZquW2EPtCmg==",
  3548. "type": "package",
  3549. "path": "microsoft.aspnetcore.razor/2.2.0",
  3550. "files": [
  3551. ".nupkg.metadata",
  3552. ".signature.p7s",
  3553. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll",
  3554. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.xml",
  3555. "microsoft.aspnetcore.razor.2.2.0.nupkg.sha512",
  3556. "microsoft.aspnetcore.razor.nuspec"
  3557. ]
  3558. },
  3559. "Microsoft.AspNetCore.Razor.Design/2.2.0": {
  3560. "sha512": "VLWK+ZtMMNukY6XjxYHc7mz33vkquoEzQJHm/LCF5REVxIaexLr+UTImljRRJBdUDJluDAQwU+59IX0rFDfURA==",
  3561. "type": "package",
  3562. "path": "microsoft.aspnetcore.razor.design/2.2.0",
  3563. "hasTools": true,
  3564. "files": [
  3565. ".nupkg.metadata",
  3566. ".signature.p7s",
  3567. "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets",
  3568. "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.props",
  3569. "buildMultiTargeting/Microsoft.AspNetCore.Razor.Design.props",
  3570. "microsoft.aspnetcore.razor.design.2.2.0.nupkg.sha512",
  3571. "microsoft.aspnetcore.razor.design.nuspec",
  3572. "tools/Microsoft.AspNetCore.Razor.Language.dll",
  3573. "tools/Microsoft.CodeAnalysis.CSharp.dll",
  3574. "tools/Microsoft.CodeAnalysis.Razor.dll",
  3575. "tools/Microsoft.CodeAnalysis.dll",
  3576. "tools/Newtonsoft.Json.dll",
  3577. "tools/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  3578. "tools/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  3579. "tools/rzc.deps.json",
  3580. "tools/rzc.dll",
  3581. "tools/rzc.runtimeconfig.json"
  3582. ]
  3583. },
  3584. "Microsoft.AspNetCore.Razor.Language/2.2.0": {
  3585. "sha512": "IeyzVFXZdpUAnWKWoNYE0SsP1Eu7JLjZaC94jaI1VfGtK57QykROz/iGMc8D0VcqC8i02qYTPQN/wPKm6PfidA==",
  3586. "type": "package",
  3587. "path": "microsoft.aspnetcore.razor.language/2.2.0",
  3588. "files": [
  3589. ".nupkg.metadata",
  3590. ".signature.p7s",
  3591. "lib/net46/Microsoft.AspNetCore.Razor.Language.dll",
  3592. "lib/net46/Microsoft.AspNetCore.Razor.Language.xml",
  3593. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  3594. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.xml",
  3595. "microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512",
  3596. "microsoft.aspnetcore.razor.language.nuspec"
  3597. ]
  3598. },
  3599. "Microsoft.AspNetCore.Razor.Runtime/2.2.0": {
  3600. "sha512": "7YqK+H61lN6yj9RiQUko7oaOhKtRR9Q/kBcoWNRemhJdTIWOh1OmdvJKzZrMWOlff3BAjejkPQm+0V0qXk+B1w==",
  3601. "type": "package",
  3602. "path": "microsoft.aspnetcore.razor.runtime/2.2.0",
  3603. "files": [
  3604. ".nupkg.metadata",
  3605. ".signature.p7s",
  3606. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll",
  3607. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.xml",
  3608. "microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512",
  3609. "microsoft.aspnetcore.razor.runtime.nuspec"
  3610. ]
  3611. },
  3612. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": {
  3613. "sha512": "CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==",
  3614. "type": "package",
  3615. "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0",
  3616. "files": [
  3617. ".nupkg.metadata",
  3618. ".signature.p7s",
  3619. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
  3620. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
  3621. "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512",
  3622. "microsoft.aspnetcore.responsecaching.abstractions.nuspec"
  3623. ]
  3624. },
  3625. "Microsoft.AspNetCore.Routing/2.2.0": {
  3626. "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==",
  3627. "type": "package",
  3628. "path": "microsoft.aspnetcore.routing/2.2.0",
  3629. "files": [
  3630. ".nupkg.metadata",
  3631. ".signature.p7s",
  3632. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll",
  3633. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml",
  3634. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll",
  3635. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml",
  3636. "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512",
  3637. "microsoft.aspnetcore.routing.nuspec"
  3638. ]
  3639. },
  3640. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  3641. "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==",
  3642. "type": "package",
  3643. "path": "microsoft.aspnetcore.routing.abstractions/2.2.0",
  3644. "files": [
  3645. ".nupkg.metadata",
  3646. ".signature.p7s",
  3647. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll",
  3648. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml",
  3649. "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512",
  3650. "microsoft.aspnetcore.routing.abstractions.nuspec"
  3651. ]
  3652. },
  3653. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  3654. "sha512": "9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==",
  3655. "type": "package",
  3656. "path": "microsoft.aspnetcore.webutilities/2.2.0",
  3657. "files": [
  3658. ".nupkg.metadata",
  3659. ".signature.p7s",
  3660. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll",
  3661. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml",
  3662. "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512",
  3663. "microsoft.aspnetcore.webutilities.nuspec"
  3664. ]
  3665. },
  3666. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  3667. "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
  3668. "type": "package",
  3669. "path": "microsoft.codeanalysis.analyzers/1.1.0",
  3670. "hasTools": true,
  3671. "files": [
  3672. ".nupkg.metadata",
  3673. ".signature.p7s",
  3674. "ThirdPartyNotices.rtf",
  3675. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  3676. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  3677. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  3678. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  3679. "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512",
  3680. "microsoft.codeanalysis.analyzers.nuspec",
  3681. "tools/install.ps1",
  3682. "tools/uninstall.ps1"
  3683. ]
  3684. },
  3685. "Microsoft.CodeAnalysis.Common/2.8.0": {
  3686. "sha512": "06AzG7oOLKTCN1EnoVYL1bQz+Zwa10LMpUn7Kc+PdpN8CQXRqXTyhfxuKIz6t0qWfoatBNXdHD0OLcEYp5pOvQ==",
  3687. "type": "package",
  3688. "path": "microsoft.codeanalysis.common/2.8.0",
  3689. "files": [
  3690. ".nupkg.metadata",
  3691. ".signature.p7s",
  3692. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll",
  3693. "lib/netstandard1.3/Microsoft.CodeAnalysis.pdb",
  3694. "lib/netstandard1.3/Microsoft.CodeAnalysis.xml",
  3695. "microsoft.codeanalysis.common.2.8.0.nupkg.sha512",
  3696. "microsoft.codeanalysis.common.nuspec"
  3697. ]
  3698. },
  3699. "Microsoft.CodeAnalysis.CSharp/2.8.0": {
  3700. "sha512": "RizcFXuHgGmeuZhxxE1qQdhFA9lGOHlk0MJlCUt6LOnYsevo72gNikPcbANFHY02YK8L/buNrihchY0TroGvXQ==",
  3701. "type": "package",
  3702. "path": "microsoft.codeanalysis.csharp/2.8.0",
  3703. "files": [
  3704. ".nupkg.metadata",
  3705. ".signature.p7s",
  3706. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll",
  3707. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.pdb",
  3708. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml",
  3709. "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512",
  3710. "microsoft.codeanalysis.csharp.nuspec"
  3711. ]
  3712. },
  3713. "Microsoft.CodeAnalysis.Razor/2.2.0": {
  3714. "sha512": "2qL0Qyu5qHzg6/JzF80mLgsqn9NP/Q0mQwjH+Z+DiqcuODJx8segjN4un2Tnz6bEAWv8FCRFNXR/s5wzlxqA8A==",
  3715. "type": "package",
  3716. "path": "microsoft.codeanalysis.razor/2.2.0",
  3717. "files": [
  3718. ".nupkg.metadata",
  3719. ".signature.p7s",
  3720. "lib/net46/Microsoft.CodeAnalysis.Razor.dll",
  3721. "lib/net46/Microsoft.CodeAnalysis.Razor.xml",
  3722. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  3723. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.xml",
  3724. "microsoft.codeanalysis.razor.2.2.0.nupkg.sha512",
  3725. "microsoft.codeanalysis.razor.nuspec"
  3726. ]
  3727. },
  3728. "Microsoft.CSharp/4.5.0": {
  3729. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  3730. "type": "package",
  3731. "path": "microsoft.csharp/4.5.0",
  3732. "files": [
  3733. ".nupkg.metadata",
  3734. ".signature.p7s",
  3735. "LICENSE.TXT",
  3736. "THIRD-PARTY-NOTICES.TXT",
  3737. "lib/MonoAndroid10/_._",
  3738. "lib/MonoTouch10/_._",
  3739. "lib/net45/_._",
  3740. "lib/netcore50/Microsoft.CSharp.dll",
  3741. "lib/netcoreapp2.0/_._",
  3742. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3743. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3744. "lib/portable-net45+win8+wp8+wpa81/_._",
  3745. "lib/uap10.0.16299/_._",
  3746. "lib/win8/_._",
  3747. "lib/wp80/_._",
  3748. "lib/wpa81/_._",
  3749. "lib/xamarinios10/_._",
  3750. "lib/xamarinmac20/_._",
  3751. "lib/xamarintvos10/_._",
  3752. "lib/xamarinwatchos10/_._",
  3753. "microsoft.csharp.4.5.0.nupkg.sha512",
  3754. "microsoft.csharp.nuspec",
  3755. "ref/MonoAndroid10/_._",
  3756. "ref/MonoTouch10/_._",
  3757. "ref/net45/_._",
  3758. "ref/netcore50/Microsoft.CSharp.dll",
  3759. "ref/netcore50/Microsoft.CSharp.xml",
  3760. "ref/netcore50/de/Microsoft.CSharp.xml",
  3761. "ref/netcore50/es/Microsoft.CSharp.xml",
  3762. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3763. "ref/netcore50/it/Microsoft.CSharp.xml",
  3764. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3765. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3766. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3767. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3768. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3769. "ref/netcoreapp2.0/_._",
  3770. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3771. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3772. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3773. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3774. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3775. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3776. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3777. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3778. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3779. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3780. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3781. "ref/netstandard2.0/Microsoft.CSharp.dll",
  3782. "ref/netstandard2.0/Microsoft.CSharp.xml",
  3783. "ref/portable-net45+win8+wp8+wpa81/_._",
  3784. "ref/uap10.0.16299/_._",
  3785. "ref/win8/_._",
  3786. "ref/wp80/_._",
  3787. "ref/wpa81/_._",
  3788. "ref/xamarinios10/_._",
  3789. "ref/xamarinmac20/_._",
  3790. "ref/xamarintvos10/_._",
  3791. "ref/xamarinwatchos10/_._",
  3792. "useSharedDesignerContext.txt",
  3793. "version.txt"
  3794. ]
  3795. },
  3796. "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
  3797. "sha512": "9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==",
  3798. "type": "package",
  3799. "path": "microsoft.dotnet.platformabstractions/2.1.0",
  3800. "files": [
  3801. ".nupkg.metadata",
  3802. ".signature.p7s",
  3803. "LICENSE.TXT",
  3804. "THIRD-PARTY-NOTICES.TXT",
  3805. "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll",
  3806. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll",
  3807. "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512",
  3808. "microsoft.dotnet.platformabstractions.nuspec"
  3809. ]
  3810. },
  3811. "Microsoft.Extensions.Caching.Abstractions/2.2.0": {
  3812. "sha512": "spsJkYo8gGJapaxTSQFN/wqA+ghpJMLwB4ZyTB+fSdpd7AmMFP/YSpIcGmczcw4KggpxLGhLk7lCkSIlgvHaqQ==",
  3813. "type": "package",
  3814. "path": "microsoft.extensions.caching.abstractions/2.2.0",
  3815. "files": [
  3816. ".nupkg.metadata",
  3817. ".signature.p7s",
  3818. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3819. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3820. "microsoft.extensions.caching.abstractions.2.2.0.nupkg.sha512",
  3821. "microsoft.extensions.caching.abstractions.nuspec"
  3822. ]
  3823. },
  3824. "Microsoft.Extensions.Caching.Memory/2.2.0": {
  3825. "sha512": "yFs44RzB2Pzfoj4uk+mEz3MTTQKyeWb8gDhv5GyVPfHnLv0eQhGwzbw/5WpxAcVyOgG/H3/0ULY6g0/7/B+r7w==",
  3826. "type": "package",
  3827. "path": "microsoft.extensions.caching.memory/2.2.0",
  3828. "files": [
  3829. ".nupkg.metadata",
  3830. ".signature.p7s",
  3831. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3832. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3833. "microsoft.extensions.caching.memory.2.2.0.nupkg.sha512",
  3834. "microsoft.extensions.caching.memory.nuspec"
  3835. ]
  3836. },
  3837. "Microsoft.Extensions.Configuration/3.1.2": {
  3838. "sha512": "BxwRSBab309SYMCDCFyB6eSc7FnX5m9kOJQHw2IQIyb5PEtpfslhscTw63Gwhl3dPnaM1VGFXIyI0BVgpiLgOw==",
  3839. "type": "package",
  3840. "path": "microsoft.extensions.configuration/3.1.2",
  3841. "files": [
  3842. ".nupkg.metadata",
  3843. ".signature.p7s",
  3844. "Icon.png",
  3845. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
  3846. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
  3847. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3848. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3849. "microsoft.extensions.configuration.3.1.2.nupkg.sha512",
  3850. "microsoft.extensions.configuration.nuspec"
  3851. ]
  3852. },
  3853. "Microsoft.Extensions.Configuration.Abstractions/3.1.2": {
  3854. "sha512": "xmfdVdazTslWJ8od7uNS9QSPqn1wBC84RLprPrFS20EdAqd3lV0g0IZAitYbCiiICpjktnhzbUb85aLHNZ3RQw==",
  3855. "type": "package",
  3856. "path": "microsoft.extensions.configuration.abstractions/3.1.2",
  3857. "files": [
  3858. ".nupkg.metadata",
  3859. ".signature.p7s",
  3860. "Icon.png",
  3861. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
  3862. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
  3863. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3864. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3865. "microsoft.extensions.configuration.abstractions.3.1.2.nupkg.sha512",
  3866. "microsoft.extensions.configuration.abstractions.nuspec"
  3867. ]
  3868. },
  3869. "Microsoft.Extensions.Configuration.Binder/3.1.2": {
  3870. "sha512": "IWrc9/voGki2pc5g8bRXIqs+P50tXOjNf47qgFKSu/pL50InRuXxh/nj5AG9Po8YRpvT/bYIUk3XQqHH7yUg5w==",
  3871. "type": "package",
  3872. "path": "microsoft.extensions.configuration.binder/3.1.2",
  3873. "files": [
  3874. ".nupkg.metadata",
  3875. ".signature.p7s",
  3876. "Icon.png",
  3877. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
  3878. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
  3879. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3880. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3881. "microsoft.extensions.configuration.binder.3.1.2.nupkg.sha512",
  3882. "microsoft.extensions.configuration.binder.nuspec"
  3883. ]
  3884. },
  3885. "Microsoft.Extensions.DependencyInjection/3.1.2": {
  3886. "sha512": "e+F6/wjQPOFHB/sGWTAqC8FX/C6+JZWWLpryXTAQYIS3tr+17lByADdP9Y6RtxfJ4kW/IPrU6RuxTNZNdAQz1A==",
  3887. "type": "package",
  3888. "path": "microsoft.extensions.dependencyinjection/3.1.2",
  3889. "files": [
  3890. ".nupkg.metadata",
  3891. ".signature.p7s",
  3892. "Icon.png",
  3893. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3894. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3895. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
  3896. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
  3897. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3898. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3899. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3900. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3901. "microsoft.extensions.dependencyinjection.3.1.2.nupkg.sha512",
  3902. "microsoft.extensions.dependencyinjection.nuspec"
  3903. ]
  3904. },
  3905. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.2": {
  3906. "sha512": "/CZzCSCIm/3FFoXHfUpsfov/Elo268dcvlz/MMINT0vPgphqg2pAgdEn/EjCDyoAT3NAmsRmjfGwBumC1uYJtA==",
  3907. "type": "package",
  3908. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.2",
  3909. "files": [
  3910. ".nupkg.metadata",
  3911. ".signature.p7s",
  3912. "Icon.png",
  3913. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3914. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3915. "microsoft.extensions.dependencyinjection.abstractions.3.1.2.nupkg.sha512",
  3916. "microsoft.extensions.dependencyinjection.abstractions.nuspec"
  3917. ]
  3918. },
  3919. "Microsoft.Extensions.DependencyModel/2.1.0": {
  3920. "sha512": "nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==",
  3921. "type": "package",
  3922. "path": "microsoft.extensions.dependencymodel/2.1.0",
  3923. "files": [
  3924. ".nupkg.metadata",
  3925. ".signature.p7s",
  3926. "LICENSE.TXT",
  3927. "THIRD-PARTY-NOTICES.TXT",
  3928. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  3929. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  3930. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  3931. "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512",
  3932. "microsoft.extensions.dependencymodel.nuspec"
  3933. ]
  3934. },
  3935. "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
  3936. "sha512": "EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==",
  3937. "type": "package",
  3938. "path": "microsoft.extensions.fileproviders.abstractions/2.2.0",
  3939. "files": [
  3940. ".nupkg.metadata",
  3941. ".signature.p7s",
  3942. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3943. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3944. "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512",
  3945. "microsoft.extensions.fileproviders.abstractions.nuspec"
  3946. ]
  3947. },
  3948. "Microsoft.Extensions.FileProviders.Composite/2.2.0": {
  3949. "sha512": "Az/RxWB+UlyVN/TvQFaGXx8XAXVZN5WQnnuJOsjwBzghSJc1i8zqNjIypPHOedcuIXs2XSWgOSL6YQ3BlCnoJA==",
  3950. "type": "package",
  3951. "path": "microsoft.extensions.fileproviders.composite/2.2.0",
  3952. "files": [
  3953. ".nupkg.metadata",
  3954. ".signature.p7s",
  3955. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
  3956. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
  3957. "microsoft.extensions.fileproviders.composite.2.2.0.nupkg.sha512",
  3958. "microsoft.extensions.fileproviders.composite.nuspec"
  3959. ]
  3960. },
  3961. "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
  3962. "sha512": "ZSsHZp3PyW6vk37tDEdypjgGlNtpJ0EixBMOfUod2Thx7GtwfFSAQXUQx8a8BN8vfWKGGMbp7jPWdoHx/At4wQ==",
  3963. "type": "package",
  3964. "path": "microsoft.extensions.filesystemglobbing/2.2.0",
  3965. "files": [
  3966. ".nupkg.metadata",
  3967. ".signature.p7s",
  3968. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3969. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3970. "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512",
  3971. "microsoft.extensions.filesystemglobbing.nuspec"
  3972. ]
  3973. },
  3974. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  3975. "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
  3976. "type": "package",
  3977. "path": "microsoft.extensions.hosting.abstractions/2.2.0",
  3978. "files": [
  3979. ".nupkg.metadata",
  3980. ".signature.p7s",
  3981. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3982. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3983. "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512",
  3984. "microsoft.extensions.hosting.abstractions.nuspec"
  3985. ]
  3986. },
  3987. "Microsoft.Extensions.Localization/2.2.0": {
  3988. "sha512": "3nBQLeBrcd4Rgd9vQi4gF5NgAWxnQrHekjjwlgww4wyLNfJDizjiex2resOLoAuAgy3y2IIAWjOpbr0UKR2ykw==",
  3989. "type": "package",
  3990. "path": "microsoft.extensions.localization/2.2.0",
  3991. "files": [
  3992. ".nupkg.metadata",
  3993. ".signature.p7s",
  3994. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
  3995. "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
  3996. "microsoft.extensions.localization.2.2.0.nupkg.sha512",
  3997. "microsoft.extensions.localization.nuspec"
  3998. ]
  3999. },
  4000. "Microsoft.Extensions.Localization.Abstractions/2.2.0": {
  4001. "sha512": "FQzXG/lYR9UOM2zHpqsjTRpp3EghIYo3FCsQpfmtbp+glPaU0WXZfNmMjyqBRmMj1Sq93fPnC+G9zzYRauuRQA==",
  4002. "type": "package",
  4003. "path": "microsoft.extensions.localization.abstractions/2.2.0",
  4004. "files": [
  4005. ".nupkg.metadata",
  4006. ".signature.p7s",
  4007. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
  4008. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
  4009. "microsoft.extensions.localization.abstractions.2.2.0.nupkg.sha512",
  4010. "microsoft.extensions.localization.abstractions.nuspec"
  4011. ]
  4012. },
  4013. "Microsoft.Extensions.Logging/3.1.2": {
  4014. "sha512": "AIIRgKamzEqJNLZsHd37VogFX9YpxgrBmf/b3dznD7S0qjxWQnAs498ulLV1n6AKJ8XVjTCBNzsvQiSwCa7dIw==",
  4015. "type": "package",
  4016. "path": "microsoft.extensions.logging/3.1.2",
  4017. "files": [
  4018. ".nupkg.metadata",
  4019. ".signature.p7s",
  4020. "Icon.png",
  4021. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
  4022. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
  4023. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4024. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4025. "microsoft.extensions.logging.3.1.2.nupkg.sha512",
  4026. "microsoft.extensions.logging.nuspec"
  4027. ]
  4028. },
  4029. "Microsoft.Extensions.Logging.Abstractions/3.1.2": {
  4030. "sha512": "cIXPw7VVX3fON4uuHwJFmCi0qDl8uY75xZMKB2oM3In0ZDEB1Ee+p9Ti1DSw92AwRtJ2Zh+QG1joTBednJMzvA==",
  4031. "type": "package",
  4032. "path": "microsoft.extensions.logging.abstractions/3.1.2",
  4033. "files": [
  4034. ".nupkg.metadata",
  4035. ".signature.p7s",
  4036. "Icon.png",
  4037. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4038. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4039. "microsoft.extensions.logging.abstractions.3.1.2.nupkg.sha512",
  4040. "microsoft.extensions.logging.abstractions.nuspec"
  4041. ]
  4042. },
  4043. "Microsoft.Extensions.ObjectPool/2.2.0": {
  4044. "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
  4045. "type": "package",
  4046. "path": "microsoft.extensions.objectpool/2.2.0",
  4047. "files": [
  4048. ".nupkg.metadata",
  4049. ".signature.p7s",
  4050. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll",
  4051. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml",
  4052. "microsoft.extensions.objectpool.2.2.0.nupkg.sha512",
  4053. "microsoft.extensions.objectpool.nuspec"
  4054. ]
  4055. },
  4056. "Microsoft.Extensions.Options/3.1.2": {
  4057. "sha512": "6F4anwt9yMlnQckac2etjrasRFyqZNIp46p+i9qVps0DXNsOLZIKRkqq4AY4FlxXxKeGkEJC7M77RQEkvd3p8Q==",
  4058. "type": "package",
  4059. "path": "microsoft.extensions.options/3.1.2",
  4060. "files": [
  4061. ".nupkg.metadata",
  4062. ".signature.p7s",
  4063. "Icon.png",
  4064. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
  4065. "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
  4066. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4067. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4068. "microsoft.extensions.options.3.1.2.nupkg.sha512",
  4069. "microsoft.extensions.options.nuspec"
  4070. ]
  4071. },
  4072. "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
  4073. "sha512": "H6ZsQzxYw/6k2DfEQRXdC+vQ6obd6Uba3uGJrnJ2vG4PRXjQZ7seB13JdCfE72abp8E6Fk3gGgDzfJiLZi5ZpQ==",
  4074. "type": "package",
  4075. "path": "microsoft.extensions.platformabstractions/1.1.0",
  4076. "files": [
  4077. ".nupkg.metadata",
  4078. ".signature.p7s",
  4079. "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
  4080. "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml",
  4081. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll",
  4082. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml",
  4083. "microsoft.extensions.platformabstractions.1.1.0.nupkg.sha512",
  4084. "microsoft.extensions.platformabstractions.nuspec"
  4085. ]
  4086. },
  4087. "Microsoft.Extensions.Primitives/3.1.2": {
  4088. "sha512": "WGtoFWY9yc9HGMG6ObDNQPz9dBP+xz/GqFe2dKjdE/cSdXFEKxCFTyYCzL/e8kxVkc/Bq9qjOsXRWydvn0g9Uw==",
  4089. "type": "package",
  4090. "path": "microsoft.extensions.primitives/3.1.2",
  4091. "files": [
  4092. ".nupkg.metadata",
  4093. ".signature.p7s",
  4094. "Icon.png",
  4095. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  4096. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  4097. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4098. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4099. "microsoft.extensions.primitives.3.1.2.nupkg.sha512",
  4100. "microsoft.extensions.primitives.nuspec"
  4101. ]
  4102. },
  4103. "Microsoft.Extensions.WebEncoders/2.2.0": {
  4104. "sha512": "V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==",
  4105. "type": "package",
  4106. "path": "microsoft.extensions.webencoders/2.2.0",
  4107. "files": [
  4108. ".nupkg.metadata",
  4109. ".signature.p7s",
  4110. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll",
  4111. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.xml",
  4112. "microsoft.extensions.webencoders.2.2.0.nupkg.sha512",
  4113. "microsoft.extensions.webencoders.nuspec"
  4114. ]
  4115. },
  4116. "Microsoft.Net.Http.Headers/2.2.0": {
  4117. "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
  4118. "type": "package",
  4119. "path": "microsoft.net.http.headers/2.2.0",
  4120. "files": [
  4121. ".nupkg.metadata",
  4122. ".signature.p7s",
  4123. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll",
  4124. "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml",
  4125. "microsoft.net.http.headers.2.2.0.nupkg.sha512",
  4126. "microsoft.net.http.headers.nuspec"
  4127. ]
  4128. },
  4129. "Microsoft.NETCore.Platforms/1.1.0": {
  4130. "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  4131. "type": "package",
  4132. "path": "microsoft.netcore.platforms/1.1.0",
  4133. "files": [
  4134. ".nupkg.metadata",
  4135. ".signature.p7s",
  4136. "ThirdPartyNotices.txt",
  4137. "dotnet_library_license.txt",
  4138. "lib/netstandard1.0/_._",
  4139. "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
  4140. "microsoft.netcore.platforms.nuspec",
  4141. "runtime.json"
  4142. ]
  4143. },
  4144. "Microsoft.NETCore.Targets/1.1.0": {
  4145. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  4146. "type": "package",
  4147. "path": "microsoft.netcore.targets/1.1.0",
  4148. "files": [
  4149. ".nupkg.metadata",
  4150. ".signature.p7s",
  4151. "ThirdPartyNotices.txt",
  4152. "dotnet_library_license.txt",
  4153. "lib/netstandard1.0/_._",
  4154. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  4155. "microsoft.netcore.targets.nuspec",
  4156. "runtime.json"
  4157. ]
  4158. },
  4159. "Microsoft.Win32.Primitives/4.3.0": {
  4160. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4161. "type": "package",
  4162. "path": "microsoft.win32.primitives/4.3.0",
  4163. "files": [
  4164. ".nupkg.metadata",
  4165. ".signature.p7s",
  4166. "ThirdPartyNotices.txt",
  4167. "dotnet_library_license.txt",
  4168. "lib/MonoAndroid10/_._",
  4169. "lib/MonoTouch10/_._",
  4170. "lib/net46/Microsoft.Win32.Primitives.dll",
  4171. "lib/xamarinios10/_._",
  4172. "lib/xamarinmac20/_._",
  4173. "lib/xamarintvos10/_._",
  4174. "lib/xamarinwatchos10/_._",
  4175. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4176. "microsoft.win32.primitives.nuspec",
  4177. "ref/MonoAndroid10/_._",
  4178. "ref/MonoTouch10/_._",
  4179. "ref/net46/Microsoft.Win32.Primitives.dll",
  4180. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4181. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4182. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4183. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4184. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4185. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4186. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4187. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4188. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4189. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4190. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4191. "ref/xamarinios10/_._",
  4192. "ref/xamarinmac20/_._",
  4193. "ref/xamarintvos10/_._",
  4194. "ref/xamarinwatchos10/_._"
  4195. ]
  4196. },
  4197. "Microsoft.Win32.Registry/4.5.0": {
  4198. "sha512": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
  4199. "type": "package",
  4200. "path": "microsoft.win32.registry/4.5.0",
  4201. "files": [
  4202. ".nupkg.metadata",
  4203. ".signature.p7s",
  4204. "LICENSE.TXT",
  4205. "THIRD-PARTY-NOTICES.TXT",
  4206. "lib/net46/Microsoft.Win32.Registry.dll",
  4207. "lib/net461/Microsoft.Win32.Registry.dll",
  4208. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4209. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4210. "microsoft.win32.registry.4.5.0.nupkg.sha512",
  4211. "microsoft.win32.registry.nuspec",
  4212. "ref/net46/Microsoft.Win32.Registry.dll",
  4213. "ref/net461/Microsoft.Win32.Registry.dll",
  4214. "ref/net461/Microsoft.Win32.Registry.xml",
  4215. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  4216. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  4217. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  4218. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  4219. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  4220. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  4221. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  4222. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  4223. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  4224. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  4225. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  4226. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  4227. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  4228. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4229. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  4230. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  4231. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4232. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4233. "useSharedDesignerContext.txt",
  4234. "version.txt"
  4235. ]
  4236. },
  4237. "NETStandard.Library/1.6.1": {
  4238. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4239. "type": "package",
  4240. "path": "netstandard.library/1.6.1",
  4241. "files": [
  4242. ".nupkg.metadata",
  4243. ".signature.p7s",
  4244. "ThirdPartyNotices.txt",
  4245. "dotnet_library_license.txt",
  4246. "netstandard.library.1.6.1.nupkg.sha512",
  4247. "netstandard.library.nuspec"
  4248. ]
  4249. },
  4250. "Newtonsoft.Json/11.0.2": {
  4251. "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
  4252. "type": "package",
  4253. "path": "newtonsoft.json/11.0.2",
  4254. "files": [
  4255. ".nupkg.metadata",
  4256. ".signature.p7s",
  4257. "LICENSE.md",
  4258. "lib/net20/Newtonsoft.Json.dll",
  4259. "lib/net20/Newtonsoft.Json.xml",
  4260. "lib/net35/Newtonsoft.Json.dll",
  4261. "lib/net35/Newtonsoft.Json.xml",
  4262. "lib/net40/Newtonsoft.Json.dll",
  4263. "lib/net40/Newtonsoft.Json.xml",
  4264. "lib/net45/Newtonsoft.Json.dll",
  4265. "lib/net45/Newtonsoft.Json.xml",
  4266. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4267. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4268. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4269. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4270. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4271. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4272. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4273. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4274. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4275. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4276. "newtonsoft.json.11.0.2.nupkg.sha512",
  4277. "newtonsoft.json.nuspec"
  4278. ]
  4279. },
  4280. "Newtonsoft.Json.Bson/1.0.1": {
  4281. "sha512": "5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
  4282. "type": "package",
  4283. "path": "newtonsoft.json.bson/1.0.1",
  4284. "files": [
  4285. ".nupkg.metadata",
  4286. ".signature.p7s",
  4287. "lib/net45/Newtonsoft.Json.Bson.dll",
  4288. "lib/net45/Newtonsoft.Json.Bson.xml",
  4289. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  4290. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  4291. "newtonsoft.json.bson.1.0.1.nupkg.sha512",
  4292. "newtonsoft.json.bson.nuspec"
  4293. ]
  4294. },
  4295. "Polly/7.2.0": {
  4296. "sha512": "fbtSRyqVSd5AS7O4Pm2Mnw7zKKJk7Z3rOfNnKSTfPkTxM8Z1JJFZzzjqLAOTG6AyUkormSWMO2AhdlygF/384Q==",
  4297. "type": "package",
  4298. "path": "polly/7.2.0",
  4299. "files": [
  4300. ".nupkg.metadata",
  4301. ".signature.p7s",
  4302. "lib/net461/Polly.dll",
  4303. "lib/net461/Polly.pdb",
  4304. "lib/net461/Polly.xml",
  4305. "lib/net472/Polly.dll",
  4306. "lib/net472/Polly.pdb",
  4307. "lib/net472/Polly.xml",
  4308. "lib/netstandard1.1/Polly.dll",
  4309. "lib/netstandard1.1/Polly.pdb",
  4310. "lib/netstandard1.1/Polly.xml",
  4311. "lib/netstandard2.0/Polly.dll",
  4312. "lib/netstandard2.0/Polly.pdb",
  4313. "lib/netstandard2.0/Polly.xml",
  4314. "polly.7.2.0.nupkg.sha512",
  4315. "polly.nuspec"
  4316. ]
  4317. },
  4318. "RabbitMQ.Client/5.1.2": {
  4319. "sha512": "Xhj+un0pw4N7h37SZWptxl/NEv7f1RLHwZhXjqzkCm3w3IdbFJh+HjVyPaciD848BUYLGoEQzadx90nShsbs4Q==",
  4320. "type": "package",
  4321. "path": "rabbitmq.client/5.1.2",
  4322. "files": [
  4323. ".nupkg.metadata",
  4324. ".signature.p7s",
  4325. "lib/net451/RabbitMQ.Client.dll",
  4326. "lib/net451/RabbitMQ.Client.xml",
  4327. "lib/netstandard1.5/RabbitMQ.Client.dll",
  4328. "lib/netstandard1.5/RabbitMQ.Client.xml",
  4329. "lib/netstandard2.0/RabbitMQ.Client.dll",
  4330. "lib/netstandard2.0/RabbitMQ.Client.xml",
  4331. "rabbitmq.client.5.1.2.nupkg.sha512",
  4332. "rabbitmq.client.nuspec"
  4333. ]
  4334. },
  4335. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4336. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4337. "type": "package",
  4338. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4339. "files": [
  4340. ".nupkg.metadata",
  4341. ".signature.p7s",
  4342. "ThirdPartyNotices.txt",
  4343. "dotnet_library_license.txt",
  4344. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4345. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4346. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4347. ]
  4348. },
  4349. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4350. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4351. "type": "package",
  4352. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4353. "files": [
  4354. ".nupkg.metadata",
  4355. ".signature.p7s",
  4356. "ThirdPartyNotices.txt",
  4357. "dotnet_library_license.txt",
  4358. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4359. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4360. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4361. ]
  4362. },
  4363. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4364. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4365. "type": "package",
  4366. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4367. "files": [
  4368. ".nupkg.metadata",
  4369. ".signature.p7s",
  4370. "ThirdPartyNotices.txt",
  4371. "dotnet_library_license.txt",
  4372. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4373. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4374. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4375. ]
  4376. },
  4377. "runtime.native.System/4.3.0": {
  4378. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4379. "type": "package",
  4380. "path": "runtime.native.system/4.3.0",
  4381. "files": [
  4382. ".nupkg.metadata",
  4383. ".signature.p7s",
  4384. "ThirdPartyNotices.txt",
  4385. "dotnet_library_license.txt",
  4386. "lib/netstandard1.0/_._",
  4387. "runtime.native.system.4.3.0.nupkg.sha512",
  4388. "runtime.native.system.nuspec"
  4389. ]
  4390. },
  4391. "runtime.native.System.IO.Compression/4.3.0": {
  4392. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4393. "type": "package",
  4394. "path": "runtime.native.system.io.compression/4.3.0",
  4395. "files": [
  4396. ".nupkg.metadata",
  4397. ".signature.p7s",
  4398. "ThirdPartyNotices.txt",
  4399. "dotnet_library_license.txt",
  4400. "lib/netstandard1.0/_._",
  4401. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4402. "runtime.native.system.io.compression.nuspec"
  4403. ]
  4404. },
  4405. "runtime.native.System.Net.Http/4.3.0": {
  4406. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4407. "type": "package",
  4408. "path": "runtime.native.system.net.http/4.3.0",
  4409. "files": [
  4410. ".nupkg.metadata",
  4411. ".signature.p7s",
  4412. "ThirdPartyNotices.txt",
  4413. "dotnet_library_license.txt",
  4414. "lib/netstandard1.0/_._",
  4415. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4416. "runtime.native.system.net.http.nuspec"
  4417. ]
  4418. },
  4419. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4420. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4421. "type": "package",
  4422. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4423. "files": [
  4424. ".nupkg.metadata",
  4425. ".signature.p7s",
  4426. "ThirdPartyNotices.txt",
  4427. "dotnet_library_license.txt",
  4428. "lib/netstandard1.0/_._",
  4429. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4430. "runtime.native.system.security.cryptography.apple.nuspec"
  4431. ]
  4432. },
  4433. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4434. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4435. "type": "package",
  4436. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4437. "files": [
  4438. ".nupkg.metadata",
  4439. ".signature.p7s",
  4440. "ThirdPartyNotices.txt",
  4441. "dotnet_library_license.txt",
  4442. "lib/netstandard1.0/_._",
  4443. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4444. "runtime.native.system.security.cryptography.openssl.nuspec"
  4445. ]
  4446. },
  4447. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4448. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4449. "type": "package",
  4450. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4451. "files": [
  4452. ".nupkg.metadata",
  4453. ".signature.p7s",
  4454. "ThirdPartyNotices.txt",
  4455. "dotnet_library_license.txt",
  4456. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4457. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4458. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4459. ]
  4460. },
  4461. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4462. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4463. "type": "package",
  4464. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4465. "files": [
  4466. ".nupkg.metadata",
  4467. ".signature.p7s",
  4468. "ThirdPartyNotices.txt",
  4469. "dotnet_library_license.txt",
  4470. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4471. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4472. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4473. ]
  4474. },
  4475. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4476. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4477. "type": "package",
  4478. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4479. "files": [
  4480. ".nupkg.metadata",
  4481. ".signature.p7s",
  4482. "ThirdPartyNotices.txt",
  4483. "dotnet_library_license.txt",
  4484. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4485. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4486. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4487. ]
  4488. },
  4489. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4490. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4491. "type": "package",
  4492. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4493. "files": [
  4494. ".nupkg.metadata",
  4495. ".signature.p7s",
  4496. "ThirdPartyNotices.txt",
  4497. "dotnet_library_license.txt",
  4498. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4499. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4500. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4501. ]
  4502. },
  4503. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4504. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4505. "type": "package",
  4506. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4507. "files": [
  4508. ".nupkg.metadata",
  4509. ".signature.p7s",
  4510. "ThirdPartyNotices.txt",
  4511. "dotnet_library_license.txt",
  4512. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4513. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4514. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4515. ]
  4516. },
  4517. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4518. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4519. "type": "package",
  4520. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4521. "files": [
  4522. ".nupkg.metadata",
  4523. ".signature.p7s",
  4524. "ThirdPartyNotices.txt",
  4525. "dotnet_library_license.txt",
  4526. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4527. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4528. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4529. ]
  4530. },
  4531. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4532. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4533. "type": "package",
  4534. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4535. "files": [
  4536. ".nupkg.metadata",
  4537. ".signature.p7s",
  4538. "ThirdPartyNotices.txt",
  4539. "dotnet_library_license.txt",
  4540. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4541. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4542. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4543. ]
  4544. },
  4545. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4546. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4547. "type": "package",
  4548. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4549. "files": [
  4550. ".nupkg.metadata",
  4551. ".signature.p7s",
  4552. "ThirdPartyNotices.txt",
  4553. "dotnet_library_license.txt",
  4554. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4555. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4556. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4557. ]
  4558. },
  4559. "Swifter.Core/1.2.9.6": {
  4560. "sha512": "UoCMb/SoxQnRdQA4sno9hS3fqJcu4JrxpyGIpZV4Az8zVJhJG/+VXdHPdwXlx2DnBUPBIbLQiU/wWghwnoyHdg==",
  4561. "type": "package",
  4562. "path": "swifter.core/1.2.9.6",
  4563. "files": [
  4564. ".nupkg.metadata",
  4565. ".signature.p7s",
  4566. "LICENSE",
  4567. "lib/net20/Swifter.Core.dll",
  4568. "lib/net20/Swifter.Core.xml",
  4569. "lib/net30/Swifter.Core.dll",
  4570. "lib/net30/Swifter.Core.xml",
  4571. "lib/net35/Swifter.Core.dll",
  4572. "lib/net35/Swifter.Core.xml",
  4573. "lib/net40/Swifter.Core.dll",
  4574. "lib/net40/Swifter.Core.xml",
  4575. "lib/net45/Swifter.Core.dll",
  4576. "lib/net45/Swifter.Core.xml",
  4577. "lib/net451/Swifter.Core.dll",
  4578. "lib/net451/Swifter.Core.xml",
  4579. "lib/net47/Swifter.Core.dll",
  4580. "lib/net47/Swifter.Core.xml",
  4581. "lib/net471/Swifter.Core.dll",
  4582. "lib/net471/Swifter.Core.xml",
  4583. "lib/netcoreapp2.0/Swifter.Core.dll",
  4584. "lib/netcoreapp2.0/Swifter.Core.xml",
  4585. "lib/netcoreapp2.1/Swifter.Core.dll",
  4586. "lib/netcoreapp2.1/Swifter.Core.xml",
  4587. "lib/netcoreapp3.0/Swifter.Core.dll",
  4588. "lib/netcoreapp3.0/Swifter.Core.xml",
  4589. "lib/netstandard2.0/Swifter.Core.dll",
  4590. "lib/netstandard2.0/Swifter.Core.xml",
  4591. "swifter.core.1.2.9.6.nupkg.sha512",
  4592. "swifter.core.nuspec"
  4593. ]
  4594. },
  4595. "Swifter.Json/1.2.9.6": {
  4596. "sha512": "GEaYblZa7FdFIcq47ImGpOYX3he1Qp6g9+3IXDMnLminSd+sUDZl9k2pNeM9zXsGhmmiVdlj8VyVr+TkCg7KAA==",
  4597. "type": "package",
  4598. "path": "swifter.json/1.2.9.6",
  4599. "files": [
  4600. ".nupkg.metadata",
  4601. ".signature.p7s",
  4602. "LICENSE",
  4603. "lib/net20/Swifter.Json.dll",
  4604. "lib/net20/Swifter.Json.xml",
  4605. "lib/net30/Swifter.Json.dll",
  4606. "lib/net30/Swifter.Json.xml",
  4607. "lib/net35/Swifter.Json.dll",
  4608. "lib/net35/Swifter.Json.xml",
  4609. "lib/net40/Swifter.Json.dll",
  4610. "lib/net40/Swifter.Json.xml",
  4611. "lib/net45/Swifter.Json.dll",
  4612. "lib/net45/Swifter.Json.xml",
  4613. "lib/net451/Swifter.Json.dll",
  4614. "lib/net451/Swifter.Json.xml",
  4615. "lib/net47/Swifter.Json.dll",
  4616. "lib/net47/Swifter.Json.xml",
  4617. "lib/net471/Swifter.Json.dll",
  4618. "lib/net471/Swifter.Json.xml",
  4619. "lib/netcoreapp2.0/Swifter.Json.dll",
  4620. "lib/netcoreapp2.0/Swifter.Json.xml",
  4621. "lib/netcoreapp2.1/Swifter.Json.dll",
  4622. "lib/netcoreapp2.1/Swifter.Json.xml",
  4623. "lib/netcoreapp3.0/Swifter.Json.dll",
  4624. "lib/netcoreapp3.0/Swifter.Json.xml",
  4625. "lib/netstandard2.0/Swifter.Json.dll",
  4626. "lib/netstandard2.0/Swifter.Json.xml",
  4627. "swifter.json.1.2.9.6.nupkg.sha512",
  4628. "swifter.json.nuspec"
  4629. ]
  4630. },
  4631. "Swifter.Unsafe/1.0.9": {
  4632. "sha512": "K0gw/5LpItw213rF50Gxvr8NTui5Y3ssJtSaq3T7e3QqBh1S3GxByP01WWggYVaC9ttNYOMAAiPJO+8E2SMpYg==",
  4633. "type": "package",
  4634. "path": "swifter.unsafe/1.0.9",
  4635. "files": [
  4636. ".nupkg.metadata",
  4637. ".signature.p7s",
  4638. "lib/net20/Swifter.Unsafe.dll",
  4639. "lib/netcoreapp2.0/Swifter.Unsafe.dll",
  4640. "lib/netstandard1.0/Swifter.Unsafe.dll",
  4641. "lib/netstandard2.0/Swifter.Unsafe.dll",
  4642. "swifter.unsafe.1.0.9.nupkg.sha512",
  4643. "swifter.unsafe.nuspec"
  4644. ]
  4645. },
  4646. "System.AppContext/4.3.0": {
  4647. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4648. "type": "package",
  4649. "path": "system.appcontext/4.3.0",
  4650. "files": [
  4651. ".nupkg.metadata",
  4652. ".signature.p7s",
  4653. "ThirdPartyNotices.txt",
  4654. "dotnet_library_license.txt",
  4655. "lib/MonoAndroid10/_._",
  4656. "lib/MonoTouch10/_._",
  4657. "lib/net46/System.AppContext.dll",
  4658. "lib/net463/System.AppContext.dll",
  4659. "lib/netcore50/System.AppContext.dll",
  4660. "lib/netstandard1.6/System.AppContext.dll",
  4661. "lib/xamarinios10/_._",
  4662. "lib/xamarinmac20/_._",
  4663. "lib/xamarintvos10/_._",
  4664. "lib/xamarinwatchos10/_._",
  4665. "ref/MonoAndroid10/_._",
  4666. "ref/MonoTouch10/_._",
  4667. "ref/net46/System.AppContext.dll",
  4668. "ref/net463/System.AppContext.dll",
  4669. "ref/netstandard/_._",
  4670. "ref/netstandard1.3/System.AppContext.dll",
  4671. "ref/netstandard1.3/System.AppContext.xml",
  4672. "ref/netstandard1.3/de/System.AppContext.xml",
  4673. "ref/netstandard1.3/es/System.AppContext.xml",
  4674. "ref/netstandard1.3/fr/System.AppContext.xml",
  4675. "ref/netstandard1.3/it/System.AppContext.xml",
  4676. "ref/netstandard1.3/ja/System.AppContext.xml",
  4677. "ref/netstandard1.3/ko/System.AppContext.xml",
  4678. "ref/netstandard1.3/ru/System.AppContext.xml",
  4679. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4680. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4681. "ref/netstandard1.6/System.AppContext.dll",
  4682. "ref/netstandard1.6/System.AppContext.xml",
  4683. "ref/netstandard1.6/de/System.AppContext.xml",
  4684. "ref/netstandard1.6/es/System.AppContext.xml",
  4685. "ref/netstandard1.6/fr/System.AppContext.xml",
  4686. "ref/netstandard1.6/it/System.AppContext.xml",
  4687. "ref/netstandard1.6/ja/System.AppContext.xml",
  4688. "ref/netstandard1.6/ko/System.AppContext.xml",
  4689. "ref/netstandard1.6/ru/System.AppContext.xml",
  4690. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4691. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4692. "ref/xamarinios10/_._",
  4693. "ref/xamarinmac20/_._",
  4694. "ref/xamarintvos10/_._",
  4695. "ref/xamarinwatchos10/_._",
  4696. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4697. "system.appcontext.4.3.0.nupkg.sha512",
  4698. "system.appcontext.nuspec"
  4699. ]
  4700. },
  4701. "System.Buffers/4.5.0": {
  4702. "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
  4703. "type": "package",
  4704. "path": "system.buffers/4.5.0",
  4705. "files": [
  4706. ".nupkg.metadata",
  4707. ".signature.p7s",
  4708. "LICENSE.TXT",
  4709. "THIRD-PARTY-NOTICES.TXT",
  4710. "lib/netcoreapp2.0/_._",
  4711. "lib/netstandard1.1/System.Buffers.dll",
  4712. "lib/netstandard1.1/System.Buffers.xml",
  4713. "lib/netstandard2.0/System.Buffers.dll",
  4714. "lib/netstandard2.0/System.Buffers.xml",
  4715. "lib/uap10.0.16299/_._",
  4716. "ref/net45/System.Buffers.dll",
  4717. "ref/net45/System.Buffers.xml",
  4718. "ref/netcoreapp2.0/_._",
  4719. "ref/netstandard1.1/System.Buffers.dll",
  4720. "ref/netstandard1.1/System.Buffers.xml",
  4721. "ref/netstandard2.0/System.Buffers.dll",
  4722. "ref/netstandard2.0/System.Buffers.xml",
  4723. "ref/uap10.0.16299/_._",
  4724. "system.buffers.4.5.0.nupkg.sha512",
  4725. "system.buffers.nuspec",
  4726. "useSharedDesignerContext.txt",
  4727. "version.txt"
  4728. ]
  4729. },
  4730. "System.Collections/4.3.0": {
  4731. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4732. "type": "package",
  4733. "path": "system.collections/4.3.0",
  4734. "files": [
  4735. ".nupkg.metadata",
  4736. ".signature.p7s",
  4737. "ThirdPartyNotices.txt",
  4738. "dotnet_library_license.txt",
  4739. "lib/MonoAndroid10/_._",
  4740. "lib/MonoTouch10/_._",
  4741. "lib/net45/_._",
  4742. "lib/portable-net45+win8+wp8+wpa81/_._",
  4743. "lib/win8/_._",
  4744. "lib/wp80/_._",
  4745. "lib/wpa81/_._",
  4746. "lib/xamarinios10/_._",
  4747. "lib/xamarinmac20/_._",
  4748. "lib/xamarintvos10/_._",
  4749. "lib/xamarinwatchos10/_._",
  4750. "ref/MonoAndroid10/_._",
  4751. "ref/MonoTouch10/_._",
  4752. "ref/net45/_._",
  4753. "ref/netcore50/System.Collections.dll",
  4754. "ref/netcore50/System.Collections.xml",
  4755. "ref/netcore50/de/System.Collections.xml",
  4756. "ref/netcore50/es/System.Collections.xml",
  4757. "ref/netcore50/fr/System.Collections.xml",
  4758. "ref/netcore50/it/System.Collections.xml",
  4759. "ref/netcore50/ja/System.Collections.xml",
  4760. "ref/netcore50/ko/System.Collections.xml",
  4761. "ref/netcore50/ru/System.Collections.xml",
  4762. "ref/netcore50/zh-hans/System.Collections.xml",
  4763. "ref/netcore50/zh-hant/System.Collections.xml",
  4764. "ref/netstandard1.0/System.Collections.dll",
  4765. "ref/netstandard1.0/System.Collections.xml",
  4766. "ref/netstandard1.0/de/System.Collections.xml",
  4767. "ref/netstandard1.0/es/System.Collections.xml",
  4768. "ref/netstandard1.0/fr/System.Collections.xml",
  4769. "ref/netstandard1.0/it/System.Collections.xml",
  4770. "ref/netstandard1.0/ja/System.Collections.xml",
  4771. "ref/netstandard1.0/ko/System.Collections.xml",
  4772. "ref/netstandard1.0/ru/System.Collections.xml",
  4773. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4774. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4775. "ref/netstandard1.3/System.Collections.dll",
  4776. "ref/netstandard1.3/System.Collections.xml",
  4777. "ref/netstandard1.3/de/System.Collections.xml",
  4778. "ref/netstandard1.3/es/System.Collections.xml",
  4779. "ref/netstandard1.3/fr/System.Collections.xml",
  4780. "ref/netstandard1.3/it/System.Collections.xml",
  4781. "ref/netstandard1.3/ja/System.Collections.xml",
  4782. "ref/netstandard1.3/ko/System.Collections.xml",
  4783. "ref/netstandard1.3/ru/System.Collections.xml",
  4784. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4785. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4786. "ref/portable-net45+win8+wp8+wpa81/_._",
  4787. "ref/win8/_._",
  4788. "ref/wp80/_._",
  4789. "ref/wpa81/_._",
  4790. "ref/xamarinios10/_._",
  4791. "ref/xamarinmac20/_._",
  4792. "ref/xamarintvos10/_._",
  4793. "ref/xamarinwatchos10/_._",
  4794. "system.collections.4.3.0.nupkg.sha512",
  4795. "system.collections.nuspec"
  4796. ]
  4797. },
  4798. "System.Collections.Concurrent/4.3.0": {
  4799. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4800. "type": "package",
  4801. "path": "system.collections.concurrent/4.3.0",
  4802. "files": [
  4803. ".nupkg.metadata",
  4804. ".signature.p7s",
  4805. "ThirdPartyNotices.txt",
  4806. "dotnet_library_license.txt",
  4807. "lib/MonoAndroid10/_._",
  4808. "lib/MonoTouch10/_._",
  4809. "lib/net45/_._",
  4810. "lib/netcore50/System.Collections.Concurrent.dll",
  4811. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4812. "lib/portable-net45+win8+wpa81/_._",
  4813. "lib/win8/_._",
  4814. "lib/wpa81/_._",
  4815. "lib/xamarinios10/_._",
  4816. "lib/xamarinmac20/_._",
  4817. "lib/xamarintvos10/_._",
  4818. "lib/xamarinwatchos10/_._",
  4819. "ref/MonoAndroid10/_._",
  4820. "ref/MonoTouch10/_._",
  4821. "ref/net45/_._",
  4822. "ref/netcore50/System.Collections.Concurrent.dll",
  4823. "ref/netcore50/System.Collections.Concurrent.xml",
  4824. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4825. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4826. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4827. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4828. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4829. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4830. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4831. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4832. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4833. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4834. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4835. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4836. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4837. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4838. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4839. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4840. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4841. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4842. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4843. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4844. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4845. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4846. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4847. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4848. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4849. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4850. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4851. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4852. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  4853. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  4854. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  4855. "ref/portable-net45+win8+wpa81/_._",
  4856. "ref/win8/_._",
  4857. "ref/wpa81/_._",
  4858. "ref/xamarinios10/_._",
  4859. "ref/xamarinmac20/_._",
  4860. "ref/xamarintvos10/_._",
  4861. "ref/xamarinwatchos10/_._",
  4862. "system.collections.concurrent.4.3.0.nupkg.sha512",
  4863. "system.collections.concurrent.nuspec"
  4864. ]
  4865. },
  4866. "System.Collections.Immutable/1.3.1": {
  4867. "sha512": "n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==",
  4868. "type": "package",
  4869. "path": "system.collections.immutable/1.3.1",
  4870. "files": [
  4871. ".nupkg.metadata",
  4872. ".signature.p7s",
  4873. "ThirdPartyNotices.txt",
  4874. "dotnet_library_license.txt",
  4875. "lib/netstandard1.0/System.Collections.Immutable.dll",
  4876. "lib/netstandard1.0/System.Collections.Immutable.xml",
  4877. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  4878. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  4879. "system.collections.immutable.1.3.1.nupkg.sha512",
  4880. "system.collections.immutable.nuspec"
  4881. ]
  4882. },
  4883. "System.ComponentModel.Annotations/4.7.0": {
  4884. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  4885. "type": "package",
  4886. "path": "system.componentmodel.annotations/4.7.0",
  4887. "files": [
  4888. ".nupkg.metadata",
  4889. ".signature.p7s",
  4890. "LICENSE.TXT",
  4891. "THIRD-PARTY-NOTICES.TXT",
  4892. "lib/MonoAndroid10/_._",
  4893. "lib/MonoTouch10/_._",
  4894. "lib/net45/_._",
  4895. "lib/net461/System.ComponentModel.Annotations.dll",
  4896. "lib/netcore50/System.ComponentModel.Annotations.dll",
  4897. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  4898. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  4899. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  4900. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  4901. "lib/portable-net45+win8/_._",
  4902. "lib/win8/_._",
  4903. "lib/xamarinios10/_._",
  4904. "lib/xamarinmac20/_._",
  4905. "lib/xamarintvos10/_._",
  4906. "lib/xamarinwatchos10/_._",
  4907. "ref/MonoAndroid10/_._",
  4908. "ref/MonoTouch10/_._",
  4909. "ref/net45/_._",
  4910. "ref/net461/System.ComponentModel.Annotations.dll",
  4911. "ref/net461/System.ComponentModel.Annotations.xml",
  4912. "ref/netcore50/System.ComponentModel.Annotations.dll",
  4913. "ref/netcore50/System.ComponentModel.Annotations.xml",
  4914. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  4915. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  4916. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  4917. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  4918. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  4919. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  4920. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  4921. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  4922. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  4923. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  4924. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  4925. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  4926. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  4927. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  4928. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  4929. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  4930. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  4931. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  4932. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  4933. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  4934. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  4935. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  4936. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  4937. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  4938. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  4939. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  4940. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  4941. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  4942. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  4943. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  4944. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  4945. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  4946. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  4947. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  4948. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  4949. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  4950. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  4951. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  4952. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  4953. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  4954. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  4955. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  4956. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  4957. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  4958. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  4959. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  4960. "ref/portable-net45+win8/_._",
  4961. "ref/win8/_._",
  4962. "ref/xamarinios10/_._",
  4963. "ref/xamarinmac20/_._",
  4964. "ref/xamarintvos10/_._",
  4965. "ref/xamarinwatchos10/_._",
  4966. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  4967. "system.componentmodel.annotations.nuspec",
  4968. "useSharedDesignerContext.txt",
  4969. "version.txt"
  4970. ]
  4971. },
  4972. "System.Console/4.3.0": {
  4973. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  4974. "type": "package",
  4975. "path": "system.console/4.3.0",
  4976. "files": [
  4977. ".nupkg.metadata",
  4978. ".signature.p7s",
  4979. "ThirdPartyNotices.txt",
  4980. "dotnet_library_license.txt",
  4981. "lib/MonoAndroid10/_._",
  4982. "lib/MonoTouch10/_._",
  4983. "lib/net46/System.Console.dll",
  4984. "lib/xamarinios10/_._",
  4985. "lib/xamarinmac20/_._",
  4986. "lib/xamarintvos10/_._",
  4987. "lib/xamarinwatchos10/_._",
  4988. "ref/MonoAndroid10/_._",
  4989. "ref/MonoTouch10/_._",
  4990. "ref/net46/System.Console.dll",
  4991. "ref/netstandard1.3/System.Console.dll",
  4992. "ref/netstandard1.3/System.Console.xml",
  4993. "ref/netstandard1.3/de/System.Console.xml",
  4994. "ref/netstandard1.3/es/System.Console.xml",
  4995. "ref/netstandard1.3/fr/System.Console.xml",
  4996. "ref/netstandard1.3/it/System.Console.xml",
  4997. "ref/netstandard1.3/ja/System.Console.xml",
  4998. "ref/netstandard1.3/ko/System.Console.xml",
  4999. "ref/netstandard1.3/ru/System.Console.xml",
  5000. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5001. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5002. "ref/xamarinios10/_._",
  5003. "ref/xamarinmac20/_._",
  5004. "ref/xamarintvos10/_._",
  5005. "ref/xamarinwatchos10/_._",
  5006. "system.console.4.3.0.nupkg.sha512",
  5007. "system.console.nuspec"
  5008. ]
  5009. },
  5010. "System.Diagnostics.Debug/4.3.0": {
  5011. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5012. "type": "package",
  5013. "path": "system.diagnostics.debug/4.3.0",
  5014. "files": [
  5015. ".nupkg.metadata",
  5016. ".signature.p7s",
  5017. "ThirdPartyNotices.txt",
  5018. "dotnet_library_license.txt",
  5019. "lib/MonoAndroid10/_._",
  5020. "lib/MonoTouch10/_._",
  5021. "lib/net45/_._",
  5022. "lib/portable-net45+win8+wp8+wpa81/_._",
  5023. "lib/win8/_._",
  5024. "lib/wp80/_._",
  5025. "lib/wpa81/_._",
  5026. "lib/xamarinios10/_._",
  5027. "lib/xamarinmac20/_._",
  5028. "lib/xamarintvos10/_._",
  5029. "lib/xamarinwatchos10/_._",
  5030. "ref/MonoAndroid10/_._",
  5031. "ref/MonoTouch10/_._",
  5032. "ref/net45/_._",
  5033. "ref/netcore50/System.Diagnostics.Debug.dll",
  5034. "ref/netcore50/System.Diagnostics.Debug.xml",
  5035. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5036. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5037. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5038. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5039. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5040. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5041. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5042. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5043. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5044. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5045. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5046. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5047. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5048. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5049. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5050. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5051. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5052. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5053. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5054. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5055. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5056. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5057. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5058. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5059. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5060. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5061. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5062. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5063. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5064. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5065. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5066. "ref/portable-net45+win8+wp8+wpa81/_._",
  5067. "ref/win8/_._",
  5068. "ref/wp80/_._",
  5069. "ref/wpa81/_._",
  5070. "ref/xamarinios10/_._",
  5071. "ref/xamarinmac20/_._",
  5072. "ref/xamarintvos10/_._",
  5073. "ref/xamarinwatchos10/_._",
  5074. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5075. "system.diagnostics.debug.nuspec"
  5076. ]
  5077. },
  5078. "System.Diagnostics.DiagnosticSource/4.5.0": {
  5079. "sha512": "eIHRELiYDQvsMToML81QFkXEEYXUSUT2F28t1SGrevWqP+epFdw80SyAXIKTXOHrIEXReFOEnEr7XlGiC2GgOg==",
  5080. "type": "package",
  5081. "path": "system.diagnostics.diagnosticsource/4.5.0",
  5082. "files": [
  5083. ".nupkg.metadata",
  5084. ".signature.p7s",
  5085. "LICENSE.TXT",
  5086. "THIRD-PARTY-NOTICES.TXT",
  5087. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5088. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5089. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5090. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5091. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5092. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5093. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5094. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5095. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5096. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5097. "system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512",
  5098. "system.diagnostics.diagnosticsource.nuspec",
  5099. "useSharedDesignerContext.txt",
  5100. "version.txt"
  5101. ]
  5102. },
  5103. "System.Diagnostics.FileVersionInfo/4.3.0": {
  5104. "sha512": "omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==",
  5105. "type": "package",
  5106. "path": "system.diagnostics.fileversioninfo/4.3.0",
  5107. "files": [
  5108. ".nupkg.metadata",
  5109. ".signature.p7s",
  5110. "ThirdPartyNotices.txt",
  5111. "dotnet_library_license.txt",
  5112. "lib/MonoAndroid10/_._",
  5113. "lib/MonoTouch10/_._",
  5114. "lib/net46/System.Diagnostics.FileVersionInfo.dll",
  5115. "lib/xamarinios10/_._",
  5116. "lib/xamarinmac20/_._",
  5117. "lib/xamarintvos10/_._",
  5118. "lib/xamarinwatchos10/_._",
  5119. "ref/MonoAndroid10/_._",
  5120. "ref/MonoTouch10/_._",
  5121. "ref/net46/System.Diagnostics.FileVersionInfo.dll",
  5122. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  5123. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml",
  5124. "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml",
  5125. "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml",
  5126. "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml",
  5127. "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml",
  5128. "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml",
  5129. "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml",
  5130. "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml",
  5131. "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml",
  5132. "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml",
  5133. "ref/xamarinios10/_._",
  5134. "ref/xamarinmac20/_._",
  5135. "ref/xamarintvos10/_._",
  5136. "ref/xamarinwatchos10/_._",
  5137. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  5138. "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll",
  5139. "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll",
  5140. "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  5141. "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512",
  5142. "system.diagnostics.fileversioninfo.nuspec"
  5143. ]
  5144. },
  5145. "System.Diagnostics.StackTrace/4.3.0": {
  5146. "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
  5147. "type": "package",
  5148. "path": "system.diagnostics.stacktrace/4.3.0",
  5149. "files": [
  5150. ".nupkg.metadata",
  5151. ".signature.p7s",
  5152. "ThirdPartyNotices.txt",
  5153. "dotnet_library_license.txt",
  5154. "lib/MonoAndroid10/_._",
  5155. "lib/MonoTouch10/_._",
  5156. "lib/net46/System.Diagnostics.StackTrace.dll",
  5157. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll",
  5158. "lib/xamarinios10/_._",
  5159. "lib/xamarinmac20/_._",
  5160. "lib/xamarintvos10/_._",
  5161. "lib/xamarinwatchos10/_._",
  5162. "ref/MonoAndroid10/_._",
  5163. "ref/MonoTouch10/_._",
  5164. "ref/net46/System.Diagnostics.StackTrace.dll",
  5165. "ref/netstandard1.3/System.Diagnostics.StackTrace.dll",
  5166. "ref/netstandard1.3/System.Diagnostics.StackTrace.xml",
  5167. "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml",
  5168. "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml",
  5169. "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml",
  5170. "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml",
  5171. "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml",
  5172. "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml",
  5173. "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml",
  5174. "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml",
  5175. "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml",
  5176. "ref/xamarinios10/_._",
  5177. "ref/xamarinmac20/_._",
  5178. "ref/xamarintvos10/_._",
  5179. "ref/xamarinwatchos10/_._",
  5180. "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll",
  5181. "system.diagnostics.stacktrace.4.3.0.nupkg.sha512",
  5182. "system.diagnostics.stacktrace.nuspec"
  5183. ]
  5184. },
  5185. "System.Diagnostics.Tools/4.3.0": {
  5186. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5187. "type": "package",
  5188. "path": "system.diagnostics.tools/4.3.0",
  5189. "files": [
  5190. ".nupkg.metadata",
  5191. ".signature.p7s",
  5192. "ThirdPartyNotices.txt",
  5193. "dotnet_library_license.txt",
  5194. "lib/MonoAndroid10/_._",
  5195. "lib/MonoTouch10/_._",
  5196. "lib/net45/_._",
  5197. "lib/portable-net45+win8+wp8+wpa81/_._",
  5198. "lib/win8/_._",
  5199. "lib/wp80/_._",
  5200. "lib/wpa81/_._",
  5201. "lib/xamarinios10/_._",
  5202. "lib/xamarinmac20/_._",
  5203. "lib/xamarintvos10/_._",
  5204. "lib/xamarinwatchos10/_._",
  5205. "ref/MonoAndroid10/_._",
  5206. "ref/MonoTouch10/_._",
  5207. "ref/net45/_._",
  5208. "ref/netcore50/System.Diagnostics.Tools.dll",
  5209. "ref/netcore50/System.Diagnostics.Tools.xml",
  5210. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5211. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5212. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5213. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5214. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5215. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5216. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5217. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5218. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5219. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5220. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5221. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5222. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5223. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5224. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5225. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5226. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5227. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5228. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5229. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5230. "ref/portable-net45+win8+wp8+wpa81/_._",
  5231. "ref/win8/_._",
  5232. "ref/wp80/_._",
  5233. "ref/wpa81/_._",
  5234. "ref/xamarinios10/_._",
  5235. "ref/xamarinmac20/_._",
  5236. "ref/xamarintvos10/_._",
  5237. "ref/xamarinwatchos10/_._",
  5238. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5239. "system.diagnostics.tools.nuspec"
  5240. ]
  5241. },
  5242. "System.Diagnostics.Tracing/4.3.0": {
  5243. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5244. "type": "package",
  5245. "path": "system.diagnostics.tracing/4.3.0",
  5246. "files": [
  5247. ".nupkg.metadata",
  5248. ".signature.p7s",
  5249. "ThirdPartyNotices.txt",
  5250. "dotnet_library_license.txt",
  5251. "lib/MonoAndroid10/_._",
  5252. "lib/MonoTouch10/_._",
  5253. "lib/net45/_._",
  5254. "lib/net462/System.Diagnostics.Tracing.dll",
  5255. "lib/portable-net45+win8+wpa81/_._",
  5256. "lib/win8/_._",
  5257. "lib/wpa81/_._",
  5258. "lib/xamarinios10/_._",
  5259. "lib/xamarinmac20/_._",
  5260. "lib/xamarintvos10/_._",
  5261. "lib/xamarinwatchos10/_._",
  5262. "ref/MonoAndroid10/_._",
  5263. "ref/MonoTouch10/_._",
  5264. "ref/net45/_._",
  5265. "ref/net462/System.Diagnostics.Tracing.dll",
  5266. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5267. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5268. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5269. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5270. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5271. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5272. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5273. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5274. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5275. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5276. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5277. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5278. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5279. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5280. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5281. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5282. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5283. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5284. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5285. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5286. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5287. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5288. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5289. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5290. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5291. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5292. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5293. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5294. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5295. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5296. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5297. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5298. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5299. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5300. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5301. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5302. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5303. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5304. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5305. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5306. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5307. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5308. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5309. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5310. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5311. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5312. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5313. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5314. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5315. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5316. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5317. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5318. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5319. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5320. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5321. "ref/portable-net45+win8+wpa81/_._",
  5322. "ref/win8/_._",
  5323. "ref/wpa81/_._",
  5324. "ref/xamarinios10/_._",
  5325. "ref/xamarinmac20/_._",
  5326. "ref/xamarintvos10/_._",
  5327. "ref/xamarinwatchos10/_._",
  5328. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5329. "system.diagnostics.tracing.nuspec"
  5330. ]
  5331. },
  5332. "System.Dynamic.Runtime/4.3.0": {
  5333. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  5334. "type": "package",
  5335. "path": "system.dynamic.runtime/4.3.0",
  5336. "files": [
  5337. ".nupkg.metadata",
  5338. ".signature.p7s",
  5339. "ThirdPartyNotices.txt",
  5340. "dotnet_library_license.txt",
  5341. "lib/MonoAndroid10/_._",
  5342. "lib/MonoTouch10/_._",
  5343. "lib/net45/_._",
  5344. "lib/netcore50/System.Dynamic.Runtime.dll",
  5345. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  5346. "lib/portable-net45+win8+wp8+wpa81/_._",
  5347. "lib/win8/_._",
  5348. "lib/wp80/_._",
  5349. "lib/wpa81/_._",
  5350. "lib/xamarinios10/_._",
  5351. "lib/xamarinmac20/_._",
  5352. "lib/xamarintvos10/_._",
  5353. "lib/xamarinwatchos10/_._",
  5354. "ref/MonoAndroid10/_._",
  5355. "ref/MonoTouch10/_._",
  5356. "ref/net45/_._",
  5357. "ref/netcore50/System.Dynamic.Runtime.dll",
  5358. "ref/netcore50/System.Dynamic.Runtime.xml",
  5359. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  5360. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  5361. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  5362. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  5363. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  5364. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  5365. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  5366. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  5367. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  5368. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  5369. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  5370. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  5371. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  5372. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  5373. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  5374. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  5375. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  5376. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  5377. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  5378. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  5379. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  5380. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  5381. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  5382. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  5383. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  5384. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  5385. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  5386. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  5387. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  5388. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  5389. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  5390. "ref/portable-net45+win8+wp8+wpa81/_._",
  5391. "ref/win8/_._",
  5392. "ref/wp80/_._",
  5393. "ref/wpa81/_._",
  5394. "ref/xamarinios10/_._",
  5395. "ref/xamarinmac20/_._",
  5396. "ref/xamarintvos10/_._",
  5397. "ref/xamarinwatchos10/_._",
  5398. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  5399. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  5400. "system.dynamic.runtime.nuspec"
  5401. ]
  5402. },
  5403. "System.Globalization/4.3.0": {
  5404. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5405. "type": "package",
  5406. "path": "system.globalization/4.3.0",
  5407. "files": [
  5408. ".nupkg.metadata",
  5409. ".signature.p7s",
  5410. "ThirdPartyNotices.txt",
  5411. "dotnet_library_license.txt",
  5412. "lib/MonoAndroid10/_._",
  5413. "lib/MonoTouch10/_._",
  5414. "lib/net45/_._",
  5415. "lib/portable-net45+win8+wp8+wpa81/_._",
  5416. "lib/win8/_._",
  5417. "lib/wp80/_._",
  5418. "lib/wpa81/_._",
  5419. "lib/xamarinios10/_._",
  5420. "lib/xamarinmac20/_._",
  5421. "lib/xamarintvos10/_._",
  5422. "lib/xamarinwatchos10/_._",
  5423. "ref/MonoAndroid10/_._",
  5424. "ref/MonoTouch10/_._",
  5425. "ref/net45/_._",
  5426. "ref/netcore50/System.Globalization.dll",
  5427. "ref/netcore50/System.Globalization.xml",
  5428. "ref/netcore50/de/System.Globalization.xml",
  5429. "ref/netcore50/es/System.Globalization.xml",
  5430. "ref/netcore50/fr/System.Globalization.xml",
  5431. "ref/netcore50/it/System.Globalization.xml",
  5432. "ref/netcore50/ja/System.Globalization.xml",
  5433. "ref/netcore50/ko/System.Globalization.xml",
  5434. "ref/netcore50/ru/System.Globalization.xml",
  5435. "ref/netcore50/zh-hans/System.Globalization.xml",
  5436. "ref/netcore50/zh-hant/System.Globalization.xml",
  5437. "ref/netstandard1.0/System.Globalization.dll",
  5438. "ref/netstandard1.0/System.Globalization.xml",
  5439. "ref/netstandard1.0/de/System.Globalization.xml",
  5440. "ref/netstandard1.0/es/System.Globalization.xml",
  5441. "ref/netstandard1.0/fr/System.Globalization.xml",
  5442. "ref/netstandard1.0/it/System.Globalization.xml",
  5443. "ref/netstandard1.0/ja/System.Globalization.xml",
  5444. "ref/netstandard1.0/ko/System.Globalization.xml",
  5445. "ref/netstandard1.0/ru/System.Globalization.xml",
  5446. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5447. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5448. "ref/netstandard1.3/System.Globalization.dll",
  5449. "ref/netstandard1.3/System.Globalization.xml",
  5450. "ref/netstandard1.3/de/System.Globalization.xml",
  5451. "ref/netstandard1.3/es/System.Globalization.xml",
  5452. "ref/netstandard1.3/fr/System.Globalization.xml",
  5453. "ref/netstandard1.3/it/System.Globalization.xml",
  5454. "ref/netstandard1.3/ja/System.Globalization.xml",
  5455. "ref/netstandard1.3/ko/System.Globalization.xml",
  5456. "ref/netstandard1.3/ru/System.Globalization.xml",
  5457. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5458. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5459. "ref/portable-net45+win8+wp8+wpa81/_._",
  5460. "ref/win8/_._",
  5461. "ref/wp80/_._",
  5462. "ref/wpa81/_._",
  5463. "ref/xamarinios10/_._",
  5464. "ref/xamarinmac20/_._",
  5465. "ref/xamarintvos10/_._",
  5466. "ref/xamarinwatchos10/_._",
  5467. "system.globalization.4.3.0.nupkg.sha512",
  5468. "system.globalization.nuspec"
  5469. ]
  5470. },
  5471. "System.Globalization.Calendars/4.3.0": {
  5472. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  5473. "type": "package",
  5474. "path": "system.globalization.calendars/4.3.0",
  5475. "files": [
  5476. ".nupkg.metadata",
  5477. ".signature.p7s",
  5478. "ThirdPartyNotices.txt",
  5479. "dotnet_library_license.txt",
  5480. "lib/MonoAndroid10/_._",
  5481. "lib/MonoTouch10/_._",
  5482. "lib/net46/System.Globalization.Calendars.dll",
  5483. "lib/xamarinios10/_._",
  5484. "lib/xamarinmac20/_._",
  5485. "lib/xamarintvos10/_._",
  5486. "lib/xamarinwatchos10/_._",
  5487. "ref/MonoAndroid10/_._",
  5488. "ref/MonoTouch10/_._",
  5489. "ref/net46/System.Globalization.Calendars.dll",
  5490. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5491. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5492. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5493. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5494. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5495. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5496. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5497. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5498. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5499. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5500. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5501. "ref/xamarinios10/_._",
  5502. "ref/xamarinmac20/_._",
  5503. "ref/xamarintvos10/_._",
  5504. "ref/xamarinwatchos10/_._",
  5505. "system.globalization.calendars.4.3.0.nupkg.sha512",
  5506. "system.globalization.calendars.nuspec"
  5507. ]
  5508. },
  5509. "System.Globalization.Extensions/4.3.0": {
  5510. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  5511. "type": "package",
  5512. "path": "system.globalization.extensions/4.3.0",
  5513. "files": [
  5514. ".nupkg.metadata",
  5515. ".signature.p7s",
  5516. "ThirdPartyNotices.txt",
  5517. "dotnet_library_license.txt",
  5518. "lib/MonoAndroid10/_._",
  5519. "lib/MonoTouch10/_._",
  5520. "lib/net46/System.Globalization.Extensions.dll",
  5521. "lib/xamarinios10/_._",
  5522. "lib/xamarinmac20/_._",
  5523. "lib/xamarintvos10/_._",
  5524. "lib/xamarinwatchos10/_._",
  5525. "ref/MonoAndroid10/_._",
  5526. "ref/MonoTouch10/_._",
  5527. "ref/net46/System.Globalization.Extensions.dll",
  5528. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5529. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5530. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5531. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5532. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5533. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5534. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5535. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5536. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5537. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5538. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5539. "ref/xamarinios10/_._",
  5540. "ref/xamarinmac20/_._",
  5541. "ref/xamarintvos10/_._",
  5542. "ref/xamarinwatchos10/_._",
  5543. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5544. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5545. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5546. "system.globalization.extensions.4.3.0.nupkg.sha512",
  5547. "system.globalization.extensions.nuspec"
  5548. ]
  5549. },
  5550. "System.IO/4.3.0": {
  5551. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5552. "type": "package",
  5553. "path": "system.io/4.3.0",
  5554. "files": [
  5555. ".nupkg.metadata",
  5556. ".signature.p7s",
  5557. "ThirdPartyNotices.txt",
  5558. "dotnet_library_license.txt",
  5559. "lib/MonoAndroid10/_._",
  5560. "lib/MonoTouch10/_._",
  5561. "lib/net45/_._",
  5562. "lib/net462/System.IO.dll",
  5563. "lib/portable-net45+win8+wp8+wpa81/_._",
  5564. "lib/win8/_._",
  5565. "lib/wp80/_._",
  5566. "lib/wpa81/_._",
  5567. "lib/xamarinios10/_._",
  5568. "lib/xamarinmac20/_._",
  5569. "lib/xamarintvos10/_._",
  5570. "lib/xamarinwatchos10/_._",
  5571. "ref/MonoAndroid10/_._",
  5572. "ref/MonoTouch10/_._",
  5573. "ref/net45/_._",
  5574. "ref/net462/System.IO.dll",
  5575. "ref/netcore50/System.IO.dll",
  5576. "ref/netcore50/System.IO.xml",
  5577. "ref/netcore50/de/System.IO.xml",
  5578. "ref/netcore50/es/System.IO.xml",
  5579. "ref/netcore50/fr/System.IO.xml",
  5580. "ref/netcore50/it/System.IO.xml",
  5581. "ref/netcore50/ja/System.IO.xml",
  5582. "ref/netcore50/ko/System.IO.xml",
  5583. "ref/netcore50/ru/System.IO.xml",
  5584. "ref/netcore50/zh-hans/System.IO.xml",
  5585. "ref/netcore50/zh-hant/System.IO.xml",
  5586. "ref/netstandard1.0/System.IO.dll",
  5587. "ref/netstandard1.0/System.IO.xml",
  5588. "ref/netstandard1.0/de/System.IO.xml",
  5589. "ref/netstandard1.0/es/System.IO.xml",
  5590. "ref/netstandard1.0/fr/System.IO.xml",
  5591. "ref/netstandard1.0/it/System.IO.xml",
  5592. "ref/netstandard1.0/ja/System.IO.xml",
  5593. "ref/netstandard1.0/ko/System.IO.xml",
  5594. "ref/netstandard1.0/ru/System.IO.xml",
  5595. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5596. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5597. "ref/netstandard1.3/System.IO.dll",
  5598. "ref/netstandard1.3/System.IO.xml",
  5599. "ref/netstandard1.3/de/System.IO.xml",
  5600. "ref/netstandard1.3/es/System.IO.xml",
  5601. "ref/netstandard1.3/fr/System.IO.xml",
  5602. "ref/netstandard1.3/it/System.IO.xml",
  5603. "ref/netstandard1.3/ja/System.IO.xml",
  5604. "ref/netstandard1.3/ko/System.IO.xml",
  5605. "ref/netstandard1.3/ru/System.IO.xml",
  5606. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5607. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5608. "ref/netstandard1.5/System.IO.dll",
  5609. "ref/netstandard1.5/System.IO.xml",
  5610. "ref/netstandard1.5/de/System.IO.xml",
  5611. "ref/netstandard1.5/es/System.IO.xml",
  5612. "ref/netstandard1.5/fr/System.IO.xml",
  5613. "ref/netstandard1.5/it/System.IO.xml",
  5614. "ref/netstandard1.5/ja/System.IO.xml",
  5615. "ref/netstandard1.5/ko/System.IO.xml",
  5616. "ref/netstandard1.5/ru/System.IO.xml",
  5617. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5618. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5619. "ref/portable-net45+win8+wp8+wpa81/_._",
  5620. "ref/win8/_._",
  5621. "ref/wp80/_._",
  5622. "ref/wpa81/_._",
  5623. "ref/xamarinios10/_._",
  5624. "ref/xamarinmac20/_._",
  5625. "ref/xamarintvos10/_._",
  5626. "ref/xamarinwatchos10/_._",
  5627. "system.io.4.3.0.nupkg.sha512",
  5628. "system.io.nuspec"
  5629. ]
  5630. },
  5631. "System.IO.Compression/4.3.0": {
  5632. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  5633. "type": "package",
  5634. "path": "system.io.compression/4.3.0",
  5635. "files": [
  5636. ".nupkg.metadata",
  5637. ".signature.p7s",
  5638. "ThirdPartyNotices.txt",
  5639. "dotnet_library_license.txt",
  5640. "lib/MonoAndroid10/_._",
  5641. "lib/MonoTouch10/_._",
  5642. "lib/net45/_._",
  5643. "lib/net46/System.IO.Compression.dll",
  5644. "lib/portable-net45+win8+wpa81/_._",
  5645. "lib/win8/_._",
  5646. "lib/wpa81/_._",
  5647. "lib/xamarinios10/_._",
  5648. "lib/xamarinmac20/_._",
  5649. "lib/xamarintvos10/_._",
  5650. "lib/xamarinwatchos10/_._",
  5651. "ref/MonoAndroid10/_._",
  5652. "ref/MonoTouch10/_._",
  5653. "ref/net45/_._",
  5654. "ref/net46/System.IO.Compression.dll",
  5655. "ref/netcore50/System.IO.Compression.dll",
  5656. "ref/netcore50/System.IO.Compression.xml",
  5657. "ref/netcore50/de/System.IO.Compression.xml",
  5658. "ref/netcore50/es/System.IO.Compression.xml",
  5659. "ref/netcore50/fr/System.IO.Compression.xml",
  5660. "ref/netcore50/it/System.IO.Compression.xml",
  5661. "ref/netcore50/ja/System.IO.Compression.xml",
  5662. "ref/netcore50/ko/System.IO.Compression.xml",
  5663. "ref/netcore50/ru/System.IO.Compression.xml",
  5664. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  5665. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  5666. "ref/netstandard1.1/System.IO.Compression.dll",
  5667. "ref/netstandard1.1/System.IO.Compression.xml",
  5668. "ref/netstandard1.1/de/System.IO.Compression.xml",
  5669. "ref/netstandard1.1/es/System.IO.Compression.xml",
  5670. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  5671. "ref/netstandard1.1/it/System.IO.Compression.xml",
  5672. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  5673. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  5674. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  5675. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  5676. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  5677. "ref/netstandard1.3/System.IO.Compression.dll",
  5678. "ref/netstandard1.3/System.IO.Compression.xml",
  5679. "ref/netstandard1.3/de/System.IO.Compression.xml",
  5680. "ref/netstandard1.3/es/System.IO.Compression.xml",
  5681. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  5682. "ref/netstandard1.3/it/System.IO.Compression.xml",
  5683. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  5684. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  5685. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  5686. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  5687. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  5688. "ref/portable-net45+win8+wpa81/_._",
  5689. "ref/win8/_._",
  5690. "ref/wpa81/_._",
  5691. "ref/xamarinios10/_._",
  5692. "ref/xamarinmac20/_._",
  5693. "ref/xamarintvos10/_._",
  5694. "ref/xamarinwatchos10/_._",
  5695. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  5696. "runtimes/win/lib/net46/System.IO.Compression.dll",
  5697. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  5698. "system.io.compression.4.3.0.nupkg.sha512",
  5699. "system.io.compression.nuspec"
  5700. ]
  5701. },
  5702. "System.IO.Compression.ZipFile/4.3.0": {
  5703. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  5704. "type": "package",
  5705. "path": "system.io.compression.zipfile/4.3.0",
  5706. "files": [
  5707. ".nupkg.metadata",
  5708. ".signature.p7s",
  5709. "ThirdPartyNotices.txt",
  5710. "dotnet_library_license.txt",
  5711. "lib/MonoAndroid10/_._",
  5712. "lib/MonoTouch10/_._",
  5713. "lib/net46/System.IO.Compression.ZipFile.dll",
  5714. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5715. "lib/xamarinios10/_._",
  5716. "lib/xamarinmac20/_._",
  5717. "lib/xamarintvos10/_._",
  5718. "lib/xamarinwatchos10/_._",
  5719. "ref/MonoAndroid10/_._",
  5720. "ref/MonoTouch10/_._",
  5721. "ref/net46/System.IO.Compression.ZipFile.dll",
  5722. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5723. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  5724. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  5725. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  5726. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  5727. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  5728. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  5729. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  5730. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  5731. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  5732. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  5733. "ref/xamarinios10/_._",
  5734. "ref/xamarinmac20/_._",
  5735. "ref/xamarintvos10/_._",
  5736. "ref/xamarinwatchos10/_._",
  5737. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  5738. "system.io.compression.zipfile.nuspec"
  5739. ]
  5740. },
  5741. "System.IO.FileSystem/4.3.0": {
  5742. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  5743. "type": "package",
  5744. "path": "system.io.filesystem/4.3.0",
  5745. "files": [
  5746. ".nupkg.metadata",
  5747. ".signature.p7s",
  5748. "ThirdPartyNotices.txt",
  5749. "dotnet_library_license.txt",
  5750. "lib/MonoAndroid10/_._",
  5751. "lib/MonoTouch10/_._",
  5752. "lib/net46/System.IO.FileSystem.dll",
  5753. "lib/xamarinios10/_._",
  5754. "lib/xamarinmac20/_._",
  5755. "lib/xamarintvos10/_._",
  5756. "lib/xamarinwatchos10/_._",
  5757. "ref/MonoAndroid10/_._",
  5758. "ref/MonoTouch10/_._",
  5759. "ref/net46/System.IO.FileSystem.dll",
  5760. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5761. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5762. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5763. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5764. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5765. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5766. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5767. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5768. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5769. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5770. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5771. "ref/xamarinios10/_._",
  5772. "ref/xamarinmac20/_._",
  5773. "ref/xamarintvos10/_._",
  5774. "ref/xamarinwatchos10/_._",
  5775. "system.io.filesystem.4.3.0.nupkg.sha512",
  5776. "system.io.filesystem.nuspec"
  5777. ]
  5778. },
  5779. "System.IO.FileSystem.Primitives/4.3.0": {
  5780. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  5781. "type": "package",
  5782. "path": "system.io.filesystem.primitives/4.3.0",
  5783. "files": [
  5784. ".nupkg.metadata",
  5785. ".signature.p7s",
  5786. "ThirdPartyNotices.txt",
  5787. "dotnet_library_license.txt",
  5788. "lib/MonoAndroid10/_._",
  5789. "lib/MonoTouch10/_._",
  5790. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5791. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5792. "lib/xamarinios10/_._",
  5793. "lib/xamarinmac20/_._",
  5794. "lib/xamarintvos10/_._",
  5795. "lib/xamarinwatchos10/_._",
  5796. "ref/MonoAndroid10/_._",
  5797. "ref/MonoTouch10/_._",
  5798. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5799. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5800. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5801. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5802. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5803. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5804. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5805. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5806. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5807. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5808. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5809. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5810. "ref/xamarinios10/_._",
  5811. "ref/xamarinmac20/_._",
  5812. "ref/xamarintvos10/_._",
  5813. "ref/xamarinwatchos10/_._",
  5814. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  5815. "system.io.filesystem.primitives.nuspec"
  5816. ]
  5817. },
  5818. "System.Linq/4.3.0": {
  5819. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5820. "type": "package",
  5821. "path": "system.linq/4.3.0",
  5822. "files": [
  5823. ".nupkg.metadata",
  5824. ".signature.p7s",
  5825. "ThirdPartyNotices.txt",
  5826. "dotnet_library_license.txt",
  5827. "lib/MonoAndroid10/_._",
  5828. "lib/MonoTouch10/_._",
  5829. "lib/net45/_._",
  5830. "lib/net463/System.Linq.dll",
  5831. "lib/netcore50/System.Linq.dll",
  5832. "lib/netstandard1.6/System.Linq.dll",
  5833. "lib/portable-net45+win8+wp8+wpa81/_._",
  5834. "lib/win8/_._",
  5835. "lib/wp80/_._",
  5836. "lib/wpa81/_._",
  5837. "lib/xamarinios10/_._",
  5838. "lib/xamarinmac20/_._",
  5839. "lib/xamarintvos10/_._",
  5840. "lib/xamarinwatchos10/_._",
  5841. "ref/MonoAndroid10/_._",
  5842. "ref/MonoTouch10/_._",
  5843. "ref/net45/_._",
  5844. "ref/net463/System.Linq.dll",
  5845. "ref/netcore50/System.Linq.dll",
  5846. "ref/netcore50/System.Linq.xml",
  5847. "ref/netcore50/de/System.Linq.xml",
  5848. "ref/netcore50/es/System.Linq.xml",
  5849. "ref/netcore50/fr/System.Linq.xml",
  5850. "ref/netcore50/it/System.Linq.xml",
  5851. "ref/netcore50/ja/System.Linq.xml",
  5852. "ref/netcore50/ko/System.Linq.xml",
  5853. "ref/netcore50/ru/System.Linq.xml",
  5854. "ref/netcore50/zh-hans/System.Linq.xml",
  5855. "ref/netcore50/zh-hant/System.Linq.xml",
  5856. "ref/netstandard1.0/System.Linq.dll",
  5857. "ref/netstandard1.0/System.Linq.xml",
  5858. "ref/netstandard1.0/de/System.Linq.xml",
  5859. "ref/netstandard1.0/es/System.Linq.xml",
  5860. "ref/netstandard1.0/fr/System.Linq.xml",
  5861. "ref/netstandard1.0/it/System.Linq.xml",
  5862. "ref/netstandard1.0/ja/System.Linq.xml",
  5863. "ref/netstandard1.0/ko/System.Linq.xml",
  5864. "ref/netstandard1.0/ru/System.Linq.xml",
  5865. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5866. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5867. "ref/netstandard1.6/System.Linq.dll",
  5868. "ref/netstandard1.6/System.Linq.xml",
  5869. "ref/netstandard1.6/de/System.Linq.xml",
  5870. "ref/netstandard1.6/es/System.Linq.xml",
  5871. "ref/netstandard1.6/fr/System.Linq.xml",
  5872. "ref/netstandard1.6/it/System.Linq.xml",
  5873. "ref/netstandard1.6/ja/System.Linq.xml",
  5874. "ref/netstandard1.6/ko/System.Linq.xml",
  5875. "ref/netstandard1.6/ru/System.Linq.xml",
  5876. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5877. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5878. "ref/portable-net45+win8+wp8+wpa81/_._",
  5879. "ref/win8/_._",
  5880. "ref/wp80/_._",
  5881. "ref/wpa81/_._",
  5882. "ref/xamarinios10/_._",
  5883. "ref/xamarinmac20/_._",
  5884. "ref/xamarintvos10/_._",
  5885. "ref/xamarinwatchos10/_._",
  5886. "system.linq.4.3.0.nupkg.sha512",
  5887. "system.linq.nuspec"
  5888. ]
  5889. },
  5890. "System.Linq.Expressions/4.3.0": {
  5891. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  5892. "type": "package",
  5893. "path": "system.linq.expressions/4.3.0",
  5894. "files": [
  5895. ".nupkg.metadata",
  5896. ".signature.p7s",
  5897. "ThirdPartyNotices.txt",
  5898. "dotnet_library_license.txt",
  5899. "lib/MonoAndroid10/_._",
  5900. "lib/MonoTouch10/_._",
  5901. "lib/net45/_._",
  5902. "lib/net463/System.Linq.Expressions.dll",
  5903. "lib/netcore50/System.Linq.Expressions.dll",
  5904. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5905. "lib/portable-net45+win8+wp8+wpa81/_._",
  5906. "lib/win8/_._",
  5907. "lib/wp80/_._",
  5908. "lib/wpa81/_._",
  5909. "lib/xamarinios10/_._",
  5910. "lib/xamarinmac20/_._",
  5911. "lib/xamarintvos10/_._",
  5912. "lib/xamarinwatchos10/_._",
  5913. "ref/MonoAndroid10/_._",
  5914. "ref/MonoTouch10/_._",
  5915. "ref/net45/_._",
  5916. "ref/net463/System.Linq.Expressions.dll",
  5917. "ref/netcore50/System.Linq.Expressions.dll",
  5918. "ref/netcore50/System.Linq.Expressions.xml",
  5919. "ref/netcore50/de/System.Linq.Expressions.xml",
  5920. "ref/netcore50/es/System.Linq.Expressions.xml",
  5921. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5922. "ref/netcore50/it/System.Linq.Expressions.xml",
  5923. "ref/netcore50/ja/System.Linq.Expressions.xml",
  5924. "ref/netcore50/ko/System.Linq.Expressions.xml",
  5925. "ref/netcore50/ru/System.Linq.Expressions.xml",
  5926. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  5927. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  5928. "ref/netstandard1.0/System.Linq.Expressions.dll",
  5929. "ref/netstandard1.0/System.Linq.Expressions.xml",
  5930. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  5931. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  5932. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  5933. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  5934. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  5935. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  5936. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  5937. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  5938. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  5939. "ref/netstandard1.3/System.Linq.Expressions.dll",
  5940. "ref/netstandard1.3/System.Linq.Expressions.xml",
  5941. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  5942. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  5943. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  5944. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  5945. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  5946. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  5947. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  5948. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  5949. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  5950. "ref/netstandard1.6/System.Linq.Expressions.dll",
  5951. "ref/netstandard1.6/System.Linq.Expressions.xml",
  5952. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  5953. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  5954. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  5955. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  5956. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  5957. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  5958. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  5959. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  5960. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  5961. "ref/portable-net45+win8+wp8+wpa81/_._",
  5962. "ref/win8/_._",
  5963. "ref/wp80/_._",
  5964. "ref/wpa81/_._",
  5965. "ref/xamarinios10/_._",
  5966. "ref/xamarinmac20/_._",
  5967. "ref/xamarintvos10/_._",
  5968. "ref/xamarinwatchos10/_._",
  5969. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  5970. "system.linq.expressions.4.3.0.nupkg.sha512",
  5971. "system.linq.expressions.nuspec"
  5972. ]
  5973. },
  5974. "System.Memory/4.5.2": {
  5975. "sha512": "fvq1GNmUFwbKv+aLVYYdgu/+gc8Nu9oFujOxIjPrsf+meis9JBzTPDL6aP/eeGOz9yPj6rRLUbOjKMpsMEWpNg==",
  5976. "type": "package",
  5977. "path": "system.memory/4.5.2",
  5978. "files": [
  5979. ".nupkg.metadata",
  5980. ".signature.p7s",
  5981. "LICENSE.TXT",
  5982. "THIRD-PARTY-NOTICES.TXT",
  5983. "lib/netcoreapp2.1/_._",
  5984. "lib/netstandard1.1/System.Memory.dll",
  5985. "lib/netstandard1.1/System.Memory.xml",
  5986. "lib/netstandard2.0/System.Memory.dll",
  5987. "lib/netstandard2.0/System.Memory.xml",
  5988. "ref/netcoreapp2.1/_._",
  5989. "system.memory.4.5.2.nupkg.sha512",
  5990. "system.memory.nuspec",
  5991. "useSharedDesignerContext.txt",
  5992. "version.txt"
  5993. ]
  5994. },
  5995. "System.Net.Http/4.3.0": {
  5996. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  5997. "type": "package",
  5998. "path": "system.net.http/4.3.0",
  5999. "files": [
  6000. ".nupkg.metadata",
  6001. ".signature.p7s",
  6002. "ThirdPartyNotices.txt",
  6003. "dotnet_library_license.txt",
  6004. "lib/Xamarinmac20/_._",
  6005. "lib/monoandroid10/_._",
  6006. "lib/monotouch10/_._",
  6007. "lib/net45/_._",
  6008. "lib/net46/System.Net.Http.dll",
  6009. "lib/portable-net45+win8+wpa81/_._",
  6010. "lib/win8/_._",
  6011. "lib/wpa81/_._",
  6012. "lib/xamarinios10/_._",
  6013. "lib/xamarintvos10/_._",
  6014. "lib/xamarinwatchos10/_._",
  6015. "ref/Xamarinmac20/_._",
  6016. "ref/monoandroid10/_._",
  6017. "ref/monotouch10/_._",
  6018. "ref/net45/_._",
  6019. "ref/net46/System.Net.Http.dll",
  6020. "ref/net46/System.Net.Http.xml",
  6021. "ref/net46/de/System.Net.Http.xml",
  6022. "ref/net46/es/System.Net.Http.xml",
  6023. "ref/net46/fr/System.Net.Http.xml",
  6024. "ref/net46/it/System.Net.Http.xml",
  6025. "ref/net46/ja/System.Net.Http.xml",
  6026. "ref/net46/ko/System.Net.Http.xml",
  6027. "ref/net46/ru/System.Net.Http.xml",
  6028. "ref/net46/zh-hans/System.Net.Http.xml",
  6029. "ref/net46/zh-hant/System.Net.Http.xml",
  6030. "ref/netcore50/System.Net.Http.dll",
  6031. "ref/netcore50/System.Net.Http.xml",
  6032. "ref/netcore50/de/System.Net.Http.xml",
  6033. "ref/netcore50/es/System.Net.Http.xml",
  6034. "ref/netcore50/fr/System.Net.Http.xml",
  6035. "ref/netcore50/it/System.Net.Http.xml",
  6036. "ref/netcore50/ja/System.Net.Http.xml",
  6037. "ref/netcore50/ko/System.Net.Http.xml",
  6038. "ref/netcore50/ru/System.Net.Http.xml",
  6039. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6040. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6041. "ref/netstandard1.1/System.Net.Http.dll",
  6042. "ref/netstandard1.1/System.Net.Http.xml",
  6043. "ref/netstandard1.1/de/System.Net.Http.xml",
  6044. "ref/netstandard1.1/es/System.Net.Http.xml",
  6045. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6046. "ref/netstandard1.1/it/System.Net.Http.xml",
  6047. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6048. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6049. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6050. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6051. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6052. "ref/netstandard1.3/System.Net.Http.dll",
  6053. "ref/netstandard1.3/System.Net.Http.xml",
  6054. "ref/netstandard1.3/de/System.Net.Http.xml",
  6055. "ref/netstandard1.3/es/System.Net.Http.xml",
  6056. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6057. "ref/netstandard1.3/it/System.Net.Http.xml",
  6058. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6059. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6060. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6061. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6062. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6063. "ref/portable-net45+win8+wpa81/_._",
  6064. "ref/win8/_._",
  6065. "ref/wpa81/_._",
  6066. "ref/xamarinios10/_._",
  6067. "ref/xamarintvos10/_._",
  6068. "ref/xamarinwatchos10/_._",
  6069. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6070. "runtimes/win/lib/net46/System.Net.Http.dll",
  6071. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6072. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6073. "system.net.http.4.3.0.nupkg.sha512",
  6074. "system.net.http.nuspec"
  6075. ]
  6076. },
  6077. "System.Net.Primitives/4.3.0": {
  6078. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6079. "type": "package",
  6080. "path": "system.net.primitives/4.3.0",
  6081. "files": [
  6082. ".nupkg.metadata",
  6083. ".signature.p7s",
  6084. "ThirdPartyNotices.txt",
  6085. "dotnet_library_license.txt",
  6086. "lib/MonoAndroid10/_._",
  6087. "lib/MonoTouch10/_._",
  6088. "lib/net45/_._",
  6089. "lib/portable-net45+win8+wp8+wpa81/_._",
  6090. "lib/win8/_._",
  6091. "lib/wp80/_._",
  6092. "lib/wpa81/_._",
  6093. "lib/xamarinios10/_._",
  6094. "lib/xamarinmac20/_._",
  6095. "lib/xamarintvos10/_._",
  6096. "lib/xamarinwatchos10/_._",
  6097. "ref/MonoAndroid10/_._",
  6098. "ref/MonoTouch10/_._",
  6099. "ref/net45/_._",
  6100. "ref/netcore50/System.Net.Primitives.dll",
  6101. "ref/netcore50/System.Net.Primitives.xml",
  6102. "ref/netcore50/de/System.Net.Primitives.xml",
  6103. "ref/netcore50/es/System.Net.Primitives.xml",
  6104. "ref/netcore50/fr/System.Net.Primitives.xml",
  6105. "ref/netcore50/it/System.Net.Primitives.xml",
  6106. "ref/netcore50/ja/System.Net.Primitives.xml",
  6107. "ref/netcore50/ko/System.Net.Primitives.xml",
  6108. "ref/netcore50/ru/System.Net.Primitives.xml",
  6109. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6110. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6111. "ref/netstandard1.0/System.Net.Primitives.dll",
  6112. "ref/netstandard1.0/System.Net.Primitives.xml",
  6113. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6114. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6115. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6116. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6117. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6118. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6119. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6120. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6121. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6122. "ref/netstandard1.1/System.Net.Primitives.dll",
  6123. "ref/netstandard1.1/System.Net.Primitives.xml",
  6124. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6125. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6126. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6127. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6128. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6129. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6130. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6131. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6132. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6133. "ref/netstandard1.3/System.Net.Primitives.dll",
  6134. "ref/netstandard1.3/System.Net.Primitives.xml",
  6135. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6136. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6137. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6138. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6139. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6140. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6141. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6142. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6143. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6144. "ref/portable-net45+win8+wp8+wpa81/_._",
  6145. "ref/win8/_._",
  6146. "ref/wp80/_._",
  6147. "ref/wpa81/_._",
  6148. "ref/xamarinios10/_._",
  6149. "ref/xamarinmac20/_._",
  6150. "ref/xamarintvos10/_._",
  6151. "ref/xamarinwatchos10/_._",
  6152. "system.net.primitives.4.3.0.nupkg.sha512",
  6153. "system.net.primitives.nuspec"
  6154. ]
  6155. },
  6156. "System.Net.Sockets/4.3.0": {
  6157. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6158. "type": "package",
  6159. "path": "system.net.sockets/4.3.0",
  6160. "files": [
  6161. ".nupkg.metadata",
  6162. ".signature.p7s",
  6163. "ThirdPartyNotices.txt",
  6164. "dotnet_library_license.txt",
  6165. "lib/MonoAndroid10/_._",
  6166. "lib/MonoTouch10/_._",
  6167. "lib/net46/System.Net.Sockets.dll",
  6168. "lib/xamarinios10/_._",
  6169. "lib/xamarinmac20/_._",
  6170. "lib/xamarintvos10/_._",
  6171. "lib/xamarinwatchos10/_._",
  6172. "ref/MonoAndroid10/_._",
  6173. "ref/MonoTouch10/_._",
  6174. "ref/net46/System.Net.Sockets.dll",
  6175. "ref/netstandard1.3/System.Net.Sockets.dll",
  6176. "ref/netstandard1.3/System.Net.Sockets.xml",
  6177. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6178. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6179. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6180. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6181. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6182. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6183. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6184. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6185. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6186. "ref/xamarinios10/_._",
  6187. "ref/xamarinmac20/_._",
  6188. "ref/xamarintvos10/_._",
  6189. "ref/xamarinwatchos10/_._",
  6190. "system.net.sockets.4.3.0.nupkg.sha512",
  6191. "system.net.sockets.nuspec"
  6192. ]
  6193. },
  6194. "System.Numerics.Vectors/4.4.0": {
  6195. "sha512": "UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ==",
  6196. "type": "package",
  6197. "path": "system.numerics.vectors/4.4.0",
  6198. "files": [
  6199. ".nupkg.metadata",
  6200. ".signature.p7s",
  6201. "LICENSE.TXT",
  6202. "THIRD-PARTY-NOTICES.TXT",
  6203. "lib/MonoAndroid10/_._",
  6204. "lib/MonoTouch10/_._",
  6205. "lib/net46/System.Numerics.Vectors.dll",
  6206. "lib/net46/System.Numerics.Vectors.xml",
  6207. "lib/netcoreapp2.0/_._",
  6208. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  6209. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  6210. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  6211. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  6212. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  6213. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  6214. "lib/xamarinios10/_._",
  6215. "lib/xamarinmac20/_._",
  6216. "lib/xamarintvos10/_._",
  6217. "lib/xamarinwatchos10/_._",
  6218. "ref/MonoAndroid10/_._",
  6219. "ref/MonoTouch10/_._",
  6220. "ref/net46/System.Numerics.Vectors.dll",
  6221. "ref/net46/System.Numerics.Vectors.xml",
  6222. "ref/netcoreapp2.0/_._",
  6223. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  6224. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  6225. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  6226. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  6227. "ref/xamarinios10/_._",
  6228. "ref/xamarinmac20/_._",
  6229. "ref/xamarintvos10/_._",
  6230. "ref/xamarinwatchos10/_._",
  6231. "system.numerics.vectors.4.4.0.nupkg.sha512",
  6232. "system.numerics.vectors.nuspec",
  6233. "useSharedDesignerContext.txt",
  6234. "version.txt"
  6235. ]
  6236. },
  6237. "System.ObjectModel/4.3.0": {
  6238. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6239. "type": "package",
  6240. "path": "system.objectmodel/4.3.0",
  6241. "files": [
  6242. ".nupkg.metadata",
  6243. ".signature.p7s",
  6244. "ThirdPartyNotices.txt",
  6245. "dotnet_library_license.txt",
  6246. "lib/MonoAndroid10/_._",
  6247. "lib/MonoTouch10/_._",
  6248. "lib/net45/_._",
  6249. "lib/netcore50/System.ObjectModel.dll",
  6250. "lib/netstandard1.3/System.ObjectModel.dll",
  6251. "lib/portable-net45+win8+wp8+wpa81/_._",
  6252. "lib/win8/_._",
  6253. "lib/wp80/_._",
  6254. "lib/wpa81/_._",
  6255. "lib/xamarinios10/_._",
  6256. "lib/xamarinmac20/_._",
  6257. "lib/xamarintvos10/_._",
  6258. "lib/xamarinwatchos10/_._",
  6259. "ref/MonoAndroid10/_._",
  6260. "ref/MonoTouch10/_._",
  6261. "ref/net45/_._",
  6262. "ref/netcore50/System.ObjectModel.dll",
  6263. "ref/netcore50/System.ObjectModel.xml",
  6264. "ref/netcore50/de/System.ObjectModel.xml",
  6265. "ref/netcore50/es/System.ObjectModel.xml",
  6266. "ref/netcore50/fr/System.ObjectModel.xml",
  6267. "ref/netcore50/it/System.ObjectModel.xml",
  6268. "ref/netcore50/ja/System.ObjectModel.xml",
  6269. "ref/netcore50/ko/System.ObjectModel.xml",
  6270. "ref/netcore50/ru/System.ObjectModel.xml",
  6271. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6272. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6273. "ref/netstandard1.0/System.ObjectModel.dll",
  6274. "ref/netstandard1.0/System.ObjectModel.xml",
  6275. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6276. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6277. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6278. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6279. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6280. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6281. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6282. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6283. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6284. "ref/netstandard1.3/System.ObjectModel.dll",
  6285. "ref/netstandard1.3/System.ObjectModel.xml",
  6286. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6287. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6288. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6289. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6290. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6291. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6292. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6293. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6294. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6295. "ref/portable-net45+win8+wp8+wpa81/_._",
  6296. "ref/win8/_._",
  6297. "ref/wp80/_._",
  6298. "ref/wpa81/_._",
  6299. "ref/xamarinios10/_._",
  6300. "ref/xamarinmac20/_._",
  6301. "ref/xamarintvos10/_._",
  6302. "ref/xamarinwatchos10/_._",
  6303. "system.objectmodel.4.3.0.nupkg.sha512",
  6304. "system.objectmodel.nuspec"
  6305. ]
  6306. },
  6307. "System.Reflection/4.3.0": {
  6308. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6309. "type": "package",
  6310. "path": "system.reflection/4.3.0",
  6311. "files": [
  6312. ".nupkg.metadata",
  6313. ".signature.p7s",
  6314. "ThirdPartyNotices.txt",
  6315. "dotnet_library_license.txt",
  6316. "lib/MonoAndroid10/_._",
  6317. "lib/MonoTouch10/_._",
  6318. "lib/net45/_._",
  6319. "lib/net462/System.Reflection.dll",
  6320. "lib/portable-net45+win8+wp8+wpa81/_._",
  6321. "lib/win8/_._",
  6322. "lib/wp80/_._",
  6323. "lib/wpa81/_._",
  6324. "lib/xamarinios10/_._",
  6325. "lib/xamarinmac20/_._",
  6326. "lib/xamarintvos10/_._",
  6327. "lib/xamarinwatchos10/_._",
  6328. "ref/MonoAndroid10/_._",
  6329. "ref/MonoTouch10/_._",
  6330. "ref/net45/_._",
  6331. "ref/net462/System.Reflection.dll",
  6332. "ref/netcore50/System.Reflection.dll",
  6333. "ref/netcore50/System.Reflection.xml",
  6334. "ref/netcore50/de/System.Reflection.xml",
  6335. "ref/netcore50/es/System.Reflection.xml",
  6336. "ref/netcore50/fr/System.Reflection.xml",
  6337. "ref/netcore50/it/System.Reflection.xml",
  6338. "ref/netcore50/ja/System.Reflection.xml",
  6339. "ref/netcore50/ko/System.Reflection.xml",
  6340. "ref/netcore50/ru/System.Reflection.xml",
  6341. "ref/netcore50/zh-hans/System.Reflection.xml",
  6342. "ref/netcore50/zh-hant/System.Reflection.xml",
  6343. "ref/netstandard1.0/System.Reflection.dll",
  6344. "ref/netstandard1.0/System.Reflection.xml",
  6345. "ref/netstandard1.0/de/System.Reflection.xml",
  6346. "ref/netstandard1.0/es/System.Reflection.xml",
  6347. "ref/netstandard1.0/fr/System.Reflection.xml",
  6348. "ref/netstandard1.0/it/System.Reflection.xml",
  6349. "ref/netstandard1.0/ja/System.Reflection.xml",
  6350. "ref/netstandard1.0/ko/System.Reflection.xml",
  6351. "ref/netstandard1.0/ru/System.Reflection.xml",
  6352. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6353. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6354. "ref/netstandard1.3/System.Reflection.dll",
  6355. "ref/netstandard1.3/System.Reflection.xml",
  6356. "ref/netstandard1.3/de/System.Reflection.xml",
  6357. "ref/netstandard1.3/es/System.Reflection.xml",
  6358. "ref/netstandard1.3/fr/System.Reflection.xml",
  6359. "ref/netstandard1.3/it/System.Reflection.xml",
  6360. "ref/netstandard1.3/ja/System.Reflection.xml",
  6361. "ref/netstandard1.3/ko/System.Reflection.xml",
  6362. "ref/netstandard1.3/ru/System.Reflection.xml",
  6363. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6364. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6365. "ref/netstandard1.5/System.Reflection.dll",
  6366. "ref/netstandard1.5/System.Reflection.xml",
  6367. "ref/netstandard1.5/de/System.Reflection.xml",
  6368. "ref/netstandard1.5/es/System.Reflection.xml",
  6369. "ref/netstandard1.5/fr/System.Reflection.xml",
  6370. "ref/netstandard1.5/it/System.Reflection.xml",
  6371. "ref/netstandard1.5/ja/System.Reflection.xml",
  6372. "ref/netstandard1.5/ko/System.Reflection.xml",
  6373. "ref/netstandard1.5/ru/System.Reflection.xml",
  6374. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6375. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6376. "ref/portable-net45+win8+wp8+wpa81/_._",
  6377. "ref/win8/_._",
  6378. "ref/wp80/_._",
  6379. "ref/wpa81/_._",
  6380. "ref/xamarinios10/_._",
  6381. "ref/xamarinmac20/_._",
  6382. "ref/xamarintvos10/_._",
  6383. "ref/xamarinwatchos10/_._",
  6384. "system.reflection.4.3.0.nupkg.sha512",
  6385. "system.reflection.nuspec"
  6386. ]
  6387. },
  6388. "System.Reflection.Emit/4.3.0": {
  6389. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  6390. "type": "package",
  6391. "path": "system.reflection.emit/4.3.0",
  6392. "files": [
  6393. ".nupkg.metadata",
  6394. ".signature.p7s",
  6395. "ThirdPartyNotices.txt",
  6396. "dotnet_library_license.txt",
  6397. "lib/MonoAndroid10/_._",
  6398. "lib/monotouch10/_._",
  6399. "lib/net45/_._",
  6400. "lib/netcore50/System.Reflection.Emit.dll",
  6401. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6402. "lib/xamarinios10/_._",
  6403. "lib/xamarinmac20/_._",
  6404. "lib/xamarintvos10/_._",
  6405. "lib/xamarinwatchos10/_._",
  6406. "ref/MonoAndroid10/_._",
  6407. "ref/net45/_._",
  6408. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6409. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6410. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6411. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6412. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6413. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6414. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6415. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6416. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6417. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6418. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6419. "ref/xamarinmac20/_._",
  6420. "system.reflection.emit.4.3.0.nupkg.sha512",
  6421. "system.reflection.emit.nuspec"
  6422. ]
  6423. },
  6424. "System.Reflection.Emit.ILGeneration/4.3.0": {
  6425. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  6426. "type": "package",
  6427. "path": "system.reflection.emit.ilgeneration/4.3.0",
  6428. "files": [
  6429. ".nupkg.metadata",
  6430. ".signature.p7s",
  6431. "ThirdPartyNotices.txt",
  6432. "dotnet_library_license.txt",
  6433. "lib/MonoAndroid10/_._",
  6434. "lib/MonoTouch10/_._",
  6435. "lib/net45/_._",
  6436. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6437. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6438. "lib/portable-net45+wp8/_._",
  6439. "lib/wp80/_._",
  6440. "lib/xamarinios10/_._",
  6441. "lib/xamarinmac20/_._",
  6442. "lib/xamarintvos10/_._",
  6443. "lib/xamarinwatchos10/_._",
  6444. "ref/MonoAndroid10/_._",
  6445. "ref/MonoTouch10/_._",
  6446. "ref/net45/_._",
  6447. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  6448. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  6449. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  6450. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  6451. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  6452. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  6453. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  6454. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  6455. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  6456. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  6457. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  6458. "ref/portable-net45+wp8/_._",
  6459. "ref/wp80/_._",
  6460. "ref/xamarinios10/_._",
  6461. "ref/xamarinmac20/_._",
  6462. "ref/xamarintvos10/_._",
  6463. "ref/xamarinwatchos10/_._",
  6464. "runtimes/aot/lib/netcore50/_._",
  6465. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  6466. "system.reflection.emit.ilgeneration.nuspec"
  6467. ]
  6468. },
  6469. "System.Reflection.Emit.Lightweight/4.3.0": {
  6470. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  6471. "type": "package",
  6472. "path": "system.reflection.emit.lightweight/4.3.0",
  6473. "files": [
  6474. ".nupkg.metadata",
  6475. ".signature.p7s",
  6476. "ThirdPartyNotices.txt",
  6477. "dotnet_library_license.txt",
  6478. "lib/MonoAndroid10/_._",
  6479. "lib/MonoTouch10/_._",
  6480. "lib/net45/_._",
  6481. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  6482. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  6483. "lib/portable-net45+wp8/_._",
  6484. "lib/wp80/_._",
  6485. "lib/xamarinios10/_._",
  6486. "lib/xamarinmac20/_._",
  6487. "lib/xamarintvos10/_._",
  6488. "lib/xamarinwatchos10/_._",
  6489. "ref/MonoAndroid10/_._",
  6490. "ref/MonoTouch10/_._",
  6491. "ref/net45/_._",
  6492. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6493. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6494. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6495. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6496. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6497. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6498. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6499. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6500. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6501. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6502. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6503. "ref/portable-net45+wp8/_._",
  6504. "ref/wp80/_._",
  6505. "ref/xamarinios10/_._",
  6506. "ref/xamarinmac20/_._",
  6507. "ref/xamarintvos10/_._",
  6508. "ref/xamarinwatchos10/_._",
  6509. "runtimes/aot/lib/netcore50/_._",
  6510. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  6511. "system.reflection.emit.lightweight.nuspec"
  6512. ]
  6513. },
  6514. "System.Reflection.Extensions/4.3.0": {
  6515. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  6516. "type": "package",
  6517. "path": "system.reflection.extensions/4.3.0",
  6518. "files": [
  6519. ".nupkg.metadata",
  6520. ".signature.p7s",
  6521. "ThirdPartyNotices.txt",
  6522. "dotnet_library_license.txt",
  6523. "lib/MonoAndroid10/_._",
  6524. "lib/MonoTouch10/_._",
  6525. "lib/net45/_._",
  6526. "lib/portable-net45+win8+wp8+wpa81/_._",
  6527. "lib/win8/_._",
  6528. "lib/wp80/_._",
  6529. "lib/wpa81/_._",
  6530. "lib/xamarinios10/_._",
  6531. "lib/xamarinmac20/_._",
  6532. "lib/xamarintvos10/_._",
  6533. "lib/xamarinwatchos10/_._",
  6534. "ref/MonoAndroid10/_._",
  6535. "ref/MonoTouch10/_._",
  6536. "ref/net45/_._",
  6537. "ref/netcore50/System.Reflection.Extensions.dll",
  6538. "ref/netcore50/System.Reflection.Extensions.xml",
  6539. "ref/netcore50/de/System.Reflection.Extensions.xml",
  6540. "ref/netcore50/es/System.Reflection.Extensions.xml",
  6541. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  6542. "ref/netcore50/it/System.Reflection.Extensions.xml",
  6543. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6544. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6545. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6546. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6547. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6548. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6549. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6550. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6551. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6552. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6553. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6554. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6555. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6556. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6557. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6558. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6559. "ref/portable-net45+win8+wp8+wpa81/_._",
  6560. "ref/win8/_._",
  6561. "ref/wp80/_._",
  6562. "ref/wpa81/_._",
  6563. "ref/xamarinios10/_._",
  6564. "ref/xamarinmac20/_._",
  6565. "ref/xamarintvos10/_._",
  6566. "ref/xamarinwatchos10/_._",
  6567. "system.reflection.extensions.4.3.0.nupkg.sha512",
  6568. "system.reflection.extensions.nuspec"
  6569. ]
  6570. },
  6571. "System.Reflection.Metadata/1.4.2": {
  6572. "sha512": "KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==",
  6573. "type": "package",
  6574. "path": "system.reflection.metadata/1.4.2",
  6575. "files": [
  6576. ".nupkg.metadata",
  6577. ".signature.p7s",
  6578. "ThirdPartyNotices.txt",
  6579. "dotnet_library_license.txt",
  6580. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  6581. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  6582. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  6583. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  6584. "system.reflection.metadata.1.4.2.nupkg.sha512",
  6585. "system.reflection.metadata.nuspec"
  6586. ]
  6587. },
  6588. "System.Reflection.Primitives/4.3.0": {
  6589. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6590. "type": "package",
  6591. "path": "system.reflection.primitives/4.3.0",
  6592. "files": [
  6593. ".nupkg.metadata",
  6594. ".signature.p7s",
  6595. "ThirdPartyNotices.txt",
  6596. "dotnet_library_license.txt",
  6597. "lib/MonoAndroid10/_._",
  6598. "lib/MonoTouch10/_._",
  6599. "lib/net45/_._",
  6600. "lib/portable-net45+win8+wp8+wpa81/_._",
  6601. "lib/win8/_._",
  6602. "lib/wp80/_._",
  6603. "lib/wpa81/_._",
  6604. "lib/xamarinios10/_._",
  6605. "lib/xamarinmac20/_._",
  6606. "lib/xamarintvos10/_._",
  6607. "lib/xamarinwatchos10/_._",
  6608. "ref/MonoAndroid10/_._",
  6609. "ref/MonoTouch10/_._",
  6610. "ref/net45/_._",
  6611. "ref/netcore50/System.Reflection.Primitives.dll",
  6612. "ref/netcore50/System.Reflection.Primitives.xml",
  6613. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6614. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6615. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6616. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6617. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6618. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6619. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6620. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6621. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6622. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6623. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6624. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6625. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6626. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6627. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6628. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6629. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6630. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6631. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6632. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6633. "ref/portable-net45+win8+wp8+wpa81/_._",
  6634. "ref/win8/_._",
  6635. "ref/wp80/_._",
  6636. "ref/wpa81/_._",
  6637. "ref/xamarinios10/_._",
  6638. "ref/xamarinmac20/_._",
  6639. "ref/xamarintvos10/_._",
  6640. "ref/xamarinwatchos10/_._",
  6641. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6642. "system.reflection.primitives.nuspec"
  6643. ]
  6644. },
  6645. "System.Reflection.TypeExtensions/4.3.0": {
  6646. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  6647. "type": "package",
  6648. "path": "system.reflection.typeextensions/4.3.0",
  6649. "files": [
  6650. ".nupkg.metadata",
  6651. ".signature.p7s",
  6652. "ThirdPartyNotices.txt",
  6653. "dotnet_library_license.txt",
  6654. "lib/MonoAndroid10/_._",
  6655. "lib/MonoTouch10/_._",
  6656. "lib/net46/System.Reflection.TypeExtensions.dll",
  6657. "lib/net462/System.Reflection.TypeExtensions.dll",
  6658. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6659. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6660. "lib/xamarinios10/_._",
  6661. "lib/xamarinmac20/_._",
  6662. "lib/xamarintvos10/_._",
  6663. "lib/xamarinwatchos10/_._",
  6664. "ref/MonoAndroid10/_._",
  6665. "ref/MonoTouch10/_._",
  6666. "ref/net46/System.Reflection.TypeExtensions.dll",
  6667. "ref/net462/System.Reflection.TypeExtensions.dll",
  6668. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6669. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6670. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6671. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6672. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6673. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6674. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6675. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6676. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6677. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6678. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6679. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6680. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6681. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6682. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6683. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6684. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6685. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6686. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6687. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6688. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6689. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6690. "ref/xamarinios10/_._",
  6691. "ref/xamarinmac20/_._",
  6692. "ref/xamarintvos10/_._",
  6693. "ref/xamarinwatchos10/_._",
  6694. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6695. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  6696. "system.reflection.typeextensions.nuspec"
  6697. ]
  6698. },
  6699. "System.Resources.ResourceManager/4.3.0": {
  6700. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  6701. "type": "package",
  6702. "path": "system.resources.resourcemanager/4.3.0",
  6703. "files": [
  6704. ".nupkg.metadata",
  6705. ".signature.p7s",
  6706. "ThirdPartyNotices.txt",
  6707. "dotnet_library_license.txt",
  6708. "lib/MonoAndroid10/_._",
  6709. "lib/MonoTouch10/_._",
  6710. "lib/net45/_._",
  6711. "lib/portable-net45+win8+wp8+wpa81/_._",
  6712. "lib/win8/_._",
  6713. "lib/wp80/_._",
  6714. "lib/wpa81/_._",
  6715. "lib/xamarinios10/_._",
  6716. "lib/xamarinmac20/_._",
  6717. "lib/xamarintvos10/_._",
  6718. "lib/xamarinwatchos10/_._",
  6719. "ref/MonoAndroid10/_._",
  6720. "ref/MonoTouch10/_._",
  6721. "ref/net45/_._",
  6722. "ref/netcore50/System.Resources.ResourceManager.dll",
  6723. "ref/netcore50/System.Resources.ResourceManager.xml",
  6724. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6725. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6726. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6727. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6728. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6729. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6730. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6731. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6732. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6733. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6734. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6735. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6736. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6737. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6738. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6739. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6740. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6741. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6742. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6743. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6744. "ref/portable-net45+win8+wp8+wpa81/_._",
  6745. "ref/win8/_._",
  6746. "ref/wp80/_._",
  6747. "ref/wpa81/_._",
  6748. "ref/xamarinios10/_._",
  6749. "ref/xamarinmac20/_._",
  6750. "ref/xamarintvos10/_._",
  6751. "ref/xamarinwatchos10/_._",
  6752. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  6753. "system.resources.resourcemanager.nuspec"
  6754. ]
  6755. },
  6756. "System.Runtime/4.3.0": {
  6757. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6758. "type": "package",
  6759. "path": "system.runtime/4.3.0",
  6760. "files": [
  6761. ".nupkg.metadata",
  6762. ".signature.p7s",
  6763. "ThirdPartyNotices.txt",
  6764. "dotnet_library_license.txt",
  6765. "lib/MonoAndroid10/_._",
  6766. "lib/MonoTouch10/_._",
  6767. "lib/net45/_._",
  6768. "lib/net462/System.Runtime.dll",
  6769. "lib/portable-net45+win8+wp80+wpa81/_._",
  6770. "lib/win8/_._",
  6771. "lib/wp80/_._",
  6772. "lib/wpa81/_._",
  6773. "lib/xamarinios10/_._",
  6774. "lib/xamarinmac20/_._",
  6775. "lib/xamarintvos10/_._",
  6776. "lib/xamarinwatchos10/_._",
  6777. "ref/MonoAndroid10/_._",
  6778. "ref/MonoTouch10/_._",
  6779. "ref/net45/_._",
  6780. "ref/net462/System.Runtime.dll",
  6781. "ref/netcore50/System.Runtime.dll",
  6782. "ref/netcore50/System.Runtime.xml",
  6783. "ref/netcore50/de/System.Runtime.xml",
  6784. "ref/netcore50/es/System.Runtime.xml",
  6785. "ref/netcore50/fr/System.Runtime.xml",
  6786. "ref/netcore50/it/System.Runtime.xml",
  6787. "ref/netcore50/ja/System.Runtime.xml",
  6788. "ref/netcore50/ko/System.Runtime.xml",
  6789. "ref/netcore50/ru/System.Runtime.xml",
  6790. "ref/netcore50/zh-hans/System.Runtime.xml",
  6791. "ref/netcore50/zh-hant/System.Runtime.xml",
  6792. "ref/netstandard1.0/System.Runtime.dll",
  6793. "ref/netstandard1.0/System.Runtime.xml",
  6794. "ref/netstandard1.0/de/System.Runtime.xml",
  6795. "ref/netstandard1.0/es/System.Runtime.xml",
  6796. "ref/netstandard1.0/fr/System.Runtime.xml",
  6797. "ref/netstandard1.0/it/System.Runtime.xml",
  6798. "ref/netstandard1.0/ja/System.Runtime.xml",
  6799. "ref/netstandard1.0/ko/System.Runtime.xml",
  6800. "ref/netstandard1.0/ru/System.Runtime.xml",
  6801. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6802. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6803. "ref/netstandard1.2/System.Runtime.dll",
  6804. "ref/netstandard1.2/System.Runtime.xml",
  6805. "ref/netstandard1.2/de/System.Runtime.xml",
  6806. "ref/netstandard1.2/es/System.Runtime.xml",
  6807. "ref/netstandard1.2/fr/System.Runtime.xml",
  6808. "ref/netstandard1.2/it/System.Runtime.xml",
  6809. "ref/netstandard1.2/ja/System.Runtime.xml",
  6810. "ref/netstandard1.2/ko/System.Runtime.xml",
  6811. "ref/netstandard1.2/ru/System.Runtime.xml",
  6812. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6813. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6814. "ref/netstandard1.3/System.Runtime.dll",
  6815. "ref/netstandard1.3/System.Runtime.xml",
  6816. "ref/netstandard1.3/de/System.Runtime.xml",
  6817. "ref/netstandard1.3/es/System.Runtime.xml",
  6818. "ref/netstandard1.3/fr/System.Runtime.xml",
  6819. "ref/netstandard1.3/it/System.Runtime.xml",
  6820. "ref/netstandard1.3/ja/System.Runtime.xml",
  6821. "ref/netstandard1.3/ko/System.Runtime.xml",
  6822. "ref/netstandard1.3/ru/System.Runtime.xml",
  6823. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6824. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6825. "ref/netstandard1.5/System.Runtime.dll",
  6826. "ref/netstandard1.5/System.Runtime.xml",
  6827. "ref/netstandard1.5/de/System.Runtime.xml",
  6828. "ref/netstandard1.5/es/System.Runtime.xml",
  6829. "ref/netstandard1.5/fr/System.Runtime.xml",
  6830. "ref/netstandard1.5/it/System.Runtime.xml",
  6831. "ref/netstandard1.5/ja/System.Runtime.xml",
  6832. "ref/netstandard1.5/ko/System.Runtime.xml",
  6833. "ref/netstandard1.5/ru/System.Runtime.xml",
  6834. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6835. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6836. "ref/portable-net45+win8+wp80+wpa81/_._",
  6837. "ref/win8/_._",
  6838. "ref/wp80/_._",
  6839. "ref/wpa81/_._",
  6840. "ref/xamarinios10/_._",
  6841. "ref/xamarinmac20/_._",
  6842. "ref/xamarintvos10/_._",
  6843. "ref/xamarinwatchos10/_._",
  6844. "system.runtime.4.3.0.nupkg.sha512",
  6845. "system.runtime.nuspec"
  6846. ]
  6847. },
  6848. "System.Runtime.CompilerServices.Unsafe/4.7.0": {
  6849. "sha512": "IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==",
  6850. "type": "package",
  6851. "path": "system.runtime.compilerservices.unsafe/4.7.0",
  6852. "files": [
  6853. ".nupkg.metadata",
  6854. ".signature.p7s",
  6855. "LICENSE.TXT",
  6856. "THIRD-PARTY-NOTICES.TXT",
  6857. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6858. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6859. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6860. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6861. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6862. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6863. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6864. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6865. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6866. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6867. "system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512",
  6868. "system.runtime.compilerservices.unsafe.nuspec",
  6869. "useSharedDesignerContext.txt",
  6870. "version.txt"
  6871. ]
  6872. },
  6873. "System.Runtime.Extensions/4.3.0": {
  6874. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6875. "type": "package",
  6876. "path": "system.runtime.extensions/4.3.0",
  6877. "files": [
  6878. ".nupkg.metadata",
  6879. ".signature.p7s",
  6880. "ThirdPartyNotices.txt",
  6881. "dotnet_library_license.txt",
  6882. "lib/MonoAndroid10/_._",
  6883. "lib/MonoTouch10/_._",
  6884. "lib/net45/_._",
  6885. "lib/net462/System.Runtime.Extensions.dll",
  6886. "lib/portable-net45+win8+wp8+wpa81/_._",
  6887. "lib/win8/_._",
  6888. "lib/wp80/_._",
  6889. "lib/wpa81/_._",
  6890. "lib/xamarinios10/_._",
  6891. "lib/xamarinmac20/_._",
  6892. "lib/xamarintvos10/_._",
  6893. "lib/xamarinwatchos10/_._",
  6894. "ref/MonoAndroid10/_._",
  6895. "ref/MonoTouch10/_._",
  6896. "ref/net45/_._",
  6897. "ref/net462/System.Runtime.Extensions.dll",
  6898. "ref/netcore50/System.Runtime.Extensions.dll",
  6899. "ref/netcore50/System.Runtime.Extensions.xml",
  6900. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6901. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6902. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6903. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6904. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6905. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6906. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6907. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6908. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6909. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6910. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6911. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6912. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6913. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6914. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6915. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6916. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6917. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6918. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6919. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6920. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6921. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6922. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6923. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6924. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6925. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6926. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6927. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6928. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6929. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6930. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6931. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6932. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6933. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6934. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6935. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6936. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6937. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6938. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6939. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6940. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6941. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6942. "ref/portable-net45+win8+wp8+wpa81/_._",
  6943. "ref/win8/_._",
  6944. "ref/wp80/_._",
  6945. "ref/wpa81/_._",
  6946. "ref/xamarinios10/_._",
  6947. "ref/xamarinmac20/_._",
  6948. "ref/xamarintvos10/_._",
  6949. "ref/xamarinwatchos10/_._",
  6950. "system.runtime.extensions.4.3.0.nupkg.sha512",
  6951. "system.runtime.extensions.nuspec"
  6952. ]
  6953. },
  6954. "System.Runtime.Handles/4.3.0": {
  6955. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  6956. "type": "package",
  6957. "path": "system.runtime.handles/4.3.0",
  6958. "files": [
  6959. ".nupkg.metadata",
  6960. ".signature.p7s",
  6961. "ThirdPartyNotices.txt",
  6962. "dotnet_library_license.txt",
  6963. "lib/MonoAndroid10/_._",
  6964. "lib/MonoTouch10/_._",
  6965. "lib/net46/_._",
  6966. "lib/xamarinios10/_._",
  6967. "lib/xamarinmac20/_._",
  6968. "lib/xamarintvos10/_._",
  6969. "lib/xamarinwatchos10/_._",
  6970. "ref/MonoAndroid10/_._",
  6971. "ref/MonoTouch10/_._",
  6972. "ref/net46/_._",
  6973. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6974. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6975. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6976. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6977. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6978. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6979. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6980. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6981. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6982. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6983. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6984. "ref/xamarinios10/_._",
  6985. "ref/xamarinmac20/_._",
  6986. "ref/xamarintvos10/_._",
  6987. "ref/xamarinwatchos10/_._",
  6988. "system.runtime.handles.4.3.0.nupkg.sha512",
  6989. "system.runtime.handles.nuspec"
  6990. ]
  6991. },
  6992. "System.Runtime.InteropServices/4.3.0": {
  6993. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  6994. "type": "package",
  6995. "path": "system.runtime.interopservices/4.3.0",
  6996. "files": [
  6997. ".nupkg.metadata",
  6998. ".signature.p7s",
  6999. "ThirdPartyNotices.txt",
  7000. "dotnet_library_license.txt",
  7001. "lib/MonoAndroid10/_._",
  7002. "lib/MonoTouch10/_._",
  7003. "lib/net45/_._",
  7004. "lib/net462/System.Runtime.InteropServices.dll",
  7005. "lib/net463/System.Runtime.InteropServices.dll",
  7006. "lib/portable-net45+win8+wpa81/_._",
  7007. "lib/win8/_._",
  7008. "lib/wpa81/_._",
  7009. "lib/xamarinios10/_._",
  7010. "lib/xamarinmac20/_._",
  7011. "lib/xamarintvos10/_._",
  7012. "lib/xamarinwatchos10/_._",
  7013. "ref/MonoAndroid10/_._",
  7014. "ref/MonoTouch10/_._",
  7015. "ref/net45/_._",
  7016. "ref/net462/System.Runtime.InteropServices.dll",
  7017. "ref/net463/System.Runtime.InteropServices.dll",
  7018. "ref/netcore50/System.Runtime.InteropServices.dll",
  7019. "ref/netcore50/System.Runtime.InteropServices.xml",
  7020. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7021. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7022. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7023. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7024. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7025. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7026. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7027. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7028. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7029. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7030. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7031. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7032. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7033. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7034. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7035. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7036. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7037. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7038. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7039. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7040. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7041. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7042. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7043. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7044. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7045. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7046. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7047. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7048. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7049. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7050. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7051. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7052. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7053. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7054. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7055. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7056. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7057. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7058. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7059. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7060. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7061. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7062. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7063. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7064. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7065. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7066. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7067. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7068. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7069. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7070. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7071. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7072. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7073. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7074. "ref/portable-net45+win8+wpa81/_._",
  7075. "ref/win8/_._",
  7076. "ref/wpa81/_._",
  7077. "ref/xamarinios10/_._",
  7078. "ref/xamarinmac20/_._",
  7079. "ref/xamarintvos10/_._",
  7080. "ref/xamarinwatchos10/_._",
  7081. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7082. "system.runtime.interopservices.nuspec"
  7083. ]
  7084. },
  7085. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7086. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7087. "type": "package",
  7088. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7089. "files": [
  7090. ".nupkg.metadata",
  7091. ".signature.p7s",
  7092. "ThirdPartyNotices.txt",
  7093. "dotnet_library_license.txt",
  7094. "lib/MonoAndroid10/_._",
  7095. "lib/MonoTouch10/_._",
  7096. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7097. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7098. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7099. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7100. "lib/xamarinios10/_._",
  7101. "lib/xamarinmac20/_._",
  7102. "lib/xamarintvos10/_._",
  7103. "lib/xamarinwatchos10/_._",
  7104. "ref/MonoAndroid10/_._",
  7105. "ref/MonoTouch10/_._",
  7106. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7107. "ref/xamarinios10/_._",
  7108. "ref/xamarinmac20/_._",
  7109. "ref/xamarintvos10/_._",
  7110. "ref/xamarinwatchos10/_._",
  7111. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7112. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7113. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7114. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7115. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7116. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7117. "system.runtime.interopservices.runtimeinformation.nuspec"
  7118. ]
  7119. },
  7120. "System.Runtime.Loader/4.3.0": {
  7121. "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  7122. "type": "package",
  7123. "path": "system.runtime.loader/4.3.0",
  7124. "files": [
  7125. ".nupkg.metadata",
  7126. ".signature.p7s",
  7127. "ThirdPartyNotices.txt",
  7128. "dotnet_library_license.txt",
  7129. "lib/MonoAndroid10/_._",
  7130. "lib/MonoTouch10/_._",
  7131. "lib/net462/_._",
  7132. "lib/netstandard1.5/System.Runtime.Loader.dll",
  7133. "lib/xamarinios10/_._",
  7134. "lib/xamarinmac20/_._",
  7135. "lib/xamarintvos10/_._",
  7136. "lib/xamarinwatchos10/_._",
  7137. "ref/netstandard1.5/System.Runtime.Loader.dll",
  7138. "ref/netstandard1.5/System.Runtime.Loader.xml",
  7139. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  7140. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  7141. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  7142. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  7143. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  7144. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  7145. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  7146. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  7147. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
  7148. "system.runtime.loader.4.3.0.nupkg.sha512",
  7149. "system.runtime.loader.nuspec"
  7150. ]
  7151. },
  7152. "System.Runtime.Numerics/4.3.0": {
  7153. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7154. "type": "package",
  7155. "path": "system.runtime.numerics/4.3.0",
  7156. "files": [
  7157. ".nupkg.metadata",
  7158. ".signature.p7s",
  7159. "ThirdPartyNotices.txt",
  7160. "dotnet_library_license.txt",
  7161. "lib/MonoAndroid10/_._",
  7162. "lib/MonoTouch10/_._",
  7163. "lib/net45/_._",
  7164. "lib/netcore50/System.Runtime.Numerics.dll",
  7165. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7166. "lib/portable-net45+win8+wpa81/_._",
  7167. "lib/win8/_._",
  7168. "lib/wpa81/_._",
  7169. "lib/xamarinios10/_._",
  7170. "lib/xamarinmac20/_._",
  7171. "lib/xamarintvos10/_._",
  7172. "lib/xamarinwatchos10/_._",
  7173. "ref/MonoAndroid10/_._",
  7174. "ref/MonoTouch10/_._",
  7175. "ref/net45/_._",
  7176. "ref/netcore50/System.Runtime.Numerics.dll",
  7177. "ref/netcore50/System.Runtime.Numerics.xml",
  7178. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7179. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7180. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7181. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7182. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7183. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7184. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7185. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7186. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7187. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7188. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7189. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7190. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7191. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7192. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7193. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7194. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7195. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7196. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7197. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7198. "ref/portable-net45+win8+wpa81/_._",
  7199. "ref/win8/_._",
  7200. "ref/wpa81/_._",
  7201. "ref/xamarinios10/_._",
  7202. "ref/xamarinmac20/_._",
  7203. "ref/xamarintvos10/_._",
  7204. "ref/xamarinwatchos10/_._",
  7205. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7206. "system.runtime.numerics.nuspec"
  7207. ]
  7208. },
  7209. "System.Security.AccessControl/4.5.0": {
  7210. "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
  7211. "type": "package",
  7212. "path": "system.security.accesscontrol/4.5.0",
  7213. "files": [
  7214. ".nupkg.metadata",
  7215. ".signature.p7s",
  7216. "LICENSE.TXT",
  7217. "THIRD-PARTY-NOTICES.TXT",
  7218. "lib/net46/System.Security.AccessControl.dll",
  7219. "lib/net461/System.Security.AccessControl.dll",
  7220. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7221. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7222. "lib/uap10.0.16299/_._",
  7223. "ref/net46/System.Security.AccessControl.dll",
  7224. "ref/net461/System.Security.AccessControl.dll",
  7225. "ref/net461/System.Security.AccessControl.xml",
  7226. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7227. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7228. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7229. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7230. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7231. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7232. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7233. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7234. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7235. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7236. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7237. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7238. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7239. "ref/uap10.0.16299/_._",
  7240. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7241. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7242. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7243. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7244. "runtimes/win/lib/uap10.0.16299/_._",
  7245. "system.security.accesscontrol.4.5.0.nupkg.sha512",
  7246. "system.security.accesscontrol.nuspec",
  7247. "useSharedDesignerContext.txt",
  7248. "version.txt"
  7249. ]
  7250. },
  7251. "System.Security.Cryptography.Algorithms/4.3.0": {
  7252. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7253. "type": "package",
  7254. "path": "system.security.cryptography.algorithms/4.3.0",
  7255. "files": [
  7256. ".nupkg.metadata",
  7257. ".signature.p7s",
  7258. "ThirdPartyNotices.txt",
  7259. "dotnet_library_license.txt",
  7260. "lib/MonoAndroid10/_._",
  7261. "lib/MonoTouch10/_._",
  7262. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7263. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7264. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7265. "lib/xamarinios10/_._",
  7266. "lib/xamarinmac20/_._",
  7267. "lib/xamarintvos10/_._",
  7268. "lib/xamarinwatchos10/_._",
  7269. "ref/MonoAndroid10/_._",
  7270. "ref/MonoTouch10/_._",
  7271. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7272. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7273. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7274. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7275. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7276. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7277. "ref/xamarinios10/_._",
  7278. "ref/xamarinmac20/_._",
  7279. "ref/xamarintvos10/_._",
  7280. "ref/xamarinwatchos10/_._",
  7281. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7282. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7283. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7284. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7285. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7286. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7287. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7288. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7289. "system.security.cryptography.algorithms.nuspec"
  7290. ]
  7291. },
  7292. "System.Security.Cryptography.Cng/4.4.0": {
  7293. "sha512": "3d/d+7sdNpfYfqJFzuE/o6Pl/reaMbH7rlUMNvtm4+XVYHY32tdFa45yjB3vhb6q0YY+IV8GUuiBPRsBFP3yaw==",
  7294. "type": "package",
  7295. "path": "system.security.cryptography.cng/4.4.0",
  7296. "files": [
  7297. ".nupkg.metadata",
  7298. ".signature.p7s",
  7299. "LICENSE.TXT",
  7300. "THIRD-PARTY-NOTICES.TXT",
  7301. "lib/net46/System.Security.Cryptography.Cng.dll",
  7302. "lib/net461/System.Security.Cryptography.Cng.dll",
  7303. "lib/net462/System.Security.Cryptography.Cng.dll",
  7304. "lib/net47/System.Security.Cryptography.Cng.dll",
  7305. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7306. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7307. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7308. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7309. "ref/net46/System.Security.Cryptography.Cng.dll",
  7310. "ref/net461/System.Security.Cryptography.Cng.dll",
  7311. "ref/net461/System.Security.Cryptography.Cng.xml",
  7312. "ref/net462/System.Security.Cryptography.Cng.dll",
  7313. "ref/net462/System.Security.Cryptography.Cng.xml",
  7314. "ref/net47/System.Security.Cryptography.Cng.dll",
  7315. "ref/net47/System.Security.Cryptography.Cng.xml",
  7316. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7317. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  7318. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7319. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7320. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7321. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7322. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7323. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7324. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7325. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  7326. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  7327. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7328. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7329. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7330. "system.security.cryptography.cng.4.4.0.nupkg.sha512",
  7331. "system.security.cryptography.cng.nuspec",
  7332. "useSharedDesignerContext.txt",
  7333. "version.txt"
  7334. ]
  7335. },
  7336. "System.Security.Cryptography.Csp/4.3.0": {
  7337. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  7338. "type": "package",
  7339. "path": "system.security.cryptography.csp/4.3.0",
  7340. "files": [
  7341. ".nupkg.metadata",
  7342. ".signature.p7s",
  7343. "ThirdPartyNotices.txt",
  7344. "dotnet_library_license.txt",
  7345. "lib/MonoAndroid10/_._",
  7346. "lib/MonoTouch10/_._",
  7347. "lib/net46/System.Security.Cryptography.Csp.dll",
  7348. "lib/xamarinios10/_._",
  7349. "lib/xamarinmac20/_._",
  7350. "lib/xamarintvos10/_._",
  7351. "lib/xamarinwatchos10/_._",
  7352. "ref/MonoAndroid10/_._",
  7353. "ref/MonoTouch10/_._",
  7354. "ref/net46/System.Security.Cryptography.Csp.dll",
  7355. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7356. "ref/xamarinios10/_._",
  7357. "ref/xamarinmac20/_._",
  7358. "ref/xamarintvos10/_._",
  7359. "ref/xamarinwatchos10/_._",
  7360. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7361. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7362. "runtimes/win/lib/netcore50/_._",
  7363. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7364. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  7365. "system.security.cryptography.csp.nuspec"
  7366. ]
  7367. },
  7368. "System.Security.Cryptography.Encoding/4.3.0": {
  7369. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  7370. "type": "package",
  7371. "path": "system.security.cryptography.encoding/4.3.0",
  7372. "files": [
  7373. ".nupkg.metadata",
  7374. ".signature.p7s",
  7375. "ThirdPartyNotices.txt",
  7376. "dotnet_library_license.txt",
  7377. "lib/MonoAndroid10/_._",
  7378. "lib/MonoTouch10/_._",
  7379. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7380. "lib/xamarinios10/_._",
  7381. "lib/xamarinmac20/_._",
  7382. "lib/xamarintvos10/_._",
  7383. "lib/xamarinwatchos10/_._",
  7384. "ref/MonoAndroid10/_._",
  7385. "ref/MonoTouch10/_._",
  7386. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7387. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7388. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7389. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7390. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7391. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7392. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7393. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7394. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7395. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7396. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7397. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7398. "ref/xamarinios10/_._",
  7399. "ref/xamarinmac20/_._",
  7400. "ref/xamarintvos10/_._",
  7401. "ref/xamarinwatchos10/_._",
  7402. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7403. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7404. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7405. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7406. "system.security.cryptography.encoding.nuspec"
  7407. ]
  7408. },
  7409. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7410. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7411. "type": "package",
  7412. "path": "system.security.cryptography.openssl/4.3.0",
  7413. "files": [
  7414. ".nupkg.metadata",
  7415. ".signature.p7s",
  7416. "ThirdPartyNotices.txt",
  7417. "dotnet_library_license.txt",
  7418. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7419. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7420. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7421. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7422. "system.security.cryptography.openssl.nuspec"
  7423. ]
  7424. },
  7425. "System.Security.Cryptography.Pkcs/4.5.0": {
  7426. "sha512": "TGQX51gxpY3K3I6LJlE2LAftVlIMqJf0cBGhz68Y89jjk3LJCB6SrwiD+YN1fkqemBvWGs+GjyMJukl6d6goyQ==",
  7427. "type": "package",
  7428. "path": "system.security.cryptography.pkcs/4.5.0",
  7429. "files": [
  7430. ".nupkg.metadata",
  7431. ".signature.p7s",
  7432. "LICENSE.TXT",
  7433. "THIRD-PARTY-NOTICES.TXT",
  7434. "lib/net46/System.Security.Cryptography.Pkcs.dll",
  7435. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  7436. "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7437. "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7438. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7439. "ref/net46/System.Security.Cryptography.Pkcs.dll",
  7440. "ref/net461/System.Security.Cryptography.Pkcs.dll",
  7441. "ref/net461/System.Security.Cryptography.Pkcs.xml",
  7442. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7443. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml",
  7444. "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7445. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7446. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  7447. "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll",
  7448. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  7449. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  7450. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  7451. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  7452. "system.security.cryptography.pkcs.4.5.0.nupkg.sha512",
  7453. "system.security.cryptography.pkcs.nuspec",
  7454. "useSharedDesignerContext.txt",
  7455. "version.txt"
  7456. ]
  7457. },
  7458. "System.Security.Cryptography.Primitives/4.3.0": {
  7459. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  7460. "type": "package",
  7461. "path": "system.security.cryptography.primitives/4.3.0",
  7462. "files": [
  7463. ".nupkg.metadata",
  7464. ".signature.p7s",
  7465. "ThirdPartyNotices.txt",
  7466. "dotnet_library_license.txt",
  7467. "lib/MonoAndroid10/_._",
  7468. "lib/MonoTouch10/_._",
  7469. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7470. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7471. "lib/xamarinios10/_._",
  7472. "lib/xamarinmac20/_._",
  7473. "lib/xamarintvos10/_._",
  7474. "lib/xamarinwatchos10/_._",
  7475. "ref/MonoAndroid10/_._",
  7476. "ref/MonoTouch10/_._",
  7477. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7478. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7479. "ref/xamarinios10/_._",
  7480. "ref/xamarinmac20/_._",
  7481. "ref/xamarintvos10/_._",
  7482. "ref/xamarinwatchos10/_._",
  7483. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  7484. "system.security.cryptography.primitives.nuspec"
  7485. ]
  7486. },
  7487. "System.Security.Cryptography.X509Certificates/4.3.0": {
  7488. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  7489. "type": "package",
  7490. "path": "system.security.cryptography.x509certificates/4.3.0",
  7491. "files": [
  7492. ".nupkg.metadata",
  7493. ".signature.p7s",
  7494. "ThirdPartyNotices.txt",
  7495. "dotnet_library_license.txt",
  7496. "lib/MonoAndroid10/_._",
  7497. "lib/MonoTouch10/_._",
  7498. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7499. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7500. "lib/xamarinios10/_._",
  7501. "lib/xamarinmac20/_._",
  7502. "lib/xamarintvos10/_._",
  7503. "lib/xamarinwatchos10/_._",
  7504. "ref/MonoAndroid10/_._",
  7505. "ref/MonoTouch10/_._",
  7506. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  7507. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  7508. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  7509. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  7510. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  7511. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  7512. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  7513. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  7514. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  7515. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  7516. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  7517. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7518. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7519. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7520. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  7521. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  7522. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  7523. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  7524. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  7525. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  7526. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  7527. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  7528. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7529. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7530. "ref/xamarinios10/_._",
  7531. "ref/xamarinmac20/_._",
  7532. "ref/xamarintvos10/_._",
  7533. "ref/xamarinwatchos10/_._",
  7534. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7535. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7536. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7537. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7538. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7539. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  7540. "system.security.cryptography.x509certificates.nuspec"
  7541. ]
  7542. },
  7543. "System.Security.Cryptography.Xml/4.5.0": {
  7544. "sha512": "i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==",
  7545. "type": "package",
  7546. "path": "system.security.cryptography.xml/4.5.0",
  7547. "files": [
  7548. ".nupkg.metadata",
  7549. ".signature.p7s",
  7550. "LICENSE.TXT",
  7551. "THIRD-PARTY-NOTICES.TXT",
  7552. "lib/net461/System.Security.Cryptography.Xml.dll",
  7553. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
  7554. "ref/net461/System.Security.Cryptography.Xml.dll",
  7555. "ref/net461/System.Security.Cryptography.Xml.xml",
  7556. "ref/netstandard2.0/System.Security.Cryptography.Xml.dll",
  7557. "ref/netstandard2.0/System.Security.Cryptography.Xml.xml",
  7558. "system.security.cryptography.xml.4.5.0.nupkg.sha512",
  7559. "system.security.cryptography.xml.nuspec",
  7560. "useSharedDesignerContext.txt",
  7561. "version.txt"
  7562. ]
  7563. },
  7564. "System.Security.Permissions/4.5.0": {
  7565. "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
  7566. "type": "package",
  7567. "path": "system.security.permissions/4.5.0",
  7568. "files": [
  7569. ".nupkg.metadata",
  7570. ".signature.p7s",
  7571. "LICENSE.TXT",
  7572. "THIRD-PARTY-NOTICES.TXT",
  7573. "lib/net461/System.Security.Permissions.dll",
  7574. "lib/netstandard2.0/System.Security.Permissions.dll",
  7575. "ref/net461/System.Security.Permissions.dll",
  7576. "ref/net461/System.Security.Permissions.xml",
  7577. "ref/netstandard2.0/System.Security.Permissions.dll",
  7578. "ref/netstandard2.0/System.Security.Permissions.xml",
  7579. "system.security.permissions.4.5.0.nupkg.sha512",
  7580. "system.security.permissions.nuspec",
  7581. "useSharedDesignerContext.txt",
  7582. "version.txt"
  7583. ]
  7584. },
  7585. "System.Security.Principal.Windows/4.5.0": {
  7586. "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==",
  7587. "type": "package",
  7588. "path": "system.security.principal.windows/4.5.0",
  7589. "files": [
  7590. ".nupkg.metadata",
  7591. ".signature.p7s",
  7592. "LICENSE.TXT",
  7593. "THIRD-PARTY-NOTICES.TXT",
  7594. "lib/net46/System.Security.Principal.Windows.dll",
  7595. "lib/net461/System.Security.Principal.Windows.dll",
  7596. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7597. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7598. "lib/uap10.0.16299/_._",
  7599. "ref/net46/System.Security.Principal.Windows.dll",
  7600. "ref/net461/System.Security.Principal.Windows.dll",
  7601. "ref/net461/System.Security.Principal.Windows.xml",
  7602. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7603. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7604. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7605. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7606. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7607. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7608. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7609. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7610. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7611. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7612. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7613. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7614. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7615. "ref/uap10.0.16299/_._",
  7616. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7617. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7618. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7619. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7620. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7621. "runtimes/win/lib/uap10.0.16299/_._",
  7622. "system.security.principal.windows.4.5.0.nupkg.sha512",
  7623. "system.security.principal.windows.nuspec",
  7624. "useSharedDesignerContext.txt",
  7625. "version.txt"
  7626. ]
  7627. },
  7628. "System.Text.Encoding/4.3.0": {
  7629. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7630. "type": "package",
  7631. "path": "system.text.encoding/4.3.0",
  7632. "files": [
  7633. ".nupkg.metadata",
  7634. ".signature.p7s",
  7635. "ThirdPartyNotices.txt",
  7636. "dotnet_library_license.txt",
  7637. "lib/MonoAndroid10/_._",
  7638. "lib/MonoTouch10/_._",
  7639. "lib/net45/_._",
  7640. "lib/portable-net45+win8+wp8+wpa81/_._",
  7641. "lib/win8/_._",
  7642. "lib/wp80/_._",
  7643. "lib/wpa81/_._",
  7644. "lib/xamarinios10/_._",
  7645. "lib/xamarinmac20/_._",
  7646. "lib/xamarintvos10/_._",
  7647. "lib/xamarinwatchos10/_._",
  7648. "ref/MonoAndroid10/_._",
  7649. "ref/MonoTouch10/_._",
  7650. "ref/net45/_._",
  7651. "ref/netcore50/System.Text.Encoding.dll",
  7652. "ref/netcore50/System.Text.Encoding.xml",
  7653. "ref/netcore50/de/System.Text.Encoding.xml",
  7654. "ref/netcore50/es/System.Text.Encoding.xml",
  7655. "ref/netcore50/fr/System.Text.Encoding.xml",
  7656. "ref/netcore50/it/System.Text.Encoding.xml",
  7657. "ref/netcore50/ja/System.Text.Encoding.xml",
  7658. "ref/netcore50/ko/System.Text.Encoding.xml",
  7659. "ref/netcore50/ru/System.Text.Encoding.xml",
  7660. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7661. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7662. "ref/netstandard1.0/System.Text.Encoding.dll",
  7663. "ref/netstandard1.0/System.Text.Encoding.xml",
  7664. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7665. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7666. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7667. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7668. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7669. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7670. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7671. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7672. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7673. "ref/netstandard1.3/System.Text.Encoding.dll",
  7674. "ref/netstandard1.3/System.Text.Encoding.xml",
  7675. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7676. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7677. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7678. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7679. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7680. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7681. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7682. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7683. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7684. "ref/portable-net45+win8+wp8+wpa81/_._",
  7685. "ref/win8/_._",
  7686. "ref/wp80/_._",
  7687. "ref/wpa81/_._",
  7688. "ref/xamarinios10/_._",
  7689. "ref/xamarinmac20/_._",
  7690. "ref/xamarintvos10/_._",
  7691. "ref/xamarinwatchos10/_._",
  7692. "system.text.encoding.4.3.0.nupkg.sha512",
  7693. "system.text.encoding.nuspec"
  7694. ]
  7695. },
  7696. "System.Text.Encoding.CodePages/4.3.0": {
  7697. "sha512": "IRiEFUa5b/Gs5Egg8oqBVoywhtOeaO2KOx3j0RfcYY/raxqBuEK7NXRDgOwtYM8qbi+7S4RPXUbNt+ZxyY0/NQ==",
  7698. "type": "package",
  7699. "path": "system.text.encoding.codepages/4.3.0",
  7700. "files": [
  7701. ".nupkg.metadata",
  7702. ".signature.p7s",
  7703. "ThirdPartyNotices.txt",
  7704. "dotnet_library_license.txt",
  7705. "lib/MonoAndroid10/_._",
  7706. "lib/MonoTouch10/_._",
  7707. "lib/net46/System.Text.Encoding.CodePages.dll",
  7708. "lib/xamarinios10/_._",
  7709. "lib/xamarinmac20/_._",
  7710. "lib/xamarintvos10/_._",
  7711. "lib/xamarinwatchos10/_._",
  7712. "ref/MonoAndroid10/_._",
  7713. "ref/MonoTouch10/_._",
  7714. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7715. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  7716. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  7717. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  7718. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  7719. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  7720. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  7721. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  7722. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  7723. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  7724. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  7725. "ref/xamarinios10/_._",
  7726. "ref/xamarinmac20/_._",
  7727. "ref/xamarintvos10/_._",
  7728. "ref/xamarinwatchos10/_._",
  7729. "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7730. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7731. "system.text.encoding.codepages.4.3.0.nupkg.sha512",
  7732. "system.text.encoding.codepages.nuspec"
  7733. ]
  7734. },
  7735. "System.Text.Encoding.Extensions/4.3.0": {
  7736. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  7737. "type": "package",
  7738. "path": "system.text.encoding.extensions/4.3.0",
  7739. "files": [
  7740. ".nupkg.metadata",
  7741. ".signature.p7s",
  7742. "ThirdPartyNotices.txt",
  7743. "dotnet_library_license.txt",
  7744. "lib/MonoAndroid10/_._",
  7745. "lib/MonoTouch10/_._",
  7746. "lib/net45/_._",
  7747. "lib/portable-net45+win8+wp8+wpa81/_._",
  7748. "lib/win8/_._",
  7749. "lib/wp80/_._",
  7750. "lib/wpa81/_._",
  7751. "lib/xamarinios10/_._",
  7752. "lib/xamarinmac20/_._",
  7753. "lib/xamarintvos10/_._",
  7754. "lib/xamarinwatchos10/_._",
  7755. "ref/MonoAndroid10/_._",
  7756. "ref/MonoTouch10/_._",
  7757. "ref/net45/_._",
  7758. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7759. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7760. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7761. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7762. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7763. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7764. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7765. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7766. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7767. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7768. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7769. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7770. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7771. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7772. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7773. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7774. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7775. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7776. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7777. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7778. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7779. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7780. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7781. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7782. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7783. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7784. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7785. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7786. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7787. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7788. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7789. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7790. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7791. "ref/portable-net45+win8+wp8+wpa81/_._",
  7792. "ref/win8/_._",
  7793. "ref/wp80/_._",
  7794. "ref/wpa81/_._",
  7795. "ref/xamarinios10/_._",
  7796. "ref/xamarinmac20/_._",
  7797. "ref/xamarintvos10/_._",
  7798. "ref/xamarinwatchos10/_._",
  7799. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  7800. "system.text.encoding.extensions.nuspec"
  7801. ]
  7802. },
  7803. "System.Text.Encodings.Web/4.5.0": {
  7804. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  7805. "type": "package",
  7806. "path": "system.text.encodings.web/4.5.0",
  7807. "files": [
  7808. ".nupkg.metadata",
  7809. ".signature.p7s",
  7810. "LICENSE.TXT",
  7811. "THIRD-PARTY-NOTICES.TXT",
  7812. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  7813. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  7814. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  7815. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  7816. "system.text.encodings.web.4.5.0.nupkg.sha512",
  7817. "system.text.encodings.web.nuspec",
  7818. "useSharedDesignerContext.txt",
  7819. "version.txt"
  7820. ]
  7821. },
  7822. "System.Text.RegularExpressions/4.3.0": {
  7823. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  7824. "type": "package",
  7825. "path": "system.text.regularexpressions/4.3.0",
  7826. "files": [
  7827. ".nupkg.metadata",
  7828. ".signature.p7s",
  7829. "ThirdPartyNotices.txt",
  7830. "dotnet_library_license.txt",
  7831. "lib/MonoAndroid10/_._",
  7832. "lib/MonoTouch10/_._",
  7833. "lib/net45/_._",
  7834. "lib/net463/System.Text.RegularExpressions.dll",
  7835. "lib/netcore50/System.Text.RegularExpressions.dll",
  7836. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7837. "lib/portable-net45+win8+wp8+wpa81/_._",
  7838. "lib/win8/_._",
  7839. "lib/wp80/_._",
  7840. "lib/wpa81/_._",
  7841. "lib/xamarinios10/_._",
  7842. "lib/xamarinmac20/_._",
  7843. "lib/xamarintvos10/_._",
  7844. "lib/xamarinwatchos10/_._",
  7845. "ref/MonoAndroid10/_._",
  7846. "ref/MonoTouch10/_._",
  7847. "ref/net45/_._",
  7848. "ref/net463/System.Text.RegularExpressions.dll",
  7849. "ref/netcore50/System.Text.RegularExpressions.dll",
  7850. "ref/netcore50/System.Text.RegularExpressions.xml",
  7851. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  7852. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  7853. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  7854. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  7855. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  7856. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  7857. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  7858. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  7859. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  7860. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  7861. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  7862. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  7863. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  7864. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  7865. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  7866. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  7867. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  7868. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  7869. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  7870. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  7871. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  7872. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  7873. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  7874. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  7875. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  7876. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  7877. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  7878. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  7879. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  7880. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  7881. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  7882. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  7883. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  7884. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  7885. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  7886. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  7887. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  7888. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  7889. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  7890. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  7891. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  7892. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  7893. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  7894. "ref/portable-net45+win8+wp8+wpa81/_._",
  7895. "ref/win8/_._",
  7896. "ref/wp80/_._",
  7897. "ref/wpa81/_._",
  7898. "ref/xamarinios10/_._",
  7899. "ref/xamarinmac20/_._",
  7900. "ref/xamarintvos10/_._",
  7901. "ref/xamarinwatchos10/_._",
  7902. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  7903. "system.text.regularexpressions.nuspec"
  7904. ]
  7905. },
  7906. "System.Threading/4.3.0": {
  7907. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  7908. "type": "package",
  7909. "path": "system.threading/4.3.0",
  7910. "files": [
  7911. ".nupkg.metadata",
  7912. ".signature.p7s",
  7913. "ThirdPartyNotices.txt",
  7914. "dotnet_library_license.txt",
  7915. "lib/MonoAndroid10/_._",
  7916. "lib/MonoTouch10/_._",
  7917. "lib/net45/_._",
  7918. "lib/netcore50/System.Threading.dll",
  7919. "lib/netstandard1.3/System.Threading.dll",
  7920. "lib/portable-net45+win8+wp8+wpa81/_._",
  7921. "lib/win8/_._",
  7922. "lib/wp80/_._",
  7923. "lib/wpa81/_._",
  7924. "lib/xamarinios10/_._",
  7925. "lib/xamarinmac20/_._",
  7926. "lib/xamarintvos10/_._",
  7927. "lib/xamarinwatchos10/_._",
  7928. "ref/MonoAndroid10/_._",
  7929. "ref/MonoTouch10/_._",
  7930. "ref/net45/_._",
  7931. "ref/netcore50/System.Threading.dll",
  7932. "ref/netcore50/System.Threading.xml",
  7933. "ref/netcore50/de/System.Threading.xml",
  7934. "ref/netcore50/es/System.Threading.xml",
  7935. "ref/netcore50/fr/System.Threading.xml",
  7936. "ref/netcore50/it/System.Threading.xml",
  7937. "ref/netcore50/ja/System.Threading.xml",
  7938. "ref/netcore50/ko/System.Threading.xml",
  7939. "ref/netcore50/ru/System.Threading.xml",
  7940. "ref/netcore50/zh-hans/System.Threading.xml",
  7941. "ref/netcore50/zh-hant/System.Threading.xml",
  7942. "ref/netstandard1.0/System.Threading.dll",
  7943. "ref/netstandard1.0/System.Threading.xml",
  7944. "ref/netstandard1.0/de/System.Threading.xml",
  7945. "ref/netstandard1.0/es/System.Threading.xml",
  7946. "ref/netstandard1.0/fr/System.Threading.xml",
  7947. "ref/netstandard1.0/it/System.Threading.xml",
  7948. "ref/netstandard1.0/ja/System.Threading.xml",
  7949. "ref/netstandard1.0/ko/System.Threading.xml",
  7950. "ref/netstandard1.0/ru/System.Threading.xml",
  7951. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  7952. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  7953. "ref/netstandard1.3/System.Threading.dll",
  7954. "ref/netstandard1.3/System.Threading.xml",
  7955. "ref/netstandard1.3/de/System.Threading.xml",
  7956. "ref/netstandard1.3/es/System.Threading.xml",
  7957. "ref/netstandard1.3/fr/System.Threading.xml",
  7958. "ref/netstandard1.3/it/System.Threading.xml",
  7959. "ref/netstandard1.3/ja/System.Threading.xml",
  7960. "ref/netstandard1.3/ko/System.Threading.xml",
  7961. "ref/netstandard1.3/ru/System.Threading.xml",
  7962. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  7963. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  7964. "ref/portable-net45+win8+wp8+wpa81/_._",
  7965. "ref/win8/_._",
  7966. "ref/wp80/_._",
  7967. "ref/wpa81/_._",
  7968. "ref/xamarinios10/_._",
  7969. "ref/xamarinmac20/_._",
  7970. "ref/xamarintvos10/_._",
  7971. "ref/xamarinwatchos10/_._",
  7972. "runtimes/aot/lib/netcore50/System.Threading.dll",
  7973. "system.threading.4.3.0.nupkg.sha512",
  7974. "system.threading.nuspec"
  7975. ]
  7976. },
  7977. "System.Threading.Tasks/4.3.0": {
  7978. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  7979. "type": "package",
  7980. "path": "system.threading.tasks/4.3.0",
  7981. "files": [
  7982. ".nupkg.metadata",
  7983. ".signature.p7s",
  7984. "ThirdPartyNotices.txt",
  7985. "dotnet_library_license.txt",
  7986. "lib/MonoAndroid10/_._",
  7987. "lib/MonoTouch10/_._",
  7988. "lib/net45/_._",
  7989. "lib/portable-net45+win8+wp8+wpa81/_._",
  7990. "lib/win8/_._",
  7991. "lib/wp80/_._",
  7992. "lib/wpa81/_._",
  7993. "lib/xamarinios10/_._",
  7994. "lib/xamarinmac20/_._",
  7995. "lib/xamarintvos10/_._",
  7996. "lib/xamarinwatchos10/_._",
  7997. "ref/MonoAndroid10/_._",
  7998. "ref/MonoTouch10/_._",
  7999. "ref/net45/_._",
  8000. "ref/netcore50/System.Threading.Tasks.dll",
  8001. "ref/netcore50/System.Threading.Tasks.xml",
  8002. "ref/netcore50/de/System.Threading.Tasks.xml",
  8003. "ref/netcore50/es/System.Threading.Tasks.xml",
  8004. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8005. "ref/netcore50/it/System.Threading.Tasks.xml",
  8006. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8007. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8008. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8009. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8010. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8011. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8012. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8013. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8014. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8015. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8016. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8017. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8018. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8019. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8020. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8021. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8022. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8023. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8024. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8025. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8026. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8027. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8028. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8029. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8030. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8031. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8032. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8033. "ref/portable-net45+win8+wp8+wpa81/_._",
  8034. "ref/win8/_._",
  8035. "ref/wp80/_._",
  8036. "ref/wpa81/_._",
  8037. "ref/xamarinios10/_._",
  8038. "ref/xamarinmac20/_._",
  8039. "ref/xamarintvos10/_._",
  8040. "ref/xamarinwatchos10/_._",
  8041. "system.threading.tasks.4.3.0.nupkg.sha512",
  8042. "system.threading.tasks.nuspec"
  8043. ]
  8044. },
  8045. "System.Threading.Tasks.Extensions/4.5.1": {
  8046. "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==",
  8047. "type": "package",
  8048. "path": "system.threading.tasks.extensions/4.5.1",
  8049. "files": [
  8050. ".nupkg.metadata",
  8051. ".signature.p7s",
  8052. "LICENSE.TXT",
  8053. "THIRD-PARTY-NOTICES.TXT",
  8054. "lib/MonoAndroid10/_._",
  8055. "lib/MonoTouch10/_._",
  8056. "lib/netcoreapp2.1/_._",
  8057. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8058. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8059. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  8060. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  8061. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8062. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8063. "lib/xamarinios10/_._",
  8064. "lib/xamarinmac20/_._",
  8065. "lib/xamarintvos10/_._",
  8066. "lib/xamarinwatchos10/_._",
  8067. "ref/MonoAndroid10/_._",
  8068. "ref/MonoTouch10/_._",
  8069. "ref/netcoreapp2.1/_._",
  8070. "ref/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8071. "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8072. "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  8073. "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  8074. "ref/xamarinios10/_._",
  8075. "ref/xamarinmac20/_._",
  8076. "ref/xamarintvos10/_._",
  8077. "ref/xamarinwatchos10/_._",
  8078. "system.threading.tasks.extensions.4.5.1.nupkg.sha512",
  8079. "system.threading.tasks.extensions.nuspec",
  8080. "useSharedDesignerContext.txt",
  8081. "version.txt"
  8082. ]
  8083. },
  8084. "System.Threading.Tasks.Parallel/4.3.0": {
  8085. "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
  8086. "type": "package",
  8087. "path": "system.threading.tasks.parallel/4.3.0",
  8088. "files": [
  8089. ".nupkg.metadata",
  8090. ".signature.p7s",
  8091. "ThirdPartyNotices.txt",
  8092. "dotnet_library_license.txt",
  8093. "lib/MonoAndroid10/_._",
  8094. "lib/MonoTouch10/_._",
  8095. "lib/net45/_._",
  8096. "lib/netcore50/System.Threading.Tasks.Parallel.dll",
  8097. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll",
  8098. "lib/portable-net45+win8+wpa81/_._",
  8099. "lib/win8/_._",
  8100. "lib/wpa81/_._",
  8101. "lib/xamarinios10/_._",
  8102. "lib/xamarinmac20/_._",
  8103. "lib/xamarintvos10/_._",
  8104. "lib/xamarinwatchos10/_._",
  8105. "ref/MonoAndroid10/_._",
  8106. "ref/MonoTouch10/_._",
  8107. "ref/net45/_._",
  8108. "ref/netcore50/System.Threading.Tasks.Parallel.dll",
  8109. "ref/netcore50/System.Threading.Tasks.Parallel.xml",
  8110. "ref/netcore50/de/System.Threading.Tasks.Parallel.xml",
  8111. "ref/netcore50/es/System.Threading.Tasks.Parallel.xml",
  8112. "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml",
  8113. "ref/netcore50/it/System.Threading.Tasks.Parallel.xml",
  8114. "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml",
  8115. "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml",
  8116. "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml",
  8117. "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml",
  8118. "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml",
  8119. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll",
  8120. "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml",
  8121. "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml",
  8122. "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml",
  8123. "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml",
  8124. "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml",
  8125. "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml",
  8126. "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml",
  8127. "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml",
  8128. "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml",
  8129. "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml",
  8130. "ref/portable-net45+win8+wpa81/_._",
  8131. "ref/win8/_._",
  8132. "ref/wpa81/_._",
  8133. "ref/xamarinios10/_._",
  8134. "ref/xamarinmac20/_._",
  8135. "ref/xamarintvos10/_._",
  8136. "ref/xamarinwatchos10/_._",
  8137. "system.threading.tasks.parallel.4.3.0.nupkg.sha512",
  8138. "system.threading.tasks.parallel.nuspec"
  8139. ]
  8140. },
  8141. "System.Threading.Thread/4.3.0": {
  8142. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  8143. "type": "package",
  8144. "path": "system.threading.thread/4.3.0",
  8145. "files": [
  8146. ".nupkg.metadata",
  8147. ".signature.p7s",
  8148. "ThirdPartyNotices.txt",
  8149. "dotnet_library_license.txt",
  8150. "lib/MonoAndroid10/_._",
  8151. "lib/MonoTouch10/_._",
  8152. "lib/net46/System.Threading.Thread.dll",
  8153. "lib/netcore50/_._",
  8154. "lib/netstandard1.3/System.Threading.Thread.dll",
  8155. "lib/xamarinios10/_._",
  8156. "lib/xamarinmac20/_._",
  8157. "lib/xamarintvos10/_._",
  8158. "lib/xamarinwatchos10/_._",
  8159. "ref/MonoAndroid10/_._",
  8160. "ref/MonoTouch10/_._",
  8161. "ref/net46/System.Threading.Thread.dll",
  8162. "ref/netstandard1.3/System.Threading.Thread.dll",
  8163. "ref/netstandard1.3/System.Threading.Thread.xml",
  8164. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8165. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8166. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8167. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8168. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8169. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8170. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8171. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8172. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8173. "ref/xamarinios10/_._",
  8174. "ref/xamarinmac20/_._",
  8175. "ref/xamarintvos10/_._",
  8176. "ref/xamarinwatchos10/_._",
  8177. "system.threading.thread.4.3.0.nupkg.sha512",
  8178. "system.threading.thread.nuspec"
  8179. ]
  8180. },
  8181. "System.Threading.Timer/4.3.0": {
  8182. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8183. "type": "package",
  8184. "path": "system.threading.timer/4.3.0",
  8185. "files": [
  8186. ".nupkg.metadata",
  8187. ".signature.p7s",
  8188. "ThirdPartyNotices.txt",
  8189. "dotnet_library_license.txt",
  8190. "lib/MonoAndroid10/_._",
  8191. "lib/MonoTouch10/_._",
  8192. "lib/net451/_._",
  8193. "lib/portable-net451+win81+wpa81/_._",
  8194. "lib/win81/_._",
  8195. "lib/wpa81/_._",
  8196. "lib/xamarinios10/_._",
  8197. "lib/xamarinmac20/_._",
  8198. "lib/xamarintvos10/_._",
  8199. "lib/xamarinwatchos10/_._",
  8200. "ref/MonoAndroid10/_._",
  8201. "ref/MonoTouch10/_._",
  8202. "ref/net451/_._",
  8203. "ref/netcore50/System.Threading.Timer.dll",
  8204. "ref/netcore50/System.Threading.Timer.xml",
  8205. "ref/netcore50/de/System.Threading.Timer.xml",
  8206. "ref/netcore50/es/System.Threading.Timer.xml",
  8207. "ref/netcore50/fr/System.Threading.Timer.xml",
  8208. "ref/netcore50/it/System.Threading.Timer.xml",
  8209. "ref/netcore50/ja/System.Threading.Timer.xml",
  8210. "ref/netcore50/ko/System.Threading.Timer.xml",
  8211. "ref/netcore50/ru/System.Threading.Timer.xml",
  8212. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8213. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8214. "ref/netstandard1.2/System.Threading.Timer.dll",
  8215. "ref/netstandard1.2/System.Threading.Timer.xml",
  8216. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8217. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8218. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8219. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8220. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8221. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8222. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8223. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8224. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8225. "ref/portable-net451+win81+wpa81/_._",
  8226. "ref/win81/_._",
  8227. "ref/wpa81/_._",
  8228. "ref/xamarinios10/_._",
  8229. "ref/xamarinmac20/_._",
  8230. "ref/xamarintvos10/_._",
  8231. "ref/xamarinwatchos10/_._",
  8232. "system.threading.timer.4.3.0.nupkg.sha512",
  8233. "system.threading.timer.nuspec"
  8234. ]
  8235. },
  8236. "System.ValueTuple/4.3.0": {
  8237. "sha512": "cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==",
  8238. "type": "package",
  8239. "path": "system.valuetuple/4.3.0",
  8240. "files": [
  8241. ".nupkg.metadata",
  8242. ".signature.p7s",
  8243. "ThirdPartyNotices.txt",
  8244. "dotnet_library_license.txt",
  8245. "lib/netstandard1.0/.xml",
  8246. "lib/netstandard1.0/System.ValueTuple.dll",
  8247. "lib/portable-net40+sl4+win8+wp8/.xml",
  8248. "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
  8249. "system.valuetuple.4.3.0.nupkg.sha512",
  8250. "system.valuetuple.nuspec"
  8251. ]
  8252. },
  8253. "System.Xml.ReaderWriter/4.3.0": {
  8254. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8255. "type": "package",
  8256. "path": "system.xml.readerwriter/4.3.0",
  8257. "files": [
  8258. ".nupkg.metadata",
  8259. ".signature.p7s",
  8260. "ThirdPartyNotices.txt",
  8261. "dotnet_library_license.txt",
  8262. "lib/MonoAndroid10/_._",
  8263. "lib/MonoTouch10/_._",
  8264. "lib/net45/_._",
  8265. "lib/net46/System.Xml.ReaderWriter.dll",
  8266. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8267. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8268. "lib/portable-net45+win8+wp8+wpa81/_._",
  8269. "lib/win8/_._",
  8270. "lib/wp80/_._",
  8271. "lib/wpa81/_._",
  8272. "lib/xamarinios10/_._",
  8273. "lib/xamarinmac20/_._",
  8274. "lib/xamarintvos10/_._",
  8275. "lib/xamarinwatchos10/_._",
  8276. "ref/MonoAndroid10/_._",
  8277. "ref/MonoTouch10/_._",
  8278. "ref/net45/_._",
  8279. "ref/net46/System.Xml.ReaderWriter.dll",
  8280. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8281. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8282. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8283. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8284. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8285. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8286. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8287. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8288. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8289. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8290. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8291. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8292. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8293. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8294. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8295. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8296. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8297. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8298. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8299. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8300. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8301. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8302. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8303. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8304. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8305. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8306. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8307. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8308. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8309. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8310. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8311. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8312. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8313. "ref/portable-net45+win8+wp8+wpa81/_._",
  8314. "ref/win8/_._",
  8315. "ref/wp80/_._",
  8316. "ref/wpa81/_._",
  8317. "ref/xamarinios10/_._",
  8318. "ref/xamarinmac20/_._",
  8319. "ref/xamarintvos10/_._",
  8320. "ref/xamarinwatchos10/_._",
  8321. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  8322. "system.xml.readerwriter.nuspec"
  8323. ]
  8324. },
  8325. "System.Xml.XDocument/4.3.0": {
  8326. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  8327. "type": "package",
  8328. "path": "system.xml.xdocument/4.3.0",
  8329. "files": [
  8330. ".nupkg.metadata",
  8331. ".signature.p7s",
  8332. "ThirdPartyNotices.txt",
  8333. "dotnet_library_license.txt",
  8334. "lib/MonoAndroid10/_._",
  8335. "lib/MonoTouch10/_._",
  8336. "lib/net45/_._",
  8337. "lib/netcore50/System.Xml.XDocument.dll",
  8338. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8339. "lib/portable-net45+win8+wp8+wpa81/_._",
  8340. "lib/win8/_._",
  8341. "lib/wp80/_._",
  8342. "lib/wpa81/_._",
  8343. "lib/xamarinios10/_._",
  8344. "lib/xamarinmac20/_._",
  8345. "lib/xamarintvos10/_._",
  8346. "lib/xamarinwatchos10/_._",
  8347. "ref/MonoAndroid10/_._",
  8348. "ref/MonoTouch10/_._",
  8349. "ref/net45/_._",
  8350. "ref/netcore50/System.Xml.XDocument.dll",
  8351. "ref/netcore50/System.Xml.XDocument.xml",
  8352. "ref/netcore50/de/System.Xml.XDocument.xml",
  8353. "ref/netcore50/es/System.Xml.XDocument.xml",
  8354. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8355. "ref/netcore50/it/System.Xml.XDocument.xml",
  8356. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8357. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8358. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8359. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8360. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8361. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8362. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8363. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8364. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8365. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8366. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8367. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8368. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8369. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8370. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8371. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8372. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8373. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8374. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8375. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8376. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8377. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8378. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8379. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8380. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8381. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8382. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8383. "ref/portable-net45+win8+wp8+wpa81/_._",
  8384. "ref/win8/_._",
  8385. "ref/wp80/_._",
  8386. "ref/wpa81/_._",
  8387. "ref/xamarinios10/_._",
  8388. "ref/xamarinmac20/_._",
  8389. "ref/xamarintvos10/_._",
  8390. "ref/xamarinwatchos10/_._",
  8391. "system.xml.xdocument.4.3.0.nupkg.sha512",
  8392. "system.xml.xdocument.nuspec"
  8393. ]
  8394. },
  8395. "System.Xml.XmlDocument/4.3.0": {
  8396. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  8397. "type": "package",
  8398. "path": "system.xml.xmldocument/4.3.0",
  8399. "files": [
  8400. ".nupkg.metadata",
  8401. ".signature.p7s",
  8402. "ThirdPartyNotices.txt",
  8403. "dotnet_library_license.txt",
  8404. "lib/MonoAndroid10/_._",
  8405. "lib/MonoTouch10/_._",
  8406. "lib/net46/System.Xml.XmlDocument.dll",
  8407. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  8408. "lib/xamarinios10/_._",
  8409. "lib/xamarinmac20/_._",
  8410. "lib/xamarintvos10/_._",
  8411. "lib/xamarinwatchos10/_._",
  8412. "ref/MonoAndroid10/_._",
  8413. "ref/MonoTouch10/_._",
  8414. "ref/net46/System.Xml.XmlDocument.dll",
  8415. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  8416. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  8417. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  8418. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  8419. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  8420. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  8421. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  8422. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  8423. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  8424. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  8425. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  8426. "ref/xamarinios10/_._",
  8427. "ref/xamarinmac20/_._",
  8428. "ref/xamarintvos10/_._",
  8429. "ref/xamarinwatchos10/_._",
  8430. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  8431. "system.xml.xmldocument.nuspec"
  8432. ]
  8433. },
  8434. "System.Xml.XPath/4.3.0": {
  8435. "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
  8436. "type": "package",
  8437. "path": "system.xml.xpath/4.3.0",
  8438. "files": [
  8439. ".nupkg.metadata",
  8440. ".signature.p7s",
  8441. "ThirdPartyNotices.txt",
  8442. "dotnet_library_license.txt",
  8443. "lib/MonoAndroid10/_._",
  8444. "lib/MonoTouch10/_._",
  8445. "lib/net46/System.Xml.XPath.dll",
  8446. "lib/netstandard1.3/System.Xml.XPath.dll",
  8447. "lib/xamarinios10/_._",
  8448. "lib/xamarinmac20/_._",
  8449. "lib/xamarintvos10/_._",
  8450. "lib/xamarinwatchos10/_._",
  8451. "ref/MonoAndroid10/_._",
  8452. "ref/MonoTouch10/_._",
  8453. "ref/net46/System.Xml.XPath.dll",
  8454. "ref/netstandard1.3/System.Xml.XPath.dll",
  8455. "ref/netstandard1.3/System.Xml.XPath.xml",
  8456. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  8457. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  8458. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  8459. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  8460. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  8461. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  8462. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  8463. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  8464. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  8465. "ref/xamarinios10/_._",
  8466. "ref/xamarinmac20/_._",
  8467. "ref/xamarintvos10/_._",
  8468. "ref/xamarinwatchos10/_._",
  8469. "system.xml.xpath.4.3.0.nupkg.sha512",
  8470. "system.xml.xpath.nuspec"
  8471. ]
  8472. },
  8473. "System.Xml.XPath.XDocument/4.3.0": {
  8474. "sha512": "jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==",
  8475. "type": "package",
  8476. "path": "system.xml.xpath.xdocument/4.3.0",
  8477. "files": [
  8478. ".nupkg.metadata",
  8479. ".signature.p7s",
  8480. "ThirdPartyNotices.txt",
  8481. "dotnet_library_license.txt",
  8482. "lib/MonoAndroid10/_._",
  8483. "lib/MonoTouch10/_._",
  8484. "lib/net46/System.Xml.XPath.XDocument.dll",
  8485. "lib/netstandard1.3/System.Xml.XPath.XDocument.dll",
  8486. "lib/xamarinios10/_._",
  8487. "lib/xamarinmac20/_._",
  8488. "lib/xamarintvos10/_._",
  8489. "lib/xamarinwatchos10/_._",
  8490. "ref/MonoAndroid10/_._",
  8491. "ref/MonoTouch10/_._",
  8492. "ref/net46/System.Xml.XPath.XDocument.dll",
  8493. "ref/netstandard1.3/System.Xml.XPath.XDocument.dll",
  8494. "ref/netstandard1.3/System.Xml.XPath.XDocument.xml",
  8495. "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml",
  8496. "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml",
  8497. "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml",
  8498. "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml",
  8499. "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml",
  8500. "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml",
  8501. "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml",
  8502. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml",
  8503. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml",
  8504. "ref/xamarinios10/_._",
  8505. "ref/xamarinmac20/_._",
  8506. "ref/xamarintvos10/_._",
  8507. "ref/xamarinwatchos10/_._",
  8508. "system.xml.xpath.xdocument.4.3.0.nupkg.sha512",
  8509. "system.xml.xpath.xdocument.nuspec"
  8510. ]
  8511. },
  8512. "Core.RabbitMQBus.Common/1.0.0": {
  8513. "type": "project",
  8514. "path": "../Core.RabbitMQBus.Common/Core.RabbitMQBus.Common.csproj",
  8515. "msbuildProject": "../Core.RabbitMQBus.Common/Core.RabbitMQBus.Common.csproj"
  8516. }
  8517. },
  8518. "projectFileDependencyGroups": {
  8519. ".NETStandard,Version=v2.1": [
  8520. "Core.RabbitMQBus.Common >= 1.0.0",
  8521. "Exceptionless >= 4.3.2027",
  8522. "Microsoft.AspNetCore.Mvc >= 2.2.0",
  8523. "Microsoft.Extensions.Logging >= 3.1.2",
  8524. "Microsoft.Extensions.Options >= 3.1.2",
  8525. "Polly >= 7.2.0",
  8526. "RabbitMQ.Client >= 5.1.2",
  8527. "Swifter.Json >= 1.2.9.6",
  8528. "System.Runtime.Loader >= 4.3.0"
  8529. ]
  8530. },
  8531. "packageFolders": {
  8532. "D:\\.nuget\\packages": {},
  8533. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  8534. },
  8535. "project": {
  8536. "version": "1.2.0",
  8537. "restore": {
  8538. "projectUniqueName": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Core.RabbitMQBus\\Core.RabbitMQBus.csproj",
  8539. "projectName": "Core.RabbitMQBus",
  8540. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Core.RabbitMQBus\\Core.RabbitMQBus.csproj",
  8541. "packagesPath": "D:\\.nuget\\packages",
  8542. "outputPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Core.RabbitMQBus\\obj\\",
  8543. "projectStyle": "PackageReference",
  8544. "fallbackFolders": [
  8545. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  8546. ],
  8547. "configFilePaths": [
  8548. "C:\\Users\\hp\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8549. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  8550. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  8551. ],
  8552. "originalTargetFrameworks": [
  8553. "netstandard2.1"
  8554. ],
  8555. "sources": {
  8556. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8557. "C:\\Program Files\\dotnet\\library-packs": {},
  8558. "https://api.nuget.org/v3/index.json": {}
  8559. },
  8560. "frameworks": {
  8561. "netstandard2.1": {
  8562. "targetAlias": "netstandard2.1",
  8563. "projectReferences": {
  8564. "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Core.RabbitMQBus.Common\\Core.RabbitMQBus.Common.csproj": {
  8565. "projectPath": "E:\\Ropin\\svn\\SH_HB\\Source_SQ\\Ropin.Inspection.Api\\Core.RabbitMQBus.Common\\Core.RabbitMQBus.Common.csproj"
  8566. }
  8567. }
  8568. }
  8569. },
  8570. "warningProperties": {
  8571. "warnAsError": [
  8572. "NU1605"
  8573. ]
  8574. }
  8575. },
  8576. "frameworks": {
  8577. "netstandard2.1": {
  8578. "targetAlias": "netstandard2.1",
  8579. "dependencies": {
  8580. "Exceptionless": {
  8581. "target": "Package",
  8582. "version": "[4.3.2027, )"
  8583. },
  8584. "Microsoft.AspNetCore.Mvc": {
  8585. "target": "Package",
  8586. "version": "[2.2.0, )"
  8587. },
  8588. "Microsoft.Extensions.Logging": {
  8589. "target": "Package",
  8590. "version": "[3.1.2, )"
  8591. },
  8592. "Microsoft.Extensions.Options": {
  8593. "target": "Package",
  8594. "version": "[3.1.2, )"
  8595. },
  8596. "Polly": {
  8597. "target": "Package",
  8598. "version": "[7.2.0, )"
  8599. },
  8600. "RabbitMQ.Client": {
  8601. "target": "Package",
  8602. "version": "[5.1.2, )"
  8603. },
  8604. "Swifter.Json": {
  8605. "target": "Package",
  8606. "version": "[1.2.9.6, )"
  8607. },
  8608. "System.Runtime.Loader": {
  8609. "target": "Package",
  8610. "version": "[4.3.0, )"
  8611. }
  8612. },
  8613. "imports": [
  8614. "net461",
  8615. "net462",
  8616. "net47",
  8617. "net471",
  8618. "net472",
  8619. "net48",
  8620. "net481"
  8621. ],
  8622. "assetTargetFallback": true,
  8623. "warn": true,
  8624. "frameworkReferences": {
  8625. "NETStandard.Library": {
  8626. "privateAssets": "all"
  8627. }
  8628. },
  8629. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  8630. }
  8631. }
  8632. }
  8633. }