Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

project.lock.json 402KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461
  1. {
  2. "locked": false,
  3. "version": 2,
  4. "targets": {
  5. ".NETCoreApp,Version=v1.0": {
  6. "Gray.Microsoft.AspNetCore.SignalR.Messaging/0.2.0": {
  7. "type": "package",
  8. "dependencies": {
  9. "Microsoft.CSharp": "4.0.1",
  10. "Microsoft.Extensions.Logging": "1.1.0-alpha1-22144",
  11. "Microsoft.Extensions.Options": "1.1.0-alpha1-22144",
  12. "System.Collections.Concurrent": "4.0.12",
  13. "System.Diagnostics.Tools": "4.0.1",
  14. "System.Dynamic.Runtime": "4.0.11",
  15. "System.Linq.Expressions": "4.1.0",
  16. "System.Reflection.Emit": "4.0.1",
  17. "System.Reflection.Emit.ILGeneration": "4.0.1",
  18. "System.Reflection.Extensions": "4.0.1",
  19. "System.Reflection.Primitives": "4.0.1",
  20. "System.Security.Cryptography.Algorithms": "4.2.0",
  21. "System.Text.Encoding.Extensions": "4.0.11",
  22. "System.Threading.Thread": "4.0.0",
  23. "System.Threading.ThreadPool": "4.0.10",
  24. "System.Threading.Timer": "4.0.1"
  25. },
  26. "compile": {
  27. "lib/netstandard1.3/Gray.Microsoft.AspNetCore.SignalR.Messaging.dll": {}
  28. },
  29. "runtime": {
  30. "lib/netstandard1.3/Gray.Microsoft.AspNetCore.SignalR.Messaging.dll": {}
  31. }
  32. },
  33. "Gray.Microsoft.AspNetCore.SignalR.Server/0.2.0-alpha1": {
  34. "type": "package",
  35. "dependencies": {
  36. "Gray.Microsoft.AspNetCore.SignalR.Messaging": "0.2.0",
  37. "Microsoft.AspNetCore.DataProtection": "1.1.0-alpha1-22144",
  38. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0-alpha1-22144",
  39. "Microsoft.AspNetCore.Http.Extensions": "1.1.0-alpha1-22144",
  40. "Microsoft.Extensions.DependencyModel": "1.0.1-beta-003206",
  41. "Newtonsoft.Json": "9.0.1",
  42. "System.Runtime.Serialization.Primitives": "4.1.1"
  43. },
  44. "compile": {
  45. "lib/netstandard1.6/Gray.Microsoft.AspNetCore.SignalR.Server.dll": {}
  46. },
  47. "runtime": {
  48. "lib/netstandard1.6/Gray.Microsoft.AspNetCore.SignalR.Server.dll": {}
  49. }
  50. },
  51. "Libuv/1.9.0": {
  52. "type": "package",
  53. "dependencies": {
  54. "Microsoft.NETCore.Platforms": "1.0.1"
  55. },
  56. "runtimeTargets": {
  57. "runtimes/osx/native/_._": {
  58. "assetType": "native",
  59. "rid": "osx"
  60. }
  61. }
  62. },
  63. "Microsoft.ApplicationInsights/2.1.0": {
  64. "type": "package",
  65. "dependencies": {
  66. "System.Collections": "4.0.10",
  67. "System.Diagnostics.Debug": "4.0.10",
  68. "System.Diagnostics.Tools": "4.0.0",
  69. "System.Diagnostics.Tracing": "4.0.20",
  70. "System.Globalization": "4.0.10",
  71. "System.IO": "4.0.10",
  72. "System.IO.Compression": "4.0.0",
  73. "System.Linq": "4.0.0",
  74. "System.Net.Http": "4.0.0",
  75. "System.Reflection": "4.0.10",
  76. "System.Reflection.Extensions": "4.0.0",
  77. "System.Runtime": "4.0.20",
  78. "System.Runtime.Extensions": "4.0.10",
  79. "System.Text.Encoding": "4.0.10",
  80. "System.Text.Encoding.Extensions": "4.0.10",
  81. "System.Text.RegularExpressions": "4.0.10",
  82. "System.Threading": "4.0.10",
  83. "System.Threading.Tasks": "4.0.10",
  84. "System.Xml.XDocument": "4.0.10"
  85. },
  86. "compile": {
  87. "lib/dotnet5.4/Microsoft.ApplicationInsights.dll": {}
  88. },
  89. "runtime": {
  90. "lib/dotnet5.4/Microsoft.ApplicationInsights.dll": {}
  91. }
  92. },
  93. "Microsoft.ApplicationInsights.AspNetCore/1.0.2": {
  94. "type": "package",
  95. "dependencies": {
  96. "Microsoft.ApplicationInsights": "2.1.0",
  97. "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
  98. "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
  99. "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
  100. "Microsoft.Extensions.Configuration": "1.0.0",
  101. "Microsoft.Extensions.DiagnosticAdapter": "1.0.0",
  102. "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
  103. "System.Net.NameResolution": "4.0.0"
  104. },
  105. "compile": {
  106. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll": {}
  107. },
  108. "runtime": {
  109. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll": {}
  110. }
  111. },
  112. "Microsoft.AspNetCore.Antiforgery/1.0.1": {
  113. "type": "package",
  114. "dependencies": {
  115. "Microsoft.AspNetCore.DataProtection": "1.0.0",
  116. "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
  117. "Microsoft.AspNetCore.WebUtilities": "1.0.0",
  118. "Microsoft.Extensions.ObjectPool": "1.0.0"
  119. },
  120. "compile": {
  121. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
  122. },
  123. "runtime": {
  124. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
  125. }
  126. },
  127. "Microsoft.AspNetCore.Authorization/1.0.0": {
  128. "type": "package",
  129. "dependencies": {
  130. "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
  131. "Microsoft.Extensions.Options": "1.0.0",
  132. "System.Security.Claims": "4.0.1"
  133. },
  134. "compile": {
  135. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
  136. },
  137. "runtime": {
  138. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
  139. }
  140. },
  141. "Microsoft.AspNetCore.Cryptography.Internal/1.1.0-preview1-final": {
  142. "type": "package",
  143. "dependencies": {
  144. "NETStandard.Library": "1.6.1-preview1-24530-04"
  145. },
  146. "compile": {
  147. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  148. },
  149. "runtime": {
  150. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  151. }
  152. },
  153. "Microsoft.AspNetCore.DataProtection/1.1.0-preview1-final": {
  154. "type": "package",
  155. "dependencies": {
  156. "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0-preview1-final",
  157. "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0-preview1-final",
  158. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0-preview1-final",
  159. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0-preview1-final",
  160. "Microsoft.Extensions.Logging.Abstractions": "1.1.0-preview1-final",
  161. "Microsoft.Extensions.Options": "1.1.0-preview1-final",
  162. "Microsoft.Win32.Registry": "4.3.0-preview1-24530-04",
  163. "NETStandard.Library": "1.6.1-preview1-24530-04",
  164. "System.Security.Claims": "4.3.0-preview1-24530-04",
  165. "System.Security.Principal.Windows": "4.3.0-preview1-24530-04"
  166. },
  167. "compile": {
  168. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
  169. },
  170. "runtime": {
  171. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
  172. }
  173. },
  174. "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0-preview1-final": {
  175. "type": "package",
  176. "dependencies": {
  177. "NETStandard.Library": "1.6.1-preview1-24530-04",
  178. "System.ComponentModel": "4.3.0-preview1-24530-04"
  179. },
  180. "compile": {
  181. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  182. },
  183. "runtime": {
  184. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  185. }
  186. },
  187. "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
  188. "type": "package",
  189. "dependencies": {
  190. "System.Resources.ResourceManager": "4.0.1"
  191. },
  192. "compile": {
  193. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  194. },
  195. "runtime": {
  196. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  197. }
  198. },
  199. "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
  200. "type": "package",
  201. "dependencies": {
  202. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
  203. "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
  204. "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
  205. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  206. "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
  207. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  208. "NETStandard.Library": "1.6.1"
  209. },
  210. "compile": {
  211. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  212. },
  213. "runtime": {
  214. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  215. }
  216. },
  217. "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
  218. "type": "package",
  219. "dependencies": {
  220. "Microsoft.AspNetCore.Http.Features": "1.1.0",
  221. "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
  222. "NETStandard.Library": "1.6.1"
  223. },
  224. "compile": {
  225. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  226. },
  227. "runtime": {
  228. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  229. }
  230. },
  231. "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
  232. "type": "package",
  233. "dependencies": {
  234. "System.Collections": "4.0.11",
  235. "System.Resources.ResourceManager": "4.0.1",
  236. "System.Text.Encodings.Web": "4.0.0"
  237. },
  238. "compile": {
  239. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  240. },
  241. "runtime": {
  242. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  243. }
  244. },
  245. "Microsoft.AspNetCore.Http/1.0.0": {
  246. "type": "package",
  247. "dependencies": {
  248. "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
  249. "Microsoft.AspNetCore.WebUtilities": "1.0.0",
  250. "Microsoft.Extensions.ObjectPool": "1.0.0",
  251. "Microsoft.Extensions.Options": "1.0.0",
  252. "Microsoft.Net.Http.Headers": "1.0.0",
  253. "System.Buffers": "4.0.0",
  254. "System.Threading": "4.0.11"
  255. },
  256. "compile": {
  257. "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
  258. },
  259. "runtime": {
  260. "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
  261. }
  262. },
  263. "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
  264. "type": "package",
  265. "dependencies": {
  266. "Microsoft.AspNetCore.Http.Features": "1.1.0",
  267. "Microsoft.Extensions.Primitives": "1.1.0",
  268. "NETStandard.Library": "1.6.1",
  269. "System.Globalization.Extensions": "4.3.0",
  270. "System.Reflection.TypeExtensions": "4.3.0",
  271. "System.Text.Encodings.Web": "4.3.0"
  272. },
  273. "compile": {
  274. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  275. },
  276. "runtime": {
  277. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  278. }
  279. },
  280. "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
  281. "type": "package",
  282. "dependencies": {
  283. "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
  284. "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
  285. "Microsoft.Net.Http.Headers": "1.1.0",
  286. "NETStandard.Library": "1.6.1",
  287. "System.Buffers": "4.3.0"
  288. },
  289. "compile": {
  290. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
  291. },
  292. "runtime": {
  293. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
  294. }
  295. },
  296. "Microsoft.AspNetCore.Http.Features/1.1.0": {
  297. "type": "package",
  298. "dependencies": {
  299. "Microsoft.Extensions.Primitives": "1.1.0",
  300. "NETStandard.Library": "1.6.1",
  301. "System.ComponentModel": "4.3.0",
  302. "System.Net.WebSockets": "4.3.0",
  303. "System.Security.Claims": "4.3.0",
  304. "System.Security.Principal": "4.3.0"
  305. },
  306. "compile": {
  307. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
  308. },
  309. "runtime": {
  310. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
  311. }
  312. },
  313. "Microsoft.AspNetCore.JsonPatch/1.0.0": {
  314. "type": "package",
  315. "dependencies": {
  316. "Microsoft.CSharp": "4.0.1",
  317. "Newtonsoft.Json": "9.0.1",
  318. "System.Collections.Concurrent": "4.0.12",
  319. "System.ComponentModel.TypeConverter": "4.1.0",
  320. "System.Diagnostics.Debug": "4.0.11",
  321. "System.Globalization": "4.0.11",
  322. "System.Linq": "4.1.0",
  323. "System.Reflection.Extensions": "4.0.1",
  324. "System.Resources.ResourceManager": "4.0.1",
  325. "System.Runtime.Extensions": "4.1.0",
  326. "System.Runtime.Serialization.Primitives": "4.1.1",
  327. "System.Text.Encoding.Extensions": "4.0.11"
  328. },
  329. "compile": {
  330. "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
  331. },
  332. "runtime": {
  333. "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
  334. }
  335. },
  336. "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
  337. "type": "package",
  338. "dependencies": {
  339. "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
  340. "Microsoft.CSharp": "4.0.1",
  341. "Microsoft.Net.Http.Headers": "1.0.0",
  342. "System.ComponentModel.TypeConverter": "4.1.0",
  343. "System.Reflection.Extensions": "4.0.1",
  344. "System.Text.Encoding.Extensions": "4.0.11"
  345. },
  346. "compile": {
  347. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  348. },
  349. "runtime": {
  350. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  351. }
  352. },
  353. "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
  354. "type": "package",
  355. "dependencies": {
  356. "Microsoft.AspNetCore.Authorization": "1.0.0",
  357. "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
  358. "Microsoft.AspNetCore.Http": "1.0.0",
  359. "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
  360. "Microsoft.AspNetCore.Routing": "1.0.0",
  361. "Microsoft.Extensions.DependencyModel": "1.0.0",
  362. "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
  363. "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
  364. "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
  365. "System.Buffers": "4.0.0",
  366. "System.Diagnostics.DiagnosticSource": "4.0.0",
  367. "System.Text.Encoding": "4.0.11"
  368. },
  369. "compile": {
  370. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
  371. },
  372. "runtime": {
  373. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
  374. }
  375. },
  376. "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
  377. "type": "package",
  378. "dependencies": {
  379. "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
  380. "Microsoft.Extensions.Localization": "1.0.0",
  381. "System.ComponentModel.Annotations": "4.1.0"
  382. },
  383. "compile": {
  384. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  385. },
  386. "runtime": {
  387. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  388. }
  389. },
  390. "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
  391. "type": "package",
  392. "dependencies": {
  393. "Microsoft.AspNetCore.JsonPatch": "1.0.0",
  394. "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
  395. },
  396. "compile": {
  397. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  398. },
  399. "runtime": {
  400. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  401. }
  402. },
  403. "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
  404. "type": "package",
  405. "dependencies": {
  406. "Microsoft.AspNetCore.Antiforgery": "1.0.1",
  407. "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
  408. "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
  409. "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
  410. "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
  411. "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
  412. "Microsoft.Extensions.WebEncoders": "1.0.0",
  413. "Newtonsoft.Json": "9.0.1",
  414. "System.Buffers": "4.0.0",
  415. "System.Runtime.Serialization.Primitives": "4.1.1"
  416. },
  417. "compile": {
  418. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  419. },
  420. "runtime": {
  421. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  422. }
  423. },
  424. "Microsoft.AspNetCore.Routing/1.0.0": {
  425. "type": "package",
  426. "dependencies": {
  427. "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
  428. "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
  429. "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
  430. "Microsoft.Extensions.ObjectPool": "1.0.0",
  431. "Microsoft.Extensions.Options": "1.0.0",
  432. "System.Collections": "4.0.11",
  433. "System.Text.RegularExpressions": "4.1.0"
  434. },
  435. "compile": {
  436. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
  437. },
  438. "runtime": {
  439. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
  440. }
  441. },
  442. "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
  443. "type": "package",
  444. "dependencies": {
  445. "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
  446. "System.Collections.Concurrent": "4.0.12",
  447. "System.Reflection.Extensions": "4.0.1",
  448. "System.Threading.Tasks": "4.0.11"
  449. },
  450. "compile": {
  451. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  452. },
  453. "runtime": {
  454. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  455. }
  456. },
  457. "Microsoft.AspNetCore.WebSockets/1.0.0": {
  458. "type": "package",
  459. "dependencies": {
  460. "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
  461. "Microsoft.Extensions.Options": "1.1.0",
  462. "NETStandard.Library": "1.6.1"
  463. },
  464. "compile": {
  465. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.dll": {}
  466. },
  467. "runtime": {
  468. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.dll": {}
  469. }
  470. },
  471. "Microsoft.AspNetCore.WebUtilities/1.0.0": {
  472. "type": "package",
  473. "dependencies": {
  474. "Microsoft.Extensions.Primitives": "1.0.0",
  475. "System.Buffers": "4.0.0",
  476. "System.Collections": "4.0.11",
  477. "System.IO": "4.1.0",
  478. "System.IO.FileSystem": "4.0.1",
  479. "System.Text.Encodings.Web": "4.0.0"
  480. },
  481. "compile": {
  482. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
  483. },
  484. "runtime": {
  485. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
  486. }
  487. },
  488. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  489. "type": "package"
  490. },
  491. "Microsoft.CodeAnalysis.Common/1.3.0": {
  492. "type": "package",
  493. "dependencies": {
  494. "Microsoft.CodeAnalysis.Analyzers": "1.1.0",
  495. "System.AppContext": "4.1.0",
  496. "System.Collections": "4.0.11",
  497. "System.Collections.Concurrent": "4.0.12",
  498. "System.Collections.Immutable": "1.2.0",
  499. "System.Console": "4.0.0",
  500. "System.Diagnostics.Debug": "4.0.11",
  501. "System.Diagnostics.FileVersionInfo": "4.0.0",
  502. "System.Diagnostics.StackTrace": "4.0.1",
  503. "System.Diagnostics.Tools": "4.0.1",
  504. "System.Dynamic.Runtime": "4.0.11",
  505. "System.Globalization": "4.0.11",
  506. "System.IO.FileSystem": "4.0.1",
  507. "System.IO.FileSystem.Primitives": "4.0.1",
  508. "System.Linq": "4.1.0",
  509. "System.Linq.Expressions": "4.1.0",
  510. "System.Reflection": "4.1.0",
  511. "System.Reflection.Metadata": "1.3.0",
  512. "System.Reflection.Primitives": "4.0.1",
  513. "System.Resources.ResourceManager": "4.0.1",
  514. "System.Runtime": "4.1.0",
  515. "System.Runtime.Extensions": "4.1.0",
  516. "System.Runtime.Handles": "4.0.1",
  517. "System.Runtime.InteropServices": "4.1.0",
  518. "System.Runtime.Numerics": "4.0.1",
  519. "System.Security.Cryptography.Algorithms": "4.2.0",
  520. "System.Security.Cryptography.Encoding": "4.0.0",
  521. "System.Security.Cryptography.X509Certificates": "4.1.0",
  522. "System.Text.Encoding": "4.0.11",
  523. "System.Text.Encoding.CodePages": "4.0.1",
  524. "System.Text.Encoding.Extensions": "4.0.11",
  525. "System.Threading": "4.0.11",
  526. "System.Threading.Tasks": "4.0.11",
  527. "System.Threading.Tasks.Parallel": "4.0.1",
  528. "System.Threading.Thread": "4.0.0",
  529. "System.Xml.ReaderWriter": "4.0.11",
  530. "System.Xml.XDocument": "4.0.11",
  531. "System.Xml.XPath.XDocument": "4.0.1",
  532. "System.Xml.XmlDocument": "4.0.1"
  533. },
  534. "compile": {
  535. "lib/netstandard1.3/_._": {}
  536. },
  537. "runtime": {
  538. "lib/netstandard1.3/_._": {}
  539. }
  540. },
  541. "Microsoft.CodeAnalysis.CSharp/1.3.0": {
  542. "type": "package",
  543. "dependencies": {
  544. "Microsoft.CodeAnalysis.Common": "[1.3.0]"
  545. },
  546. "compile": {
  547. "lib/netstandard1.3/_._": {}
  548. },
  549. "runtime": {
  550. "lib/netstandard1.3/_._": {}
  551. }
  552. },
  553. "Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
  554. "type": "package",
  555. "dependencies": {
  556. "Microsoft.CodeAnalysis.Common": "1.3.0"
  557. },
  558. "compile": {
  559. "lib/netstandard1.3/_._": {}
  560. },
  561. "runtime": {
  562. "lib/netstandard1.3/_._": {}
  563. }
  564. },
  565. "Microsoft.CSharp/4.3.0": {
  566. "type": "package",
  567. "dependencies": {
  568. "System.Collections": "4.3.0",
  569. "System.Diagnostics.Debug": "4.3.0",
  570. "System.Dynamic.Runtime": "4.3.0",
  571. "System.Globalization": "4.3.0",
  572. "System.Linq": "4.3.0",
  573. "System.Linq.Expressions": "4.3.0",
  574. "System.ObjectModel": "4.3.0",
  575. "System.Reflection": "4.3.0",
  576. "System.Reflection.Extensions": "4.3.0",
  577. "System.Reflection.Primitives": "4.3.0",
  578. "System.Reflection.TypeExtensions": "4.3.0",
  579. "System.Resources.ResourceManager": "4.3.0",
  580. "System.Runtime": "4.3.0",
  581. "System.Runtime.Extensions": "4.3.0",
  582. "System.Runtime.InteropServices": "4.3.0",
  583. "System.Threading": "4.3.0"
  584. },
  585. "compile": {
  586. "ref/netstandard1.0/Microsoft.CSharp.dll": {}
  587. },
  588. "runtime": {
  589. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  590. }
  591. },
  592. "Microsoft.DotNet.InternalAbstractions/1.0.500-preview2-1-003177": {
  593. "type": "package",
  594. "dependencies": {
  595. "System.AppContext": "4.3.0",
  596. "System.Collections": "4.3.0",
  597. "System.IO": "4.3.0",
  598. "System.IO.FileSystem": "4.3.0",
  599. "System.Reflection.TypeExtensions": "4.3.0",
  600. "System.Runtime.Extensions": "4.3.0",
  601. "System.Runtime.InteropServices": "4.3.0",
  602. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
  603. },
  604. "compile": {
  605. "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
  606. },
  607. "runtime": {
  608. "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
  609. }
  610. },
  611. "Microsoft.EntityFrameworkCore/1.1.0": {
  612. "type": "package",
  613. "dependencies": {
  614. "Microsoft.Extensions.Caching.Memory": "1.1.0",
  615. "Microsoft.Extensions.DependencyInjection": "1.1.0",
  616. "Microsoft.Extensions.Logging": "1.1.0",
  617. "NETStandard.Library": "1.6.1",
  618. "Remotion.Linq": "2.1.1",
  619. "System.Collections.Immutable": "1.3.0",
  620. "System.ComponentModel.Annotations": "4.3.0",
  621. "System.Interactive.Async": "3.0.0",
  622. "System.Linq.Queryable": "4.3.0"
  623. },
  624. "compile": {
  625. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
  626. },
  627. "runtime": {
  628. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
  629. }
  630. },
  631. "Microsoft.EntityFrameworkCore.Design/1.1.0": {
  632. "type": "package",
  633. "dependencies": {
  634. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
  635. "Microsoft.EntityFrameworkCore.Relational.Design": "1.1.0",
  636. "NETStandard.Library": "1.6.1",
  637. "System.Collections.NonGeneric": "4.3.0"
  638. },
  639. "compile": {
  640. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll": {}
  641. },
  642. "runtime": {
  643. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll": {}
  644. }
  645. },
  646. "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
  647. "type": "package",
  648. "dependencies": {
  649. "Microsoft.CSharp": "4.3.0",
  650. "Microsoft.EntityFrameworkCore": "1.1.0",
  651. "NETStandard.Library": "1.6.1",
  652. "System.Data.Common": "4.3.0",
  653. "System.Diagnostics.DiagnosticSource": "4.3.0"
  654. },
  655. "compile": {
  656. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
  657. },
  658. "runtime": {
  659. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
  660. }
  661. },
  662. "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0": {
  663. "type": "package",
  664. "dependencies": {
  665. "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
  666. "NETStandard.Library": "1.6.1"
  667. },
  668. "compile": {
  669. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": {}
  670. },
  671. "runtime": {
  672. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": {}
  673. }
  674. },
  675. "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final": {
  676. "type": "package",
  677. "dependencies": {
  678. "Microsoft.EntityFrameworkCore.Design": "1.1.0"
  679. },
  680. "compile": {
  681. "lib/netstandard1.3/_._": {}
  682. },
  683. "runtime": {
  684. "lib/netstandard1.3/_._": {}
  685. }
  686. },
  687. "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
  688. "type": "package",
  689. "dependencies": {
  690. "Microsoft.Extensions.Primitives": "1.1.0",
  691. "NETStandard.Library": "1.6.1"
  692. },
  693. "compile": {
  694. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  695. },
  696. "runtime": {
  697. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  698. }
  699. },
  700. "Microsoft.Extensions.Caching.Memory/1.1.0": {
  701. "type": "package",
  702. "dependencies": {
  703. "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
  704. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  705. "Microsoft.Extensions.Options": "1.1.0",
  706. "NETStandard.Library": "1.6.1"
  707. },
  708. "compile": {
  709. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
  710. },
  711. "runtime": {
  712. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
  713. }
  714. },
  715. "Microsoft.Extensions.Configuration/1.0.0": {
  716. "type": "package",
  717. "dependencies": {
  718. "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
  719. "System.Collections": "4.0.11",
  720. "System.Diagnostics.Debug": "4.0.11",
  721. "System.IO": "4.1.0",
  722. "System.Resources.ResourceManager": "4.0.1",
  723. "System.Runtime.Extensions": "4.1.0",
  724. "System.Runtime.InteropServices": "4.1.0",
  725. "System.Threading": "4.0.11"
  726. },
  727. "compile": {
  728. "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
  729. },
  730. "runtime": {
  731. "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
  732. }
  733. },
  734. "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
  735. "type": "package",
  736. "dependencies": {
  737. "Microsoft.Extensions.Primitives": "1.1.0",
  738. "NETStandard.Library": "1.6.1"
  739. },
  740. "compile": {
  741. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  742. },
  743. "runtime": {
  744. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  745. }
  746. },
  747. "Microsoft.Extensions.DependencyInjection/1.1.0": {
  748. "type": "package",
  749. "dependencies": {
  750. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  751. "NETStandard.Library": "1.6.1"
  752. },
  753. "compile": {
  754. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
  755. },
  756. "runtime": {
  757. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
  758. }
  759. },
  760. "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
  761. "type": "package",
  762. "dependencies": {
  763. "NETStandard.Library": "1.6.1",
  764. "System.ComponentModel": "4.3.0"
  765. },
  766. "compile": {
  767. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  768. },
  769. "runtime": {
  770. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  771. }
  772. },
  773. "Microsoft.Extensions.DependencyModel/1.0.500-preview2-1-003177": {
  774. "type": "package",
  775. "dependencies": {
  776. "Microsoft.DotNet.InternalAbstractions": "1.0.500-preview2-1-003177",
  777. "Newtonsoft.Json": "9.0.1",
  778. "System.Diagnostics.Debug": "4.3.0",
  779. "System.Dynamic.Runtime": "4.3.0",
  780. "System.Linq": "4.3.0"
  781. },
  782. "compile": {
  783. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  784. },
  785. "runtime": {
  786. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  787. }
  788. },
  789. "Microsoft.Extensions.DiagnosticAdapter/1.0.0": {
  790. "type": "package",
  791. "dependencies": {
  792. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
  793. "System.Collections.Concurrent": "4.0.12",
  794. "System.ComponentModel": "4.0.1",
  795. "System.Diagnostics.DiagnosticSource": "4.0.0",
  796. "System.Reflection.Emit": "4.0.1",
  797. "System.Reflection.Emit.Lightweight": "4.0.1",
  798. "System.Reflection.Extensions": "4.0.1",
  799. "System.Runtime.Extensions": "4.1.0"
  800. },
  801. "compile": {
  802. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.dll": {}
  803. },
  804. "runtime": {
  805. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.dll": {}
  806. }
  807. },
  808. "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
  809. "type": "package",
  810. "dependencies": {
  811. "Microsoft.Extensions.Primitives": "1.1.0",
  812. "NETStandard.Library": "1.6.1"
  813. },
  814. "compile": {
  815. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  816. },
  817. "runtime": {
  818. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  819. }
  820. },
  821. "Microsoft.Extensions.Localization/1.0.0": {
  822. "type": "package",
  823. "dependencies": {
  824. "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
  825. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
  826. "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
  827. "Microsoft.Extensions.Options": "1.0.0",
  828. "System.Collections.Concurrent": "4.0.12",
  829. "System.Resources.Reader": "4.0.0"
  830. },
  831. "compile": {
  832. "lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
  833. },
  834. "runtime": {
  835. "lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
  836. }
  837. },
  838. "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
  839. "type": "package",
  840. "dependencies": {
  841. "Microsoft.CSharp": "4.0.1",
  842. "System.Globalization": "4.0.11",
  843. "System.Resources.ResourceManager": "4.0.1"
  844. },
  845. "compile": {
  846. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
  847. },
  848. "runtime": {
  849. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
  850. }
  851. },
  852. "Microsoft.Extensions.Logging/1.1.0": {
  853. "type": "package",
  854. "dependencies": {
  855. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  856. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  857. "NETStandard.Library": "1.6.1"
  858. },
  859. "compile": {
  860. "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
  861. },
  862. "runtime": {
  863. "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
  864. }
  865. },
  866. "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
  867. "type": "package",
  868. "dependencies": {
  869. "NETStandard.Library": "1.6.1"
  870. },
  871. "compile": {
  872. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
  873. },
  874. "runtime": {
  875. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
  876. }
  877. },
  878. "Microsoft.Extensions.ObjectPool/1.0.0": {
  879. "type": "package",
  880. "dependencies": {
  881. "System.Diagnostics.Debug": "4.0.11",
  882. "System.Resources.ResourceManager": "4.0.1",
  883. "System.Runtime.Extensions": "4.1.0",
  884. "System.Threading": "4.0.11"
  885. },
  886. "compile": {
  887. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
  888. },
  889. "runtime": {
  890. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
  891. }
  892. },
  893. "Microsoft.Extensions.Options/1.1.0": {
  894. "type": "package",
  895. "dependencies": {
  896. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  897. "Microsoft.Extensions.Primitives": "1.1.0",
  898. "NETStandard.Library": "1.6.1",
  899. "System.ComponentModel": "4.3.0"
  900. },
  901. "compile": {
  902. "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
  903. },
  904. "runtime": {
  905. "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
  906. }
  907. },
  908. "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
  909. "type": "package",
  910. "dependencies": {
  911. "System.AppContext": "4.1.0",
  912. "System.Reflection": "4.1.0",
  913. "System.Reflection.Extensions": "4.0.1",
  914. "System.Reflection.TypeExtensions": "4.1.0",
  915. "System.Resources.ResourceManager": "4.0.1",
  916. "System.Runtime.Extensions": "4.1.0"
  917. },
  918. "compile": {
  919. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
  920. },
  921. "runtime": {
  922. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
  923. }
  924. },
  925. "Microsoft.Extensions.Primitives/1.1.0": {
  926. "type": "package",
  927. "dependencies": {
  928. "NETStandard.Library": "1.6.1",
  929. "System.Runtime.CompilerServices.Unsafe": "4.3.0"
  930. },
  931. "compile": {
  932. "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
  933. },
  934. "runtime": {
  935. "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
  936. }
  937. },
  938. "Microsoft.Extensions.WebEncoders/1.0.0": {
  939. "type": "package",
  940. "dependencies": {
  941. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
  942. "Microsoft.Extensions.Options": "1.0.0",
  943. "System.Text.Encodings.Web": "4.0.0"
  944. },
  945. "compile": {
  946. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
  947. },
  948. "runtime": {
  949. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
  950. }
  951. },
  952. "Microsoft.Net.Http.Headers/1.1.0": {
  953. "type": "package",
  954. "dependencies": {
  955. "Microsoft.Extensions.Primitives": "1.1.0",
  956. "NETStandard.Library": "1.6.1",
  957. "System.Buffers": "4.3.0",
  958. "System.Diagnostics.Contracts": "4.3.0"
  959. },
  960. "compile": {
  961. "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
  962. },
  963. "runtime": {
  964. "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
  965. }
  966. },
  967. "Microsoft.NETCore.App/1.0.1": {
  968. "type": "package",
  969. "dependencies": {
  970. "Libuv": "1.9.0",
  971. "Microsoft.CSharp": "4.0.1",
  972. "Microsoft.CodeAnalysis.CSharp": "1.3.0",
  973. "Microsoft.CodeAnalysis.VisualBasic": "1.3.0",
  974. "Microsoft.NETCore.DotNetHostPolicy": "1.0.1",
  975. "Microsoft.NETCore.Runtime.CoreCLR": "1.0.4",
  976. "Microsoft.VisualBasic": "10.0.1",
  977. "NETStandard.Library": "1.6.0",
  978. "System.Buffers": "4.0.0",
  979. "System.Collections.Immutable": "1.2.0",
  980. "System.ComponentModel": "4.0.1",
  981. "System.ComponentModel.Annotations": "4.1.0",
  982. "System.Diagnostics.DiagnosticSource": "4.0.0",
  983. "System.Diagnostics.Process": "4.1.0",
  984. "System.Dynamic.Runtime": "4.0.11",
  985. "System.Globalization.Extensions": "4.0.1",
  986. "System.IO.FileSystem.Watcher": "4.0.0",
  987. "System.IO.MemoryMappedFiles": "4.0.0",
  988. "System.IO.UnmanagedMemoryStream": "4.0.1",
  989. "System.Linq.Expressions": "4.1.0",
  990. "System.Linq.Parallel": "4.0.1",
  991. "System.Linq.Queryable": "4.0.1",
  992. "System.Net.NameResolution": "4.0.0",
  993. "System.Net.Requests": "4.0.11",
  994. "System.Net.Security": "4.0.0",
  995. "System.Net.WebHeaderCollection": "4.0.1",
  996. "System.Numerics.Vectors": "4.1.1",
  997. "System.Reflection.DispatchProxy": "4.0.1",
  998. "System.Reflection.Metadata": "1.3.0",
  999. "System.Reflection.TypeExtensions": "4.1.0",
  1000. "System.Resources.Reader": "4.0.0",
  1001. "System.Runtime.Loader": "4.0.0",
  1002. "System.Security.Cryptography.Algorithms": "4.2.0",
  1003. "System.Security.Cryptography.Encoding": "4.0.0",
  1004. "System.Security.Cryptography.Primitives": "4.0.0",
  1005. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1006. "System.Threading.Tasks.Dataflow": "4.6.0",
  1007. "System.Threading.Tasks.Extensions": "4.0.0",
  1008. "System.Threading.Tasks.Parallel": "4.0.1",
  1009. "System.Threading.Thread": "4.0.0",
  1010. "System.Threading.ThreadPool": "4.0.10"
  1011. },
  1012. "compile": {
  1013. "lib/netcoreapp1.0/_._": {}
  1014. },
  1015. "runtime": {
  1016. "lib/netcoreapp1.0/_._": {}
  1017. }
  1018. },
  1019. "Microsoft.NETCore.DotNetHost/1.0.1": {
  1020. "type": "package"
  1021. },
  1022. "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
  1023. "type": "package",
  1024. "dependencies": {
  1025. "Microsoft.NETCore.DotNetHostResolver": "1.0.1"
  1026. }
  1027. },
  1028. "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
  1029. "type": "package",
  1030. "dependencies": {
  1031. "Microsoft.NETCore.DotNetHost": "1.0.1"
  1032. }
  1033. },
  1034. "Microsoft.NETCore.Jit/1.0.4": {
  1035. "type": "package"
  1036. },
  1037. "Microsoft.NETCore.Platforms/1.1.0": {
  1038. "type": "package",
  1039. "compile": {
  1040. "lib/netstandard1.0/_._": {}
  1041. },
  1042. "runtime": {
  1043. "lib/netstandard1.0/_._": {}
  1044. }
  1045. },
  1046. "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
  1047. "type": "package",
  1048. "dependencies": {
  1049. "Microsoft.NETCore.Jit": "1.0.4",
  1050. "Microsoft.NETCore.Windows.ApiSets": "1.0.1"
  1051. }
  1052. },
  1053. "Microsoft.NETCore.Targets/1.1.0": {
  1054. "type": "package",
  1055. "compile": {
  1056. "lib/netstandard1.0/_._": {}
  1057. },
  1058. "runtime": {
  1059. "lib/netstandard1.0/_._": {}
  1060. }
  1061. },
  1062. "Microsoft.NETCore.Windows.ApiSets/1.0.1": {
  1063. "type": "package"
  1064. },
  1065. "Microsoft.VisualBasic/10.0.1": {
  1066. "type": "package",
  1067. "dependencies": {
  1068. "System.Collections": "4.0.11",
  1069. "System.Diagnostics.Debug": "4.0.11",
  1070. "System.Dynamic.Runtime": "4.0.11",
  1071. "System.Globalization": "4.0.11",
  1072. "System.Linq": "4.1.0",
  1073. "System.Linq.Expressions": "4.1.0",
  1074. "System.ObjectModel": "4.0.12",
  1075. "System.Reflection": "4.1.0",
  1076. "System.Reflection.Extensions": "4.0.1",
  1077. "System.Reflection.Primitives": "4.0.1",
  1078. "System.Reflection.TypeExtensions": "4.1.0",
  1079. "System.Resources.ResourceManager": "4.0.1",
  1080. "System.Runtime": "4.1.0",
  1081. "System.Runtime.Extensions": "4.1.0",
  1082. "System.Runtime.InteropServices": "4.1.0",
  1083. "System.Threading": "4.0.11"
  1084. },
  1085. "compile": {
  1086. "ref/netstandard1.1/Microsoft.VisualBasic.dll": {}
  1087. },
  1088. "runtime": {
  1089. "lib/netstandard1.3/_._": {}
  1090. }
  1091. },
  1092. "Microsoft.Win32.Primitives/4.3.0": {
  1093. "type": "package",
  1094. "dependencies": {
  1095. "Microsoft.NETCore.Platforms": "1.1.0",
  1096. "Microsoft.NETCore.Targets": "1.1.0",
  1097. "System.Runtime": "4.3.0"
  1098. },
  1099. "compile": {
  1100. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  1101. }
  1102. },
  1103. "Microsoft.Win32.Registry/4.3.0-preview1-24530-04": {
  1104. "type": "package",
  1105. "dependencies": {
  1106. "Microsoft.NETCore.Platforms": "1.1.0-preview1-24530-04",
  1107. "System.Collections": "4.3.0-preview1-24530-04",
  1108. "System.Globalization": "4.3.0-preview1-24530-04",
  1109. "System.Resources.ResourceManager": "4.3.0-preview1-24530-04",
  1110. "System.Runtime": "4.3.0-preview1-24530-04",
  1111. "System.Runtime.Extensions": "4.3.0-preview1-24530-04",
  1112. "System.Runtime.Handles": "4.3.0-preview1-24530-04",
  1113. "System.Runtime.InteropServices": "4.3.0-preview1-24530-04"
  1114. },
  1115. "compile": {
  1116. "ref/netstandard1.3/Microsoft.Win32.Registry.dll": {}
  1117. },
  1118. "runtimeTargets": {
  1119. "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {
  1120. "assetType": "runtime",
  1121. "rid": "unix"
  1122. },
  1123. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {
  1124. "assetType": "runtime",
  1125. "rid": "win"
  1126. }
  1127. }
  1128. },
  1129. "NETStandard.Library/1.6.1": {
  1130. "type": "package",
  1131. "dependencies": {
  1132. "Microsoft.NETCore.Platforms": "1.1.0",
  1133. "Microsoft.Win32.Primitives": "4.3.0",
  1134. "System.AppContext": "4.3.0",
  1135. "System.Collections": "4.3.0",
  1136. "System.Collections.Concurrent": "4.3.0",
  1137. "System.Console": "4.3.0",
  1138. "System.Diagnostics.Debug": "4.3.0",
  1139. "System.Diagnostics.Tools": "4.3.0",
  1140. "System.Diagnostics.Tracing": "4.3.0",
  1141. "System.Globalization": "4.3.0",
  1142. "System.Globalization.Calendars": "4.3.0",
  1143. "System.IO": "4.3.0",
  1144. "System.IO.Compression": "4.3.0",
  1145. "System.IO.Compression.ZipFile": "4.3.0",
  1146. "System.IO.FileSystem": "4.3.0",
  1147. "System.IO.FileSystem.Primitives": "4.3.0",
  1148. "System.Linq": "4.3.0",
  1149. "System.Linq.Expressions": "4.3.0",
  1150. "System.Net.Http": "4.3.0",
  1151. "System.Net.Primitives": "4.3.0",
  1152. "System.Net.Sockets": "4.3.0",
  1153. "System.ObjectModel": "4.3.0",
  1154. "System.Reflection": "4.3.0",
  1155. "System.Reflection.Extensions": "4.3.0",
  1156. "System.Reflection.Primitives": "4.3.0",
  1157. "System.Resources.ResourceManager": "4.3.0",
  1158. "System.Runtime": "4.3.0",
  1159. "System.Runtime.Extensions": "4.3.0",
  1160. "System.Runtime.Handles": "4.3.0",
  1161. "System.Runtime.InteropServices": "4.3.0",
  1162. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1163. "System.Runtime.Numerics": "4.3.0",
  1164. "System.Security.Cryptography.Algorithms": "4.3.0",
  1165. "System.Security.Cryptography.Encoding": "4.3.0",
  1166. "System.Security.Cryptography.Primitives": "4.3.0",
  1167. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1168. "System.Text.Encoding": "4.3.0",
  1169. "System.Text.Encoding.Extensions": "4.3.0",
  1170. "System.Text.RegularExpressions": "4.3.0",
  1171. "System.Threading": "4.3.0",
  1172. "System.Threading.Tasks": "4.3.0",
  1173. "System.Threading.Timer": "4.3.0",
  1174. "System.Xml.ReaderWriter": "4.3.0",
  1175. "System.Xml.XDocument": "4.3.0"
  1176. }
  1177. },
  1178. "Newtonsoft.Json/9.0.1": {
  1179. "type": "package",
  1180. "dependencies": {
  1181. "Microsoft.CSharp": "4.0.1",
  1182. "System.Collections": "4.0.11",
  1183. "System.Diagnostics.Debug": "4.0.11",
  1184. "System.Dynamic.Runtime": "4.0.11",
  1185. "System.Globalization": "4.0.11",
  1186. "System.IO": "4.1.0",
  1187. "System.Linq": "4.1.0",
  1188. "System.Linq.Expressions": "4.1.0",
  1189. "System.ObjectModel": "4.0.12",
  1190. "System.Reflection": "4.1.0",
  1191. "System.Reflection.Extensions": "4.0.1",
  1192. "System.Resources.ResourceManager": "4.0.1",
  1193. "System.Runtime": "4.1.0",
  1194. "System.Runtime.Extensions": "4.1.0",
  1195. "System.Runtime.Serialization.Primitives": "4.1.1",
  1196. "System.Text.Encoding": "4.0.11",
  1197. "System.Text.Encoding.Extensions": "4.0.11",
  1198. "System.Text.RegularExpressions": "4.1.0",
  1199. "System.Threading": "4.0.11",
  1200. "System.Threading.Tasks": "4.0.11",
  1201. "System.Xml.ReaderWriter": "4.0.11",
  1202. "System.Xml.XDocument": "4.0.11"
  1203. },
  1204. "compile": {
  1205. "lib/netstandard1.0/Newtonsoft.Json.dll": {}
  1206. },
  1207. "runtime": {
  1208. "lib/netstandard1.0/Newtonsoft.Json.dll": {}
  1209. }
  1210. },
  1211. "Npgsql/3.1.9": {
  1212. "type": "package",
  1213. "dependencies": {
  1214. "Microsoft.Win32.Primitives": "4.0.1",
  1215. "System.Collections.Concurrent": "4.0.12",
  1216. "System.ComponentModel.TypeConverter": "4.1.0",
  1217. "System.Console": "4.0.0",
  1218. "System.Data.Common": "4.1.0",
  1219. "System.Diagnostics.Contracts": "4.0.1",
  1220. "System.Globalization.Extensions": "4.0.1",
  1221. "System.Linq": "4.1.0",
  1222. "System.Net.NameResolution": "4.0.0",
  1223. "System.Net.NetworkInformation": "4.1.0",
  1224. "System.Net.Primitives": "4.0.11",
  1225. "System.Net.Security": "4.0.0",
  1226. "System.Net.Sockets": "4.1.0",
  1227. "System.Reflection": "4.1.0",
  1228. "System.Reflection.Extensions": "4.0.1",
  1229. "System.Reflection.TypeExtensions": "4.1.0",
  1230. "System.Runtime": "4.1.0",
  1231. "System.Runtime.InteropServices": "4.1.0",
  1232. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  1233. "System.Runtime.Numerics": "4.0.1",
  1234. "System.Text.Encoding.Extensions": "4.0.11",
  1235. "System.Text.RegularExpressions": "4.1.0",
  1236. "System.Threading": "4.0.11",
  1237. "System.Threading.Thread": "4.0.0",
  1238. "System.Threading.Timer": "4.0.1"
  1239. },
  1240. "compile": {
  1241. "lib/netstandard1.3/Npgsql.dll": {}
  1242. },
  1243. "runtime": {
  1244. "lib/netstandard1.3/Npgsql.dll": {}
  1245. }
  1246. },
  1247. "Npgsql.EntityFrameworkCore.PostgreSQL/1.1.0": {
  1248. "type": "package",
  1249. "dependencies": {
  1250. "Microsoft.EntityFrameworkCore": "1.1.0",
  1251. "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
  1252. "Microsoft.Extensions.DependencyInjection": "1.1.0",
  1253. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  1254. "Npgsql": "3.1.9"
  1255. },
  1256. "compile": {
  1257. "lib/netstandard1.3/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
  1258. },
  1259. "runtime": {
  1260. "lib/netstandard1.3/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
  1261. }
  1262. },
  1263. "Remotion.Linq/2.1.1": {
  1264. "type": "package",
  1265. "dependencies": {
  1266. "System.Collections": "4.0.11",
  1267. "System.Diagnostics.Debug": "4.0.11",
  1268. "System.Linq": "4.1.0",
  1269. "System.Linq.Expressions": "4.1.0",
  1270. "System.Linq.Queryable": "4.0.1",
  1271. "System.ObjectModel": "4.0.12",
  1272. "System.Reflection": "4.1.0",
  1273. "System.Reflection.Extensions": "4.0.1",
  1274. "System.Runtime": "4.1.0",
  1275. "System.Runtime.Extensions": "4.1.0",
  1276. "System.Threading": "4.0.11"
  1277. },
  1278. "compile": {
  1279. "lib/netstandard1.0/Remotion.Linq.dll": {}
  1280. },
  1281. "runtime": {
  1282. "lib/netstandard1.0/Remotion.Linq.dll": {}
  1283. }
  1284. },
  1285. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1286. "type": "package",
  1287. "runtimeTargets": {
  1288. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1289. "assetType": "native",
  1290. "rid": "debian.8-x64"
  1291. }
  1292. }
  1293. },
  1294. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1295. "type": "package",
  1296. "runtimeTargets": {
  1297. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1298. "assetType": "native",
  1299. "rid": "fedora.23-x64"
  1300. }
  1301. }
  1302. },
  1303. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1304. "type": "package",
  1305. "runtimeTargets": {
  1306. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1307. "assetType": "native",
  1308. "rid": "fedora.24-x64"
  1309. }
  1310. }
  1311. },
  1312. "runtime.native.System/4.3.0": {
  1313. "type": "package",
  1314. "dependencies": {
  1315. "Microsoft.NETCore.Platforms": "1.1.0",
  1316. "Microsoft.NETCore.Targets": "1.1.0"
  1317. },
  1318. "compile": {
  1319. "lib/netstandard1.0/_._": {}
  1320. },
  1321. "runtime": {
  1322. "lib/netstandard1.0/_._": {}
  1323. }
  1324. },
  1325. "runtime.native.System.IO.Compression/4.3.0": {
  1326. "type": "package",
  1327. "dependencies": {
  1328. "Microsoft.NETCore.Platforms": "1.1.0",
  1329. "Microsoft.NETCore.Targets": "1.1.0"
  1330. },
  1331. "compile": {
  1332. "lib/netstandard1.0/_._": {}
  1333. },
  1334. "runtime": {
  1335. "lib/netstandard1.0/_._": {}
  1336. }
  1337. },
  1338. "runtime.native.System.Net.Http/4.3.0": {
  1339. "type": "package",
  1340. "dependencies": {
  1341. "Microsoft.NETCore.Platforms": "1.1.0",
  1342. "Microsoft.NETCore.Targets": "1.1.0"
  1343. },
  1344. "compile": {
  1345. "lib/netstandard1.0/_._": {}
  1346. },
  1347. "runtime": {
  1348. "lib/netstandard1.0/_._": {}
  1349. }
  1350. },
  1351. "runtime.native.System.Net.Security/4.0.1": {
  1352. "type": "package",
  1353. "dependencies": {
  1354. "Microsoft.NETCore.Platforms": "1.0.1",
  1355. "Microsoft.NETCore.Targets": "1.0.1"
  1356. },
  1357. "compile": {
  1358. "lib/netstandard1.0/_._": {}
  1359. },
  1360. "runtime": {
  1361. "lib/netstandard1.0/_._": {}
  1362. }
  1363. },
  1364. "runtime.native.System.Security.Cryptography/4.0.0": {
  1365. "type": "package",
  1366. "dependencies": {
  1367. "Microsoft.NETCore.Platforms": "1.0.1",
  1368. "Microsoft.NETCore.Targets": "1.0.1"
  1369. },
  1370. "compile": {
  1371. "lib/netstandard1.0/_._": {}
  1372. },
  1373. "runtime": {
  1374. "lib/netstandard1.0/_._": {}
  1375. }
  1376. },
  1377. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1378. "type": "package",
  1379. "dependencies": {
  1380. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1381. },
  1382. "compile": {
  1383. "lib/netstandard1.0/_._": {}
  1384. },
  1385. "runtime": {
  1386. "lib/netstandard1.0/_._": {}
  1387. }
  1388. },
  1389. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1390. "type": "package",
  1391. "dependencies": {
  1392. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1393. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1394. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1395. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1396. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1397. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1398. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1399. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1400. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1401. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1402. },
  1403. "compile": {
  1404. "lib/netstandard1.0/_._": {}
  1405. },
  1406. "runtime": {
  1407. "lib/netstandard1.0/_._": {}
  1408. }
  1409. },
  1410. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1411. "type": "package",
  1412. "runtimeTargets": {
  1413. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1414. "assetType": "native",
  1415. "rid": "opensuse.13.2-x64"
  1416. }
  1417. }
  1418. },
  1419. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1420. "type": "package",
  1421. "runtimeTargets": {
  1422. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1423. "assetType": "native",
  1424. "rid": "opensuse.42.1-x64"
  1425. }
  1426. }
  1427. },
  1428. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1429. "type": "package",
  1430. "runtimeTargets": {
  1431. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1432. "assetType": "native",
  1433. "rid": "osx.10.10-x64"
  1434. }
  1435. }
  1436. },
  1437. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1438. "type": "package",
  1439. "runtimeTargets": {
  1440. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1441. "assetType": "native",
  1442. "rid": "osx.10.10-x64"
  1443. }
  1444. }
  1445. },
  1446. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1447. "type": "package",
  1448. "runtimeTargets": {
  1449. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1450. "assetType": "native",
  1451. "rid": "rhel.7-x64"
  1452. }
  1453. }
  1454. },
  1455. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1456. "type": "package",
  1457. "runtimeTargets": {
  1458. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1459. "assetType": "native",
  1460. "rid": "ubuntu.14.04-x64"
  1461. }
  1462. }
  1463. },
  1464. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1465. "type": "package",
  1466. "runtimeTargets": {
  1467. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1468. "assetType": "native",
  1469. "rid": "ubuntu.16.04-x64"
  1470. }
  1471. }
  1472. },
  1473. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1474. "type": "package",
  1475. "runtimeTargets": {
  1476. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1477. "assetType": "native",
  1478. "rid": "ubuntu.16.10-x64"
  1479. }
  1480. }
  1481. },
  1482. "System.AppContext/4.3.0": {
  1483. "type": "package",
  1484. "dependencies": {
  1485. "System.Runtime": "4.3.0"
  1486. },
  1487. "compile": {
  1488. "ref/netstandard1.6/System.AppContext.dll": {}
  1489. },
  1490. "runtime": {
  1491. "lib/netstandard1.6/System.AppContext.dll": {}
  1492. }
  1493. },
  1494. "System.Buffers/4.3.0": {
  1495. "type": "package",
  1496. "dependencies": {
  1497. "System.Diagnostics.Debug": "4.3.0",
  1498. "System.Diagnostics.Tracing": "4.3.0",
  1499. "System.Resources.ResourceManager": "4.3.0",
  1500. "System.Runtime": "4.3.0",
  1501. "System.Threading": "4.3.0"
  1502. },
  1503. "compile": {
  1504. "lib/netstandard1.1/System.Buffers.dll": {}
  1505. },
  1506. "runtime": {
  1507. "lib/netstandard1.1/System.Buffers.dll": {}
  1508. }
  1509. },
  1510. "System.Collections/4.3.0": {
  1511. "type": "package",
  1512. "dependencies": {
  1513. "Microsoft.NETCore.Platforms": "1.1.0",
  1514. "Microsoft.NETCore.Targets": "1.1.0",
  1515. "System.Runtime": "4.3.0"
  1516. },
  1517. "compile": {
  1518. "ref/netstandard1.3/System.Collections.dll": {}
  1519. },
  1520. "runtime": {
  1521. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  1522. }
  1523. },
  1524. "System.Collections.Concurrent/4.3.0": {
  1525. "type": "package",
  1526. "dependencies": {
  1527. "System.Collections": "4.3.0",
  1528. "System.Diagnostics.Debug": "4.3.0",
  1529. "System.Diagnostics.Tracing": "4.3.0",
  1530. "System.Globalization": "4.3.0",
  1531. "System.Reflection": "4.3.0",
  1532. "System.Resources.ResourceManager": "4.3.0",
  1533. "System.Runtime": "4.3.0",
  1534. "System.Runtime.Extensions": "4.3.0",
  1535. "System.Threading": "4.3.0",
  1536. "System.Threading.Tasks": "4.3.0"
  1537. },
  1538. "compile": {
  1539. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1540. },
  1541. "runtime": {
  1542. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1543. }
  1544. },
  1545. "System.Collections.Immutable/1.3.0": {
  1546. "type": "package",
  1547. "dependencies": {
  1548. "System.Collections": "4.3.0",
  1549. "System.Diagnostics.Debug": "4.3.0",
  1550. "System.Globalization": "4.3.0",
  1551. "System.Linq": "4.3.0",
  1552. "System.Resources.ResourceManager": "4.3.0",
  1553. "System.Runtime": "4.3.0",
  1554. "System.Runtime.Extensions": "4.3.0",
  1555. "System.Threading": "4.3.0"
  1556. },
  1557. "compile": {
  1558. "lib/netstandard1.0/System.Collections.Immutable.dll": {}
  1559. },
  1560. "runtime": {
  1561. "lib/netstandard1.0/System.Collections.Immutable.dll": {}
  1562. }
  1563. },
  1564. "System.Collections.NonGeneric/4.3.0": {
  1565. "type": "package",
  1566. "dependencies": {
  1567. "System.Diagnostics.Debug": "4.3.0",
  1568. "System.Globalization": "4.3.0",
  1569. "System.Resources.ResourceManager": "4.3.0",
  1570. "System.Runtime": "4.3.0",
  1571. "System.Runtime.Extensions": "4.3.0",
  1572. "System.Threading": "4.3.0"
  1573. },
  1574. "compile": {
  1575. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1576. },
  1577. "runtime": {
  1578. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1579. }
  1580. },
  1581. "System.Collections.Specialized/4.0.1": {
  1582. "type": "package",
  1583. "dependencies": {
  1584. "System.Collections.NonGeneric": "4.0.1",
  1585. "System.Globalization": "4.0.11",
  1586. "System.Globalization.Extensions": "4.0.1",
  1587. "System.Resources.ResourceManager": "4.0.1",
  1588. "System.Runtime": "4.1.0",
  1589. "System.Runtime.Extensions": "4.1.0",
  1590. "System.Threading": "4.0.11"
  1591. },
  1592. "compile": {
  1593. "ref/netstandard1.3/_._": {}
  1594. },
  1595. "runtime": {
  1596. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1597. }
  1598. },
  1599. "System.ComponentModel/4.3.0": {
  1600. "type": "package",
  1601. "dependencies": {
  1602. "System.Runtime": "4.3.0"
  1603. },
  1604. "compile": {
  1605. "ref/netstandard1.0/System.ComponentModel.dll": {}
  1606. },
  1607. "runtime": {
  1608. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1609. }
  1610. },
  1611. "System.ComponentModel.Annotations/4.3.0": {
  1612. "type": "package",
  1613. "dependencies": {
  1614. "System.Collections": "4.3.0",
  1615. "System.ComponentModel": "4.3.0",
  1616. "System.Globalization": "4.3.0",
  1617. "System.Linq": "4.3.0",
  1618. "System.Reflection": "4.3.0",
  1619. "System.Reflection.Extensions": "4.3.0",
  1620. "System.Resources.ResourceManager": "4.3.0",
  1621. "System.Runtime": "4.3.0",
  1622. "System.Runtime.Extensions": "4.3.0",
  1623. "System.Text.RegularExpressions": "4.3.0",
  1624. "System.Threading": "4.3.0"
  1625. },
  1626. "compile": {
  1627. "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {}
  1628. },
  1629. "runtime": {
  1630. "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
  1631. }
  1632. },
  1633. "System.ComponentModel.Primitives/4.1.0": {
  1634. "type": "package",
  1635. "dependencies": {
  1636. "System.ComponentModel": "4.0.1",
  1637. "System.Resources.ResourceManager": "4.0.1",
  1638. "System.Runtime": "4.1.0"
  1639. },
  1640. "compile": {
  1641. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1642. },
  1643. "runtime": {
  1644. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1645. }
  1646. },
  1647. "System.ComponentModel.TypeConverter/4.1.0": {
  1648. "type": "package",
  1649. "dependencies": {
  1650. "System.Collections": "4.0.11",
  1651. "System.Collections.NonGeneric": "4.0.1",
  1652. "System.Collections.Specialized": "4.0.1",
  1653. "System.ComponentModel": "4.0.1",
  1654. "System.ComponentModel.Primitives": "4.1.0",
  1655. "System.Globalization": "4.0.11",
  1656. "System.Linq": "4.1.0",
  1657. "System.Reflection": "4.1.0",
  1658. "System.Reflection.Extensions": "4.0.1",
  1659. "System.Reflection.Primitives": "4.0.1",
  1660. "System.Reflection.TypeExtensions": "4.1.0",
  1661. "System.Resources.ResourceManager": "4.0.1",
  1662. "System.Runtime": "4.1.0",
  1663. "System.Runtime.Extensions": "4.1.0",
  1664. "System.Threading": "4.0.11"
  1665. },
  1666. "compile": {
  1667. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1668. },
  1669. "runtime": {
  1670. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1671. }
  1672. },
  1673. "System.Console/4.3.0": {
  1674. "type": "package",
  1675. "dependencies": {
  1676. "Microsoft.NETCore.Platforms": "1.1.0",
  1677. "Microsoft.NETCore.Targets": "1.1.0",
  1678. "System.IO": "4.3.0",
  1679. "System.Runtime": "4.3.0",
  1680. "System.Text.Encoding": "4.3.0"
  1681. },
  1682. "compile": {
  1683. "ref/netstandard1.3/System.Console.dll": {}
  1684. }
  1685. },
  1686. "System.Data.Common/4.3.0": {
  1687. "type": "package",
  1688. "dependencies": {
  1689. "System.Collections": "4.3.0",
  1690. "System.Globalization": "4.3.0",
  1691. "System.IO": "4.3.0",
  1692. "System.Resources.ResourceManager": "4.3.0",
  1693. "System.Runtime": "4.3.0",
  1694. "System.Runtime.Extensions": "4.3.0",
  1695. "System.Text.RegularExpressions": "4.3.0",
  1696. "System.Threading.Tasks": "4.3.0"
  1697. },
  1698. "compile": {
  1699. "ref/netstandard1.2/System.Data.Common.dll": {}
  1700. },
  1701. "runtime": {
  1702. "lib/netstandard1.2/System.Data.Common.dll": {}
  1703. }
  1704. },
  1705. "System.Diagnostics.Contracts/4.3.0": {
  1706. "type": "package",
  1707. "dependencies": {
  1708. "System.Runtime": "4.3.0"
  1709. },
  1710. "compile": {
  1711. "ref/netstandard1.0/System.Diagnostics.Contracts.dll": {}
  1712. },
  1713. "runtime": {
  1714. "lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
  1715. }
  1716. },
  1717. "System.Diagnostics.Debug/4.3.0": {
  1718. "type": "package",
  1719. "dependencies": {
  1720. "Microsoft.NETCore.Platforms": "1.1.0",
  1721. "Microsoft.NETCore.Targets": "1.1.0",
  1722. "System.Runtime": "4.3.0"
  1723. },
  1724. "compile": {
  1725. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1726. },
  1727. "runtime": {
  1728. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  1729. }
  1730. },
  1731. "System.Diagnostics.DiagnosticSource/4.3.0": {
  1732. "type": "package",
  1733. "dependencies": {
  1734. "System.Collections": "4.3.0",
  1735. "System.Diagnostics.Tracing": "4.3.0",
  1736. "System.Reflection": "4.3.0",
  1737. "System.Runtime": "4.3.0",
  1738. "System.Threading": "4.3.0"
  1739. },
  1740. "compile": {
  1741. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1742. },
  1743. "runtime": {
  1744. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1745. }
  1746. },
  1747. "System.Diagnostics.FileVersionInfo/4.0.0": {
  1748. "type": "package",
  1749. "dependencies": {
  1750. "Microsoft.NETCore.Platforms": "1.0.1",
  1751. "System.Globalization": "4.0.11",
  1752. "System.IO": "4.1.0",
  1753. "System.IO.FileSystem": "4.0.1",
  1754. "System.IO.FileSystem.Primitives": "4.0.1",
  1755. "System.Reflection.Metadata": "1.3.0",
  1756. "System.Runtime": "4.1.0",
  1757. "System.Runtime.Extensions": "4.1.0",
  1758. "System.Runtime.InteropServices": "4.1.0"
  1759. },
  1760. "compile": {
  1761. "ref/netstandard1.3/_._": {}
  1762. },
  1763. "runtimeTargets": {
  1764. "runtimes/win/lib/netstandard1.3/_._": {
  1765. "assetType": "runtime",
  1766. "rid": "win"
  1767. }
  1768. }
  1769. },
  1770. "System.Diagnostics.Process/4.1.0": {
  1771. "type": "package",
  1772. "dependencies": {
  1773. "Microsoft.NETCore.Platforms": "1.0.1",
  1774. "Microsoft.Win32.Primitives": "4.0.1",
  1775. "Microsoft.Win32.Registry": "4.0.0",
  1776. "System.Collections": "4.0.11",
  1777. "System.Diagnostics.Debug": "4.0.11",
  1778. "System.Globalization": "4.0.11",
  1779. "System.IO": "4.1.0",
  1780. "System.IO.FileSystem": "4.0.1",
  1781. "System.IO.FileSystem.Primitives": "4.0.1",
  1782. "System.Resources.ResourceManager": "4.0.1",
  1783. "System.Runtime": "4.1.0",
  1784. "System.Runtime.Extensions": "4.1.0",
  1785. "System.Runtime.Handles": "4.0.1",
  1786. "System.Runtime.InteropServices": "4.1.0",
  1787. "System.Text.Encoding": "4.0.11",
  1788. "System.Text.Encoding.Extensions": "4.0.11",
  1789. "System.Threading": "4.0.11",
  1790. "System.Threading.Tasks": "4.0.11",
  1791. "System.Threading.Thread": "4.0.0",
  1792. "System.Threading.ThreadPool": "4.0.10",
  1793. "runtime.native.System": "4.0.0"
  1794. },
  1795. "compile": {
  1796. "ref/netstandard1.4/System.Diagnostics.Process.dll": {}
  1797. },
  1798. "runtimeTargets": {
  1799. "runtimes/osx/lib/netstandard1.4/_._": {
  1800. "assetType": "runtime",
  1801. "rid": "osx"
  1802. }
  1803. }
  1804. },
  1805. "System.Diagnostics.StackTrace/4.0.1": {
  1806. "type": "package",
  1807. "dependencies": {
  1808. "System.Collections.Immutable": "1.2.0",
  1809. "System.IO.FileSystem": "4.0.1",
  1810. "System.Reflection": "4.1.0",
  1811. "System.Reflection.Metadata": "1.3.0",
  1812. "System.Runtime": "4.1.0",
  1813. "System.Runtime.Extensions": "4.1.0"
  1814. },
  1815. "compile": {
  1816. "ref/netstandard1.3/_._": {}
  1817. },
  1818. "runtime": {
  1819. "lib/netstandard1.3/_._": {}
  1820. }
  1821. },
  1822. "System.Diagnostics.Tools/4.3.0": {
  1823. "type": "package",
  1824. "dependencies": {
  1825. "Microsoft.NETCore.Platforms": "1.1.0",
  1826. "Microsoft.NETCore.Targets": "1.1.0",
  1827. "System.Runtime": "4.3.0"
  1828. },
  1829. "compile": {
  1830. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1831. },
  1832. "runtime": {
  1833. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  1834. }
  1835. },
  1836. "System.Diagnostics.Tracing/4.3.0": {
  1837. "type": "package",
  1838. "dependencies": {
  1839. "Microsoft.NETCore.Platforms": "1.1.0",
  1840. "Microsoft.NETCore.Targets": "1.1.0",
  1841. "System.Runtime": "4.3.0"
  1842. },
  1843. "compile": {
  1844. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1845. },
  1846. "runtime": {
  1847. "lib/portable-net45+win8+wpa81/_._": {}
  1848. }
  1849. },
  1850. "System.Dynamic.Runtime/4.3.0": {
  1851. "type": "package",
  1852. "dependencies": {
  1853. "System.Collections": "4.3.0",
  1854. "System.Diagnostics.Debug": "4.3.0",
  1855. "System.Linq": "4.3.0",
  1856. "System.Linq.Expressions": "4.3.0",
  1857. "System.ObjectModel": "4.3.0",
  1858. "System.Reflection": "4.3.0",
  1859. "System.Reflection.Emit": "4.3.0",
  1860. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1861. "System.Reflection.Primitives": "4.3.0",
  1862. "System.Reflection.TypeExtensions": "4.3.0",
  1863. "System.Resources.ResourceManager": "4.3.0",
  1864. "System.Runtime": "4.3.0",
  1865. "System.Runtime.Extensions": "4.3.0",
  1866. "System.Threading": "4.3.0"
  1867. },
  1868. "compile": {
  1869. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1870. },
  1871. "runtime": {
  1872. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1873. }
  1874. },
  1875. "System.Globalization/4.3.0": {
  1876. "type": "package",
  1877. "dependencies": {
  1878. "Microsoft.NETCore.Platforms": "1.1.0",
  1879. "Microsoft.NETCore.Targets": "1.1.0",
  1880. "System.Runtime": "4.3.0"
  1881. },
  1882. "compile": {
  1883. "ref/netstandard1.3/System.Globalization.dll": {}
  1884. },
  1885. "runtime": {
  1886. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  1887. }
  1888. },
  1889. "System.Globalization.Calendars/4.3.0": {
  1890. "type": "package",
  1891. "dependencies": {
  1892. "Microsoft.NETCore.Platforms": "1.1.0",
  1893. "Microsoft.NETCore.Targets": "1.1.0",
  1894. "System.Globalization": "4.3.0",
  1895. "System.Runtime": "4.3.0"
  1896. },
  1897. "compile": {
  1898. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1899. }
  1900. },
  1901. "System.Globalization.Extensions/4.3.0": {
  1902. "type": "package",
  1903. "dependencies": {
  1904. "Microsoft.NETCore.Platforms": "1.1.0",
  1905. "System.Globalization": "4.3.0",
  1906. "System.Resources.ResourceManager": "4.3.0",
  1907. "System.Runtime": "4.3.0",
  1908. "System.Runtime.Extensions": "4.3.0",
  1909. "System.Runtime.InteropServices": "4.3.0"
  1910. },
  1911. "compile": {
  1912. "ref/netstandard1.3/System.Globalization.Extensions.dll": {}
  1913. },
  1914. "runtimeTargets": {
  1915. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1916. "assetType": "runtime",
  1917. "rid": "unix"
  1918. },
  1919. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1920. "assetType": "runtime",
  1921. "rid": "win"
  1922. }
  1923. }
  1924. },
  1925. "System.Interactive.Async/3.0.0": {
  1926. "type": "package",
  1927. "dependencies": {
  1928. "System.Collections": "4.0.11",
  1929. "System.Diagnostics.Debug": "4.0.11",
  1930. "System.Linq": "4.1.0",
  1931. "System.Resources.ResourceManager": "4.0.1",
  1932. "System.Runtime": "4.1.0",
  1933. "System.Runtime.Extensions": "4.1.0",
  1934. "System.Threading": "4.0.11",
  1935. "System.Threading.Tasks": "4.0.11"
  1936. },
  1937. "compile": {
  1938. "lib/netstandard1.0/System.Interactive.Async.dll": {}
  1939. },
  1940. "runtime": {
  1941. "lib/netstandard1.0/System.Interactive.Async.dll": {}
  1942. }
  1943. },
  1944. "System.IO/4.3.0": {
  1945. "type": "package",
  1946. "dependencies": {
  1947. "Microsoft.NETCore.Platforms": "1.1.0",
  1948. "Microsoft.NETCore.Targets": "1.1.0",
  1949. "System.Runtime": "4.3.0",
  1950. "System.Text.Encoding": "4.3.0",
  1951. "System.Threading.Tasks": "4.3.0"
  1952. },
  1953. "compile": {
  1954. "ref/netstandard1.5/System.IO.dll": {}
  1955. },
  1956. "runtime": {
  1957. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  1958. }
  1959. },
  1960. "System.IO.Compression/4.3.0": {
  1961. "type": "package",
  1962. "dependencies": {
  1963. "Microsoft.NETCore.Platforms": "1.1.0",
  1964. "System.Buffers": "4.3.0",
  1965. "System.Collections": "4.3.0",
  1966. "System.Diagnostics.Debug": "4.3.0",
  1967. "System.IO": "4.3.0",
  1968. "System.Resources.ResourceManager": "4.3.0",
  1969. "System.Runtime": "4.3.0",
  1970. "System.Runtime.Extensions": "4.3.0",
  1971. "System.Runtime.Handles": "4.3.0",
  1972. "System.Runtime.InteropServices": "4.3.0",
  1973. "System.Text.Encoding": "4.3.0",
  1974. "System.Threading": "4.3.0",
  1975. "System.Threading.Tasks": "4.3.0",
  1976. "runtime.native.System": "4.3.0",
  1977. "runtime.native.System.IO.Compression": "4.3.0"
  1978. },
  1979. "compile": {
  1980. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1981. },
  1982. "runtime": {
  1983. "lib/portable-net45+win8+wpa81/_._": {}
  1984. },
  1985. "runtimeTargets": {
  1986. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1987. "assetType": "runtime",
  1988. "rid": "unix"
  1989. },
  1990. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1991. "assetType": "runtime",
  1992. "rid": "win"
  1993. }
  1994. }
  1995. },
  1996. "System.IO.Compression.ZipFile/4.3.0": {
  1997. "type": "package",
  1998. "dependencies": {
  1999. "System.Buffers": "4.3.0",
  2000. "System.IO": "4.3.0",
  2001. "System.IO.Compression": "4.3.0",
  2002. "System.IO.FileSystem": "4.3.0",
  2003. "System.IO.FileSystem.Primitives": "4.3.0",
  2004. "System.Resources.ResourceManager": "4.3.0",
  2005. "System.Runtime": "4.3.0",
  2006. "System.Runtime.Extensions": "4.3.0",
  2007. "System.Text.Encoding": "4.3.0"
  2008. },
  2009. "compile": {
  2010. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2011. },
  2012. "runtime": {
  2013. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2014. }
  2015. },
  2016. "System.IO.FileSystem/4.3.0": {
  2017. "type": "package",
  2018. "dependencies": {
  2019. "Microsoft.NETCore.Platforms": "1.1.0",
  2020. "Microsoft.NETCore.Targets": "1.1.0",
  2021. "System.IO": "4.3.0",
  2022. "System.IO.FileSystem.Primitives": "4.3.0",
  2023. "System.Runtime": "4.3.0",
  2024. "System.Runtime.Handles": "4.3.0",
  2025. "System.Text.Encoding": "4.3.0",
  2026. "System.Threading.Tasks": "4.3.0"
  2027. },
  2028. "compile": {
  2029. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  2030. }
  2031. },
  2032. "System.IO.FileSystem.Primitives/4.3.0": {
  2033. "type": "package",
  2034. "dependencies": {
  2035. "System.Runtime": "4.3.0"
  2036. },
  2037. "compile": {
  2038. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2039. },
  2040. "runtime": {
  2041. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2042. }
  2043. },
  2044. "System.IO.FileSystem.Watcher/4.0.0": {
  2045. "type": "package",
  2046. "dependencies": {
  2047. "Microsoft.NETCore.Platforms": "1.0.1",
  2048. "Microsoft.Win32.Primitives": "4.0.1",
  2049. "System.Collections": "4.0.11",
  2050. "System.IO.FileSystem": "4.0.1",
  2051. "System.IO.FileSystem.Primitives": "4.0.1",
  2052. "System.Resources.ResourceManager": "4.0.1",
  2053. "System.Runtime": "4.1.0",
  2054. "System.Runtime.Extensions": "4.1.0",
  2055. "System.Runtime.Handles": "4.0.1",
  2056. "System.Runtime.InteropServices": "4.1.0",
  2057. "System.Text.Encoding": "4.0.11",
  2058. "System.Threading": "4.0.11",
  2059. "System.Threading.Overlapped": "4.0.1",
  2060. "System.Threading.Tasks": "4.0.11",
  2061. "System.Threading.Thread": "4.0.0",
  2062. "runtime.native.System": "4.0.0"
  2063. },
  2064. "compile": {
  2065. "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {}
  2066. },
  2067. "runtimeTargets": {
  2068. "runtimes/osx/lib/netstandard1.3/_._": {
  2069. "assetType": "runtime",
  2070. "rid": "osx"
  2071. }
  2072. }
  2073. },
  2074. "System.IO.MemoryMappedFiles/4.0.0": {
  2075. "type": "package",
  2076. "dependencies": {
  2077. "Microsoft.NETCore.Platforms": "1.0.1",
  2078. "System.IO": "4.1.0",
  2079. "System.IO.FileSystem": "4.0.1",
  2080. "System.IO.FileSystem.Primitives": "4.0.1",
  2081. "System.IO.UnmanagedMemoryStream": "4.0.1",
  2082. "System.Resources.ResourceManager": "4.0.1",
  2083. "System.Runtime": "4.1.0",
  2084. "System.Runtime.Extensions": "4.1.0",
  2085. "System.Runtime.Handles": "4.0.1",
  2086. "System.Runtime.InteropServices": "4.1.0",
  2087. "System.Threading": "4.0.11",
  2088. "System.Threading.Tasks": "4.0.11",
  2089. "runtime.native.System": "4.0.0"
  2090. },
  2091. "compile": {
  2092. "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {}
  2093. },
  2094. "runtimeTargets": {
  2095. "runtimes/win/lib/netstandard1.3/_._": {
  2096. "assetType": "runtime",
  2097. "rid": "win"
  2098. }
  2099. }
  2100. },
  2101. "System.IO.UnmanagedMemoryStream/4.0.1": {
  2102. "type": "package",
  2103. "dependencies": {
  2104. "System.IO": "4.1.0",
  2105. "System.IO.FileSystem.Primitives": "4.0.1",
  2106. "System.Resources.ResourceManager": "4.0.1",
  2107. "System.Runtime": "4.1.0",
  2108. "System.Runtime.InteropServices": "4.1.0",
  2109. "System.Threading": "4.0.11",
  2110. "System.Threading.Tasks": "4.0.11"
  2111. },
  2112. "compile": {
  2113. "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
  2114. },
  2115. "runtime": {
  2116. "lib/netstandard1.3/_._": {}
  2117. }
  2118. },
  2119. "System.Linq/4.3.0": {
  2120. "type": "package",
  2121. "dependencies": {
  2122. "System.Collections": "4.3.0",
  2123. "System.Diagnostics.Debug": "4.3.0",
  2124. "System.Resources.ResourceManager": "4.3.0",
  2125. "System.Runtime": "4.3.0",
  2126. "System.Runtime.Extensions": "4.3.0"
  2127. },
  2128. "compile": {
  2129. "ref/netstandard1.6/System.Linq.dll": {}
  2130. },
  2131. "runtime": {
  2132. "lib/netstandard1.6/System.Linq.dll": {}
  2133. }
  2134. },
  2135. "System.Linq.Expressions/4.3.0": {
  2136. "type": "package",
  2137. "dependencies": {
  2138. "System.Collections": "4.3.0",
  2139. "System.Diagnostics.Debug": "4.3.0",
  2140. "System.Globalization": "4.3.0",
  2141. "System.IO": "4.3.0",
  2142. "System.Linq": "4.3.0",
  2143. "System.ObjectModel": "4.3.0",
  2144. "System.Reflection": "4.3.0",
  2145. "System.Reflection.Emit": "4.3.0",
  2146. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2147. "System.Reflection.Emit.Lightweight": "4.3.0",
  2148. "System.Reflection.Extensions": "4.3.0",
  2149. "System.Reflection.Primitives": "4.3.0",
  2150. "System.Reflection.TypeExtensions": "4.3.0",
  2151. "System.Resources.ResourceManager": "4.3.0",
  2152. "System.Runtime": "4.3.0",
  2153. "System.Runtime.Extensions": "4.3.0",
  2154. "System.Threading": "4.3.0"
  2155. },
  2156. "compile": {
  2157. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  2158. },
  2159. "runtime": {
  2160. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2161. }
  2162. },
  2163. "System.Linq.Parallel/4.0.1": {
  2164. "type": "package",
  2165. "dependencies": {
  2166. "System.Collections": "4.0.11",
  2167. "System.Collections.Concurrent": "4.0.12",
  2168. "System.Diagnostics.Debug": "4.0.11",
  2169. "System.Diagnostics.Tracing": "4.1.0",
  2170. "System.Linq": "4.1.0",
  2171. "System.Resources.ResourceManager": "4.0.1",
  2172. "System.Runtime": "4.1.0",
  2173. "System.Runtime.Extensions": "4.1.0",
  2174. "System.Threading": "4.0.11",
  2175. "System.Threading.Tasks": "4.0.11"
  2176. },
  2177. "compile": {
  2178. "ref/netstandard1.1/System.Linq.Parallel.dll": {}
  2179. },
  2180. "runtime": {
  2181. "lib/netstandard1.3/_._": {}
  2182. }
  2183. },
  2184. "System.Linq.Queryable/4.3.0": {
  2185. "type": "package",
  2186. "dependencies": {
  2187. "System.Collections": "4.3.0",
  2188. "System.Diagnostics.Debug": "4.3.0",
  2189. "System.Linq": "4.3.0",
  2190. "System.Linq.Expressions": "4.3.0",
  2191. "System.Reflection": "4.3.0",
  2192. "System.Reflection.Extensions": "4.3.0",
  2193. "System.Resources.ResourceManager": "4.3.0",
  2194. "System.Runtime": "4.3.0"
  2195. },
  2196. "compile": {
  2197. "ref/netstandard1.0/System.Linq.Queryable.dll": {}
  2198. },
  2199. "runtime": {
  2200. "lib/netstandard1.3/System.Linq.Queryable.dll": {}
  2201. }
  2202. },
  2203. "System.Net.Http/4.3.0": {
  2204. "type": "package",
  2205. "dependencies": {
  2206. "Microsoft.NETCore.Platforms": "1.1.0",
  2207. "System.Collections": "4.3.0",
  2208. "System.Diagnostics.Debug": "4.3.0",
  2209. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2210. "System.Diagnostics.Tracing": "4.3.0",
  2211. "System.Globalization": "4.3.0",
  2212. "System.Globalization.Extensions": "4.3.0",
  2213. "System.IO": "4.3.0",
  2214. "System.IO.FileSystem": "4.3.0",
  2215. "System.Net.Primitives": "4.3.0",
  2216. "System.Resources.ResourceManager": "4.3.0",
  2217. "System.Runtime": "4.3.0",
  2218. "System.Runtime.Extensions": "4.3.0",
  2219. "System.Runtime.Handles": "4.3.0",
  2220. "System.Runtime.InteropServices": "4.3.0",
  2221. "System.Security.Cryptography.Algorithms": "4.3.0",
  2222. "System.Security.Cryptography.Encoding": "4.3.0",
  2223. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2224. "System.Security.Cryptography.Primitives": "4.3.0",
  2225. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2226. "System.Text.Encoding": "4.3.0",
  2227. "System.Threading": "4.3.0",
  2228. "System.Threading.Tasks": "4.3.0",
  2229. "runtime.native.System": "4.3.0",
  2230. "runtime.native.System.Net.Http": "4.3.0",
  2231. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2232. },
  2233. "compile": {
  2234. "ref/netstandard1.3/System.Net.Http.dll": {}
  2235. },
  2236. "runtime": {
  2237. "lib/portable-net45+win8+wpa81/_._": {}
  2238. },
  2239. "runtimeTargets": {
  2240. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2241. "assetType": "runtime",
  2242. "rid": "unix"
  2243. },
  2244. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2245. "assetType": "runtime",
  2246. "rid": "win"
  2247. }
  2248. }
  2249. },
  2250. "System.Net.NameResolution/4.0.0": {
  2251. "type": "package",
  2252. "dependencies": {
  2253. "Microsoft.NETCore.Platforms": "1.0.1",
  2254. "System.Collections": "4.0.11",
  2255. "System.Diagnostics.Tracing": "4.1.0",
  2256. "System.Globalization": "4.0.11",
  2257. "System.Net.Primitives": "4.0.11",
  2258. "System.Resources.ResourceManager": "4.0.1",
  2259. "System.Runtime": "4.1.0",
  2260. "System.Runtime.Extensions": "4.1.0",
  2261. "System.Runtime.Handles": "4.0.1",
  2262. "System.Runtime.InteropServices": "4.1.0",
  2263. "System.Security.Principal.Windows": "4.0.0",
  2264. "System.Threading": "4.0.11",
  2265. "System.Threading.Tasks": "4.0.11",
  2266. "runtime.native.System": "4.0.0"
  2267. },
  2268. "compile": {
  2269. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  2270. },
  2271. "runtimeTargets": {
  2272. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2273. "assetType": "runtime",
  2274. "rid": "unix"
  2275. },
  2276. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2277. "assetType": "runtime",
  2278. "rid": "win"
  2279. }
  2280. }
  2281. },
  2282. "System.Net.NetworkInformation/4.1.0": {
  2283. "type": "package",
  2284. "dependencies": {
  2285. "Microsoft.NETCore.Platforms": "1.0.1",
  2286. "Microsoft.Win32.Primitives": "4.0.1",
  2287. "System.Collections": "4.0.11",
  2288. "System.Diagnostics.Tracing": "4.1.0",
  2289. "System.Globalization": "4.0.11",
  2290. "System.IO": "4.1.0",
  2291. "System.IO.FileSystem": "4.0.1",
  2292. "System.IO.FileSystem.Primitives": "4.0.1",
  2293. "System.Linq": "4.1.0",
  2294. "System.Net.Primitives": "4.0.11",
  2295. "System.Net.Sockets": "4.1.0",
  2296. "System.Resources.ResourceManager": "4.0.1",
  2297. "System.Runtime": "4.1.0",
  2298. "System.Runtime.Extensions": "4.1.0",
  2299. "System.Runtime.Handles": "4.0.1",
  2300. "System.Runtime.InteropServices": "4.1.0",
  2301. "System.Security.Principal.Windows": "4.0.0",
  2302. "System.Threading": "4.0.11",
  2303. "System.Threading.Overlapped": "4.0.1",
  2304. "System.Threading.Tasks": "4.0.11",
  2305. "System.Threading.Thread": "4.0.0",
  2306. "System.Threading.ThreadPool": "4.0.10",
  2307. "runtime.native.System": "4.0.0"
  2308. },
  2309. "compile": {
  2310. "ref/netstandard1.3/System.Net.NetworkInformation.dll": {}
  2311. },
  2312. "runtime": {
  2313. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2314. },
  2315. "runtimeTargets": {
  2316. "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
  2317. "assetType": "runtime",
  2318. "rid": "linux"
  2319. },
  2320. "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
  2321. "assetType": "runtime",
  2322. "rid": "osx"
  2323. },
  2324. "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
  2325. "assetType": "runtime",
  2326. "rid": "win"
  2327. }
  2328. }
  2329. },
  2330. "System.Net.Primitives/4.3.0": {
  2331. "type": "package",
  2332. "dependencies": {
  2333. "Microsoft.NETCore.Platforms": "1.1.0",
  2334. "Microsoft.NETCore.Targets": "1.1.0",
  2335. "System.Runtime": "4.3.0",
  2336. "System.Runtime.Handles": "4.3.0"
  2337. },
  2338. "compile": {
  2339. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  2340. },
  2341. "runtime": {
  2342. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2343. }
  2344. },
  2345. "System.Net.Requests/4.0.11": {
  2346. "type": "package",
  2347. "dependencies": {
  2348. "Microsoft.NETCore.Platforms": "1.0.1",
  2349. "System.Collections": "4.0.11",
  2350. "System.Diagnostics.Debug": "4.0.11",
  2351. "System.Diagnostics.Tracing": "4.1.0",
  2352. "System.Globalization": "4.0.11",
  2353. "System.IO": "4.1.0",
  2354. "System.Net.Http": "4.1.0",
  2355. "System.Net.Primitives": "4.0.11",
  2356. "System.Net.WebHeaderCollection": "4.0.1",
  2357. "System.Resources.ResourceManager": "4.0.1",
  2358. "System.Runtime": "4.1.0",
  2359. "System.Threading": "4.0.11",
  2360. "System.Threading.Tasks": "4.0.11"
  2361. },
  2362. "compile": {
  2363. "ref/netstandard1.3/System.Net.Requests.dll": {}
  2364. },
  2365. "runtime": {
  2366. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2367. },
  2368. "runtimeTargets": {
  2369. "runtimes/win/lib/netstandard1.3/_._": {
  2370. "assetType": "runtime",
  2371. "rid": "win"
  2372. }
  2373. }
  2374. },
  2375. "System.Net.Security/4.0.0": {
  2376. "type": "package",
  2377. "dependencies": {
  2378. "Microsoft.NETCore.Platforms": "1.0.1",
  2379. "Microsoft.Win32.Primitives": "4.0.1",
  2380. "System.Collections": "4.0.11",
  2381. "System.Collections.Concurrent": "4.0.12",
  2382. "System.Diagnostics.Tracing": "4.1.0",
  2383. "System.Globalization": "4.0.11",
  2384. "System.Globalization.Extensions": "4.0.1",
  2385. "System.IO": "4.1.0",
  2386. "System.Net.Primitives": "4.0.11",
  2387. "System.Resources.ResourceManager": "4.0.1",
  2388. "System.Runtime": "4.1.0",
  2389. "System.Runtime.Extensions": "4.1.0",
  2390. "System.Runtime.Handles": "4.0.1",
  2391. "System.Runtime.InteropServices": "4.1.0",
  2392. "System.Security.Claims": "4.0.1",
  2393. "System.Security.Cryptography.Algorithms": "4.2.0",
  2394. "System.Security.Cryptography.Encoding": "4.0.0",
  2395. "System.Security.Cryptography.OpenSsl": "4.0.0",
  2396. "System.Security.Cryptography.Primitives": "4.0.0",
  2397. "System.Security.Cryptography.X509Certificates": "4.1.0",
  2398. "System.Security.Principal": "4.0.1",
  2399. "System.Text.Encoding": "4.0.11",
  2400. "System.Threading": "4.0.11",
  2401. "System.Threading.Tasks": "4.0.11",
  2402. "System.Threading.ThreadPool": "4.0.10",
  2403. "runtime.native.System": "4.0.0",
  2404. "runtime.native.System.Net.Security": "4.0.1",
  2405. "runtime.native.System.Security.Cryptography": "4.0.0"
  2406. },
  2407. "compile": {
  2408. "ref/netstandard1.3/System.Net.Security.dll": {}
  2409. },
  2410. "runtimeTargets": {
  2411. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2412. "assetType": "runtime",
  2413. "rid": "unix"
  2414. },
  2415. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2416. "assetType": "runtime",
  2417. "rid": "win"
  2418. }
  2419. }
  2420. },
  2421. "System.Net.Sockets/4.3.0": {
  2422. "type": "package",
  2423. "dependencies": {
  2424. "Microsoft.NETCore.Platforms": "1.1.0",
  2425. "Microsoft.NETCore.Targets": "1.1.0",
  2426. "System.IO": "4.3.0",
  2427. "System.Net.Primitives": "4.3.0",
  2428. "System.Runtime": "4.3.0",
  2429. "System.Threading.Tasks": "4.3.0"
  2430. },
  2431. "compile": {
  2432. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  2433. }
  2434. },
  2435. "System.Net.WebHeaderCollection/4.0.1": {
  2436. "type": "package",
  2437. "dependencies": {
  2438. "System.Collections": "4.0.11",
  2439. "System.Resources.ResourceManager": "4.0.1",
  2440. "System.Runtime": "4.1.0",
  2441. "System.Runtime.Extensions": "4.1.0"
  2442. },
  2443. "compile": {
  2444. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2445. },
  2446. "runtime": {
  2447. "lib/netstandard1.3/_._": {}
  2448. }
  2449. },
  2450. "System.Net.WebSockets/4.3.0": {
  2451. "type": "package",
  2452. "dependencies": {
  2453. "Microsoft.Win32.Primitives": "4.3.0",
  2454. "System.Resources.ResourceManager": "4.3.0",
  2455. "System.Runtime": "4.3.0",
  2456. "System.Threading.Tasks": "4.3.0"
  2457. },
  2458. "compile": {
  2459. "ref/netstandard1.3/System.Net.WebSockets.dll": {}
  2460. },
  2461. "runtime": {
  2462. "lib/netstandard1.3/System.Net.WebSockets.dll": {}
  2463. }
  2464. },
  2465. "System.Numerics.Vectors/4.1.1": {
  2466. "type": "package",
  2467. "dependencies": {
  2468. "System.Globalization": "4.0.11",
  2469. "System.Resources.ResourceManager": "4.0.1",
  2470. "System.Runtime": "4.1.0",
  2471. "System.Runtime.Extensions": "4.1.0"
  2472. },
  2473. "compile": {
  2474. "ref/netstandard1.0/System.Numerics.Vectors.dll": {}
  2475. },
  2476. "runtime": {
  2477. "lib/netstandard1.0/_._": {}
  2478. }
  2479. },
  2480. "System.ObjectModel/4.3.0": {
  2481. "type": "package",
  2482. "dependencies": {
  2483. "System.Collections": "4.3.0",
  2484. "System.Diagnostics.Debug": "4.3.0",
  2485. "System.Resources.ResourceManager": "4.3.0",
  2486. "System.Runtime": "4.3.0",
  2487. "System.Threading": "4.3.0"
  2488. },
  2489. "compile": {
  2490. "ref/netstandard1.3/System.ObjectModel.dll": {}
  2491. },
  2492. "runtime": {
  2493. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2494. }
  2495. },
  2496. "System.Reflection/4.3.0": {
  2497. "type": "package",
  2498. "dependencies": {
  2499. "Microsoft.NETCore.Platforms": "1.1.0",
  2500. "Microsoft.NETCore.Targets": "1.1.0",
  2501. "System.IO": "4.3.0",
  2502. "System.Reflection.Primitives": "4.3.0",
  2503. "System.Runtime": "4.3.0"
  2504. },
  2505. "compile": {
  2506. "ref/netstandard1.5/System.Reflection.dll": {}
  2507. },
  2508. "runtime": {
  2509. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2510. }
  2511. },
  2512. "System.Reflection.DispatchProxy/4.0.1": {
  2513. "type": "package",
  2514. "dependencies": {
  2515. "System.Collections": "4.0.11",
  2516. "System.Linq": "4.1.0",
  2517. "System.Reflection": "4.1.0",
  2518. "System.Reflection.Emit": "4.0.1",
  2519. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2520. "System.Reflection.Extensions": "4.0.1",
  2521. "System.Reflection.Primitives": "4.0.1",
  2522. "System.Resources.ResourceManager": "4.0.1",
  2523. "System.Runtime": "4.1.0",
  2524. "System.Threading": "4.0.11"
  2525. },
  2526. "compile": {
  2527. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
  2528. },
  2529. "runtime": {
  2530. "lib/netstandard1.3/_._": {}
  2531. }
  2532. },
  2533. "System.Reflection.Emit/4.3.0": {
  2534. "type": "package",
  2535. "dependencies": {
  2536. "System.IO": "4.3.0",
  2537. "System.Reflection": "4.3.0",
  2538. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2539. "System.Reflection.Primitives": "4.3.0",
  2540. "System.Runtime": "4.3.0"
  2541. },
  2542. "compile": {
  2543. "ref/netstandard1.1/System.Reflection.Emit.dll": {}
  2544. },
  2545. "runtime": {
  2546. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2547. }
  2548. },
  2549. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2550. "type": "package",
  2551. "dependencies": {
  2552. "System.Reflection": "4.3.0",
  2553. "System.Reflection.Primitives": "4.3.0",
  2554. "System.Runtime": "4.3.0"
  2555. },
  2556. "compile": {
  2557. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
  2558. },
  2559. "runtime": {
  2560. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2561. }
  2562. },
  2563. "System.Reflection.Emit.Lightweight/4.3.0": {
  2564. "type": "package",
  2565. "dependencies": {
  2566. "System.Reflection": "4.3.0",
  2567. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2568. "System.Reflection.Primitives": "4.3.0",
  2569. "System.Runtime": "4.3.0"
  2570. },
  2571. "compile": {
  2572. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {}
  2573. },
  2574. "runtime": {
  2575. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2576. }
  2577. },
  2578. "System.Reflection.Extensions/4.3.0": {
  2579. "type": "package",
  2580. "dependencies": {
  2581. "Microsoft.NETCore.Platforms": "1.1.0",
  2582. "Microsoft.NETCore.Targets": "1.1.0",
  2583. "System.Reflection": "4.3.0",
  2584. "System.Runtime": "4.3.0"
  2585. },
  2586. "compile": {
  2587. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  2588. },
  2589. "runtime": {
  2590. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2591. }
  2592. },
  2593. "System.Reflection.Metadata/1.3.0": {
  2594. "type": "package",
  2595. "dependencies": {
  2596. "System.Collections": "4.0.11",
  2597. "System.Collections.Immutable": "1.2.0",
  2598. "System.Diagnostics.Debug": "4.0.11",
  2599. "System.IO": "4.1.0",
  2600. "System.Linq": "4.1.0",
  2601. "System.Reflection": "4.1.0",
  2602. "System.Reflection.Extensions": "4.0.1",
  2603. "System.Reflection.Primitives": "4.0.1",
  2604. "System.Resources.ResourceManager": "4.0.1",
  2605. "System.Runtime": "4.1.0",
  2606. "System.Runtime.Extensions": "4.1.0",
  2607. "System.Runtime.InteropServices": "4.1.0",
  2608. "System.Text.Encoding": "4.0.11",
  2609. "System.Text.Encoding.Extensions": "4.0.11",
  2610. "System.Threading": "4.0.11"
  2611. },
  2612. "compile": {
  2613. "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
  2614. },
  2615. "runtime": {
  2616. "lib/netstandard1.1/_._": {}
  2617. }
  2618. },
  2619. "System.Reflection.Primitives/4.3.0": {
  2620. "type": "package",
  2621. "dependencies": {
  2622. "Microsoft.NETCore.Platforms": "1.1.0",
  2623. "Microsoft.NETCore.Targets": "1.1.0",
  2624. "System.Runtime": "4.3.0"
  2625. },
  2626. "compile": {
  2627. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  2628. },
  2629. "runtime": {
  2630. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2631. }
  2632. },
  2633. "System.Reflection.TypeExtensions/4.3.0": {
  2634. "type": "package",
  2635. "dependencies": {
  2636. "System.Reflection": "4.3.0",
  2637. "System.Runtime": "4.3.0"
  2638. },
  2639. "compile": {
  2640. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2641. },
  2642. "runtime": {
  2643. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2644. }
  2645. },
  2646. "System.Resources.Reader/4.0.0": {
  2647. "type": "package",
  2648. "dependencies": {
  2649. "System.IO": "4.1.0",
  2650. "System.Resources.ResourceManager": "4.0.1",
  2651. "System.Runtime": "4.1.0",
  2652. "System.Text.Encoding": "4.0.11",
  2653. "System.Threading": "4.0.11"
  2654. },
  2655. "compile": {
  2656. "lib/netstandard1.0/System.Resources.Reader.dll": {}
  2657. },
  2658. "runtime": {
  2659. "lib/netstandard1.0/System.Resources.Reader.dll": {}
  2660. }
  2661. },
  2662. "System.Resources.ResourceManager/4.3.0": {
  2663. "type": "package",
  2664. "dependencies": {
  2665. "Microsoft.NETCore.Platforms": "1.1.0",
  2666. "Microsoft.NETCore.Targets": "1.1.0",
  2667. "System.Globalization": "4.3.0",
  2668. "System.Reflection": "4.3.0",
  2669. "System.Runtime": "4.3.0"
  2670. },
  2671. "compile": {
  2672. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  2673. },
  2674. "runtime": {
  2675. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2676. }
  2677. },
  2678. "System.Runtime/4.3.0": {
  2679. "type": "package",
  2680. "dependencies": {
  2681. "Microsoft.NETCore.Platforms": "1.1.0",
  2682. "Microsoft.NETCore.Targets": "1.1.0"
  2683. },
  2684. "compile": {
  2685. "ref/netstandard1.5/System.Runtime.dll": {}
  2686. },
  2687. "runtime": {
  2688. "lib/portable-net45+win8+wp80+wpa81/_._": {}
  2689. }
  2690. },
  2691. "System.Runtime.CompilerServices.Unsafe/4.3.0": {
  2692. "type": "package",
  2693. "dependencies": {
  2694. "System.Runtime": "4.3.0"
  2695. },
  2696. "compile": {
  2697. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  2698. },
  2699. "runtime": {
  2700. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  2701. }
  2702. },
  2703. "System.Runtime.Extensions/4.3.0": {
  2704. "type": "package",
  2705. "dependencies": {
  2706. "Microsoft.NETCore.Platforms": "1.1.0",
  2707. "Microsoft.NETCore.Targets": "1.1.0",
  2708. "System.Runtime": "4.3.0"
  2709. },
  2710. "compile": {
  2711. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  2712. },
  2713. "runtime": {
  2714. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2715. }
  2716. },
  2717. "System.Runtime.Handles/4.3.0": {
  2718. "type": "package",
  2719. "dependencies": {
  2720. "Microsoft.NETCore.Platforms": "1.1.0",
  2721. "Microsoft.NETCore.Targets": "1.1.0",
  2722. "System.Runtime": "4.3.0"
  2723. },
  2724. "compile": {
  2725. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  2726. }
  2727. },
  2728. "System.Runtime.InteropServices/4.3.0": {
  2729. "type": "package",
  2730. "dependencies": {
  2731. "Microsoft.NETCore.Platforms": "1.1.0",
  2732. "Microsoft.NETCore.Targets": "1.1.0",
  2733. "System.Reflection": "4.3.0",
  2734. "System.Reflection.Primitives": "4.3.0",
  2735. "System.Runtime": "4.3.0",
  2736. "System.Runtime.Handles": "4.3.0"
  2737. },
  2738. "compile": {
  2739. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
  2740. },
  2741. "runtime": {
  2742. "lib/portable-net45+win8+wpa81/_._": {}
  2743. }
  2744. },
  2745. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2746. "type": "package",
  2747. "dependencies": {
  2748. "System.Reflection": "4.3.0",
  2749. "System.Reflection.Extensions": "4.3.0",
  2750. "System.Resources.ResourceManager": "4.3.0",
  2751. "System.Runtime": "4.3.0",
  2752. "System.Runtime.InteropServices": "4.3.0",
  2753. "System.Threading": "4.3.0",
  2754. "runtime.native.System": "4.3.0"
  2755. },
  2756. "compile": {
  2757. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2758. },
  2759. "runtime": {
  2760. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2761. },
  2762. "runtimeTargets": {
  2763. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2764. "assetType": "runtime",
  2765. "rid": "unix"
  2766. },
  2767. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2768. "assetType": "runtime",
  2769. "rid": "win"
  2770. }
  2771. }
  2772. },
  2773. "System.Runtime.Loader/4.0.0": {
  2774. "type": "package",
  2775. "dependencies": {
  2776. "System.IO": "4.1.0",
  2777. "System.Reflection": "4.1.0",
  2778. "System.Runtime": "4.1.0"
  2779. },
  2780. "compile": {
  2781. "ref/netstandard1.5/_._": {}
  2782. },
  2783. "runtime": {
  2784. "lib/netstandard1.5/_._": {}
  2785. }
  2786. },
  2787. "System.Runtime.Numerics/4.3.0": {
  2788. "type": "package",
  2789. "dependencies": {
  2790. "System.Globalization": "4.3.0",
  2791. "System.Resources.ResourceManager": "4.3.0",
  2792. "System.Runtime": "4.3.0",
  2793. "System.Runtime.Extensions": "4.3.0"
  2794. },
  2795. "compile": {
  2796. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  2797. },
  2798. "runtime": {
  2799. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2800. }
  2801. },
  2802. "System.Runtime.Serialization.Primitives/4.1.1": {
  2803. "type": "package",
  2804. "dependencies": {
  2805. "System.Resources.ResourceManager": "4.0.1",
  2806. "System.Runtime": "4.1.0"
  2807. },
  2808. "compile": {
  2809. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2810. },
  2811. "runtime": {
  2812. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2813. }
  2814. },
  2815. "System.Security.Claims/4.3.0": {
  2816. "type": "package",
  2817. "dependencies": {
  2818. "System.Collections": "4.3.0",
  2819. "System.Globalization": "4.3.0",
  2820. "System.IO": "4.3.0",
  2821. "System.Resources.ResourceManager": "4.3.0",
  2822. "System.Runtime": "4.3.0",
  2823. "System.Runtime.Extensions": "4.3.0",
  2824. "System.Security.Principal": "4.3.0"
  2825. },
  2826. "compile": {
  2827. "ref/netstandard1.3/System.Security.Claims.dll": {}
  2828. },
  2829. "runtime": {
  2830. "lib/netstandard1.3/System.Security.Claims.dll": {}
  2831. }
  2832. },
  2833. "System.Security.Cryptography.Algorithms/4.3.0": {
  2834. "type": "package",
  2835. "dependencies": {
  2836. "Microsoft.NETCore.Platforms": "1.1.0",
  2837. "System.Collections": "4.3.0",
  2838. "System.IO": "4.3.0",
  2839. "System.Resources.ResourceManager": "4.3.0",
  2840. "System.Runtime": "4.3.0",
  2841. "System.Runtime.Extensions": "4.3.0",
  2842. "System.Runtime.Handles": "4.3.0",
  2843. "System.Runtime.InteropServices": "4.3.0",
  2844. "System.Runtime.Numerics": "4.3.0",
  2845. "System.Security.Cryptography.Encoding": "4.3.0",
  2846. "System.Security.Cryptography.Primitives": "4.3.0",
  2847. "System.Text.Encoding": "4.3.0",
  2848. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2849. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2850. },
  2851. "compile": {
  2852. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2853. },
  2854. "runtimeTargets": {
  2855. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2856. "assetType": "runtime",
  2857. "rid": "osx"
  2858. },
  2859. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2860. "assetType": "runtime",
  2861. "rid": "unix"
  2862. },
  2863. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2864. "assetType": "runtime",
  2865. "rid": "win"
  2866. }
  2867. }
  2868. },
  2869. "System.Security.Cryptography.Cng/4.3.0": {
  2870. "type": "package",
  2871. "dependencies": {
  2872. "Microsoft.NETCore.Platforms": "1.1.0",
  2873. "System.IO": "4.3.0",
  2874. "System.Resources.ResourceManager": "4.3.0",
  2875. "System.Runtime": "4.3.0",
  2876. "System.Runtime.Extensions": "4.3.0",
  2877. "System.Runtime.Handles": "4.3.0",
  2878. "System.Runtime.InteropServices": "4.3.0",
  2879. "System.Security.Cryptography.Algorithms": "4.3.0",
  2880. "System.Security.Cryptography.Encoding": "4.3.0",
  2881. "System.Security.Cryptography.Primitives": "4.3.0",
  2882. "System.Text.Encoding": "4.3.0"
  2883. },
  2884. "compile": {
  2885. "ref/netstandard1.6/_._": {}
  2886. },
  2887. "runtimeTargets": {
  2888. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2889. "assetType": "runtime",
  2890. "rid": "unix"
  2891. },
  2892. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  2893. "assetType": "runtime",
  2894. "rid": "win"
  2895. }
  2896. }
  2897. },
  2898. "System.Security.Cryptography.Csp/4.3.0": {
  2899. "type": "package",
  2900. "dependencies": {
  2901. "Microsoft.NETCore.Platforms": "1.1.0",
  2902. "System.IO": "4.3.0",
  2903. "System.Reflection": "4.3.0",
  2904. "System.Resources.ResourceManager": "4.3.0",
  2905. "System.Runtime": "4.3.0",
  2906. "System.Runtime.Extensions": "4.3.0",
  2907. "System.Runtime.Handles": "4.3.0",
  2908. "System.Runtime.InteropServices": "4.3.0",
  2909. "System.Security.Cryptography.Algorithms": "4.3.0",
  2910. "System.Security.Cryptography.Encoding": "4.3.0",
  2911. "System.Security.Cryptography.Primitives": "4.3.0",
  2912. "System.Text.Encoding": "4.3.0",
  2913. "System.Threading": "4.3.0"
  2914. },
  2915. "compile": {
  2916. "ref/netstandard1.3/_._": {}
  2917. },
  2918. "runtimeTargets": {
  2919. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2920. "assetType": "runtime",
  2921. "rid": "unix"
  2922. },
  2923. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2924. "assetType": "runtime",
  2925. "rid": "win"
  2926. }
  2927. }
  2928. },
  2929. "System.Security.Cryptography.Encoding/4.3.0": {
  2930. "type": "package",
  2931. "dependencies": {
  2932. "Microsoft.NETCore.Platforms": "1.1.0",
  2933. "System.Collections": "4.3.0",
  2934. "System.Collections.Concurrent": "4.3.0",
  2935. "System.Linq": "4.3.0",
  2936. "System.Resources.ResourceManager": "4.3.0",
  2937. "System.Runtime": "4.3.0",
  2938. "System.Runtime.Extensions": "4.3.0",
  2939. "System.Runtime.Handles": "4.3.0",
  2940. "System.Runtime.InteropServices": "4.3.0",
  2941. "System.Security.Cryptography.Primitives": "4.3.0",
  2942. "System.Text.Encoding": "4.3.0",
  2943. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2944. },
  2945. "compile": {
  2946. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  2947. },
  2948. "runtimeTargets": {
  2949. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2950. "assetType": "runtime",
  2951. "rid": "unix"
  2952. },
  2953. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2954. "assetType": "runtime",
  2955. "rid": "win"
  2956. }
  2957. }
  2958. },
  2959. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2960. "type": "package",
  2961. "dependencies": {
  2962. "System.Collections": "4.3.0",
  2963. "System.IO": "4.3.0",
  2964. "System.Resources.ResourceManager": "4.3.0",
  2965. "System.Runtime": "4.3.0",
  2966. "System.Runtime.Extensions": "4.3.0",
  2967. "System.Runtime.Handles": "4.3.0",
  2968. "System.Runtime.InteropServices": "4.3.0",
  2969. "System.Runtime.Numerics": "4.3.0",
  2970. "System.Security.Cryptography.Algorithms": "4.3.0",
  2971. "System.Security.Cryptography.Encoding": "4.3.0",
  2972. "System.Security.Cryptography.Primitives": "4.3.0",
  2973. "System.Text.Encoding": "4.3.0",
  2974. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2975. },
  2976. "compile": {
  2977. "ref/netstandard1.6/_._": {}
  2978. },
  2979. "runtime": {
  2980. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2981. },
  2982. "runtimeTargets": {
  2983. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2984. "assetType": "runtime",
  2985. "rid": "unix"
  2986. }
  2987. }
  2988. },
  2989. "System.Security.Cryptography.Primitives/4.3.0": {
  2990. "type": "package",
  2991. "dependencies": {
  2992. "System.Diagnostics.Debug": "4.3.0",
  2993. "System.Globalization": "4.3.0",
  2994. "System.IO": "4.3.0",
  2995. "System.Resources.ResourceManager": "4.3.0",
  2996. "System.Runtime": "4.3.0",
  2997. "System.Threading": "4.3.0",
  2998. "System.Threading.Tasks": "4.3.0"
  2999. },
  3000. "compile": {
  3001. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3002. },
  3003. "runtime": {
  3004. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3005. }
  3006. },
  3007. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3008. "type": "package",
  3009. "dependencies": {
  3010. "Microsoft.NETCore.Platforms": "1.1.0",
  3011. "System.Collections": "4.3.0",
  3012. "System.Diagnostics.Debug": "4.3.0",
  3013. "System.Globalization": "4.3.0",
  3014. "System.Globalization.Calendars": "4.3.0",
  3015. "System.IO": "4.3.0",
  3016. "System.IO.FileSystem": "4.3.0",
  3017. "System.IO.FileSystem.Primitives": "4.3.0",
  3018. "System.Resources.ResourceManager": "4.3.0",
  3019. "System.Runtime": "4.3.0",
  3020. "System.Runtime.Extensions": "4.3.0",
  3021. "System.Runtime.Handles": "4.3.0",
  3022. "System.Runtime.InteropServices": "4.3.0",
  3023. "System.Runtime.Numerics": "4.3.0",
  3024. "System.Security.Cryptography.Algorithms": "4.3.0",
  3025. "System.Security.Cryptography.Cng": "4.3.0",
  3026. "System.Security.Cryptography.Csp": "4.3.0",
  3027. "System.Security.Cryptography.Encoding": "4.3.0",
  3028. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3029. "System.Security.Cryptography.Primitives": "4.3.0",
  3030. "System.Text.Encoding": "4.3.0",
  3031. "System.Threading": "4.3.0",
  3032. "runtime.native.System": "4.3.0",
  3033. "runtime.native.System.Net.Http": "4.3.0",
  3034. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3035. },
  3036. "compile": {
  3037. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  3038. },
  3039. "runtimeTargets": {
  3040. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3041. "assetType": "runtime",
  3042. "rid": "unix"
  3043. },
  3044. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3045. "assetType": "runtime",
  3046. "rid": "win"
  3047. }
  3048. }
  3049. },
  3050. "System.Security.Principal/4.3.0": {
  3051. "type": "package",
  3052. "dependencies": {
  3053. "System.Runtime": "4.3.0"
  3054. },
  3055. "compile": {
  3056. "ref/netstandard1.0/System.Security.Principal.dll": {}
  3057. },
  3058. "runtime": {
  3059. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3060. }
  3061. },
  3062. "System.Security.Principal.Windows/4.3.0-preview1-24530-04": {
  3063. "type": "package",
  3064. "dependencies": {
  3065. "Microsoft.NETCore.Platforms": "1.1.0-preview1-24530-04",
  3066. "Microsoft.Win32.Primitives": "4.3.0-preview1-24530-04",
  3067. "System.Collections": "4.3.0-preview1-24530-04",
  3068. "System.Diagnostics.Debug": "4.3.0-preview1-24530-04",
  3069. "System.Reflection": "4.3.0-preview1-24530-04",
  3070. "System.Resources.ResourceManager": "4.3.0-preview1-24530-04",
  3071. "System.Runtime": "4.3.0-preview1-24530-04",
  3072. "System.Runtime.Extensions": "4.3.0-preview1-24530-04",
  3073. "System.Runtime.Handles": "4.3.0-preview1-24530-04",
  3074. "System.Runtime.InteropServices": "4.3.0-preview1-24530-04",
  3075. "System.Security.Claims": "4.3.0-preview1-24530-04",
  3076. "System.Security.Principal": "4.3.0-preview1-24530-04",
  3077. "System.Text.Encoding": "4.3.0-preview1-24530-04",
  3078. "System.Threading": "4.3.0-preview1-24530-04"
  3079. },
  3080. "compile": {
  3081. "ref/netstandard1.3/System.Security.Principal.Windows.dll": {}
  3082. },
  3083. "runtimeTargets": {
  3084. "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
  3085. "assetType": "runtime",
  3086. "rid": "unix"
  3087. },
  3088. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
  3089. "assetType": "runtime",
  3090. "rid": "win"
  3091. }
  3092. }
  3093. },
  3094. "System.Text.Encoding/4.3.0": {
  3095. "type": "package",
  3096. "dependencies": {
  3097. "Microsoft.NETCore.Platforms": "1.1.0",
  3098. "Microsoft.NETCore.Targets": "1.1.0",
  3099. "System.Runtime": "4.3.0"
  3100. },
  3101. "compile": {
  3102. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  3103. },
  3104. "runtime": {
  3105. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3106. }
  3107. },
  3108. "System.Text.Encoding.CodePages/4.0.1": {
  3109. "type": "package",
  3110. "dependencies": {
  3111. "Microsoft.NETCore.Platforms": "1.0.1",
  3112. "System.Collections": "4.0.11",
  3113. "System.Globalization": "4.0.11",
  3114. "System.IO": "4.1.0",
  3115. "System.Reflection": "4.1.0",
  3116. "System.Resources.ResourceManager": "4.0.1",
  3117. "System.Runtime": "4.1.0",
  3118. "System.Runtime.Extensions": "4.1.0",
  3119. "System.Runtime.Handles": "4.0.1",
  3120. "System.Runtime.InteropServices": "4.1.0",
  3121. "System.Text.Encoding": "4.0.11",
  3122. "System.Threading": "4.0.11"
  3123. },
  3124. "compile": {
  3125. "ref/netstandard1.3/_._": {}
  3126. },
  3127. "runtimeTargets": {
  3128. "runtimes/win/lib/netstandard1.3/_._": {
  3129. "assetType": "runtime",
  3130. "rid": "win"
  3131. }
  3132. }
  3133. },
  3134. "System.Text.Encoding.Extensions/4.3.0": {
  3135. "type": "package",
  3136. "dependencies": {
  3137. "Microsoft.NETCore.Platforms": "1.1.0",
  3138. "Microsoft.NETCore.Targets": "1.1.0",
  3139. "System.Runtime": "4.3.0",
  3140. "System.Text.Encoding": "4.3.0"
  3141. },
  3142. "compile": {
  3143. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  3144. },
  3145. "runtime": {
  3146. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3147. }
  3148. },
  3149. "System.Text.Encodings.Web/4.3.0": {
  3150. "type": "package",
  3151. "dependencies": {
  3152. "System.Diagnostics.Debug": "4.3.0",
  3153. "System.IO": "4.3.0",
  3154. "System.Reflection": "4.3.0",
  3155. "System.Resources.ResourceManager": "4.3.0",
  3156. "System.Runtime": "4.3.0",
  3157. "System.Runtime.Extensions": "4.3.0",
  3158. "System.Threading": "4.3.0"
  3159. },
  3160. "compile": {
  3161. "lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
  3162. },
  3163. "runtime": {
  3164. "lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
  3165. }
  3166. },
  3167. "System.Text.RegularExpressions/4.3.0": {
  3168. "type": "package",
  3169. "dependencies": {
  3170. "System.Collections": "4.3.0",
  3171. "System.Globalization": "4.3.0",
  3172. "System.Resources.ResourceManager": "4.3.0",
  3173. "System.Runtime": "4.3.0",
  3174. "System.Runtime.Extensions": "4.3.0",
  3175. "System.Threading": "4.3.0"
  3176. },
  3177. "compile": {
  3178. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3179. },
  3180. "runtime": {
  3181. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3182. }
  3183. },
  3184. "System.Threading/4.3.0": {
  3185. "type": "package",
  3186. "dependencies": {
  3187. "System.Runtime": "4.3.0",
  3188. "System.Threading.Tasks": "4.3.0"
  3189. },
  3190. "compile": {
  3191. "ref/netstandard1.3/System.Threading.dll": {}
  3192. },
  3193. "runtime": {
  3194. "lib/netstandard1.3/System.Threading.dll": {}
  3195. }
  3196. },
  3197. "System.Threading.Overlapped/4.0.1": {
  3198. "type": "package",
  3199. "dependencies": {
  3200. "Microsoft.NETCore.Platforms": "1.0.1",
  3201. "System.Resources.ResourceManager": "4.0.1",
  3202. "System.Runtime": "4.1.0",
  3203. "System.Runtime.Handles": "4.0.1"
  3204. },
  3205. "compile": {
  3206. "ref/netstandard1.3/_._": {}
  3207. },
  3208. "runtimeTargets": {
  3209. "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": {
  3210. "assetType": "runtime",
  3211. "rid": "unix"
  3212. },
  3213. "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {
  3214. "assetType": "runtime",
  3215. "rid": "win"
  3216. }
  3217. }
  3218. },
  3219. "System.Threading.Tasks/4.3.0": {
  3220. "type": "package",
  3221. "dependencies": {
  3222. "Microsoft.NETCore.Platforms": "1.1.0",
  3223. "Microsoft.NETCore.Targets": "1.1.0",
  3224. "System.Runtime": "4.3.0"
  3225. },
  3226. "compile": {
  3227. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  3228. },
  3229. "runtime": {
  3230. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3231. }
  3232. },
  3233. "System.Threading.Tasks.Dataflow/4.6.0": {
  3234. "type": "package",
  3235. "dependencies": {
  3236. "System.Collections": "4.0.11",
  3237. "System.Collections.Concurrent": "4.0.12",
  3238. "System.Diagnostics.Debug": "4.0.11",
  3239. "System.Diagnostics.Tracing": "4.1.0",
  3240. "System.Dynamic.Runtime": "4.0.11",
  3241. "System.Linq": "4.1.0",
  3242. "System.Resources.ResourceManager": "4.0.1",
  3243. "System.Runtime": "4.1.0",
  3244. "System.Runtime.Extensions": "4.1.0",
  3245. "System.Threading": "4.0.11",
  3246. "System.Threading.Tasks": "4.0.11"
  3247. },
  3248. "compile": {
  3249. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
  3250. },
  3251. "runtime": {
  3252. "lib/netstandard1.1/_._": {}
  3253. }
  3254. },
  3255. "System.Threading.Tasks.Extensions/4.3.0": {
  3256. "type": "package",
  3257. "dependencies": {
  3258. "System.Collections": "4.3.0",
  3259. "System.Runtime": "4.3.0",
  3260. "System.Threading.Tasks": "4.3.0"
  3261. },
  3262. "compile": {
  3263. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  3264. },
  3265. "runtime": {
  3266. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  3267. }
  3268. },
  3269. "System.Threading.Tasks.Parallel/4.0.1": {
  3270. "type": "package",
  3271. "dependencies": {
  3272. "System.Collections.Concurrent": "4.0.12",
  3273. "System.Diagnostics.Debug": "4.0.11",
  3274. "System.Diagnostics.Tracing": "4.1.0",
  3275. "System.Resources.ResourceManager": "4.0.1",
  3276. "System.Runtime": "4.1.0",
  3277. "System.Runtime.Extensions": "4.1.0",
  3278. "System.Threading": "4.0.11",
  3279. "System.Threading.Tasks": "4.0.11"
  3280. },
  3281. "compile": {
  3282. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {}
  3283. },
  3284. "runtime": {
  3285. "lib/netstandard1.3/_._": {}
  3286. }
  3287. },
  3288. "System.Threading.Thread/4.0.0": {
  3289. "type": "package",
  3290. "dependencies": {
  3291. "System.Runtime": "4.1.0"
  3292. },
  3293. "compile": {
  3294. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  3295. },
  3296. "runtime": {
  3297. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3298. }
  3299. },
  3300. "System.Threading.ThreadPool/4.0.10": {
  3301. "type": "package",
  3302. "dependencies": {
  3303. "System.Runtime": "4.1.0",
  3304. "System.Runtime.Handles": "4.0.1"
  3305. },
  3306. "compile": {
  3307. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3308. },
  3309. "runtime": {
  3310. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3311. }
  3312. },
  3313. "System.Threading.Timer/4.3.0": {
  3314. "type": "package",
  3315. "dependencies": {
  3316. "Microsoft.NETCore.Platforms": "1.1.0",
  3317. "Microsoft.NETCore.Targets": "1.1.0",
  3318. "System.Runtime": "4.3.0"
  3319. },
  3320. "compile": {
  3321. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  3322. }
  3323. },
  3324. "System.Xml.ReaderWriter/4.3.0": {
  3325. "type": "package",
  3326. "dependencies": {
  3327. "System.Collections": "4.3.0",
  3328. "System.Diagnostics.Debug": "4.3.0",
  3329. "System.Globalization": "4.3.0",
  3330. "System.IO": "4.3.0",
  3331. "System.IO.FileSystem": "4.3.0",
  3332. "System.IO.FileSystem.Primitives": "4.3.0",
  3333. "System.Resources.ResourceManager": "4.3.0",
  3334. "System.Runtime": "4.3.0",
  3335. "System.Runtime.Extensions": "4.3.0",
  3336. "System.Runtime.InteropServices": "4.3.0",
  3337. "System.Text.Encoding": "4.3.0",
  3338. "System.Text.Encoding.Extensions": "4.3.0",
  3339. "System.Text.RegularExpressions": "4.3.0",
  3340. "System.Threading.Tasks": "4.3.0",
  3341. "System.Threading.Tasks.Extensions": "4.3.0"
  3342. },
  3343. "compile": {
  3344. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3345. },
  3346. "runtime": {
  3347. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3348. }
  3349. },
  3350. "System.Xml.XDocument/4.3.0": {
  3351. "type": "package",
  3352. "dependencies": {
  3353. "System.Collections": "4.3.0",
  3354. "System.Diagnostics.Debug": "4.3.0",
  3355. "System.Diagnostics.Tools": "4.3.0",
  3356. "System.Globalization": "4.3.0",
  3357. "System.IO": "4.3.0",
  3358. "System.Reflection": "4.3.0",
  3359. "System.Resources.ResourceManager": "4.3.0",
  3360. "System.Runtime": "4.3.0",
  3361. "System.Runtime.Extensions": "4.3.0",
  3362. "System.Text.Encoding": "4.3.0",
  3363. "System.Threading": "4.3.0",
  3364. "System.Xml.ReaderWriter": "4.3.0"
  3365. },
  3366. "compile": {
  3367. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  3368. },
  3369. "runtime": {
  3370. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3371. }
  3372. },
  3373. "System.Xml.XmlDocument/4.0.1": {
  3374. "type": "package",
  3375. "dependencies": {
  3376. "System.Collections": "4.0.11",
  3377. "System.Diagnostics.Debug": "4.0.11",
  3378. "System.Globalization": "4.0.11",
  3379. "System.IO": "4.1.0",
  3380. "System.Resources.ResourceManager": "4.0.1",
  3381. "System.Runtime": "4.1.0",
  3382. "System.Runtime.Extensions": "4.1.0",
  3383. "System.Text.Encoding": "4.0.11",
  3384. "System.Threading": "4.0.11",
  3385. "System.Xml.ReaderWriter": "4.0.11"
  3386. },
  3387. "compile": {
  3388. "ref/netstandard1.3/_._": {}
  3389. },
  3390. "runtime": {
  3391. "lib/netstandard1.3/_._": {}
  3392. }
  3393. },
  3394. "System.Xml.XPath/4.0.1": {
  3395. "type": "package",
  3396. "dependencies": {
  3397. "System.Collections": "4.0.11",
  3398. "System.Diagnostics.Debug": "4.0.11",
  3399. "System.Globalization": "4.0.11",
  3400. "System.IO": "4.1.0",
  3401. "System.Resources.ResourceManager": "4.0.1",
  3402. "System.Runtime": "4.1.0",
  3403. "System.Runtime.Extensions": "4.1.0",
  3404. "System.Threading": "4.0.11",
  3405. "System.Xml.ReaderWriter": "4.0.11"
  3406. },
  3407. "compile": {
  3408. "ref/netstandard1.3/_._": {}
  3409. },
  3410. "runtime": {
  3411. "lib/netstandard1.3/_._": {}
  3412. }
  3413. },
  3414. "System.Xml.XPath.XDocument/4.0.1": {
  3415. "type": "package",
  3416. "dependencies": {
  3417. "System.Diagnostics.Debug": "4.0.11",
  3418. "System.Linq": "4.1.0",
  3419. "System.Resources.ResourceManager": "4.0.1",
  3420. "System.Runtime": "4.1.0",
  3421. "System.Runtime.Extensions": "4.1.0",
  3422. "System.Threading": "4.0.11",
  3423. "System.Xml.ReaderWriter": "4.0.11",
  3424. "System.Xml.XDocument": "4.0.11",
  3425. "System.Xml.XPath": "4.0.1"
  3426. },
  3427. "compile": {
  3428. "ref/netstandard1.3/_._": {}
  3429. },
  3430. "runtime": {
  3431. "lib/netstandard1.3/_._": {}
  3432. }
  3433. },
  3434. "Luticate2.Utils/1.0.0": {
  3435. "type": "project",
  3436. "framework": ".NETCoreApp,Version=v1.0",
  3437. "dependencies": {
  3438. "Gray.Microsoft.AspNetCore.SignalR.Server": "0.2.0-alpha1",
  3439. "Microsoft.ApplicationInsights.AspNetCore": "1.0.2",
  3440. "Microsoft.AspNetCore.WebSockets": "1.0.0",
  3441. "Microsoft.EntityFrameworkCore.Tools": "1.1.0-preview4-final",
  3442. "Microsoft.NETCore.App": "1.0.1",
  3443. "Npgsql.EntityFrameworkCore.PostgreSQL": "1.1.0"
  3444. },
  3445. "compile": {
  3446. "netcoreapp1.0/Luticate2.Utils.dll": {}
  3447. },
  3448. "runtime": {
  3449. "netcoreapp1.0/Luticate2.Utils.dll": {}
  3450. }
  3451. }
  3452. }
  3453. },
  3454. "libraries": {
  3455. "Gray.Microsoft.AspNetCore.SignalR.Messaging/0.2.0": {
  3456. "sha512": "f6ADNhKb2bJEIOL8kCR9ypGfKjiUa21KtIAa2mM2zjDNbddBgLRYE5k05aqTB7KqivFwp1MqhrJwiMrGsqNF8w==",
  3457. "type": "package",
  3458. "path": "Gray.Microsoft.AspNetCore.SignalR.Messaging/0.2.0",
  3459. "files": [
  3460. "Gray.Microsoft.AspNetCore.SignalR.Messaging.0.2.0.nupkg.sha512",
  3461. "Gray.Microsoft.AspNetCore.SignalR.Messaging.nuspec",
  3462. "lib/net451/Gray.Microsoft.AspNetCore.SignalR.Messaging.dll",
  3463. "lib/netstandard1.3/Gray.Microsoft.AspNetCore.SignalR.Messaging.dll"
  3464. ]
  3465. },
  3466. "Gray.Microsoft.AspNetCore.SignalR.Server/0.2.0-alpha1": {
  3467. "sha512": "MyB2gibCua7nxjFaP+PHO/LdgV4xkJRtDFKrN5MNOcycky9yhCG3JtxFbm3UFpo/24GEmrmSgzC0pxIIwr3MVg==",
  3468. "type": "package",
  3469. "path": "Gray.Microsoft.AspNetCore.SignalR.Server/0.2.0-alpha1",
  3470. "files": [
  3471. "Gray.Microsoft.AspNetCore.SignalR.Server.0.2.0-alpha1.nupkg.sha512",
  3472. "Gray.Microsoft.AspNetCore.SignalR.Server.nuspec",
  3473. "lib/net451/Gray.Microsoft.AspNetCore.SignalR.Server.dll",
  3474. "lib/netstandard1.6/Gray.Microsoft.AspNetCore.SignalR.Server.dll"
  3475. ]
  3476. },
  3477. "Libuv/1.9.0": {
  3478. "sha512": "yGthZwFHS5Fmup6VPeY8eGJwtaBXXwrvBbTnPzYBJhtb4IeCwAELCKRDdrEUoF0dl346A1fHMHRgqxB+nfKV4A==",
  3479. "type": "package",
  3480. "path": "Libuv/1.9.0",
  3481. "files": [
  3482. "Libuv.1.9.0.nupkg.sha512",
  3483. "Libuv.nuspec",
  3484. "License.txt",
  3485. "runtimes/debian-x64/native/libuv.so",
  3486. "runtimes/fedora-x64/native/libuv.so",
  3487. "runtimes/opensuse-x64/native/libuv.so",
  3488. "runtimes/osx/native/libuv.dylib",
  3489. "runtimes/rhel-x64/native/libuv.so",
  3490. "runtimes/win7-arm/native/libuv.dll",
  3491. "runtimes/win7-x64/native/libuv.dll",
  3492. "runtimes/win7-x86/native/libuv.dll"
  3493. ]
  3494. },
  3495. "Microsoft.ApplicationInsights/2.1.0": {
  3496. "sha512": "mviO8PLQd3r22Pmv8JfjYzTCQ9ByhkU9wdC4fwd6WmAARwAMgMw9HEbHeYS3r+8pB3w+fZMi7p4LKijzgNybRQ==",
  3497. "type": "package",
  3498. "path": "Microsoft.ApplicationInsights/2.1.0",
  3499. "files": [
  3500. "Microsoft.ApplicationInsights.2.1.0.nupkg.sha512",
  3501. "Microsoft.ApplicationInsights.nuspec",
  3502. "lib/dotnet5.4/Microsoft.ApplicationInsights.XML",
  3503. "lib/dotnet5.4/Microsoft.ApplicationInsights.dll",
  3504. "lib/net40/Microsoft.ApplicationInsights.XML",
  3505. "lib/net40/Microsoft.ApplicationInsights.dll",
  3506. "lib/net45/Microsoft.ApplicationInsights.XML",
  3507. "lib/net45/Microsoft.ApplicationInsights.dll",
  3508. "lib/net46/Microsoft.ApplicationInsights.XML",
  3509. "lib/net46/Microsoft.ApplicationInsights.dll",
  3510. "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll",
  3511. "lib/uap10.0/Microsoft.ApplicationInsights.dll",
  3512. "lib/wp8/Microsoft.ApplicationInsights.dll"
  3513. ]
  3514. },
  3515. "Microsoft.ApplicationInsights.AspNetCore/1.0.2": {
  3516. "sha512": "2pe22FuypQRT5YNd4cIehYqDduxiQzt1o/585LgG6vJmOfuX7aF2h4uSI5epRrvu1EikuoZEzBchAR6U8cBybQ==",
  3517. "type": "package",
  3518. "path": "Microsoft.ApplicationInsights.AspNetCore/1.0.2",
  3519. "files": [
  3520. "Microsoft.ApplicationInsights.AspNetCore.1.0.2.nupkg.sha512",
  3521. "Microsoft.ApplicationInsights.AspNetCore.nuspec",
  3522. "lib/net451/Microsoft.ApplicationInsights.AspNetCore.dll",
  3523. "lib/net451/Microsoft.ApplicationInsights.AspNetCore.xml",
  3524. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll",
  3525. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.xml"
  3526. ]
  3527. },
  3528. "Microsoft.AspNetCore.Antiforgery/1.0.1": {
  3529. "sha512": "MMevi8HnI5GxtNOS9ZqZLuNafltbngXsOrNqyykFveMWFN5a3AfAB7I0qU77tBS9B/N3boRQuyT9AR0BsCQbaw==",
  3530. "type": "package",
  3531. "path": "Microsoft.AspNetCore.Antiforgery/1.0.1",
  3532. "files": [
  3533. "Microsoft.AspNetCore.Antiforgery.1.0.1.nupkg.sha512",
  3534. "Microsoft.AspNetCore.Antiforgery.nuspec",
  3535. "lib/net451/Microsoft.AspNetCore.Antiforgery.dll",
  3536. "lib/net451/Microsoft.AspNetCore.Antiforgery.xml",
  3537. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll",
  3538. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.xml"
  3539. ]
  3540. },
  3541. "Microsoft.AspNetCore.Authorization/1.0.0": {
  3542. "sha512": "iVFQ5xHSyxmfWYdl5B/xIFzXgm4SRgYQUKlLFVNGfEhbbjw0Ur2pfVrEvpENrhHFOQ2XAZcuFlGxSIzZwsVrMg==",
  3543. "type": "package",
  3544. "path": "Microsoft.AspNetCore.Authorization/1.0.0",
  3545. "files": [
  3546. "Microsoft.AspNetCore.Authorization.1.0.0.nupkg.sha512",
  3547. "Microsoft.AspNetCore.Authorization.nuspec",
  3548. "lib/net451/Microsoft.AspNetCore.Authorization.dll",
  3549. "lib/net451/Microsoft.AspNetCore.Authorization.xml",
  3550. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll",
  3551. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.xml"
  3552. ]
  3553. },
  3554. "Microsoft.AspNetCore.Cryptography.Internal/1.1.0-preview1-final": {
  3555. "sha512": "fnNO6Y+ccmbzEWDIVVqWdFWwG1Yk60rDMOZVCyo6ERkyH8kfvqZHG8XEmX0Lpso7YdAjP+a24qIIxJXvzI8j/A==",
  3556. "type": "package",
  3557. "path": "Microsoft.AspNetCore.Cryptography.Internal/1.1.0-preview1-final",
  3558. "files": [
  3559. "Microsoft.AspNetCore.Cryptography.Internal.1.1.0-preview1-final.nupkg.sha512",
  3560. "Microsoft.AspNetCore.Cryptography.Internal.nuspec",
  3561. "lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3562. "lib/net451/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3563. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3564. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.xml"
  3565. ]
  3566. },
  3567. "Microsoft.AspNetCore.DataProtection/1.1.0-preview1-final": {
  3568. "sha512": "emUmY9K/FVZXP7dE+cCy8EygC0ETFu7ZqboR593OP6KBMNBgN0x89kz+ULXvpdQ17g43OnojOfNlb6A0iG1ZWA==",
  3569. "type": "package",
  3570. "path": "Microsoft.AspNetCore.DataProtection/1.1.0-preview1-final",
  3571. "files": [
  3572. "Microsoft.AspNetCore.DataProtection.1.1.0-preview1-final.nupkg.sha512",
  3573. "Microsoft.AspNetCore.DataProtection.nuspec",
  3574. "lib/net451/Microsoft.AspNetCore.DataProtection.dll",
  3575. "lib/net451/Microsoft.AspNetCore.DataProtection.xml",
  3576. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll",
  3577. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.xml"
  3578. ]
  3579. },
  3580. "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0-preview1-final": {
  3581. "sha512": "jCD7nlum9L6+mc4iJcaqDmDfWxncjEWYhNDPsHvcs8yjjMOLwXhVRMrGkijdVEq1n2Bxd2jH7GuyRjPUTSv0GA==",
  3582. "type": "package",
  3583. "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0-preview1-final",
  3584. "files": [
  3585. "Microsoft.AspNetCore.DataProtection.Abstractions.1.1.0-preview1-final.nupkg.sha512",
  3586. "Microsoft.AspNetCore.DataProtection.Abstractions.nuspec",
  3587. "lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  3588. "lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  3589. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  3590. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.xml"
  3591. ]
  3592. },
  3593. "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
  3594. "sha512": "RrXsm5Xzvxs0OFDhRcIIUNOM5rXKnRWj/bIkuDkXNIBniGcPDrfGbACIatA127I6pmybNAE84puFAt3wsU2kww==",
  3595. "type": "package",
  3596. "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0",
  3597. "files": [
  3598. "Microsoft.AspNetCore.Diagnostics.Abstractions.1.0.0.nupkg.sha512",
  3599. "Microsoft.AspNetCore.Diagnostics.Abstractions.nuspec",
  3600. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
  3601. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml"
  3602. ]
  3603. },
  3604. "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
  3605. "sha512": "bi3l+bdJLrkhtNXk/988mWCRHr9dlRpDkaQof6aFjni/oJfPOHpu2B2+cH+gCemaWHTipzSYoCOuz0UL+AxG2g==",
  3606. "type": "package",
  3607. "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0",
  3608. "files": [
  3609. "Microsoft.AspNetCore.Hosting.Abstractions.1.1.0.nupkg.sha512",
  3610. "Microsoft.AspNetCore.Hosting.Abstractions.nuspec",
  3611. "lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  3612. "lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  3613. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  3614. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.xml"
  3615. ]
  3616. },
  3617. "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
  3618. "sha512": "GynDm8oz39EA8WvLIkfitPwHU27IVhLoVocZKaEYQ6Cs+jZnW2PT3OKBKJeeEepvMMbS5grvKM7HeZyGZqPthg==",
  3619. "type": "package",
  3620. "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0",
  3621. "files": [
  3622. "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.1.0.nupkg.sha512",
  3623. "Microsoft.AspNetCore.Hosting.Server.Abstractions.nuspec",
  3624. "lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  3625. "lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  3626. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  3627. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml"
  3628. ]
  3629. },
  3630. "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
  3631. "sha512": "/JLMu2k8FiInLZC0SHXT+Cmdzi7AYa3B5v9w32Kd0mPTH4RYIQo/XNPIOr2HsPTXp3I9cZo1DajaMVGnJMN2QA==",
  3632. "type": "package",
  3633. "path": "Microsoft.AspNetCore.Html.Abstractions/1.0.0",
  3634. "files": [
  3635. "Microsoft.AspNetCore.Html.Abstractions.1.0.0.nupkg.sha512",
  3636. "Microsoft.AspNetCore.Html.Abstractions.nuspec",
  3637. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll",
  3638. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.xml"
  3639. ]
  3640. },
  3641. "Microsoft.AspNetCore.Http/1.0.0": {
  3642. "sha512": "c/+eWVWQ8fX5hBHhL1BY4k2n4kVyUnqJLSCj0sTTXwRTU6IKoGbTOUqHT9as8C71Vk54YpAsi/VPmGW7T/ap3A==",
  3643. "type": "package",
  3644. "path": "Microsoft.AspNetCore.Http/1.0.0",
  3645. "files": [
  3646. "Microsoft.AspNetCore.Http.1.0.0.nupkg.sha512",
  3647. "Microsoft.AspNetCore.Http.nuspec",
  3648. "lib/net451/Microsoft.AspNetCore.Http.dll",
  3649. "lib/net451/Microsoft.AspNetCore.Http.xml",
  3650. "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll",
  3651. "lib/netstandard1.3/Microsoft.AspNetCore.Http.xml"
  3652. ]
  3653. },
  3654. "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
  3655. "sha512": "D5ytRM662nwczIVUPm2mvEJ8nf0UlHSxO6yPlXGpbdwilGchK6MrwiHI6XEfCfryhoXBn6q97fsu5K8el3uGCA==",
  3656. "type": "package",
  3657. "path": "Microsoft.AspNetCore.Http.Abstractions/1.1.0",
  3658. "files": [
  3659. "Microsoft.AspNetCore.Http.Abstractions.1.1.0.nupkg.sha512",
  3660. "Microsoft.AspNetCore.Http.Abstractions.nuspec",
  3661. "lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll",
  3662. "lib/net451/Microsoft.AspNetCore.Http.Abstractions.xml",
  3663. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll",
  3664. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.xml"
  3665. ]
  3666. },
  3667. "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
  3668. "sha512": "ZR2CbLAqwjGMFRhg0GlyrsIPA2lT1o2AHniryplFYOjyDi7rG9a9JwPiCmXsnu+22nK9+ca7mxNPx8eWSy/NQw==",
  3669. "type": "package",
  3670. "path": "Microsoft.AspNetCore.Http.Extensions/1.1.0",
  3671. "files": [
  3672. "Microsoft.AspNetCore.Http.Extensions.1.1.0.nupkg.sha512",
  3673. "Microsoft.AspNetCore.Http.Extensions.nuspec",
  3674. "lib/net451/Microsoft.AspNetCore.Http.Extensions.dll",
  3675. "lib/net451/Microsoft.AspNetCore.Http.Extensions.xml",
  3676. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll",
  3677. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.xml"
  3678. ]
  3679. },
  3680. "Microsoft.AspNetCore.Http.Features/1.1.0": {
  3681. "sha512": "zH5Qi6uJaojL+aQ/5QIt7MJ1I4Zimwc1ti6+luEHthc1xq6nevChup0lYCcthh47lrRAJwybqEg6g+c+TG3MyQ==",
  3682. "type": "package",
  3683. "path": "Microsoft.AspNetCore.Http.Features/1.1.0",
  3684. "files": [
  3685. "Microsoft.AspNetCore.Http.Features.1.1.0.nupkg.sha512",
  3686. "Microsoft.AspNetCore.Http.Features.nuspec",
  3687. "lib/net451/Microsoft.AspNetCore.Http.Features.dll",
  3688. "lib/net451/Microsoft.AspNetCore.Http.Features.xml",
  3689. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll",
  3690. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.xml"
  3691. ]
  3692. },
  3693. "Microsoft.AspNetCore.JsonPatch/1.0.0": {
  3694. "sha512": "WVaSVS+dDlWCR/qerHnBxU9tIeJ9GMA3M5tg4cxH7/cJYZZLnr2zvaFHGB+cRRNCKKTJ0pFRxT7ES8knhgAAaA==",
  3695. "type": "package",
  3696. "path": "Microsoft.AspNetCore.JsonPatch/1.0.0",
  3697. "files": [
  3698. "Microsoft.AspNetCore.JsonPatch.1.0.0.nupkg.sha512",
  3699. "Microsoft.AspNetCore.JsonPatch.nuspec",
  3700. "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll",
  3701. "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.xml"
  3702. ]
  3703. },
  3704. "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
  3705. "sha512": "Xa9XOA/NEIGSUSyAtc0rQrTRJKcxN8rzvBy0QJn2tRAXVeXc0Lbx4/1ia9kxyn3ygbjhF6bO90ZnC3Z3a2cq5g==",
  3706. "type": "package",
  3707. "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1",
  3708. "files": [
  3709. "Microsoft.AspNetCore.Mvc.Abstractions.1.0.1.nupkg.sha512",
  3710. "Microsoft.AspNetCore.Mvc.Abstractions.nuspec",
  3711. "lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll",
  3712. "lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.xml",
  3713. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll",
  3714. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.xml"
  3715. ]
  3716. },
  3717. "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
  3718. "sha512": "TfUFH0HYbL3DCGkWE24gUDnHoa3pCr4b6xbUiQTnqIbIXdL79qW8mTtfD+RHmAN5bsf1J1fndJJ84/jKri+kiw==",
  3719. "type": "package",
  3720. "path": "Microsoft.AspNetCore.Mvc.Core/1.0.1",
  3721. "files": [
  3722. "Microsoft.AspNetCore.Mvc.Core.1.0.1.nupkg.sha512",
  3723. "Microsoft.AspNetCore.Mvc.Core.nuspec",
  3724. "lib/net451/Microsoft.AspNetCore.Mvc.Core.dll",
  3725. "lib/net451/Microsoft.AspNetCore.Mvc.Core.xml",
  3726. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll",
  3727. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.xml"
  3728. ]
  3729. },
  3730. "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
  3731. "sha512": "y3QkHvOI+vopfhncU9NpUH2MvtZ2Z0EfnApb92jqbmfWL1wd5Np3SHrFSXgI4zVLlM38dMa/QU2SYM3e4T7fFQ==",
  3732. "type": "package",
  3733. "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1",
  3734. "files": [
  3735. "Microsoft.AspNetCore.Mvc.DataAnnotations.1.0.1.nupkg.sha512",
  3736. "Microsoft.AspNetCore.Mvc.DataAnnotations.nuspec",
  3737. "lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
  3738. "lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
  3739. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
  3740. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.xml"
  3741. ]
  3742. },
  3743. "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
  3744. "sha512": "wM12hSUlF0Eqed44psOYT4fY/RRjMx049A4bBUfqiGr1UFU54zTR8djRLW0dIp1w7Xv5WQ/bgG9jyqiaRbv6jg==",
  3745. "type": "package",
  3746. "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1",
  3747. "files": [
  3748. "Microsoft.AspNetCore.Mvc.Formatters.Json.1.0.1.nupkg.sha512",
  3749. "Microsoft.AspNetCore.Mvc.Formatters.Json.nuspec",
  3750. "lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
  3751. "lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
  3752. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
  3753. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.xml"
  3754. ]
  3755. },
  3756. "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
  3757. "sha512": "1zGeF76JEqvocxdM+H5n/vJunUUVNzKK4LmgnaFdrrCDTrI6MVdok+8TBBUbeI+uNk3ssrLnP3EcHIdvxl66gw==",
  3758. "type": "package",
  3759. "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1",
  3760. "files": [
  3761. "Microsoft.AspNetCore.Mvc.ViewFeatures.1.0.1.nupkg.sha512",
  3762. "Microsoft.AspNetCore.Mvc.ViewFeatures.nuspec",
  3763. "lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
  3764. "lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
  3765. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
  3766. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.xml"
  3767. ]
  3768. },
  3769. "Microsoft.AspNetCore.Routing/1.0.0": {
  3770. "sha512": "NvFvRtYHXWjBbXz5/7F7JDNcdhrE+tG1/Q9R6LmMxFgu8tkl1bqtFZQbMy17FYFkmm8Fn/T81blRGE2nxCbDRA==",
  3771. "type": "package",
  3772. "path": "Microsoft.AspNetCore.Routing/1.0.0",
  3773. "files": [
  3774. "Microsoft.AspNetCore.Routing.1.0.0.nupkg.sha512",
  3775. "Microsoft.AspNetCore.Routing.nuspec",
  3776. "lib/net451/Microsoft.AspNetCore.Routing.dll",
  3777. "lib/net451/Microsoft.AspNetCore.Routing.xml",
  3778. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll",
  3779. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.xml"
  3780. ]
  3781. },
  3782. "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
  3783. "sha512": "Ne5CFiD1xCGSHrGICw7PsVnj7gijfkMfsw52AO6ingcUhE01dc87cJPpfGLnY22MIvqn11ECLbNZYmzFp/Rs+A==",
  3784. "type": "package",
  3785. "path": "Microsoft.AspNetCore.Routing.Abstractions/1.0.0",
  3786. "files": [
  3787. "Microsoft.AspNetCore.Routing.Abstractions.1.0.0.nupkg.sha512",
  3788. "Microsoft.AspNetCore.Routing.Abstractions.nuspec",
  3789. "lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll",
  3790. "lib/net451/Microsoft.AspNetCore.Routing.Abstractions.xml",
  3791. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll",
  3792. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.xml"
  3793. ]
  3794. },
  3795. "Microsoft.AspNetCore.WebSockets/1.0.0": {
  3796. "sha512": "vhA8iwDMjL+C/iNKubp9qBjkeh0b1bJyl3nOiL+B15yiUeEcnvx7vPXV2eyIX792dVCqn+hyYCatm/ST1Cg0Hg==",
  3797. "type": "package",
  3798. "path": "Microsoft.AspNetCore.WebSockets/1.0.0",
  3799. "files": [
  3800. "Microsoft.AspNetCore.WebSockets.1.0.0.nupkg.sha512",
  3801. "Microsoft.AspNetCore.WebSockets.nuspec",
  3802. "lib/net451/Microsoft.AspNetCore.WebSockets.dll",
  3803. "lib/net451/Microsoft.AspNetCore.WebSockets.xml",
  3804. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.dll",
  3805. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.xml"
  3806. ]
  3807. },
  3808. "Microsoft.AspNetCore.WebUtilities/1.0.0": {
  3809. "sha512": "D0licSnS1JgqQ/gYlN41wXbeYG3dFIdjY781YzMHZ5gBB7kczacshW+H6plZkXRr/cCnAJWGa31o1R8c5GEy/A==",
  3810. "type": "package",
  3811. "path": "Microsoft.AspNetCore.WebUtilities/1.0.0",
  3812. "files": [
  3813. "Microsoft.AspNetCore.WebUtilities.1.0.0.nupkg.sha512",
  3814. "Microsoft.AspNetCore.WebUtilities.nuspec",
  3815. "lib/net451/Microsoft.AspNetCore.WebUtilities.dll",
  3816. "lib/net451/Microsoft.AspNetCore.WebUtilities.xml",
  3817. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll",
  3818. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.xml"
  3819. ]
  3820. },
  3821. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  3822. "sha512": "65YL5Wa8x4Ip6nUVLwVmoFWmfUfO7T5TwwqYZ5eFuu3ekpKZwub1gCKlfEDCJlzYT8h+IWdr2wvGQqWk6Kc70w==",
  3823. "type": "package",
  3824. "path": "Microsoft.CodeAnalysis.Analyzers/1.1.0",
  3825. "files": [
  3826. "Microsoft.CodeAnalysis.Analyzers.1.1.0.nupkg.sha512",
  3827. "Microsoft.CodeAnalysis.Analyzers.nuspec",
  3828. "ThirdPartyNotices.rtf",
  3829. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  3830. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  3831. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  3832. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  3833. "tools/install.ps1",
  3834. "tools/uninstall.ps1"
  3835. ]
  3836. },
  3837. "Microsoft.CodeAnalysis.Common/1.3.0": {
  3838. "sha512": "8alKL52PjN/eelP22WMnbPblT7EadukkeTKMCKozStKUOHYbjAenjQIFRa9y8WveR2ypej2NetvUnW81vDRzQg==",
  3839. "type": "package",
  3840. "path": "Microsoft.CodeAnalysis.Common/1.3.0",
  3841. "files": [
  3842. "Microsoft.CodeAnalysis.Common.1.3.0.nupkg.sha512",
  3843. "Microsoft.CodeAnalysis.Common.nuspec",
  3844. "ThirdPartyNotices.rtf",
  3845. "lib/net45/Microsoft.CodeAnalysis.dll",
  3846. "lib/net45/Microsoft.CodeAnalysis.xml",
  3847. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll",
  3848. "lib/netstandard1.3/Microsoft.CodeAnalysis.xml",
  3849. "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll",
  3850. "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml"
  3851. ]
  3852. },
  3853. "Microsoft.CodeAnalysis.CSharp/1.3.0": {
  3854. "sha512": "1Qf+GO6rDrndaJ1KKnAf8UgSIWgM+f3tiO3HGqTo1iAmFsVYOw95E0kQLaD7rRKJ9jG8aoiWdfKFPpvgdmnk3A==",
  3855. "type": "package",
  3856. "path": "Microsoft.CodeAnalysis.CSharp/1.3.0",
  3857. "files": [
  3858. "Microsoft.CodeAnalysis.CSharp.1.3.0.nupkg.sha512",
  3859. "Microsoft.CodeAnalysis.CSharp.nuspec",
  3860. "ThirdPartyNotices.rtf",
  3861. "lib/net45/Microsoft.CodeAnalysis.CSharp.dll",
  3862. "lib/net45/Microsoft.CodeAnalysis.CSharp.xml",
  3863. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll",
  3864. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml",
  3865. "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll",
  3866. "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml"
  3867. ]
  3868. },
  3869. "Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
  3870. "sha512": "EcgpeGq0OKq+AT4l2wYOxHweSbSajzpqU0RqQrsY6rv8bL1x+gP6cI26/PbtCdQljfhnTvFQSr98tqLQL8XmNQ==",
  3871. "type": "package",
  3872. "path": "Microsoft.CodeAnalysis.VisualBasic/1.3.0",
  3873. "files": [
  3874. "Microsoft.CodeAnalysis.VisualBasic.1.3.0.nupkg.sha512",
  3875. "Microsoft.CodeAnalysis.VisualBasic.nuspec",
  3876. "ThirdPartyNotices.rtf",
  3877. "lib/net45/Microsoft.CodeAnalysis.VisualBasic.dll",
  3878. "lib/net45/Microsoft.CodeAnalysis.VisualBasic.xml",
  3879. "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll",
  3880. "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.xml",
  3881. "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll",
  3882. "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml"
  3883. ]
  3884. },
  3885. "Microsoft.CSharp/4.3.0": {
  3886. "sha512": "jJcEOG+9VTkBqsWo4yERaaEea3aw9zL2H02Y6k6gKLqiJXbj9BYEyzKGdxrsD1OGCIcaAbPEGhaxTbp124Vb9g==",
  3887. "type": "package",
  3888. "path": "Microsoft.CSharp/4.3.0",
  3889. "files": [
  3890. "Microsoft.CSharp.4.3.0.nupkg.sha512",
  3891. "Microsoft.CSharp.nuspec",
  3892. "ThirdPartyNotices.txt",
  3893. "dotnet_library_license.txt",
  3894. "lib/MonoAndroid10/_._",
  3895. "lib/MonoTouch10/_._",
  3896. "lib/net45/_._",
  3897. "lib/netcore50/Microsoft.CSharp.dll",
  3898. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3899. "lib/portable-net45+win8+wp8+wpa81/_._",
  3900. "lib/win8/_._",
  3901. "lib/wp80/_._",
  3902. "lib/wpa81/_._",
  3903. "lib/xamarinios10/_._",
  3904. "lib/xamarinmac20/_._",
  3905. "lib/xamarintvos10/_._",
  3906. "lib/xamarinwatchos10/_._",
  3907. "ref/MonoAndroid10/_._",
  3908. "ref/MonoTouch10/_._",
  3909. "ref/net45/_._",
  3910. "ref/netcore50/Microsoft.CSharp.dll",
  3911. "ref/netcore50/Microsoft.CSharp.xml",
  3912. "ref/netcore50/de/Microsoft.CSharp.xml",
  3913. "ref/netcore50/es/Microsoft.CSharp.xml",
  3914. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3915. "ref/netcore50/it/Microsoft.CSharp.xml",
  3916. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3917. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3918. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3919. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3920. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3921. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3922. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3923. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3924. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3925. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3926. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3927. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3928. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3929. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3930. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3931. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3932. "ref/portable-net45+win8+wp8+wpa81/_._",
  3933. "ref/win8/_._",
  3934. "ref/wp80/_._",
  3935. "ref/wpa81/_._",
  3936. "ref/xamarinios10/_._",
  3937. "ref/xamarinmac20/_._",
  3938. "ref/xamarintvos10/_._",
  3939. "ref/xamarinwatchos10/_._"
  3940. ]
  3941. },
  3942. "Microsoft.DotNet.InternalAbstractions/1.0.500-preview2-1-003177": {
  3943. "sha512": "wEkDYPRP19wqmn7Q5iMTzSBmBgm+DMM9RdqAtvgeD+bMYCBfVhN2mK96vAAywfqXdx2RL4JixLU5I0joYEaciQ==",
  3944. "type": "package",
  3945. "path": "Microsoft.DotNet.InternalAbstractions/1.0.500-preview2-1-003177",
  3946. "files": [
  3947. "Microsoft.DotNet.InternalAbstractions.1.0.500-preview2-1-003177.nupkg.sha512",
  3948. "Microsoft.DotNet.InternalAbstractions.nuspec",
  3949. "lib/net451/Microsoft.DotNet.InternalAbstractions.dll",
  3950. "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll"
  3951. ]
  3952. },
  3953. "Microsoft.EntityFrameworkCore/1.1.0": {
  3954. "sha512": "S00vr6pLeoCMbm1PsXNZIceCAA/TUX83W3f2PcLFLGrx2QnGo5aqhtYjHvBhOVKJXZmt52EKEdORoTZVZ/swww==",
  3955. "type": "package",
  3956. "path": "Microsoft.EntityFrameworkCore/1.1.0",
  3957. "files": [
  3958. "Microsoft.EntityFrameworkCore.1.1.0.nupkg.sha512",
  3959. "Microsoft.EntityFrameworkCore.nuspec",
  3960. "lib/net451/Microsoft.EntityFrameworkCore.dll",
  3961. "lib/net451/Microsoft.EntityFrameworkCore.xml",
  3962. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll",
  3963. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.xml"
  3964. ]
  3965. },
  3966. "Microsoft.EntityFrameworkCore.Design/1.1.0": {
  3967. "sha512": "7hWqxlNYUocjRqljw6yi3bQpEjMyzNSBX+LqsUuo9cFqTu3uv2YVRyRobBmfvnXVNfRxB6EysMmTmhxApPhiNw==",
  3968. "type": "package",
  3969. "path": "Microsoft.EntityFrameworkCore.Design/1.1.0",
  3970. "files": [
  3971. "Microsoft.EntityFrameworkCore.Design.1.1.0.nupkg.sha512",
  3972. "Microsoft.EntityFrameworkCore.Design.nuspec",
  3973. "lib/net451/Microsoft.EntityFrameworkCore.Design.dll",
  3974. "lib/net451/Microsoft.EntityFrameworkCore.Design.xml",
  3975. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll",
  3976. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.xml"
  3977. ]
  3978. },
  3979. "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
  3980. "sha512": "5LkSh1GHK/ZbI/2N6YxyofFKaAVe5/RBN38G6UQzOQVgfJxzucpJVyZt1mGHBkJ4yTlr4WQS9Wr3Ppa5X0opbw==",
  3981. "type": "package",
  3982. "path": "Microsoft.EntityFrameworkCore.Relational/1.1.0",
  3983. "files": [
  3984. "Microsoft.EntityFrameworkCore.Relational.1.1.0.nupkg.sha512",
  3985. "Microsoft.EntityFrameworkCore.Relational.nuspec",
  3986. "lib/net451/Microsoft.EntityFrameworkCore.Relational.dll",
  3987. "lib/net451/Microsoft.EntityFrameworkCore.Relational.xml",
  3988. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll",
  3989. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.xml"
  3990. ]
  3991. },
  3992. "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0": {
  3993. "sha512": "fF0sVEUkoGeJutGIzwnYsJJ9o2hxEGJRpSaCxPq63rhSwn0hBmCwf9ET4QqYqO9Pc6+ODXenAQa095CWzuM4Kg==",
  3994. "type": "package",
  3995. "path": "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0",
  3996. "files": [
  3997. "Microsoft.EntityFrameworkCore.Relational.Design.1.1.0.nupkg.sha512",
  3998. "Microsoft.EntityFrameworkCore.Relational.Design.nuspec",
  3999. "lib/net451/Microsoft.EntityFrameworkCore.Relational.Design.dll",
  4000. "lib/net451/Microsoft.EntityFrameworkCore.Relational.Design.xml",
  4001. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll",
  4002. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.xml"
  4003. ]
  4004. },
  4005. "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final": {
  4006. "sha512": "n7g5JB4YxLYCl32XCmjXEHDF/9J/DSeNYGjxGAzG1xUi/IXOCWd6T3XyEnDXsub7iFDvpB2VgUlh6wHDqmTZgA==",
  4007. "type": "package",
  4008. "path": "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final",
  4009. "files": [
  4010. "Microsoft.EntityFrameworkCore.Tools.1.1.0-preview4-final.nupkg.sha512",
  4011. "Microsoft.EntityFrameworkCore.Tools.nuspec",
  4012. "lib/net451/_._",
  4013. "lib/netstandard1.3/_._",
  4014. "tools/EntityFrameworkCore.PowerShell2.psd1",
  4015. "tools/EntityFrameworkCore.PowerShell2.psm1",
  4016. "tools/EntityFrameworkCore.psd1",
  4017. "tools/EntityFrameworkCore.psm1",
  4018. "tools/Microsoft.EntityFrameworkCore.Tools.dll",
  4019. "tools/about_EntityFrameworkCore.help.txt",
  4020. "tools/init.ps1",
  4021. "tools/install.ps1",
  4022. "tools/net451/ef.exe",
  4023. "tools/net451/ef.x86.exe",
  4024. "tools/netcoreapp1.0/ef.dll",
  4025. "tools/netcoreapp1.0/ef.runtimeconfig.json"
  4026. ]
  4027. },
  4028. "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
  4029. "sha512": "uMbUDz/lNoO9LGc+DSjKMLWJk+y4qX6syDRcmQC0w6LSQzizkRqmo5Y8jO0ePtZRjF2lSGgO5URt4YgB6STDBQ==",
  4030. "type": "package",
  4031. "path": "Microsoft.Extensions.Caching.Abstractions/1.1.0",
  4032. "files": [
  4033. "Microsoft.Extensions.Caching.Abstractions.1.1.0.nupkg.sha512",
  4034. "Microsoft.Extensions.Caching.Abstractions.nuspec",
  4035. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4036. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml"
  4037. ]
  4038. },
  4039. "Microsoft.Extensions.Caching.Memory/1.1.0": {
  4040. "sha512": "ihFzFRKf/LrXHIvn0wDDt6oLxaAjsCPfrIzV9CLrTURD7qT+HujJ0TaRfC91e6tB8OAgkzY4AsHRBNq8KzrQQQ==",
  4041. "type": "package",
  4042. "path": "Microsoft.Extensions.Caching.Memory/1.1.0",
  4043. "files": [
  4044. "Microsoft.Extensions.Caching.Memory.1.1.0.nupkg.sha512",
  4045. "Microsoft.Extensions.Caching.Memory.nuspec",
  4046. "lib/net451/Microsoft.Extensions.Caching.Memory.dll",
  4047. "lib/net451/Microsoft.Extensions.Caching.Memory.xml",
  4048. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll",
  4049. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.xml"
  4050. ]
  4051. },
  4052. "Microsoft.Extensions.Configuration/1.0.0": {
  4053. "sha512": "hR4yYebruRp6qyFnV3RW4qrnEb0J1LnMmQbj50AUA423V8dMs4E3YAohsyRyGBFnpbJ+KKzieSG/n2A6T0klZQ==",
  4054. "type": "package",
  4055. "path": "Microsoft.Extensions.Configuration/1.0.0",
  4056. "files": [
  4057. "Microsoft.Extensions.Configuration.1.0.0.nupkg.sha512",
  4058. "Microsoft.Extensions.Configuration.nuspec",
  4059. "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll",
  4060. "lib/netstandard1.1/Microsoft.Extensions.Configuration.xml"
  4061. ]
  4062. },
  4063. "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
  4064. "sha512": "ggfk85eY5+Nr90O9wN0ei8YyouHTeLOSj4R7PJAEkAAR1TNCoeErydX2OuFjT/lF6o7Zupwd+DIRifC17XL2VA==",
  4065. "type": "package",
  4066. "path": "Microsoft.Extensions.Configuration.Abstractions/1.1.0",
  4067. "files": [
  4068. "Microsoft.Extensions.Configuration.Abstractions.1.1.0.nupkg.sha512",
  4069. "Microsoft.Extensions.Configuration.Abstractions.nuspec",
  4070. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4071. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml"
  4072. ]
  4073. },
  4074. "Microsoft.Extensions.DependencyInjection/1.1.0": {
  4075. "sha512": "meG2tsLdHT0SROqxGBiY8A6XUKlwsQVj1N9cyrS+ZJd1MKhoSaw54KuSH6PmpCB/K/ifkR7o9yVVVamu9XZyeg==",
  4076. "type": "package",
  4077. "path": "Microsoft.Extensions.DependencyInjection/1.1.0",
  4078. "files": [
  4079. "Microsoft.Extensions.DependencyInjection.1.1.0.nupkg.sha512",
  4080. "Microsoft.Extensions.DependencyInjection.nuspec",
  4081. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll",
  4082. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml"
  4083. ]
  4084. },
  4085. "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
  4086. "sha512": "2luhjVaWZd8Wmr2KUJcLNAN+iZgezTyfamLG6Lo5FVYY1LYaS7UFOmNtApHGVIytWWtuXSk4ea0t2Vx0HgF5fg==",
  4087. "type": "package",
  4088. "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0",
  4089. "files": [
  4090. "Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0.nupkg.sha512",
  4091. "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec",
  4092. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4093. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml"
  4094. ]
  4095. },
  4096. "Microsoft.Extensions.DependencyModel/1.0.500-preview2-1-003177": {
  4097. "sha512": "ODnV5S/TCEMyzjlLN+F9c0tprb0GSI/SU19Ray8u1m1o758Dg9G5mbUIVa9u43CE/pD2NuOK3Aoqk28B9j8ZJw==",
  4098. "type": "package",
  4099. "path": "Microsoft.Extensions.DependencyModel/1.0.500-preview2-1-003177",
  4100. "files": [
  4101. "Microsoft.Extensions.DependencyModel.1.0.500-preview2-1-003177.nupkg.sha512",
  4102. "Microsoft.Extensions.DependencyModel.nuspec",
  4103. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  4104. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll"
  4105. ]
  4106. },
  4107. "Microsoft.Extensions.DiagnosticAdapter/1.0.0": {
  4108. "sha512": "GGI4Pp9DpRBFlAXDcZRz5e+R+TqLFBWzToTDXqxPjQiRq6DwPvDYuKD10rlJD4QxxeX8fcjakTlKO1RfC+DmFg==",
  4109. "type": "package",
  4110. "path": "Microsoft.Extensions.DiagnosticAdapter/1.0.0",
  4111. "files": [
  4112. "Microsoft.Extensions.DiagnosticAdapter.1.0.0.nupkg.sha512",
  4113. "Microsoft.Extensions.DiagnosticAdapter.nuspec",
  4114. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.dll",
  4115. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.xml"
  4116. ]
  4117. },
  4118. "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
  4119. "sha512": "TBG5/xsMSOJ9hrit5TcM6Ipn+3/cgBs5tywXHun+L+8w1WYal13AMac2ziwPRY/PQqC4oG88Hw9hwIEj95xdGw==",
  4120. "type": "package",
  4121. "path": "Microsoft.Extensions.FileProviders.Abstractions/1.1.0",
  4122. "files": [
  4123. "Microsoft.Extensions.FileProviders.Abstractions.1.1.0.nupkg.sha512",
  4124. "Microsoft.Extensions.FileProviders.Abstractions.nuspec",
  4125. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4126. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.xml"
  4127. ]
  4128. },
  4129. "Microsoft.Extensions.Localization/1.0.0": {
  4130. "sha512": "nkDgz++GXjMSEIiVS6CpeirV8m8zvc/vUN2sq5sPnqG8PZltCMSNmqrwyL1onx6A6aRNdTr1nVfvYHwWAmS4vg==",
  4131. "type": "package",
  4132. "path": "Microsoft.Extensions.Localization/1.0.0",
  4133. "files": [
  4134. "Microsoft.Extensions.Localization.1.0.0.nupkg.sha512",
  4135. "Microsoft.Extensions.Localization.nuspec",
  4136. "lib/net451/Microsoft.Extensions.Localization.dll",
  4137. "lib/net451/Microsoft.Extensions.Localization.xml",
  4138. "lib/netstandard1.3/Microsoft.Extensions.Localization.dll",
  4139. "lib/netstandard1.3/Microsoft.Extensions.Localization.xml"
  4140. ]
  4141. },
  4142. "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
  4143. "sha512": "hQ2sEJf7swsD5jk4DogLI3DazGvsvbz0IuSbxPFDjcvP0PRdxgCsyGpg70LD+3tRmxZcE1uh5jtcAi4X2BcB9w==",
  4144. "type": "package",
  4145. "path": "Microsoft.Extensions.Localization.Abstractions/1.0.0",
  4146. "files": [
  4147. "Microsoft.Extensions.Localization.Abstractions.1.0.0.nupkg.sha512",
  4148. "Microsoft.Extensions.Localization.Abstractions.nuspec",
  4149. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll",
  4150. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.xml"
  4151. ]
  4152. },
  4153. "Microsoft.Extensions.Logging/1.1.0": {
  4154. "sha512": "IbNogJJE3NRtc5/DAtKEkhXaUQK9N7I6A5G2+ZfyBzWMvAgLKSimESpNMp+gnzUYsW3YbHkeT8jLk9m/3vGY5A==",
  4155. "type": "package",
  4156. "path": "Microsoft.Extensions.Logging/1.1.0",
  4157. "files": [
  4158. "Microsoft.Extensions.Logging.1.1.0.nupkg.sha512",
  4159. "Microsoft.Extensions.Logging.nuspec",
  4160. "lib/netstandard1.1/Microsoft.Extensions.Logging.dll",
  4161. "lib/netstandard1.1/Microsoft.Extensions.Logging.xml"
  4162. ]
  4163. },
  4164. "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
  4165. "sha512": "5zDtM0Dal+pwDIj49PPq9Y8SYu6z70v55VDx70rOuquLTlaCIdv9uItkcp9c1FH/ASNdfANVnh1cTwd85dyE+Q==",
  4166. "type": "package",
  4167. "path": "Microsoft.Extensions.Logging.Abstractions/1.1.0",
  4168. "files": [
  4169. "Microsoft.Extensions.Logging.Abstractions.1.1.0.nupkg.sha512",
  4170. "Microsoft.Extensions.Logging.Abstractions.nuspec",
  4171. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll",
  4172. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml"
  4173. ]
  4174. },
  4175. "Microsoft.Extensions.ObjectPool/1.0.0": {
  4176. "sha512": "BTXoWSTrv/saLlNSg8l41YOoSKeUUanQLykUqRTtiUJz2xxQOCgm4ckPzrdmSK6w0mdjR2h7IrUDGdBF78Z7yg==",
  4177. "type": "package",
  4178. "path": "Microsoft.Extensions.ObjectPool/1.0.0",
  4179. "files": [
  4180. "Microsoft.Extensions.ObjectPool.1.0.0.nupkg.sha512",
  4181. "Microsoft.Extensions.ObjectPool.nuspec",
  4182. "lib/net451/Microsoft.Extensions.ObjectPool.dll",
  4183. "lib/net451/Microsoft.Extensions.ObjectPool.xml",
  4184. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll",
  4185. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.xml"
  4186. ]
  4187. },
  4188. "Microsoft.Extensions.Options/1.1.0": {
  4189. "sha512": "NZlEcVm+SPPeNAkYuwiZdqnMrs/Lne/cDAWiBal1EL//m/KjDgOC6jKg5m9rt/cvqb7Obql5e0JtkNmdP1fGQA==",
  4190. "type": "package",
  4191. "path": "Microsoft.Extensions.Options/1.1.0",
  4192. "files": [
  4193. "Microsoft.Extensions.Options.1.1.0.nupkg.sha512",
  4194. "Microsoft.Extensions.Options.nuspec",
  4195. "lib/netstandard1.0/Microsoft.Extensions.Options.dll",
  4196. "lib/netstandard1.0/Microsoft.Extensions.Options.xml"
  4197. ]
  4198. },
  4199. "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
  4200. "sha512": "zyjUzrOmuevOAJpIo3Mt5GmpALVYCVdLZ99keMbmCxxgQH7oxzU58kGHzE6hAgYEiWsdfMJLjVR7r+vSmaJmtg==",
  4201. "type": "package",
  4202. "path": "Microsoft.Extensions.PlatformAbstractions/1.0.0",
  4203. "files": [
  4204. "Microsoft.Extensions.PlatformAbstractions.1.0.0.nupkg.sha512",
  4205. "Microsoft.Extensions.PlatformAbstractions.nuspec",
  4206. "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
  4207. "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml",
  4208. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll",
  4209. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml"
  4210. ]
  4211. },
  4212. "Microsoft.Extensions.Primitives/1.1.0": {
  4213. "sha512": "GhQG5CBUR9/czBLTblt1giKBkfvHVDeppWd6KIgPyexrspECqzzSW5IXe0STTTs2NlUp9vIFwjSWG8O9c74R9g==",
  4214. "type": "package",
  4215. "path": "Microsoft.Extensions.Primitives/1.1.0",
  4216. "files": [
  4217. "Microsoft.Extensions.Primitives.1.1.0.nupkg.sha512",
  4218. "Microsoft.Extensions.Primitives.nuspec",
  4219. "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll",
  4220. "lib/netstandard1.0/Microsoft.Extensions.Primitives.xml"
  4221. ]
  4222. },
  4223. "Microsoft.Extensions.WebEncoders/1.0.0": {
  4224. "sha512": "NSSIBREmHHiyoAFXV2LMA+a6RMZtTHxgUbHJGHRtnjmTKnRyticx5HAzNpy8VG9+HCCHenL9QD7zSA8jjgAi5A==",
  4225. "type": "package",
  4226. "path": "Microsoft.Extensions.WebEncoders/1.0.0",
  4227. "files": [
  4228. "Microsoft.Extensions.WebEncoders.1.0.0.nupkg.sha512",
  4229. "Microsoft.Extensions.WebEncoders.nuspec",
  4230. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll",
  4231. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.xml"
  4232. ]
  4233. },
  4234. "Microsoft.Net.Http.Headers/1.1.0": {
  4235. "sha512": "jeVS60A5qfWNFxs1aZ8UmUclrN6r6AdXkHmNjO0HzyaDmzc0zm7h0F0A/FHSu2i9sj5E7KrxTwaHapeiFBw/DA==",
  4236. "type": "package",
  4237. "path": "Microsoft.Net.Http.Headers/1.1.0",
  4238. "files": [
  4239. "Microsoft.Net.Http.Headers.1.1.0.nupkg.sha512",
  4240. "Microsoft.Net.Http.Headers.nuspec",
  4241. "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll",
  4242. "lib/netstandard1.1/Microsoft.Net.Http.Headers.xml"
  4243. ]
  4244. },
  4245. "Microsoft.NETCore.App/1.0.1": {
  4246. "sha512": "1ZiTaAAc3Msi4siXtdVmallNCrFA5ZUzoGkIh4litHjBJBZcRgWvwRXT60woB5FpWPC9qDiTFc6L1Gr8EbOPog==",
  4247. "type": "package",
  4248. "path": "Microsoft.NETCore.App/1.0.1",
  4249. "files": [
  4250. "Microsoft.NETCore.App.1.0.1.nupkg.sha512",
  4251. "Microsoft.NETCore.App.nuspec",
  4252. "ThirdPartyNotices.txt",
  4253. "dotnet_library_license.txt",
  4254. "lib/netcoreapp1.0/_._"
  4255. ]
  4256. },
  4257. "Microsoft.NETCore.DotNetHost/1.0.1": {
  4258. "sha512": "sMqlTLwQ7PPeFs6w4eLPN07z+xtecj4k+mFoCLPsppsid91fmjRJBTRwOAx2k1cFCZb4TXswDhjmN05eqJ+0Lg==",
  4259. "type": "package",
  4260. "path": "Microsoft.NETCore.DotNetHost/1.0.1",
  4261. "files": [
  4262. "Microsoft.NETCore.DotNetHost.1.0.1.nupkg.sha512",
  4263. "Microsoft.NETCore.DotNetHost.nuspec",
  4264. "ThirdPartyNotices.txt",
  4265. "dotnet_library_license.txt",
  4266. "runtime.json"
  4267. ]
  4268. },
  4269. "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
  4270. "sha512": "GRziAkBjDCXhlsVra4tHyK+Q5sK+pwUrpuOMEgk1G501zCaU2b7JMneLZyvU6vJ463n07/jboqjT897CDzyioQ==",
  4271. "type": "package",
  4272. "path": "Microsoft.NETCore.DotNetHostPolicy/1.0.1",
  4273. "files": [
  4274. "Microsoft.NETCore.DotNetHostPolicy.1.0.1.nupkg.sha512",
  4275. "Microsoft.NETCore.DotNetHostPolicy.nuspec",
  4276. "ThirdPartyNotices.txt",
  4277. "dotnet_library_license.txt",
  4278. "runtime.json"
  4279. ]
  4280. },
  4281. "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
  4282. "sha512": "irdpBgW2A7C/kJf38hWUWp2ouF2mDQqGKbiqtF7UhDysTPW5j7oOhvikgPjojvnGXL9TpCjqEGE3ZYkYdKZLeA==",
  4283. "type": "package",
  4284. "path": "Microsoft.NETCore.DotNetHostResolver/1.0.1",
  4285. "files": [
  4286. "Microsoft.NETCore.DotNetHostResolver.1.0.1.nupkg.sha512",
  4287. "Microsoft.NETCore.DotNetHostResolver.nuspec",
  4288. "ThirdPartyNotices.txt",
  4289. "dotnet_library_license.txt",
  4290. "runtime.json"
  4291. ]
  4292. },
  4293. "Microsoft.NETCore.Jit/1.0.4": {
  4294. "sha512": "s336ryZlopR+pQ4VfKlILX1LxiQzpCPnmiGot0p5aFPeCjwmKtHC88MI8jXdvdGPySON9i1bPUKJP8jiiPIAjA==",
  4295. "type": "package",
  4296. "path": "Microsoft.NETCore.Jit/1.0.4",
  4297. "files": [
  4298. "Microsoft.NETCore.Jit.1.0.4.nupkg.sha512",
  4299. "Microsoft.NETCore.Jit.nuspec",
  4300. "ThirdPartyNotices.txt",
  4301. "dotnet_library_license.txt",
  4302. "runtime.json"
  4303. ]
  4304. },
  4305. "Microsoft.NETCore.Platforms/1.1.0": {
  4306. "sha512": "RTmkgwugaI7tV0PjAwBX4ZKHbv/lMuIKUBeyIB0aosbGALFKIxiGvseJDF5ui5RBGbEJ5AvxZsGI0Rr6ZEfwaw==",
  4307. "type": "package",
  4308. "path": "Microsoft.NETCore.Platforms/1.1.0",
  4309. "files": [
  4310. "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
  4311. "Microsoft.NETCore.Platforms.nuspec",
  4312. "ThirdPartyNotices.txt",
  4313. "dotnet_library_license.txt",
  4314. "lib/netstandard1.0/_._",
  4315. "runtime.json"
  4316. ]
  4317. },
  4318. "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
  4319. "sha512": "NTd+F7MQJi5wFh6Hq3uVH0L3om+pVcfF+bpw0hSd+Ka92QSZ4IfDJw/IWqTQ9jUtLyWYR4XR+52HD5HW+a+zoQ==",
  4320. "type": "package",
  4321. "path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.4",
  4322. "files": [
  4323. "Microsoft.NETCore.Runtime.CoreCLR.1.0.4.nupkg.sha512",
  4324. "Microsoft.NETCore.Runtime.CoreCLR.nuspec",
  4325. "ThirdPartyNotices.txt",
  4326. "dotnet_library_license.txt",
  4327. "runtime.json"
  4328. ]
  4329. },
  4330. "Microsoft.NETCore.Targets/1.1.0": {
  4331. "sha512": "TjtMctxB3IKIyNMBQYoxx7jFQmJM9iaTLMp/6g4nMLC33nc6PgL8kXmnvQouPBVR+WvHVDY1By0D2Elpf2KB4w==",
  4332. "type": "package",
  4333. "path": "Microsoft.NETCore.Targets/1.1.0",
  4334. "files": [
  4335. "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
  4336. "Microsoft.NETCore.Targets.nuspec",
  4337. "ThirdPartyNotices.txt",
  4338. "dotnet_library_license.txt",
  4339. "lib/netstandard1.0/_._",
  4340. "runtime.json"
  4341. ]
  4342. },
  4343. "Microsoft.NETCore.Windows.ApiSets/1.0.1": {
  4344. "sha512": "2BQeO8o+R9rDiMzsBqFrtr3S8fC8wrC1v20gcYAkVrzk/4ydLbzHfpk6SP3QbXIM2G9pPf1idJ/G1mgwSVgkuA==",
  4345. "type": "package",
  4346. "path": "Microsoft.NETCore.Windows.ApiSets/1.0.1",
  4347. "files": [
  4348. "Microsoft.NETCore.Windows.ApiSets.1.0.1.nupkg.sha512",
  4349. "Microsoft.NETCore.Windows.ApiSets.nuspec",
  4350. "ThirdPartyNotices.txt",
  4351. "dotnet_library_license.txt",
  4352. "runtime.json"
  4353. ]
  4354. },
  4355. "Microsoft.VisualBasic/10.0.1": {
  4356. "sha512": "nEk7ZPzxzfOvFbIjdBB7cgg/4toz2TLu4qLKcbL7NiLWvxXQMsU4PbWnRBByiCFFSKVcALEvq2d2yfmxQCYstQ==",
  4357. "type": "package",
  4358. "path": "Microsoft.VisualBasic/10.0.1",
  4359. "files": [
  4360. "Microsoft.VisualBasic.10.0.1.nupkg.sha512",
  4361. "Microsoft.VisualBasic.nuspec",
  4362. "ThirdPartyNotices.txt",
  4363. "dotnet_library_license.txt",
  4364. "lib/net45/_._",
  4365. "lib/netcore50/Microsoft.VisualBasic.dll",
  4366. "lib/netstandard1.3/Microsoft.VisualBasic.dll",
  4367. "lib/portable-net45+win8+wpa81/_._",
  4368. "lib/win8/_._",
  4369. "lib/wpa81/_._",
  4370. "ref/net45/_._",
  4371. "ref/netcore50/Microsoft.VisualBasic.dll",
  4372. "ref/netcore50/Microsoft.VisualBasic.xml",
  4373. "ref/netcore50/de/Microsoft.VisualBasic.xml",
  4374. "ref/netcore50/es/Microsoft.VisualBasic.xml",
  4375. "ref/netcore50/fr/Microsoft.VisualBasic.xml",
  4376. "ref/netcore50/it/Microsoft.VisualBasic.xml",
  4377. "ref/netcore50/ja/Microsoft.VisualBasic.xml",
  4378. "ref/netcore50/ko/Microsoft.VisualBasic.xml",
  4379. "ref/netcore50/ru/Microsoft.VisualBasic.xml",
  4380. "ref/netcore50/zh-hans/Microsoft.VisualBasic.xml",
  4381. "ref/netcore50/zh-hant/Microsoft.VisualBasic.xml",
  4382. "ref/netstandard1.1/Microsoft.VisualBasic.dll",
  4383. "ref/netstandard1.1/Microsoft.VisualBasic.xml",
  4384. "ref/netstandard1.1/de/Microsoft.VisualBasic.xml",
  4385. "ref/netstandard1.1/es/Microsoft.VisualBasic.xml",
  4386. "ref/netstandard1.1/fr/Microsoft.VisualBasic.xml",
  4387. "ref/netstandard1.1/it/Microsoft.VisualBasic.xml",
  4388. "ref/netstandard1.1/ja/Microsoft.VisualBasic.xml",
  4389. "ref/netstandard1.1/ko/Microsoft.VisualBasic.xml",
  4390. "ref/netstandard1.1/ru/Microsoft.VisualBasic.xml",
  4391. "ref/netstandard1.1/zh-hans/Microsoft.VisualBasic.xml",
  4392. "ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml",
  4393. "ref/portable-net45+win8+wpa81/_._",
  4394. "ref/win8/_._",
  4395. "ref/wpa81/_._"
  4396. ]
  4397. },
  4398. "Microsoft.Win32.Primitives/4.3.0": {
  4399. "sha512": "vl5HOGiTB5AcQfZ9OPmgiLTwBlM5MhYtbv+nh+plxq2epP8lNZwHcaB9IGcVi3cOVV9MQbt+MQ/q4pAcmBOgjA==",
  4400. "type": "package",
  4401. "path": "Microsoft.Win32.Primitives/4.3.0",
  4402. "files": [
  4403. "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
  4404. "Microsoft.Win32.Primitives.nuspec",
  4405. "ThirdPartyNotices.txt",
  4406. "dotnet_library_license.txt",
  4407. "lib/MonoAndroid10/_._",
  4408. "lib/MonoTouch10/_._",
  4409. "lib/net46/Microsoft.Win32.Primitives.dll",
  4410. "lib/xamarinios10/_._",
  4411. "lib/xamarinmac20/_._",
  4412. "lib/xamarintvos10/_._",
  4413. "lib/xamarinwatchos10/_._",
  4414. "ref/MonoAndroid10/_._",
  4415. "ref/MonoTouch10/_._",
  4416. "ref/net46/Microsoft.Win32.Primitives.dll",
  4417. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4418. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4419. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4420. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4421. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4422. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4423. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4424. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4425. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4426. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4427. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4428. "ref/xamarinios10/_._",
  4429. "ref/xamarinmac20/_._",
  4430. "ref/xamarintvos10/_._",
  4431. "ref/xamarinwatchos10/_._"
  4432. ]
  4433. },
  4434. "Microsoft.Win32.Registry/4.3.0-preview1-24530-04": {
  4435. "sha512": "CrSSvGp53YHl38XOJl8Dvtnus1yq+dP0V01BO8Y+LNzlJZuGsuHbyftD5noA1p0ZBBJpnarmaEjmOaQg/uenDg==",
  4436. "type": "package",
  4437. "path": "Microsoft.Win32.Registry/4.3.0-preview1-24530-04",
  4438. "files": [
  4439. "Microsoft.Win32.Registry.4.3.0-preview1-24530-04.nupkg.sha512",
  4440. "Microsoft.Win32.Registry.nuspec",
  4441. "ThirdPartyNotices.txt",
  4442. "dotnet_library_license.txt",
  4443. "lib/net46/Microsoft.Win32.Registry.dll",
  4444. "ref/net46/Microsoft.Win32.Registry.dll",
  4445. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  4446. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  4447. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  4448. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  4449. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  4450. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  4451. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  4452. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  4453. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  4454. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  4455. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  4456. "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4457. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  4458. "runtimes/win/lib/netcore50/_._",
  4459. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll"
  4460. ]
  4461. },
  4462. "NETStandard.Library/1.6.1": {
  4463. "sha512": "xKGn5Y57yyimfRm6sKI2Yg/ZJ7oGcvR9+lpfZZI6StFCJqhS8JdRkT+qTZOTl37Trh7rLN5X5qFgbOfAlbPQrQ==",
  4464. "type": "package",
  4465. "path": "NETStandard.Library/1.6.1",
  4466. "files": [
  4467. "NETStandard.Library.1.6.1.nupkg.sha512",
  4468. "NETStandard.Library.nuspec",
  4469. "ThirdPartyNotices.txt",
  4470. "dotnet_library_license.txt"
  4471. ]
  4472. },
  4473. "Newtonsoft.Json/9.0.1": {
  4474. "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
  4475. "type": "package",
  4476. "path": "Newtonsoft.Json/9.0.1",
  4477. "files": [
  4478. "Newtonsoft.Json.9.0.1.nupkg.sha512",
  4479. "Newtonsoft.Json.nuspec",
  4480. "lib/net20/Newtonsoft.Json.dll",
  4481. "lib/net20/Newtonsoft.Json.xml",
  4482. "lib/net35/Newtonsoft.Json.dll",
  4483. "lib/net35/Newtonsoft.Json.xml",
  4484. "lib/net40/Newtonsoft.Json.dll",
  4485. "lib/net40/Newtonsoft.Json.xml",
  4486. "lib/net45/Newtonsoft.Json.dll",
  4487. "lib/net45/Newtonsoft.Json.xml",
  4488. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4489. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4490. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
  4491. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
  4492. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
  4493. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
  4494. "tools/install.ps1"
  4495. ]
  4496. },
  4497. "Npgsql/3.1.9": {
  4498. "sha512": "maoOs4rudcIG1SlPHsLRTgwUQA8+06k037z2f9KSKe8KrVHu3tBUUePgt3U3saGFrACf80/j9CzsleCisnPo5A==",
  4499. "type": "package",
  4500. "path": "Npgsql/3.1.9",
  4501. "files": [
  4502. "Npgsql.3.1.9.nupkg.sha512",
  4503. "Npgsql.nuspec",
  4504. "lib/net45/Npgsql.dll",
  4505. "lib/net45/Npgsql.xml",
  4506. "lib/net451/Npgsql.dll",
  4507. "lib/net451/Npgsql.xml",
  4508. "lib/netstandard1.3/Npgsql.dll",
  4509. "lib/netstandard1.3/Npgsql.xml"
  4510. ]
  4511. },
  4512. "Npgsql.EntityFrameworkCore.PostgreSQL/1.1.0": {
  4513. "sha512": "7J4oVuALr8voMhbCkQUODu6VG9DR4u3Io4oIwZK1VocNlXN8RHPFhS1nOQOb/TAe+Eav/GqnmEiSZ0uhe2wphQ==",
  4514. "type": "package",
  4515. "path": "Npgsql.EntityFrameworkCore.PostgreSQL/1.1.0",
  4516. "files": [
  4517. "Npgsql.EntityFrameworkCore.PostgreSQL.1.1.0.nupkg.sha512",
  4518. "Npgsql.EntityFrameworkCore.PostgreSQL.nuspec",
  4519. "lib/net451/Npgsql.EntityFrameworkCore.PostgreSQL.dll",
  4520. "lib/netstandard1.3/Npgsql.EntityFrameworkCore.PostgreSQL.dll"
  4521. ]
  4522. },
  4523. "Remotion.Linq/2.1.1": {
  4524. "sha512": "IJn0BqkvwEDpP+2qjvci7n4/a9f7DhKESLWb2/uG4xQh3rTkGTBUz69bI4IivCoKkTFAqjXxYDZw2K/npohjsw==",
  4525. "type": "package",
  4526. "path": "Remotion.Linq/2.1.1",
  4527. "files": [
  4528. "Remotion.Linq.2.1.1.nupkg.sha512",
  4529. "Remotion.Linq.nuspec",
  4530. "lib/net35/Remotion.Linq.XML",
  4531. "lib/net35/Remotion.Linq.dll",
  4532. "lib/net40/Remotion.Linq.XML",
  4533. "lib/net40/Remotion.Linq.dll",
  4534. "lib/net45/Remotion.Linq.XML",
  4535. "lib/net45/Remotion.Linq.dll",
  4536. "lib/netstandard1.0/Remotion.Linq.dll",
  4537. "lib/netstandard1.0/Remotion.Linq.xml",
  4538. "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll",
  4539. "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml"
  4540. ]
  4541. },
  4542. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4543. "sha512": "ZJbyxj5gWzOfnJTXGn9LH8ZK9t/PGFUVlsgv/dZUFy/ruE+eScVrAkaBTwf58FJ3F84cBMBOIm4QscRTtfxgqg==",
  4544. "type": "package",
  4545. "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  4546. "files": [
  4547. "ThirdPartyNotices.txt",
  4548. "dotnet_library_license.txt",
  4549. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  4550. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  4551. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4552. ]
  4553. },
  4554. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4555. "sha512": "NCGzArSeAPBQJrBY2TUzb/19o3E3TgDFYyl+r+8zWuExcqJDBz5aGkEW8SwwqdscRc37IdtwTr2D2duW47CmHg==",
  4556. "type": "package",
  4557. "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  4558. "files": [
  4559. "ThirdPartyNotices.txt",
  4560. "dotnet_library_license.txt",
  4561. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  4562. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  4563. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4564. ]
  4565. },
  4566. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4567. "sha512": "LdIvj7Bi2jiaNTqY/ezZGVXHe1KI5fjLSI026O1TjVzsmdgTP/zTF+f3nwHCjwttyhsPBEiswv0PekimPWZwWg==",
  4568. "type": "package",
  4569. "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  4570. "files": [
  4571. "ThirdPartyNotices.txt",
  4572. "dotnet_library_license.txt",
  4573. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  4574. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  4575. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4576. ]
  4577. },
  4578. "runtime.native.System/4.3.0": {
  4579. "sha512": "nTWOfeX69uwxSiJSyNyzsEglUyfMJQykNusa31AsilJ3vWjhW8RqCIdjR+qxfx/40LGlLUKECl+j6A+/sI1ejw==",
  4580. "type": "package",
  4581. "path": "runtime.native.System/4.3.0",
  4582. "files": [
  4583. "ThirdPartyNotices.txt",
  4584. "dotnet_library_license.txt",
  4585. "lib/netstandard1.0/_._",
  4586. "runtime.native.System.4.3.0.nupkg.sha512",
  4587. "runtime.native.System.nuspec"
  4588. ]
  4589. },
  4590. "runtime.native.System.IO.Compression/4.3.0": {
  4591. "sha512": "b+V9JC/Ii3sR659flBeaBJww111425tgjcDS1k+hqV4sGh9FALRDBvJnDtQ895gAzpPTUOFDHdqaZ2Et7BpZMg==",
  4592. "type": "package",
  4593. "path": "runtime.native.System.IO.Compression/4.3.0",
  4594. "files": [
  4595. "ThirdPartyNotices.txt",
  4596. "dotnet_library_license.txt",
  4597. "lib/netstandard1.0/_._",
  4598. "runtime.native.System.IO.Compression.4.3.0.nupkg.sha512",
  4599. "runtime.native.System.IO.Compression.nuspec"
  4600. ]
  4601. },
  4602. "runtime.native.System.Net.Http/4.3.0": {
  4603. "sha512": "guqHgQOK2eUgtJae2VKjNawBn1xjC0hfOt5wASHa60XHbIdCsQlqtvMsFG+3hy7yp88V+gi9fZCjubuDkeakcQ==",
  4604. "type": "package",
  4605. "path": "runtime.native.System.Net.Http/4.3.0",
  4606. "files": [
  4607. "ThirdPartyNotices.txt",
  4608. "dotnet_library_license.txt",
  4609. "lib/netstandard1.0/_._",
  4610. "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
  4611. "runtime.native.System.Net.Http.nuspec"
  4612. ]
  4613. },
  4614. "runtime.native.System.Net.Security/4.0.1": {
  4615. "sha512": "U3JOSWmwFNUpbxw+Iq+NDXruyFQhl1qej0VcDmVFwU4n2Y7IHN6nd2dQQsRpJiqtYAHjiHhfQH9US60BjUvxHg==",
  4616. "type": "package",
  4617. "path": "runtime.native.System.Net.Security/4.0.1",
  4618. "files": [
  4619. "ThirdPartyNotices.txt",
  4620. "dotnet_library_license.txt",
  4621. "lib/netstandard1.0/_._",
  4622. "runtime.native.System.Net.Security.4.0.1.nupkg.sha512",
  4623. "runtime.native.System.Net.Security.nuspec"
  4624. ]
  4625. },
  4626. "runtime.native.System.Security.Cryptography/4.0.0": {
  4627. "sha512": "vM+JcNCiIj/XxXu4IWqxrOROrDxZGStukyg31j177KruTYbvsEu8biJoo8YEZUrHG+WcBtvIlcRLohVOQlwfWg==",
  4628. "type": "package",
  4629. "path": "runtime.native.System.Security.Cryptography/4.0.0",
  4630. "files": [
  4631. "ThirdPartyNotices.txt",
  4632. "dotnet_library_license.txt",
  4633. "lib/netstandard1.0/_._",
  4634. "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512",
  4635. "runtime.native.System.Security.Cryptography.nuspec"
  4636. ]
  4637. },
  4638. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4639. "sha512": "jwjwlEL0Elv6gwoyaokRn12nv/JE+UW/DXJEbzhjCPvGbef36StnHKc9XaZD/rGWqYicrphZ7eumR/jdmNcjRg==",
  4640. "type": "package",
  4641. "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
  4642. "files": [
  4643. "ThirdPartyNotices.txt",
  4644. "dotnet_library_license.txt",
  4645. "lib/netstandard1.0/_._",
  4646. "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
  4647. "runtime.native.System.Security.Cryptography.Apple.nuspec"
  4648. ]
  4649. },
  4650. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4651. "sha512": "wWqB5kJ+vYC+IH7orP8EezottaOczECwYBFcecbkgG3IG6s8WghUdmM6pbUqSLhPibItxCWNg73rvG5cbL9tmw==",
  4652. "type": "package",
  4653. "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  4654. "files": [
  4655. "ThirdPartyNotices.txt",
  4656. "dotnet_library_license.txt",
  4657. "lib/netstandard1.0/_._",
  4658. "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  4659. "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
  4660. ]
  4661. },
  4662. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4663. "sha512": "zWLOQ77Y4FV/6Vw2g+FYzprbQX5/xKvjoCLe4L9159Aw1bSboQoJ1KRZFNdexDooWRAIsLSdE0ZokkrVkwN8Yw==",
  4664. "type": "package",
  4665. "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  4666. "files": [
  4667. "ThirdPartyNotices.txt",
  4668. "dotnet_library_license.txt",
  4669. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  4670. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  4671. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4672. ]
  4673. },
  4674. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4675. "sha512": "G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==",
  4676. "type": "package",
  4677. "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  4678. "files": [
  4679. "ThirdPartyNotices.txt",
  4680. "dotnet_library_license.txt",
  4681. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  4682. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  4683. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4684. ]
  4685. },
  4686. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4687. "sha512": "Kh9W4agE0r/hK8AX1LvyQI2NrKHBL8pO0gRoDTdDb0LL6Ta1Z2OtFx3lOaAE0ZpCUc/dt9Wzs3rA7a3IsKdOVA==",
  4688. "type": "package",
  4689. "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
  4690. "files": [
  4691. "ThirdPartyNotices.txt",
  4692. "dotnet_library_license.txt",
  4693. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
  4694. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
  4695. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4696. ]
  4697. },
  4698. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4699. "sha512": "/p8IQT2brFMDa7BHMH71LV+w5Tb3OxoLHxhn6+MGqN5xeqhM2HRHmj+7xQGJnaRn73d7ZTvp6yRCFMvolws4wA==",
  4700. "type": "package",
  4701. "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  4702. "files": [
  4703. "ThirdPartyNotices.txt",
  4704. "dotnet_library_license.txt",
  4705. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  4706. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  4707. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4708. ]
  4709. },
  4710. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4711. "sha512": "T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==",
  4712. "type": "package",
  4713. "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  4714. "files": [
  4715. "ThirdPartyNotices.txt",
  4716. "dotnet_library_license.txt",
  4717. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  4718. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  4719. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4720. ]
  4721. },
  4722. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4723. "sha512": "JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==",
  4724. "type": "package",
  4725. "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  4726. "files": [
  4727. "ThirdPartyNotices.txt",
  4728. "dotnet_library_license.txt",
  4729. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  4730. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  4731. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4732. ]
  4733. },
  4734. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4735. "sha512": "YWzJvhiC+iLWI/IfpPQUIBhYnAHUFQFRDqR7VDNmPj0b3rjW7dArFqKysZ9v0iSBs9Ih4v9GasLpYCSUwADMQQ==",
  4736. "type": "package",
  4737. "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  4738. "files": [
  4739. "ThirdPartyNotices.txt",
  4740. "dotnet_library_license.txt",
  4741. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  4742. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  4743. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4744. ]
  4745. },
  4746. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4747. "sha512": "1uVTITQP8/cI6YoO6FqfW1pzP0k2TnDZ3TFD88Bu/9H7ZuTsMY9xmadbGpwPu8w8swcd1ifZJsjD9hF9O6C/tg==",
  4748. "type": "package",
  4749. "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  4750. "files": [
  4751. "ThirdPartyNotices.txt",
  4752. "dotnet_library_license.txt",
  4753. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  4754. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  4755. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4756. ]
  4757. },
  4758. "System.AppContext/4.3.0": {
  4759. "sha512": "196NfWFfUbYriRPqeGwOnLnvmXBRPOEeo5oaLQ1TcMExbCBC3Ub8cGkjSfc/XbXjYyXXpeePcYOIJAzaEgwpcg==",
  4760. "type": "package",
  4761. "path": "System.AppContext/4.3.0",
  4762. "files": [
  4763. "System.AppContext.4.3.0.nupkg.sha512",
  4764. "System.AppContext.nuspec",
  4765. "ThirdPartyNotices.txt",
  4766. "dotnet_library_license.txt",
  4767. "lib/MonoAndroid10/_._",
  4768. "lib/MonoTouch10/_._",
  4769. "lib/net46/System.AppContext.dll",
  4770. "lib/net463/System.AppContext.dll",
  4771. "lib/netcore50/System.AppContext.dll",
  4772. "lib/netstandard1.6/System.AppContext.dll",
  4773. "lib/xamarinios10/_._",
  4774. "lib/xamarinmac20/_._",
  4775. "lib/xamarintvos10/_._",
  4776. "lib/xamarinwatchos10/_._",
  4777. "ref/MonoAndroid10/_._",
  4778. "ref/MonoTouch10/_._",
  4779. "ref/net46/System.AppContext.dll",
  4780. "ref/net463/System.AppContext.dll",
  4781. "ref/netstandard/_._",
  4782. "ref/netstandard1.3/System.AppContext.dll",
  4783. "ref/netstandard1.3/System.AppContext.xml",
  4784. "ref/netstandard1.3/de/System.AppContext.xml",
  4785. "ref/netstandard1.3/es/System.AppContext.xml",
  4786. "ref/netstandard1.3/fr/System.AppContext.xml",
  4787. "ref/netstandard1.3/it/System.AppContext.xml",
  4788. "ref/netstandard1.3/ja/System.AppContext.xml",
  4789. "ref/netstandard1.3/ko/System.AppContext.xml",
  4790. "ref/netstandard1.3/ru/System.AppContext.xml",
  4791. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4792. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4793. "ref/netstandard1.6/System.AppContext.dll",
  4794. "ref/netstandard1.6/System.AppContext.xml",
  4795. "ref/netstandard1.6/de/System.AppContext.xml",
  4796. "ref/netstandard1.6/es/System.AppContext.xml",
  4797. "ref/netstandard1.6/fr/System.AppContext.xml",
  4798. "ref/netstandard1.6/it/System.AppContext.xml",
  4799. "ref/netstandard1.6/ja/System.AppContext.xml",
  4800. "ref/netstandard1.6/ko/System.AppContext.xml",
  4801. "ref/netstandard1.6/ru/System.AppContext.xml",
  4802. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4803. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4804. "ref/xamarinios10/_._",
  4805. "ref/xamarinmac20/_._",
  4806. "ref/xamarintvos10/_._",
  4807. "ref/xamarinwatchos10/_._",
  4808. "runtimes/aot/lib/netcore50/System.AppContext.dll"
  4809. ]
  4810. },
  4811. "System.Buffers/4.3.0": {
  4812. "sha512": "QlPt4bQMECP/uhcNRRS+pQIyV2wJKTNae0xOYabWEn0o5QeR8NGLcp6++ncRafvecygL22uEp9kHP5LQelw5yA==",
  4813. "type": "package",
  4814. "path": "System.Buffers/4.3.0",
  4815. "files": [
  4816. "System.Buffers.4.3.0.nupkg.sha512",
  4817. "System.Buffers.nuspec",
  4818. "ThirdPartyNotices.txt",
  4819. "dotnet_library_license.txt",
  4820. "lib/netstandard1.1/.xml",
  4821. "lib/netstandard1.1/System.Buffers.dll"
  4822. ]
  4823. },
  4824. "System.Collections/4.3.0": {
  4825. "sha512": "dCeWf/8Kw4IXDArDjLqCxuJedAlqWspWOpO0YZ+1pQj0GMmF89Y15PqUWwaTsEKaksidNA8yC8uUVDmfiueTkA==",
  4826. "type": "package",
  4827. "path": "System.Collections/4.3.0",
  4828. "files": [
  4829. "System.Collections.4.3.0.nupkg.sha512",
  4830. "System.Collections.nuspec",
  4831. "ThirdPartyNotices.txt",
  4832. "dotnet_library_license.txt",
  4833. "lib/MonoAndroid10/_._",
  4834. "lib/MonoTouch10/_._",
  4835. "lib/net45/_._",
  4836. "lib/portable-net45+win8+wp8+wpa81/_._",
  4837. "lib/win8/_._",
  4838. "lib/wp80/_._",
  4839. "lib/wpa81/_._",
  4840. "lib/xamarinios10/_._",
  4841. "lib/xamarinmac20/_._",
  4842. "lib/xamarintvos10/_._",
  4843. "lib/xamarinwatchos10/_._",
  4844. "ref/MonoAndroid10/_._",
  4845. "ref/MonoTouch10/_._",
  4846. "ref/net45/_._",
  4847. "ref/netcore50/System.Collections.dll",
  4848. "ref/netcore50/System.Collections.xml",
  4849. "ref/netcore50/de/System.Collections.xml",
  4850. "ref/netcore50/es/System.Collections.xml",
  4851. "ref/netcore50/fr/System.Collections.xml",
  4852. "ref/netcore50/it/System.Collections.xml",
  4853. "ref/netcore50/ja/System.Collections.xml",
  4854. "ref/netcore50/ko/System.Collections.xml",
  4855. "ref/netcore50/ru/System.Collections.xml",
  4856. "ref/netcore50/zh-hans/System.Collections.xml",
  4857. "ref/netcore50/zh-hant/System.Collections.xml",
  4858. "ref/netstandard1.0/System.Collections.dll",
  4859. "ref/netstandard1.0/System.Collections.xml",
  4860. "ref/netstandard1.0/de/System.Collections.xml",
  4861. "ref/netstandard1.0/es/System.Collections.xml",
  4862. "ref/netstandard1.0/fr/System.Collections.xml",
  4863. "ref/netstandard1.0/it/System.Collections.xml",
  4864. "ref/netstandard1.0/ja/System.Collections.xml",
  4865. "ref/netstandard1.0/ko/System.Collections.xml",
  4866. "ref/netstandard1.0/ru/System.Collections.xml",
  4867. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4868. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4869. "ref/netstandard1.3/System.Collections.dll",
  4870. "ref/netstandard1.3/System.Collections.xml",
  4871. "ref/netstandard1.3/de/System.Collections.xml",
  4872. "ref/netstandard1.3/es/System.Collections.xml",
  4873. "ref/netstandard1.3/fr/System.Collections.xml",
  4874. "ref/netstandard1.3/it/System.Collections.xml",
  4875. "ref/netstandard1.3/ja/System.Collections.xml",
  4876. "ref/netstandard1.3/ko/System.Collections.xml",
  4877. "ref/netstandard1.3/ru/System.Collections.xml",
  4878. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4879. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4880. "ref/portable-net45+win8+wp8+wpa81/_._",
  4881. "ref/win8/_._",
  4882. "ref/wp80/_._",
  4883. "ref/wpa81/_._",
  4884. "ref/xamarinios10/_._",
  4885. "ref/xamarinmac20/_._",
  4886. "ref/xamarintvos10/_._",
  4887. "ref/xamarinwatchos10/_._"
  4888. ]
  4889. },
  4890. "System.Collections.Concurrent/4.3.0": {
  4891. "sha512": "W1w8D/B4Nt0S8rwPZJGIAxVvUTGxE69AEW79okWOoYuA04gqJQeHoi+QK7Agpk5FnTFxxVQ30k7HAs9yhRIzFA==",
  4892. "type": "package",
  4893. "path": "System.Collections.Concurrent/4.3.0",
  4894. "files": [
  4895. "System.Collections.Concurrent.4.3.0.nupkg.sha512",
  4896. "System.Collections.Concurrent.nuspec",
  4897. "ThirdPartyNotices.txt",
  4898. "dotnet_library_license.txt",
  4899. "lib/MonoAndroid10/_._",
  4900. "lib/MonoTouch10/_._",
  4901. "lib/net45/_._",
  4902. "lib/netcore50/System.Collections.Concurrent.dll",
  4903. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4904. "lib/portable-net45+win8+wpa81/_._",
  4905. "lib/win8/_._",
  4906. "lib/wpa81/_._",
  4907. "lib/xamarinios10/_._",
  4908. "lib/xamarinmac20/_._",
  4909. "lib/xamarintvos10/_._",
  4910. "lib/xamarinwatchos10/_._",
  4911. "ref/MonoAndroid10/_._",
  4912. "ref/MonoTouch10/_._",
  4913. "ref/net45/_._",
  4914. "ref/netcore50/System.Collections.Concurrent.dll",
  4915. "ref/netcore50/System.Collections.Concurrent.xml",
  4916. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4917. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4918. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4919. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4920. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4921. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4922. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4923. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4924. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4925. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4926. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4927. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4928. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4929. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4930. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4931. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4932. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4933. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4934. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4935. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4936. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4937. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4938. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4939. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4940. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4941. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4942. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4943. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4944. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  4945. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  4946. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  4947. "ref/portable-net45+win8+wpa81/_._",
  4948. "ref/win8/_._",
  4949. "ref/wpa81/_._",
  4950. "ref/xamarinios10/_._",
  4951. "ref/xamarinmac20/_._",
  4952. "ref/xamarintvos10/_._",
  4953. "ref/xamarinwatchos10/_._"
  4954. ]
  4955. },
  4956. "System.Collections.Immutable/1.3.0": {
  4957. "sha512": "zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==",
  4958. "type": "package",
  4959. "path": "System.Collections.Immutable/1.3.0",
  4960. "files": [
  4961. "System.Collections.Immutable.1.3.0.nupkg.sha512",
  4962. "System.Collections.Immutable.nuspec",
  4963. "ThirdPartyNotices.txt",
  4964. "dotnet_library_license.txt",
  4965. "lib/netstandard1.0/System.Collections.Immutable.dll",
  4966. "lib/netstandard1.0/System.Collections.Immutable.xml",
  4967. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  4968. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml"
  4969. ]
  4970. },
  4971. "System.Collections.NonGeneric/4.3.0": {
  4972. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  4973. "type": "package",
  4974. "path": "System.Collections.NonGeneric/4.3.0",
  4975. "files": [
  4976. "System.Collections.NonGeneric.4.3.0.nupkg.sha512",
  4977. "System.Collections.NonGeneric.nuspec",
  4978. "ThirdPartyNotices.txt",
  4979. "dotnet_library_license.txt",
  4980. "lib/MonoAndroid10/_._",
  4981. "lib/MonoTouch10/_._",
  4982. "lib/net46/System.Collections.NonGeneric.dll",
  4983. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  4984. "lib/xamarinios10/_._",
  4985. "lib/xamarinmac20/_._",
  4986. "lib/xamarintvos10/_._",
  4987. "lib/xamarinwatchos10/_._",
  4988. "ref/MonoAndroid10/_._",
  4989. "ref/MonoTouch10/_._",
  4990. "ref/net46/System.Collections.NonGeneric.dll",
  4991. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  4992. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  4993. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  4994. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  4995. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  4996. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  4997. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  4998. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  4999. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5000. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5001. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5002. "ref/xamarinios10/_._",
  5003. "ref/xamarinmac20/_._",
  5004. "ref/xamarintvos10/_._",
  5005. "ref/xamarinwatchos10/_._"
  5006. ]
  5007. },
  5008. "System.Collections.Specialized/4.0.1": {
  5009. "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
  5010. "type": "package",
  5011. "path": "System.Collections.Specialized/4.0.1",
  5012. "files": [
  5013. "System.Collections.Specialized.4.0.1.nupkg.sha512",
  5014. "System.Collections.Specialized.nuspec",
  5015. "ThirdPartyNotices.txt",
  5016. "dotnet_library_license.txt",
  5017. "lib/MonoAndroid10/_._",
  5018. "lib/MonoTouch10/_._",
  5019. "lib/net46/System.Collections.Specialized.dll",
  5020. "lib/netstandard1.3/System.Collections.Specialized.dll",
  5021. "lib/xamarinios10/_._",
  5022. "lib/xamarinmac20/_._",
  5023. "lib/xamarintvos10/_._",
  5024. "lib/xamarinwatchos10/_._",
  5025. "ref/MonoAndroid10/_._",
  5026. "ref/MonoTouch10/_._",
  5027. "ref/net46/System.Collections.Specialized.dll",
  5028. "ref/netstandard1.3/System.Collections.Specialized.dll",
  5029. "ref/netstandard1.3/System.Collections.Specialized.xml",
  5030. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  5031. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  5032. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  5033. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  5034. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  5035. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  5036. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  5037. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  5038. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  5039. "ref/xamarinios10/_._",
  5040. "ref/xamarinmac20/_._",
  5041. "ref/xamarintvos10/_._",
  5042. "ref/xamarinwatchos10/_._"
  5043. ]
  5044. },
  5045. "System.ComponentModel/4.3.0": {
  5046. "sha512": "Zglf50lZbM1GhgQdi/M315CW83GBZ+InRWeZwsNtO3djtszSPp0Xzf78P3vtD7GkE440I+04JKfgNdi9mlnimQ==",
  5047. "type": "package",
  5048. "path": "System.ComponentModel/4.3.0",
  5049. "files": [
  5050. "System.ComponentModel.4.3.0.nupkg.sha512",
  5051. "System.ComponentModel.nuspec",
  5052. "ThirdPartyNotices.txt",
  5053. "dotnet_library_license.txt",
  5054. "lib/MonoAndroid10/_._",
  5055. "lib/MonoTouch10/_._",
  5056. "lib/net45/_._",
  5057. "lib/netcore50/System.ComponentModel.dll",
  5058. "lib/netstandard1.3/System.ComponentModel.dll",
  5059. "lib/portable-net45+win8+wp8+wpa81/_._",
  5060. "lib/win8/_._",
  5061. "lib/wp80/_._",
  5062. "lib/wpa81/_._",
  5063. "lib/xamarinios10/_._",
  5064. "lib/xamarinmac20/_._",
  5065. "lib/xamarintvos10/_._",
  5066. "lib/xamarinwatchos10/_._",
  5067. "ref/MonoAndroid10/_._",
  5068. "ref/MonoTouch10/_._",
  5069. "ref/net45/_._",
  5070. "ref/netcore50/System.ComponentModel.dll",
  5071. "ref/netcore50/System.ComponentModel.xml",
  5072. "ref/netcore50/de/System.ComponentModel.xml",
  5073. "ref/netcore50/es/System.ComponentModel.xml",
  5074. "ref/netcore50/fr/System.ComponentModel.xml",
  5075. "ref/netcore50/it/System.ComponentModel.xml",
  5076. "ref/netcore50/ja/System.ComponentModel.xml",
  5077. "ref/netcore50/ko/System.ComponentModel.xml",
  5078. "ref/netcore50/ru/System.ComponentModel.xml",
  5079. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5080. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5081. "ref/netstandard1.0/System.ComponentModel.dll",
  5082. "ref/netstandard1.0/System.ComponentModel.xml",
  5083. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5084. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5085. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5086. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5087. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5088. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5089. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5090. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5091. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5092. "ref/portable-net45+win8+wp8+wpa81/_._",
  5093. "ref/win8/_._",
  5094. "ref/wp80/_._",
  5095. "ref/wpa81/_._",
  5096. "ref/xamarinios10/_._",
  5097. "ref/xamarinmac20/_._",
  5098. "ref/xamarintvos10/_._",
  5099. "ref/xamarinwatchos10/_._"
  5100. ]
  5101. },
  5102. "System.ComponentModel.Annotations/4.3.0": {
  5103. "sha512": "SY2RLItHt43rd8J9D8M8e8NM4m+9WLN2uUd9G0n1I4hj/7w+v3pzK6ZBjexlG1/2xvLKQsqir3UGVSyBTXMLWA==",
  5104. "type": "package",
  5105. "path": "System.ComponentModel.Annotations/4.3.0",
  5106. "files": [
  5107. "System.ComponentModel.Annotations.4.3.0.nupkg.sha512",
  5108. "System.ComponentModel.Annotations.nuspec",
  5109. "ThirdPartyNotices.txt",
  5110. "dotnet_library_license.txt",
  5111. "lib/MonoAndroid10/_._",
  5112. "lib/MonoTouch10/_._",
  5113. "lib/net45/_._",
  5114. "lib/net461/System.ComponentModel.Annotations.dll",
  5115. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5116. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5117. "lib/portable-net45+win8/_._",
  5118. "lib/win8/_._",
  5119. "lib/xamarinios10/_._",
  5120. "lib/xamarinmac20/_._",
  5121. "lib/xamarintvos10/_._",
  5122. "lib/xamarinwatchos10/_._",
  5123. "ref/MonoAndroid10/_._",
  5124. "ref/MonoTouch10/_._",
  5125. "ref/net45/_._",
  5126. "ref/net461/System.ComponentModel.Annotations.dll",
  5127. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5128. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5129. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5130. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5131. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5132. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5133. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5134. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5135. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5136. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5137. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5138. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5139. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5140. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5141. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5142. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5143. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5144. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5145. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5146. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5147. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5148. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5149. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5150. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5151. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5152. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5153. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5154. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5155. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5156. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5157. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5158. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5159. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5160. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5161. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5162. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5163. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5164. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5165. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5166. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5167. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5168. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5169. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5170. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5171. "ref/portable-net45+win8/_._",
  5172. "ref/win8/_._",
  5173. "ref/xamarinios10/_._",
  5174. "ref/xamarinmac20/_._",
  5175. "ref/xamarintvos10/_._",
  5176. "ref/xamarinwatchos10/_._"
  5177. ]
  5178. },
  5179. "System.ComponentModel.Primitives/4.1.0": {
  5180. "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
  5181. "type": "package",
  5182. "path": "System.ComponentModel.Primitives/4.1.0",
  5183. "files": [
  5184. "System.ComponentModel.Primitives.4.1.0.nupkg.sha512",
  5185. "System.ComponentModel.Primitives.nuspec",
  5186. "ThirdPartyNotices.txt",
  5187. "dotnet_library_license.txt",
  5188. "lib/MonoAndroid10/_._",
  5189. "lib/MonoTouch10/_._",
  5190. "lib/net45/System.ComponentModel.Primitives.dll",
  5191. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5192. "lib/xamarinios10/_._",
  5193. "lib/xamarinmac20/_._",
  5194. "lib/xamarintvos10/_._",
  5195. "lib/xamarinwatchos10/_._",
  5196. "ref/MonoAndroid10/_._",
  5197. "ref/MonoTouch10/_._",
  5198. "ref/net45/System.ComponentModel.Primitives.dll",
  5199. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5200. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5201. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5202. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5203. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5204. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5205. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5206. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5207. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5208. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5209. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5210. "ref/xamarinios10/_._",
  5211. "ref/xamarinmac20/_._",
  5212. "ref/xamarintvos10/_._",
  5213. "ref/xamarinwatchos10/_._"
  5214. ]
  5215. },
  5216. "System.ComponentModel.TypeConverter/4.1.0": {
  5217. "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
  5218. "type": "package",
  5219. "path": "System.ComponentModel.TypeConverter/4.1.0",
  5220. "files": [
  5221. "System.ComponentModel.TypeConverter.4.1.0.nupkg.sha512",
  5222. "System.ComponentModel.TypeConverter.nuspec",
  5223. "ThirdPartyNotices.txt",
  5224. "dotnet_library_license.txt",
  5225. "lib/MonoAndroid10/_._",
  5226. "lib/MonoTouch10/_._",
  5227. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5228. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5229. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5230. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5231. "lib/xamarinios10/_._",
  5232. "lib/xamarinmac20/_._",
  5233. "lib/xamarintvos10/_._",
  5234. "lib/xamarinwatchos10/_._",
  5235. "ref/MonoAndroid10/_._",
  5236. "ref/MonoTouch10/_._",
  5237. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5238. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5239. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5240. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5241. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5242. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5243. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5244. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5245. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5246. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5247. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5248. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5249. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5250. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5251. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5252. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5253. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5254. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5255. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5256. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5257. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5258. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5259. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5260. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5261. "ref/xamarinios10/_._",
  5262. "ref/xamarinmac20/_._",
  5263. "ref/xamarintvos10/_._",
  5264. "ref/xamarinwatchos10/_._"
  5265. ]
  5266. },
  5267. "System.Console/4.3.0": {
  5268. "sha512": "Ik/kfdgP1dA+xJOCUMqkrB+m7PmzYvN5w2HedSaLGJpncrfcFEuTois34LJPSnF8oaIsiUA0VxNODUd7EJ3qKQ==",
  5269. "type": "package",
  5270. "path": "System.Console/4.3.0",
  5271. "files": [
  5272. "System.Console.4.3.0.nupkg.sha512",
  5273. "System.Console.nuspec",
  5274. "ThirdPartyNotices.txt",
  5275. "dotnet_library_license.txt",
  5276. "lib/MonoAndroid10/_._",
  5277. "lib/MonoTouch10/_._",
  5278. "lib/net46/System.Console.dll",
  5279. "lib/xamarinios10/_._",
  5280. "lib/xamarinmac20/_._",
  5281. "lib/xamarintvos10/_._",
  5282. "lib/xamarinwatchos10/_._",
  5283. "ref/MonoAndroid10/_._",
  5284. "ref/MonoTouch10/_._",
  5285. "ref/net46/System.Console.dll",
  5286. "ref/netstandard1.3/System.Console.dll",
  5287. "ref/netstandard1.3/System.Console.xml",
  5288. "ref/netstandard1.3/de/System.Console.xml",
  5289. "ref/netstandard1.3/es/System.Console.xml",
  5290. "ref/netstandard1.3/fr/System.Console.xml",
  5291. "ref/netstandard1.3/it/System.Console.xml",
  5292. "ref/netstandard1.3/ja/System.Console.xml",
  5293. "ref/netstandard1.3/ko/System.Console.xml",
  5294. "ref/netstandard1.3/ru/System.Console.xml",
  5295. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5296. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5297. "ref/xamarinios10/_._",
  5298. "ref/xamarinmac20/_._",
  5299. "ref/xamarintvos10/_._",
  5300. "ref/xamarinwatchos10/_._"
  5301. ]
  5302. },
  5303. "System.Data.Common/4.3.0": {
  5304. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  5305. "type": "package",
  5306. "path": "System.Data.Common/4.3.0",
  5307. "files": [
  5308. "System.Data.Common.4.3.0.nupkg.sha512",
  5309. "System.Data.Common.nuspec",
  5310. "ThirdPartyNotices.txt",
  5311. "dotnet_library_license.txt",
  5312. "lib/MonoAndroid10/_._",
  5313. "lib/MonoTouch10/_._",
  5314. "lib/net451/System.Data.Common.dll",
  5315. "lib/netstandard1.2/System.Data.Common.dll",
  5316. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5317. "lib/xamarinios10/_._",
  5318. "lib/xamarinmac20/_._",
  5319. "lib/xamarintvos10/_._",
  5320. "lib/xamarinwatchos10/_._",
  5321. "ref/MonoAndroid10/_._",
  5322. "ref/MonoTouch10/_._",
  5323. "ref/net451/System.Data.Common.dll",
  5324. "ref/netstandard1.2/System.Data.Common.dll",
  5325. "ref/netstandard1.2/System.Data.Common.xml",
  5326. "ref/netstandard1.2/de/System.Data.Common.xml",
  5327. "ref/netstandard1.2/es/System.Data.Common.xml",
  5328. "ref/netstandard1.2/fr/System.Data.Common.xml",
  5329. "ref/netstandard1.2/it/System.Data.Common.xml",
  5330. "ref/netstandard1.2/ja/System.Data.Common.xml",
  5331. "ref/netstandard1.2/ko/System.Data.Common.xml",
  5332. "ref/netstandard1.2/ru/System.Data.Common.xml",
  5333. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  5334. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  5335. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5336. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  5337. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  5338. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  5339. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  5340. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  5341. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  5342. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  5343. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  5344. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  5345. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  5346. "ref/xamarinios10/_._",
  5347. "ref/xamarinmac20/_._",
  5348. "ref/xamarintvos10/_._",
  5349. "ref/xamarinwatchos10/_._"
  5350. ]
  5351. },
  5352. "System.Diagnostics.Contracts/4.3.0": {
  5353. "sha512": "pE7RRONH8d93rbABHPVw4C1tGwB9CtIYgLUPT9sMih/oHSIlP9XvtTlpkGBHK0TFwqzOaZky1wXCNlLcDDnyJw==",
  5354. "type": "package",
  5355. "path": "System.Diagnostics.Contracts/4.3.0",
  5356. "files": [
  5357. "System.Diagnostics.Contracts.4.3.0.nupkg.sha512",
  5358. "System.Diagnostics.Contracts.nuspec",
  5359. "ThirdPartyNotices.txt",
  5360. "dotnet_library_license.txt",
  5361. "lib/MonoAndroid10/_._",
  5362. "lib/MonoTouch10/_._",
  5363. "lib/net45/_._",
  5364. "lib/netcore50/System.Diagnostics.Contracts.dll",
  5365. "lib/netstandard1.0/System.Diagnostics.Contracts.dll",
  5366. "lib/portable-net45+win8+wp8+wpa81/_._",
  5367. "lib/win8/_._",
  5368. "lib/wp80/_._",
  5369. "lib/wpa81/_._",
  5370. "lib/xamarinios10/_._",
  5371. "lib/xamarinmac20/_._",
  5372. "lib/xamarintvos10/_._",
  5373. "lib/xamarinwatchos10/_._",
  5374. "ref/MonoAndroid10/_._",
  5375. "ref/MonoTouch10/_._",
  5376. "ref/net45/_._",
  5377. "ref/netcore50/System.Diagnostics.Contracts.dll",
  5378. "ref/netcore50/System.Diagnostics.Contracts.xml",
  5379. "ref/netcore50/de/System.Diagnostics.Contracts.xml",
  5380. "ref/netcore50/es/System.Diagnostics.Contracts.xml",
  5381. "ref/netcore50/fr/System.Diagnostics.Contracts.xml",
  5382. "ref/netcore50/it/System.Diagnostics.Contracts.xml",
  5383. "ref/netcore50/ja/System.Diagnostics.Contracts.xml",
  5384. "ref/netcore50/ko/System.Diagnostics.Contracts.xml",
  5385. "ref/netcore50/ru/System.Diagnostics.Contracts.xml",
  5386. "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml",
  5387. "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml",
  5388. "ref/netstandard1.0/System.Diagnostics.Contracts.dll",
  5389. "ref/netstandard1.0/System.Diagnostics.Contracts.xml",
  5390. "ref/netstandard1.0/de/System.Diagnostics.Contracts.xml",
  5391. "ref/netstandard1.0/es/System.Diagnostics.Contracts.xml",
  5392. "ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml",
  5393. "ref/netstandard1.0/it/System.Diagnostics.Contracts.xml",
  5394. "ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml",
  5395. "ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml",
  5396. "ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml",
  5397. "ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml",
  5398. "ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml",
  5399. "ref/portable-net45+win8+wp8+wpa81/_._",
  5400. "ref/win8/_._",
  5401. "ref/wp80/_._",
  5402. "ref/wpa81/_._",
  5403. "ref/xamarinios10/_._",
  5404. "ref/xamarinmac20/_._",
  5405. "ref/xamarintvos10/_._",
  5406. "ref/xamarinwatchos10/_._",
  5407. "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll"
  5408. ]
  5409. },
  5410. "System.Diagnostics.Debug/4.3.0": {
  5411. "sha512": "wtg85zBbPrOo5lkGsdSlSXfy9ebeKW/3kcg6m3pA2PZaeib8gkSssMRCwqSG16hV+nAMoRZwbqzxFZT7LW7NXg==",
  5412. "type": "package",
  5413. "path": "System.Diagnostics.Debug/4.3.0",
  5414. "files": [
  5415. "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
  5416. "System.Diagnostics.Debug.nuspec",
  5417. "ThirdPartyNotices.txt",
  5418. "dotnet_library_license.txt",
  5419. "lib/MonoAndroid10/_._",
  5420. "lib/MonoTouch10/_._",
  5421. "lib/net45/_._",
  5422. "lib/portable-net45+win8+wp8+wpa81/_._",
  5423. "lib/win8/_._",
  5424. "lib/wp80/_._",
  5425. "lib/wpa81/_._",
  5426. "lib/xamarinios10/_._",
  5427. "lib/xamarinmac20/_._",
  5428. "lib/xamarintvos10/_._",
  5429. "lib/xamarinwatchos10/_._",
  5430. "ref/MonoAndroid10/_._",
  5431. "ref/MonoTouch10/_._",
  5432. "ref/net45/_._",
  5433. "ref/netcore50/System.Diagnostics.Debug.dll",
  5434. "ref/netcore50/System.Diagnostics.Debug.xml",
  5435. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5436. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5437. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5438. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5439. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5440. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5441. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5442. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5443. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5444. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5445. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5446. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5447. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5448. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5449. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5450. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5451. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5452. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5453. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5454. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5455. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5456. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5457. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5458. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5459. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5460. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5461. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5462. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5463. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5464. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5465. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5466. "ref/portable-net45+win8+wp8+wpa81/_._",
  5467. "ref/win8/_._",
  5468. "ref/wp80/_._",
  5469. "ref/wpa81/_._",
  5470. "ref/xamarinios10/_._",
  5471. "ref/xamarinmac20/_._",
  5472. "ref/xamarintvos10/_._",
  5473. "ref/xamarinwatchos10/_._"
  5474. ]
  5475. },
  5476. "System.Diagnostics.DiagnosticSource/4.3.0": {
  5477. "sha512": "S7z/ARtRxDygqv8f9VlC42M4eqCninL29ijZY0SyU/5r25X/H1vzC14P19DDEArKempVnjSJlX2XR5wGrWzKOw==",
  5478. "type": "package",
  5479. "path": "System.Diagnostics.DiagnosticSource/4.3.0",
  5480. "files": [
  5481. "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
  5482. "System.Diagnostics.DiagnosticSource.nuspec",
  5483. "ThirdPartyNotices.txt",
  5484. "dotnet_library_license.txt",
  5485. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5486. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5487. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5488. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5489. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5490. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5491. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5492. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml"
  5493. ]
  5494. },
  5495. "System.Diagnostics.FileVersionInfo/4.0.0": {
  5496. "sha512": "y3jHY9nmSiGasMfg+EtUoTw/i7iFPvJeGzEwffBThBjwgF+dz34BUSfa/qp4LyR0YqqWmt7CqP+FbomGeLnPNw==",
  5497. "type": "package",
  5498. "path": "System.Diagnostics.FileVersionInfo/4.0.0",
  5499. "files": [
  5500. "System.Diagnostics.FileVersionInfo.4.0.0.nupkg.sha512",
  5501. "System.Diagnostics.FileVersionInfo.nuspec",
  5502. "ThirdPartyNotices.txt",
  5503. "dotnet_library_license.txt",
  5504. "lib/MonoAndroid10/_._",
  5505. "lib/MonoTouch10/_._",
  5506. "lib/net46/System.Diagnostics.FileVersionInfo.dll",
  5507. "lib/xamarinios10/_._",
  5508. "lib/xamarinmac20/_._",
  5509. "lib/xamarintvos10/_._",
  5510. "lib/xamarinwatchos10/_._",
  5511. "ref/MonoAndroid10/_._",
  5512. "ref/MonoTouch10/_._",
  5513. "ref/net46/System.Diagnostics.FileVersionInfo.dll",
  5514. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  5515. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml",
  5516. "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml",
  5517. "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml",
  5518. "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml",
  5519. "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml",
  5520. "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml",
  5521. "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml",
  5522. "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml",
  5523. "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml",
  5524. "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml",
  5525. "ref/xamarinios10/_._",
  5526. "ref/xamarinmac20/_._",
  5527. "ref/xamarintvos10/_._",
  5528. "ref/xamarinwatchos10/_._",
  5529. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  5530. "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll",
  5531. "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll",
  5532. "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll"
  5533. ]
  5534. },
  5535. "System.Diagnostics.Process/4.1.0": {
  5536. "sha512": "sa4NxaGiD/iRM9m667nspIUMLT9nyoWkmAhYBlC4USnarm48cOOi13LOq7b127CeWZEHv0IkBt79g6r6l28LiA==",
  5537. "type": "package",
  5538. "path": "System.Diagnostics.Process/4.1.0",
  5539. "files": [
  5540. "System.Diagnostics.Process.4.1.0.nupkg.sha512",
  5541. "System.Diagnostics.Process.nuspec",
  5542. "ThirdPartyNotices.txt",
  5543. "dotnet_library_license.txt",
  5544. "lib/MonoAndroid10/_._",
  5545. "lib/MonoTouch10/_._",
  5546. "lib/net46/System.Diagnostics.Process.dll",
  5547. "lib/net461/System.Diagnostics.Process.dll",
  5548. "lib/xamarinios10/_._",
  5549. "lib/xamarinmac20/_._",
  5550. "lib/xamarintvos10/_._",
  5551. "lib/xamarinwatchos10/_._",
  5552. "ref/MonoAndroid10/_._",
  5553. "ref/MonoTouch10/_._",
  5554. "ref/net46/System.Diagnostics.Process.dll",
  5555. "ref/net461/System.Diagnostics.Process.dll",
  5556. "ref/netstandard1.3/System.Diagnostics.Process.dll",
  5557. "ref/netstandard1.3/System.Diagnostics.Process.xml",
  5558. "ref/netstandard1.3/de/System.Diagnostics.Process.xml",
  5559. "ref/netstandard1.3/es/System.Diagnostics.Process.xml",
  5560. "ref/netstandard1.3/fr/System.Diagnostics.Process.xml",
  5561. "ref/netstandard1.3/it/System.Diagnostics.Process.xml",
  5562. "ref/netstandard1.3/ja/System.Diagnostics.Process.xml",
  5563. "ref/netstandard1.3/ko/System.Diagnostics.Process.xml",
  5564. "ref/netstandard1.3/ru/System.Diagnostics.Process.xml",
  5565. "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml",
  5566. "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml",
  5567. "ref/netstandard1.4/System.Diagnostics.Process.dll",
  5568. "ref/netstandard1.4/System.Diagnostics.Process.xml",
  5569. "ref/netstandard1.4/de/System.Diagnostics.Process.xml",
  5570. "ref/netstandard1.4/es/System.Diagnostics.Process.xml",
  5571. "ref/netstandard1.4/fr/System.Diagnostics.Process.xml",
  5572. "ref/netstandard1.4/it/System.Diagnostics.Process.xml",
  5573. "ref/netstandard1.4/ja/System.Diagnostics.Process.xml",
  5574. "ref/netstandard1.4/ko/System.Diagnostics.Process.xml",
  5575. "ref/netstandard1.4/ru/System.Diagnostics.Process.xml",
  5576. "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml",
  5577. "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml",
  5578. "ref/xamarinios10/_._",
  5579. "ref/xamarinmac20/_._",
  5580. "ref/xamarintvos10/_._",
  5581. "ref/xamarinwatchos10/_._",
  5582. "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll",
  5583. "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll",
  5584. "runtimes/win/lib/net46/System.Diagnostics.Process.dll",
  5585. "runtimes/win/lib/net461/System.Diagnostics.Process.dll",
  5586. "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll",
  5587. "runtimes/win7/lib/netcore50/_._"
  5588. ]
  5589. },
  5590. "System.Diagnostics.StackTrace/4.0.1": {
  5591. "sha512": "YPjCe8NYK/J+jiC5lAlgXbnoIQW2W1xIMTfSRq2orVkskj3njPNuHtHnu5Q65AshHK63gLkWlbq+UbtaGzDmaQ==",
  5592. "type": "package",
  5593. "path": "System.Diagnostics.StackTrace/4.0.1",
  5594. "files": [
  5595. "System.Diagnostics.StackTrace.4.0.1.nupkg.sha512",
  5596. "System.Diagnostics.StackTrace.nuspec",
  5597. "ThirdPartyNotices.txt",
  5598. "dotnet_library_license.txt",
  5599. "lib/MonoAndroid10/_._",
  5600. "lib/MonoTouch10/_._",
  5601. "lib/net46/System.Diagnostics.StackTrace.dll",
  5602. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll",
  5603. "lib/xamarinios10/_._",
  5604. "lib/xamarinmac20/_._",
  5605. "lib/xamarintvos10/_._",
  5606. "lib/xamarinwatchos10/_._",
  5607. "ref/MonoAndroid10/_._",
  5608. "ref/MonoTouch10/_._",
  5609. "ref/net46/System.Diagnostics.StackTrace.dll",
  5610. "ref/netstandard1.3/System.Diagnostics.StackTrace.dll",
  5611. "ref/netstandard1.3/System.Diagnostics.StackTrace.xml",
  5612. "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml",
  5613. "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml",
  5614. "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml",
  5615. "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml",
  5616. "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml",
  5617. "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml",
  5618. "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml",
  5619. "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml",
  5620. "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml",
  5621. "ref/xamarinios10/_._",
  5622. "ref/xamarinmac20/_._",
  5623. "ref/xamarintvos10/_._",
  5624. "ref/xamarinwatchos10/_._",
  5625. "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll"
  5626. ]
  5627. },
  5628. "System.Diagnostics.Tools/4.3.0": {
  5629. "sha512": "czwL60JAaLVGvtNAKCzK718b+wUgw7/8vHiZ1rrtEjBXsODEG4S9Qoevu5DMpUHlZn7+pSsw5xk/HKXxE+oDoQ==",
  5630. "type": "package",
  5631. "path": "System.Diagnostics.Tools/4.3.0",
  5632. "files": [
  5633. "System.Diagnostics.Tools.4.3.0.nupkg.sha512",
  5634. "System.Diagnostics.Tools.nuspec",
  5635. "ThirdPartyNotices.txt",
  5636. "dotnet_library_license.txt",
  5637. "lib/MonoAndroid10/_._",
  5638. "lib/MonoTouch10/_._",
  5639. "lib/net45/_._",
  5640. "lib/portable-net45+win8+wp8+wpa81/_._",
  5641. "lib/win8/_._",
  5642. "lib/wp80/_._",
  5643. "lib/wpa81/_._",
  5644. "lib/xamarinios10/_._",
  5645. "lib/xamarinmac20/_._",
  5646. "lib/xamarintvos10/_._",
  5647. "lib/xamarinwatchos10/_._",
  5648. "ref/MonoAndroid10/_._",
  5649. "ref/MonoTouch10/_._",
  5650. "ref/net45/_._",
  5651. "ref/netcore50/System.Diagnostics.Tools.dll",
  5652. "ref/netcore50/System.Diagnostics.Tools.xml",
  5653. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5654. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5655. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5656. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5657. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5658. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5659. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5660. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5661. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5662. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5663. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5664. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5665. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5666. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5667. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5668. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5669. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5670. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5671. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5672. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5673. "ref/portable-net45+win8+wp8+wpa81/_._",
  5674. "ref/win8/_._",
  5675. "ref/wp80/_._",
  5676. "ref/wpa81/_._",
  5677. "ref/xamarinios10/_._",
  5678. "ref/xamarinmac20/_._",
  5679. "ref/xamarintvos10/_._",
  5680. "ref/xamarinwatchos10/_._"
  5681. ]
  5682. },
  5683. "System.Diagnostics.Tracing/4.3.0": {
  5684. "sha512": "i7hxQeTRMSYS9CMuWyldbzRkVpIy0VOZVwGkzuhF4NK3y3xd6zr97o0+q1VJ7xDNSa/h1ytwP7N2hd82IqRmLQ==",
  5685. "type": "package",
  5686. "path": "System.Diagnostics.Tracing/4.3.0",
  5687. "files": [
  5688. "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
  5689. "System.Diagnostics.Tracing.nuspec",
  5690. "ThirdPartyNotices.txt",
  5691. "dotnet_library_license.txt",
  5692. "lib/MonoAndroid10/_._",
  5693. "lib/MonoTouch10/_._",
  5694. "lib/net45/_._",
  5695. "lib/net462/System.Diagnostics.Tracing.dll",
  5696. "lib/portable-net45+win8+wpa81/_._",
  5697. "lib/win8/_._",
  5698. "lib/wpa81/_._",
  5699. "lib/xamarinios10/_._",
  5700. "lib/xamarinmac20/_._",
  5701. "lib/xamarintvos10/_._",
  5702. "lib/xamarinwatchos10/_._",
  5703. "ref/MonoAndroid10/_._",
  5704. "ref/MonoTouch10/_._",
  5705. "ref/net45/_._",
  5706. "ref/net462/System.Diagnostics.Tracing.dll",
  5707. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5708. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5709. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5710. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5711. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5712. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5713. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5714. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5715. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5716. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5717. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5718. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5719. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5720. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5721. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5722. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5723. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5724. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5725. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5726. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5727. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5728. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5729. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5730. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5731. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5732. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5733. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5734. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5735. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5736. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5737. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5738. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5739. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5740. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5741. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5742. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5743. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5744. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5745. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5746. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5747. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5748. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5749. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5750. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5751. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5752. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5753. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5754. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5755. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5756. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5757. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5758. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5759. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5760. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5761. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5762. "ref/portable-net45+win8+wpa81/_._",
  5763. "ref/win8/_._",
  5764. "ref/wpa81/_._",
  5765. "ref/xamarinios10/_._",
  5766. "ref/xamarinmac20/_._",
  5767. "ref/xamarintvos10/_._",
  5768. "ref/xamarinwatchos10/_._"
  5769. ]
  5770. },
  5771. "System.Dynamic.Runtime/4.3.0": {
  5772. "sha512": "6I9mCWqeCgjg661yDDuSmGQ9Ro5LK6VTLDvRWWBmOuyVnN8F+2p9Ka1MnkD6p5tZbzbf50Bhp2TLfl5mix+NXw==",
  5773. "type": "package",
  5774. "path": "System.Dynamic.Runtime/4.3.0",
  5775. "files": [
  5776. "System.Dynamic.Runtime.4.3.0.nupkg.sha512",
  5777. "System.Dynamic.Runtime.nuspec",
  5778. "ThirdPartyNotices.txt",
  5779. "dotnet_library_license.txt",
  5780. "lib/MonoAndroid10/_._",
  5781. "lib/MonoTouch10/_._",
  5782. "lib/net45/_._",
  5783. "lib/netcore50/System.Dynamic.Runtime.dll",
  5784. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  5785. "lib/portable-net45+win8+wp8+wpa81/_._",
  5786. "lib/win8/_._",
  5787. "lib/wp80/_._",
  5788. "lib/wpa81/_._",
  5789. "lib/xamarinios10/_._",
  5790. "lib/xamarinmac20/_._",
  5791. "lib/xamarintvos10/_._",
  5792. "lib/xamarinwatchos10/_._",
  5793. "ref/MonoAndroid10/_._",
  5794. "ref/MonoTouch10/_._",
  5795. "ref/net45/_._",
  5796. "ref/netcore50/System.Dynamic.Runtime.dll",
  5797. "ref/netcore50/System.Dynamic.Runtime.xml",
  5798. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  5799. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  5800. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  5801. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  5802. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  5803. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  5804. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  5805. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  5806. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  5807. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  5808. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  5809. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  5810. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  5811. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  5812. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  5813. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  5814. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  5815. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  5816. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  5817. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  5818. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  5819. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  5820. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  5821. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  5822. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  5823. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  5824. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  5825. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  5826. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  5827. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  5828. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  5829. "ref/portable-net45+win8+wp8+wpa81/_._",
  5830. "ref/win8/_._",
  5831. "ref/wp80/_._",
  5832. "ref/wpa81/_._",
  5833. "ref/xamarinios10/_._",
  5834. "ref/xamarinmac20/_._",
  5835. "ref/xamarintvos10/_._",
  5836. "ref/xamarinwatchos10/_._",
  5837. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll"
  5838. ]
  5839. },
  5840. "System.Globalization/4.3.0": {
  5841. "sha512": "ySK9WB3u1ONxQ82Q6cE7O3IfboPZ/QlyKID75oOC66GKfyfvEyZvaZpqzLTy4n7a9SUHwz90pfflJ9HFRM8GZQ==",
  5842. "type": "package",
  5843. "path": "System.Globalization/4.3.0",
  5844. "files": [
  5845. "System.Globalization.4.3.0.nupkg.sha512",
  5846. "System.Globalization.nuspec",
  5847. "ThirdPartyNotices.txt",
  5848. "dotnet_library_license.txt",
  5849. "lib/MonoAndroid10/_._",
  5850. "lib/MonoTouch10/_._",
  5851. "lib/net45/_._",
  5852. "lib/portable-net45+win8+wp8+wpa81/_._",
  5853. "lib/win8/_._",
  5854. "lib/wp80/_._",
  5855. "lib/wpa81/_._",
  5856. "lib/xamarinios10/_._",
  5857. "lib/xamarinmac20/_._",
  5858. "lib/xamarintvos10/_._",
  5859. "lib/xamarinwatchos10/_._",
  5860. "ref/MonoAndroid10/_._",
  5861. "ref/MonoTouch10/_._",
  5862. "ref/net45/_._",
  5863. "ref/netcore50/System.Globalization.dll",
  5864. "ref/netcore50/System.Globalization.xml",
  5865. "ref/netcore50/de/System.Globalization.xml",
  5866. "ref/netcore50/es/System.Globalization.xml",
  5867. "ref/netcore50/fr/System.Globalization.xml",
  5868. "ref/netcore50/it/System.Globalization.xml",
  5869. "ref/netcore50/ja/System.Globalization.xml",
  5870. "ref/netcore50/ko/System.Globalization.xml",
  5871. "ref/netcore50/ru/System.Globalization.xml",
  5872. "ref/netcore50/zh-hans/System.Globalization.xml",
  5873. "ref/netcore50/zh-hant/System.Globalization.xml",
  5874. "ref/netstandard1.0/System.Globalization.dll",
  5875. "ref/netstandard1.0/System.Globalization.xml",
  5876. "ref/netstandard1.0/de/System.Globalization.xml",
  5877. "ref/netstandard1.0/es/System.Globalization.xml",
  5878. "ref/netstandard1.0/fr/System.Globalization.xml",
  5879. "ref/netstandard1.0/it/System.Globalization.xml",
  5880. "ref/netstandard1.0/ja/System.Globalization.xml",
  5881. "ref/netstandard1.0/ko/System.Globalization.xml",
  5882. "ref/netstandard1.0/ru/System.Globalization.xml",
  5883. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5884. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5885. "ref/netstandard1.3/System.Globalization.dll",
  5886. "ref/netstandard1.3/System.Globalization.xml",
  5887. "ref/netstandard1.3/de/System.Globalization.xml",
  5888. "ref/netstandard1.3/es/System.Globalization.xml",
  5889. "ref/netstandard1.3/fr/System.Globalization.xml",
  5890. "ref/netstandard1.3/it/System.Globalization.xml",
  5891. "ref/netstandard1.3/ja/System.Globalization.xml",
  5892. "ref/netstandard1.3/ko/System.Globalization.xml",
  5893. "ref/netstandard1.3/ru/System.Globalization.xml",
  5894. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5895. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5896. "ref/portable-net45+win8+wp8+wpa81/_._",
  5897. "ref/win8/_._",
  5898. "ref/wp80/_._",
  5899. "ref/wpa81/_._",
  5900. "ref/xamarinios10/_._",
  5901. "ref/xamarinmac20/_._",
  5902. "ref/xamarintvos10/_._",
  5903. "ref/xamarinwatchos10/_._"
  5904. ]
  5905. },
  5906. "System.Globalization.Calendars/4.3.0": {
  5907. "sha512": "Lealz3HSgQd/FOC1TMDZ564wLsjMPeRiyH4j7Baiq2x79ei3uo05zlqhxpaXtHAUHJskMtzc2RsjAsd5Pg2+aw==",
  5908. "type": "package",
  5909. "path": "System.Globalization.Calendars/4.3.0",
  5910. "files": [
  5911. "System.Globalization.Calendars.4.3.0.nupkg.sha512",
  5912. "System.Globalization.Calendars.nuspec",
  5913. "ThirdPartyNotices.txt",
  5914. "dotnet_library_license.txt",
  5915. "lib/MonoAndroid10/_._",
  5916. "lib/MonoTouch10/_._",
  5917. "lib/net46/System.Globalization.Calendars.dll",
  5918. "lib/xamarinios10/_._",
  5919. "lib/xamarinmac20/_._",
  5920. "lib/xamarintvos10/_._",
  5921. "lib/xamarinwatchos10/_._",
  5922. "ref/MonoAndroid10/_._",
  5923. "ref/MonoTouch10/_._",
  5924. "ref/net46/System.Globalization.Calendars.dll",
  5925. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5926. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5927. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5928. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5929. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5930. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5931. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5932. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5933. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5934. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5935. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5936. "ref/xamarinios10/_._",
  5937. "ref/xamarinmac20/_._",
  5938. "ref/xamarintvos10/_._",
  5939. "ref/xamarinwatchos10/_._"
  5940. ]
  5941. },
  5942. "System.Globalization.Extensions/4.3.0": {
  5943. "sha512": "V94vDBcAzxqObtShcgiWSDazkkZm/mtfET5dXIgvzbTNgFXtoUots+s4FyQkUaAf9HtutUMQtBdaPmHXhIYTiw==",
  5944. "type": "package",
  5945. "path": "System.Globalization.Extensions/4.3.0",
  5946. "files": [
  5947. "System.Globalization.Extensions.4.3.0.nupkg.sha512",
  5948. "System.Globalization.Extensions.nuspec",
  5949. "ThirdPartyNotices.txt",
  5950. "dotnet_library_license.txt",
  5951. "lib/MonoAndroid10/_._",
  5952. "lib/MonoTouch10/_._",
  5953. "lib/net46/System.Globalization.Extensions.dll",
  5954. "lib/xamarinios10/_._",
  5955. "lib/xamarinmac20/_._",
  5956. "lib/xamarintvos10/_._",
  5957. "lib/xamarinwatchos10/_._",
  5958. "ref/MonoAndroid10/_._",
  5959. "ref/MonoTouch10/_._",
  5960. "ref/net46/System.Globalization.Extensions.dll",
  5961. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5962. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5963. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5964. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5965. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5966. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5967. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5968. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5969. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5970. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5971. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5972. "ref/xamarinios10/_._",
  5973. "ref/xamarinmac20/_._",
  5974. "ref/xamarintvos10/_._",
  5975. "ref/xamarinwatchos10/_._",
  5976. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5977. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5978. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll"
  5979. ]
  5980. },
  5981. "System.Interactive.Async/3.0.0": {
  5982. "sha512": "iyrgkZz9Dzm0fiPouQszFC3SO/46k6AYd/jG9bu+/o0AoDMaRXtlo3TIuWVNtOuJFd1noL963QouroJ0T3rImw==",
  5983. "type": "package",
  5984. "path": "System.Interactive.Async/3.0.0",
  5985. "files": [
  5986. "System.Interactive.Async.3.0.0.nupkg.sha512",
  5987. "System.Interactive.Async.nuspec",
  5988. "lib/net45/System.Interactive.Async.dll",
  5989. "lib/net45/System.Interactive.Async.xml",
  5990. "lib/netstandard1.0/System.Interactive.Async.dll",
  5991. "lib/netstandard1.0/System.Interactive.Async.xml"
  5992. ]
  5993. },
  5994. "System.IO/4.3.0": {
  5995. "sha512": "cXuYu/ygrY2jSUssaHsn/PfCPS/Kek0It6YztrW5hjVssowvgsgKuqHmjrCeAf3AmSI79vZ8PsLW1iiD7nWxqA==",
  5996. "type": "package",
  5997. "path": "System.IO/4.3.0",
  5998. "files": [
  5999. "System.IO.4.3.0.nupkg.sha512",
  6000. "System.IO.nuspec",
  6001. "ThirdPartyNotices.txt",
  6002. "dotnet_library_license.txt",
  6003. "lib/MonoAndroid10/_._",
  6004. "lib/MonoTouch10/_._",
  6005. "lib/net45/_._",
  6006. "lib/net462/System.IO.dll",
  6007. "lib/portable-net45+win8+wp8+wpa81/_._",
  6008. "lib/win8/_._",
  6009. "lib/wp80/_._",
  6010. "lib/wpa81/_._",
  6011. "lib/xamarinios10/_._",
  6012. "lib/xamarinmac20/_._",
  6013. "lib/xamarintvos10/_._",
  6014. "lib/xamarinwatchos10/_._",
  6015. "ref/MonoAndroid10/_._",
  6016. "ref/MonoTouch10/_._",
  6017. "ref/net45/_._",
  6018. "ref/net462/System.IO.dll",
  6019. "ref/netcore50/System.IO.dll",
  6020. "ref/netcore50/System.IO.xml",
  6021. "ref/netcore50/de/System.IO.xml",
  6022. "ref/netcore50/es/System.IO.xml",
  6023. "ref/netcore50/fr/System.IO.xml",
  6024. "ref/netcore50/it/System.IO.xml",
  6025. "ref/netcore50/ja/System.IO.xml",
  6026. "ref/netcore50/ko/System.IO.xml",
  6027. "ref/netcore50/ru/System.IO.xml",
  6028. "ref/netcore50/zh-hans/System.IO.xml",
  6029. "ref/netcore50/zh-hant/System.IO.xml",
  6030. "ref/netstandard1.0/System.IO.dll",
  6031. "ref/netstandard1.0/System.IO.xml",
  6032. "ref/netstandard1.0/de/System.IO.xml",
  6033. "ref/netstandard1.0/es/System.IO.xml",
  6034. "ref/netstandard1.0/fr/System.IO.xml",
  6035. "ref/netstandard1.0/it/System.IO.xml",
  6036. "ref/netstandard1.0/ja/System.IO.xml",
  6037. "ref/netstandard1.0/ko/System.IO.xml",
  6038. "ref/netstandard1.0/ru/System.IO.xml",
  6039. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6040. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6041. "ref/netstandard1.3/System.IO.dll",
  6042. "ref/netstandard1.3/System.IO.xml",
  6043. "ref/netstandard1.3/de/System.IO.xml",
  6044. "ref/netstandard1.3/es/System.IO.xml",
  6045. "ref/netstandard1.3/fr/System.IO.xml",
  6046. "ref/netstandard1.3/it/System.IO.xml",
  6047. "ref/netstandard1.3/ja/System.IO.xml",
  6048. "ref/netstandard1.3/ko/System.IO.xml",
  6049. "ref/netstandard1.3/ru/System.IO.xml",
  6050. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6051. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6052. "ref/netstandard1.5/System.IO.dll",
  6053. "ref/netstandard1.5/System.IO.xml",
  6054. "ref/netstandard1.5/de/System.IO.xml",
  6055. "ref/netstandard1.5/es/System.IO.xml",
  6056. "ref/netstandard1.5/fr/System.IO.xml",
  6057. "ref/netstandard1.5/it/System.IO.xml",
  6058. "ref/netstandard1.5/ja/System.IO.xml",
  6059. "ref/netstandard1.5/ko/System.IO.xml",
  6060. "ref/netstandard1.5/ru/System.IO.xml",
  6061. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6062. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6063. "ref/portable-net45+win8+wp8+wpa81/_._",
  6064. "ref/win8/_._",
  6065. "ref/wp80/_._",
  6066. "ref/wpa81/_._",
  6067. "ref/xamarinios10/_._",
  6068. "ref/xamarinmac20/_._",
  6069. "ref/xamarintvos10/_._",
  6070. "ref/xamarinwatchos10/_._"
  6071. ]
  6072. },
  6073. "System.IO.Compression/4.3.0": {
  6074. "sha512": "1QYOMtObmdRHs5dthBBr5Jef3X+d6YACS3neNwSDaWs+yxsDgBCPgEzZhFnXWoibLDROETI+zkBMAL+vopVbfg==",
  6075. "type": "package",
  6076. "path": "System.IO.Compression/4.3.0",
  6077. "files": [
  6078. "System.IO.Compression.4.3.0.nupkg.sha512",
  6079. "System.IO.Compression.nuspec",
  6080. "ThirdPartyNotices.txt",
  6081. "dotnet_library_license.txt",
  6082. "lib/MonoAndroid10/_._",
  6083. "lib/MonoTouch10/_._",
  6084. "lib/net45/_._",
  6085. "lib/net46/System.IO.Compression.dll",
  6086. "lib/portable-net45+win8+wpa81/_._",
  6087. "lib/win8/_._",
  6088. "lib/wpa81/_._",
  6089. "lib/xamarinios10/_._",
  6090. "lib/xamarinmac20/_._",
  6091. "lib/xamarintvos10/_._",
  6092. "lib/xamarinwatchos10/_._",
  6093. "ref/MonoAndroid10/_._",
  6094. "ref/MonoTouch10/_._",
  6095. "ref/net45/_._",
  6096. "ref/net46/System.IO.Compression.dll",
  6097. "ref/netcore50/System.IO.Compression.dll",
  6098. "ref/netcore50/System.IO.Compression.xml",
  6099. "ref/netcore50/de/System.IO.Compression.xml",
  6100. "ref/netcore50/es/System.IO.Compression.xml",
  6101. "ref/netcore50/fr/System.IO.Compression.xml",
  6102. "ref/netcore50/it/System.IO.Compression.xml",
  6103. "ref/netcore50/ja/System.IO.Compression.xml",
  6104. "ref/netcore50/ko/System.IO.Compression.xml",
  6105. "ref/netcore50/ru/System.IO.Compression.xml",
  6106. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6107. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6108. "ref/netstandard1.1/System.IO.Compression.dll",
  6109. "ref/netstandard1.1/System.IO.Compression.xml",
  6110. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6111. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6112. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6113. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6114. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6115. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6116. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6117. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6118. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6119. "ref/netstandard1.3/System.IO.Compression.dll",
  6120. "ref/netstandard1.3/System.IO.Compression.xml",
  6121. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6122. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6123. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6124. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6125. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6126. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6127. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6128. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6129. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6130. "ref/portable-net45+win8+wpa81/_._",
  6131. "ref/win8/_._",
  6132. "ref/wpa81/_._",
  6133. "ref/xamarinios10/_._",
  6134. "ref/xamarinmac20/_._",
  6135. "ref/xamarintvos10/_._",
  6136. "ref/xamarinwatchos10/_._",
  6137. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6138. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6139. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll"
  6140. ]
  6141. },
  6142. "System.IO.Compression.ZipFile/4.3.0": {
  6143. "sha512": "K7yrRwJuU22iBhr0ySICB4xfPDbV2x9lV6BNpf9N72ngRn/qO34JgMHcBHZI+PSLjRBVJzFeNVopt+5NOsY/aQ==",
  6144. "type": "package",
  6145. "path": "System.IO.Compression.ZipFile/4.3.0",
  6146. "files": [
  6147. "System.IO.Compression.ZipFile.4.3.0.nupkg.sha512",
  6148. "System.IO.Compression.ZipFile.nuspec",
  6149. "ThirdPartyNotices.txt",
  6150. "dotnet_library_license.txt",
  6151. "lib/MonoAndroid10/_._",
  6152. "lib/MonoTouch10/_._",
  6153. "lib/net46/System.IO.Compression.ZipFile.dll",
  6154. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6155. "lib/xamarinios10/_._",
  6156. "lib/xamarinmac20/_._",
  6157. "lib/xamarintvos10/_._",
  6158. "lib/xamarinwatchos10/_._",
  6159. "ref/MonoAndroid10/_._",
  6160. "ref/MonoTouch10/_._",
  6161. "ref/net46/System.IO.Compression.ZipFile.dll",
  6162. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6163. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6164. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6165. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6166. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6167. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6168. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6169. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6170. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6171. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6172. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6173. "ref/xamarinios10/_._",
  6174. "ref/xamarinmac20/_._",
  6175. "ref/xamarintvos10/_._",
  6176. "ref/xamarinwatchos10/_._"
  6177. ]
  6178. },
  6179. "System.IO.FileSystem/4.3.0": {
  6180. "sha512": "oTvCY1epVpXNDk0CSKp8NvaHsrDPUoEiFAAx6GuJWDnOq8EBd/qW+gmRut8Zfol3ghlhuKrikz8O1aQgzPJPbQ==",
  6181. "type": "package",
  6182. "path": "System.IO.FileSystem/4.3.0",
  6183. "files": [
  6184. "System.IO.FileSystem.4.3.0.nupkg.sha512",
  6185. "System.IO.FileSystem.nuspec",
  6186. "ThirdPartyNotices.txt",
  6187. "dotnet_library_license.txt",
  6188. "lib/MonoAndroid10/_._",
  6189. "lib/MonoTouch10/_._",
  6190. "lib/net46/System.IO.FileSystem.dll",
  6191. "lib/xamarinios10/_._",
  6192. "lib/xamarinmac20/_._",
  6193. "lib/xamarintvos10/_._",
  6194. "lib/xamarinwatchos10/_._",
  6195. "ref/MonoAndroid10/_._",
  6196. "ref/MonoTouch10/_._",
  6197. "ref/net46/System.IO.FileSystem.dll",
  6198. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6199. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6200. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6201. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6202. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6203. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6204. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6205. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6206. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6207. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6208. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6209. "ref/xamarinios10/_._",
  6210. "ref/xamarinmac20/_._",
  6211. "ref/xamarintvos10/_._",
  6212. "ref/xamarinwatchos10/_._"
  6213. ]
  6214. },
  6215. "System.IO.FileSystem.Primitives/4.3.0": {
  6216. "sha512": "dUvETypIrGfDyjkGe99Z9EsD740KKyJWkHdVJYw294K56f8dHu8AHHbjmpb4bCOE9VGlIqWL5kM8UlejpYIhnQ==",
  6217. "type": "package",
  6218. "path": "System.IO.FileSystem.Primitives/4.3.0",
  6219. "files": [
  6220. "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
  6221. "System.IO.FileSystem.Primitives.nuspec",
  6222. "ThirdPartyNotices.txt",
  6223. "dotnet_library_license.txt",
  6224. "lib/MonoAndroid10/_._",
  6225. "lib/MonoTouch10/_._",
  6226. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6227. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6228. "lib/xamarinios10/_._",
  6229. "lib/xamarinmac20/_._",
  6230. "lib/xamarintvos10/_._",
  6231. "lib/xamarinwatchos10/_._",
  6232. "ref/MonoAndroid10/_._",
  6233. "ref/MonoTouch10/_._",
  6234. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6235. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6236. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6237. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6238. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6239. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6240. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6241. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6242. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6243. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6244. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6245. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6246. "ref/xamarinios10/_._",
  6247. "ref/xamarinmac20/_._",
  6248. "ref/xamarintvos10/_._",
  6249. "ref/xamarinwatchos10/_._"
  6250. ]
  6251. },
  6252. "System.IO.FileSystem.Watcher/4.0.0": {
  6253. "sha512": "smLdmwMbcOGkkcZv2QU55Pp/jSiZhYYxlJdn5zue1gBYA4rXiW7OnwlENPZX8DghsxlOZqEbcAgAKNFtuhX8UA==",
  6254. "type": "package",
  6255. "path": "System.IO.FileSystem.Watcher/4.0.0",
  6256. "files": [
  6257. "System.IO.FileSystem.Watcher.4.0.0.nupkg.sha512",
  6258. "System.IO.FileSystem.Watcher.nuspec",
  6259. "ThirdPartyNotices.txt",
  6260. "dotnet_library_license.txt",
  6261. "lib/MonoAndroid10/_._",
  6262. "lib/MonoTouch10/_._",
  6263. "lib/net46/System.IO.FileSystem.Watcher.dll",
  6264. "lib/xamarinios10/_._",
  6265. "lib/xamarinmac20/_._",
  6266. "lib/xamarintvos10/_._",
  6267. "lib/xamarinwatchos10/_._",
  6268. "ref/MonoAndroid10/_._",
  6269. "ref/MonoTouch10/_._",
  6270. "ref/net46/System.IO.FileSystem.Watcher.dll",
  6271. "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  6272. "ref/netstandard1.3/System.IO.FileSystem.Watcher.xml",
  6273. "ref/netstandard1.3/de/System.IO.FileSystem.Watcher.xml",
  6274. "ref/netstandard1.3/es/System.IO.FileSystem.Watcher.xml",
  6275. "ref/netstandard1.3/fr/System.IO.FileSystem.Watcher.xml",
  6276. "ref/netstandard1.3/it/System.IO.FileSystem.Watcher.xml",
  6277. "ref/netstandard1.3/ja/System.IO.FileSystem.Watcher.xml",
  6278. "ref/netstandard1.3/ko/System.IO.FileSystem.Watcher.xml",
  6279. "ref/netstandard1.3/ru/System.IO.FileSystem.Watcher.xml",
  6280. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Watcher.xml",
  6281. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Watcher.xml",
  6282. "ref/xamarinios10/_._",
  6283. "ref/xamarinmac20/_._",
  6284. "ref/xamarintvos10/_._",
  6285. "ref/xamarinwatchos10/_._",
  6286. "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  6287. "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  6288. "runtimes/win/lib/net46/System.IO.FileSystem.Watcher.dll",
  6289. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  6290. "runtimes/win7/lib/netcore50/_._"
  6291. ]
  6292. },
  6293. "System.IO.MemoryMappedFiles/4.0.0": {
  6294. "sha512": "PStypGn+lGm2JtQPyiwTrCVHz3dohrljUJ6vIVpgLGaaiMLXA6ZH413Ia7mv1LjKW/5vmGCT3RwSdemsgxkuMg==",
  6295. "type": "package",
  6296. "path": "System.IO.MemoryMappedFiles/4.0.0",
  6297. "files": [
  6298. "System.IO.MemoryMappedFiles.4.0.0.nupkg.sha512",
  6299. "System.IO.MemoryMappedFiles.nuspec",
  6300. "ThirdPartyNotices.txt",
  6301. "dotnet_library_license.txt",
  6302. "lib/MonoAndroid10/_._",
  6303. "lib/MonoTouch10/_._",
  6304. "lib/net46/System.IO.MemoryMappedFiles.dll",
  6305. "lib/xamarinios10/_._",
  6306. "lib/xamarinmac20/_._",
  6307. "lib/xamarintvos10/_._",
  6308. "lib/xamarinwatchos10/_._",
  6309. "ref/MonoAndroid10/_._",
  6310. "ref/MonoTouch10/_._",
  6311. "ref/net46/System.IO.MemoryMappedFiles.dll",
  6312. "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll",
  6313. "ref/netstandard1.3/System.IO.MemoryMappedFiles.xml",
  6314. "ref/netstandard1.3/de/System.IO.MemoryMappedFiles.xml",
  6315. "ref/netstandard1.3/es/System.IO.MemoryMappedFiles.xml",
  6316. "ref/netstandard1.3/fr/System.IO.MemoryMappedFiles.xml",
  6317. "ref/netstandard1.3/it/System.IO.MemoryMappedFiles.xml",
  6318. "ref/netstandard1.3/ja/System.IO.MemoryMappedFiles.xml",
  6319. "ref/netstandard1.3/ko/System.IO.MemoryMappedFiles.xml",
  6320. "ref/netstandard1.3/ru/System.IO.MemoryMappedFiles.xml",
  6321. "ref/netstandard1.3/zh-hans/System.IO.MemoryMappedFiles.xml",
  6322. "ref/netstandard1.3/zh-hant/System.IO.MemoryMappedFiles.xml",
  6323. "ref/xamarinios10/_._",
  6324. "ref/xamarinmac20/_._",
  6325. "ref/xamarintvos10/_._",
  6326. "ref/xamarinwatchos10/_._",
  6327. "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll",
  6328. "runtimes/win/lib/net46/System.IO.MemoryMappedFiles.dll",
  6329. "runtimes/win/lib/netcore50/System.IO.MemoryMappedFiles.dll",
  6330. "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll"
  6331. ]
  6332. },
  6333. "System.IO.UnmanagedMemoryStream/4.0.1": {
  6334. "sha512": "Xm2rVGIaXJN0ScBYeo5fDmNifi3AKkOo5q6AeqZoje1WcrAEwteLNaXsY6Kqqzuspv1YXTylyvs1z1XYLwEglw==",
  6335. "type": "package",
  6336. "path": "System.IO.UnmanagedMemoryStream/4.0.1",
  6337. "files": [
  6338. "System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512",
  6339. "System.IO.UnmanagedMemoryStream.nuspec",
  6340. "ThirdPartyNotices.txt",
  6341. "dotnet_library_license.txt",
  6342. "lib/MonoAndroid10/_._",
  6343. "lib/MonoTouch10/_._",
  6344. "lib/net46/System.IO.UnmanagedMemoryStream.dll",
  6345. "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll",
  6346. "lib/xamarinios10/_._",
  6347. "lib/xamarinmac20/_._",
  6348. "lib/xamarintvos10/_._",
  6349. "lib/xamarinwatchos10/_._",
  6350. "ref/MonoAndroid10/_._",
  6351. "ref/MonoTouch10/_._",
  6352. "ref/net46/System.IO.UnmanagedMemoryStream.dll",
  6353. "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll",
  6354. "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.xml",
  6355. "ref/netstandard1.3/de/System.IO.UnmanagedMemoryStream.xml",
  6356. "ref/netstandard1.3/es/System.IO.UnmanagedMemoryStream.xml",
  6357. "ref/netstandard1.3/fr/System.IO.UnmanagedMemoryStream.xml",
  6358. "ref/netstandard1.3/it/System.IO.UnmanagedMemoryStream.xml",
  6359. "ref/netstandard1.3/ja/System.IO.UnmanagedMemoryStream.xml",
  6360. "ref/netstandard1.3/ko/System.IO.UnmanagedMemoryStream.xml",
  6361. "ref/netstandard1.3/ru/System.IO.UnmanagedMemoryStream.xml",
  6362. "ref/netstandard1.3/zh-hans/System.IO.UnmanagedMemoryStream.xml",
  6363. "ref/netstandard1.3/zh-hant/System.IO.UnmanagedMemoryStream.xml",
  6364. "ref/xamarinios10/_._",
  6365. "ref/xamarinmac20/_._",
  6366. "ref/xamarintvos10/_._",
  6367. "ref/xamarinwatchos10/_._"
  6368. ]
  6369. },
  6370. "System.Linq/4.3.0": {
  6371. "sha512": "P71Cxp86ljJd8N2EO2OXb/xdClfs6BRCqDSZeXfSF0g+fT+S6/zmPFVJUEPFycY1pYDAqPGu+2lI9vcP46qmWg==",
  6372. "type": "package",
  6373. "path": "System.Linq/4.3.0",
  6374. "files": [
  6375. "System.Linq.4.3.0.nupkg.sha512",
  6376. "System.Linq.nuspec",
  6377. "ThirdPartyNotices.txt",
  6378. "dotnet_library_license.txt",
  6379. "lib/MonoAndroid10/_._",
  6380. "lib/MonoTouch10/_._",
  6381. "lib/net45/_._",
  6382. "lib/net463/System.Linq.dll",
  6383. "lib/netcore50/System.Linq.dll",
  6384. "lib/netstandard1.6/System.Linq.dll",
  6385. "lib/portable-net45+win8+wp8+wpa81/_._",
  6386. "lib/win8/_._",
  6387. "lib/wp80/_._",
  6388. "lib/wpa81/_._",
  6389. "lib/xamarinios10/_._",
  6390. "lib/xamarinmac20/_._",
  6391. "lib/xamarintvos10/_._",
  6392. "lib/xamarinwatchos10/_._",
  6393. "ref/MonoAndroid10/_._",
  6394. "ref/MonoTouch10/_._",
  6395. "ref/net45/_._",
  6396. "ref/net463/System.Linq.dll",
  6397. "ref/netcore50/System.Linq.dll",
  6398. "ref/netcore50/System.Linq.xml",
  6399. "ref/netcore50/de/System.Linq.xml",
  6400. "ref/netcore50/es/System.Linq.xml",
  6401. "ref/netcore50/fr/System.Linq.xml",
  6402. "ref/netcore50/it/System.Linq.xml",
  6403. "ref/netcore50/ja/System.Linq.xml",
  6404. "ref/netcore50/ko/System.Linq.xml",
  6405. "ref/netcore50/ru/System.Linq.xml",
  6406. "ref/netcore50/zh-hans/System.Linq.xml",
  6407. "ref/netcore50/zh-hant/System.Linq.xml",
  6408. "ref/netstandard1.0/System.Linq.dll",
  6409. "ref/netstandard1.0/System.Linq.xml",
  6410. "ref/netstandard1.0/de/System.Linq.xml",
  6411. "ref/netstandard1.0/es/System.Linq.xml",
  6412. "ref/netstandard1.0/fr/System.Linq.xml",
  6413. "ref/netstandard1.0/it/System.Linq.xml",
  6414. "ref/netstandard1.0/ja/System.Linq.xml",
  6415. "ref/netstandard1.0/ko/System.Linq.xml",
  6416. "ref/netstandard1.0/ru/System.Linq.xml",
  6417. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6418. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6419. "ref/netstandard1.6/System.Linq.dll",
  6420. "ref/netstandard1.6/System.Linq.xml",
  6421. "ref/netstandard1.6/de/System.Linq.xml",
  6422. "ref/netstandard1.6/es/System.Linq.xml",
  6423. "ref/netstandard1.6/fr/System.Linq.xml",
  6424. "ref/netstandard1.6/it/System.Linq.xml",
  6425. "ref/netstandard1.6/ja/System.Linq.xml",
  6426. "ref/netstandard1.6/ko/System.Linq.xml",
  6427. "ref/netstandard1.6/ru/System.Linq.xml",
  6428. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6429. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6430. "ref/portable-net45+win8+wp8+wpa81/_._",
  6431. "ref/win8/_._",
  6432. "ref/wp80/_._",
  6433. "ref/wpa81/_._",
  6434. "ref/xamarinios10/_._",
  6435. "ref/xamarinmac20/_._",
  6436. "ref/xamarintvos10/_._",
  6437. "ref/xamarinwatchos10/_._"
  6438. ]
  6439. },
  6440. "System.Linq.Expressions/4.3.0": {
  6441. "sha512": "/J2T2wXiXRBhO910kRJl3dGU/AvUrsNpVJCfsC5YuVjiRve1JmyUntYScnN2yWb9YOXTscdYbZiI2jtgowslIg==",
  6442. "type": "package",
  6443. "path": "System.Linq.Expressions/4.3.0",
  6444. "files": [
  6445. "System.Linq.Expressions.4.3.0.nupkg.sha512",
  6446. "System.Linq.Expressions.nuspec",
  6447. "ThirdPartyNotices.txt",
  6448. "dotnet_library_license.txt",
  6449. "lib/MonoAndroid10/_._",
  6450. "lib/MonoTouch10/_._",
  6451. "lib/net45/_._",
  6452. "lib/net463/System.Linq.Expressions.dll",
  6453. "lib/netcore50/System.Linq.Expressions.dll",
  6454. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6455. "lib/portable-net45+win8+wp8+wpa81/_._",
  6456. "lib/win8/_._",
  6457. "lib/wp80/_._",
  6458. "lib/wpa81/_._",
  6459. "lib/xamarinios10/_._",
  6460. "lib/xamarinmac20/_._",
  6461. "lib/xamarintvos10/_._",
  6462. "lib/xamarinwatchos10/_._",
  6463. "ref/MonoAndroid10/_._",
  6464. "ref/MonoTouch10/_._",
  6465. "ref/net45/_._",
  6466. "ref/net463/System.Linq.Expressions.dll",
  6467. "ref/netcore50/System.Linq.Expressions.dll",
  6468. "ref/netcore50/System.Linq.Expressions.xml",
  6469. "ref/netcore50/de/System.Linq.Expressions.xml",
  6470. "ref/netcore50/es/System.Linq.Expressions.xml",
  6471. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6472. "ref/netcore50/it/System.Linq.Expressions.xml",
  6473. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6474. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6475. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6476. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6477. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6478. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6479. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6480. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6481. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6482. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6483. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6484. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6485. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6486. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6487. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6488. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6489. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6490. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6491. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6492. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6493. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6494. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6495. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6496. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6497. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6498. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6499. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6500. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6501. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6502. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6503. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6504. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6505. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6506. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6507. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6508. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6509. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6510. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6511. "ref/portable-net45+win8+wp8+wpa81/_._",
  6512. "ref/win8/_._",
  6513. "ref/wp80/_._",
  6514. "ref/wpa81/_._",
  6515. "ref/xamarinios10/_._",
  6516. "ref/xamarinmac20/_._",
  6517. "ref/xamarintvos10/_._",
  6518. "ref/xamarinwatchos10/_._",
  6519. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll"
  6520. ]
  6521. },
  6522. "System.Linq.Parallel/4.0.1": {
  6523. "sha512": "cze1FtznS4SLU9kbYyJjuy9mhKPbLCqc9OMqAEIDQjkqNZgsRDGfBx1kKjP7Xsk+UXdAfUDTk4Dl9HrIyMExew==",
  6524. "type": "package",
  6525. "path": "System.Linq.Parallel/4.0.1",
  6526. "files": [
  6527. "System.Linq.Parallel.4.0.1.nupkg.sha512",
  6528. "System.Linq.Parallel.nuspec",
  6529. "ThirdPartyNotices.txt",
  6530. "dotnet_library_license.txt",
  6531. "lib/MonoAndroid10/_._",
  6532. "lib/MonoTouch10/_._",
  6533. "lib/net45/_._",
  6534. "lib/netcore50/System.Linq.Parallel.dll",
  6535. "lib/netstandard1.3/System.Linq.Parallel.dll",
  6536. "lib/portable-net45+win8+wpa81/_._",
  6537. "lib/win8/_._",
  6538. "lib/wpa81/_._",
  6539. "lib/xamarinios10/_._",
  6540. "lib/xamarinmac20/_._",
  6541. "lib/xamarintvos10/_._",
  6542. "lib/xamarinwatchos10/_._",
  6543. "ref/MonoAndroid10/_._",
  6544. "ref/MonoTouch10/_._",
  6545. "ref/net45/_._",
  6546. "ref/netcore50/System.Linq.Parallel.dll",
  6547. "ref/netcore50/System.Linq.Parallel.xml",
  6548. "ref/netcore50/de/System.Linq.Parallel.xml",
  6549. "ref/netcore50/es/System.Linq.Parallel.xml",
  6550. "ref/netcore50/fr/System.Linq.Parallel.xml",
  6551. "ref/netcore50/it/System.Linq.Parallel.xml",
  6552. "ref/netcore50/ja/System.Linq.Parallel.xml",
  6553. "ref/netcore50/ko/System.Linq.Parallel.xml",
  6554. "ref/netcore50/ru/System.Linq.Parallel.xml",
  6555. "ref/netcore50/zh-hans/System.Linq.Parallel.xml",
  6556. "ref/netcore50/zh-hant/System.Linq.Parallel.xml",
  6557. "ref/netstandard1.1/System.Linq.Parallel.dll",
  6558. "ref/netstandard1.1/System.Linq.Parallel.xml",
  6559. "ref/netstandard1.1/de/System.Linq.Parallel.xml",
  6560. "ref/netstandard1.1/es/System.Linq.Parallel.xml",
  6561. "ref/netstandard1.1/fr/System.Linq.Parallel.xml",
  6562. "ref/netstandard1.1/it/System.Linq.Parallel.xml",
  6563. "ref/netstandard1.1/ja/System.Linq.Parallel.xml",
  6564. "ref/netstandard1.1/ko/System.Linq.Parallel.xml",
  6565. "ref/netstandard1.1/ru/System.Linq.Parallel.xml",
  6566. "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml",
  6567. "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml",
  6568. "ref/portable-net45+win8+wpa81/_._",
  6569. "ref/win8/_._",
  6570. "ref/wpa81/_._",
  6571. "ref/xamarinios10/_._",
  6572. "ref/xamarinmac20/_._",
  6573. "ref/xamarintvos10/_._",
  6574. "ref/xamarinwatchos10/_._"
  6575. ]
  6576. },
  6577. "System.Linq.Queryable/4.3.0": {
  6578. "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
  6579. "type": "package",
  6580. "path": "System.Linq.Queryable/4.3.0",
  6581. "files": [
  6582. "System.Linq.Queryable.4.3.0.nupkg.sha512",
  6583. "System.Linq.Queryable.nuspec",
  6584. "ThirdPartyNotices.txt",
  6585. "dotnet_library_license.txt",
  6586. "lib/monoandroid10/_._",
  6587. "lib/monotouch10/_._",
  6588. "lib/net45/_._",
  6589. "lib/netcore50/System.Linq.Queryable.dll",
  6590. "lib/netstandard1.3/System.Linq.Queryable.dll",
  6591. "lib/portable-net45+win8+wp8+wpa81/_._",
  6592. "lib/win8/_._",
  6593. "lib/wp80/_._",
  6594. "lib/wpa81/_._",
  6595. "lib/xamarinios10/_._",
  6596. "lib/xamarinmac20/_._",
  6597. "lib/xamarintvos10/_._",
  6598. "lib/xamarinwatchos10/_._",
  6599. "ref/monoandroid10/_._",
  6600. "ref/monotouch10/_._",
  6601. "ref/net45/_._",
  6602. "ref/netcore50/System.Linq.Queryable.dll",
  6603. "ref/netcore50/System.Linq.Queryable.xml",
  6604. "ref/netcore50/de/System.Linq.Queryable.xml",
  6605. "ref/netcore50/es/System.Linq.Queryable.xml",
  6606. "ref/netcore50/fr/System.Linq.Queryable.xml",
  6607. "ref/netcore50/it/System.Linq.Queryable.xml",
  6608. "ref/netcore50/ja/System.Linq.Queryable.xml",
  6609. "ref/netcore50/ko/System.Linq.Queryable.xml",
  6610. "ref/netcore50/ru/System.Linq.Queryable.xml",
  6611. "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
  6612. "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
  6613. "ref/netstandard1.0/System.Linq.Queryable.dll",
  6614. "ref/netstandard1.0/System.Linq.Queryable.xml",
  6615. "ref/netstandard1.0/de/System.Linq.Queryable.xml",
  6616. "ref/netstandard1.0/es/System.Linq.Queryable.xml",
  6617. "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
  6618. "ref/netstandard1.0/it/System.Linq.Queryable.xml",
  6619. "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
  6620. "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
  6621. "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
  6622. "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
  6623. "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
  6624. "ref/portable-net45+win8+wp8+wpa81/_._",
  6625. "ref/win8/_._",
  6626. "ref/wp80/_._",
  6627. "ref/wpa81/_._",
  6628. "ref/xamarinios10/_._",
  6629. "ref/xamarinmac20/_._",
  6630. "ref/xamarintvos10/_._",
  6631. "ref/xamarinwatchos10/_._"
  6632. ]
  6633. },
  6634. "System.Net.Http/4.3.0": {
  6635. "sha512": "lL9E2a0Z5O+QodbZAAn2HYkSKKPJT6S7+O+qV7jasC7J3zaiXRjv4C7uk61+SwEjAt5ybpmsO1lqStXR4T0Cbg==",
  6636. "type": "package",
  6637. "path": "System.Net.Http/4.3.0",
  6638. "files": [
  6639. "System.Net.Http.4.3.0.nupkg.sha512",
  6640. "System.Net.Http.nuspec",
  6641. "ThirdPartyNotices.txt",
  6642. "dotnet_library_license.txt",
  6643. "lib/Xamarinmac20/_._",
  6644. "lib/monoandroid10/_._",
  6645. "lib/monotouch10/_._",
  6646. "lib/net45/_._",
  6647. "lib/net46/System.Net.Http.dll",
  6648. "lib/portable-net45+win8+wpa81/_._",
  6649. "lib/win8/_._",
  6650. "lib/wpa81/_._",
  6651. "lib/xamarinios10/_._",
  6652. "lib/xamarintvos10/_._",
  6653. "lib/xamarinwatchos10/_._",
  6654. "ref/Xamarinmac20/_._",
  6655. "ref/monoandroid10/_._",
  6656. "ref/monotouch10/_._",
  6657. "ref/net45/_._",
  6658. "ref/net46/System.Net.Http.dll",
  6659. "ref/net46/System.Net.Http.xml",
  6660. "ref/net46/de/System.Net.Http.xml",
  6661. "ref/net46/es/System.Net.Http.xml",
  6662. "ref/net46/fr/System.Net.Http.xml",
  6663. "ref/net46/it/System.Net.Http.xml",
  6664. "ref/net46/ja/System.Net.Http.xml",
  6665. "ref/net46/ko/System.Net.Http.xml",
  6666. "ref/net46/ru/System.Net.Http.xml",
  6667. "ref/net46/zh-hans/System.Net.Http.xml",
  6668. "ref/net46/zh-hant/System.Net.Http.xml",
  6669. "ref/netcore50/System.Net.Http.dll",
  6670. "ref/netcore50/System.Net.Http.xml",
  6671. "ref/netcore50/de/System.Net.Http.xml",
  6672. "ref/netcore50/es/System.Net.Http.xml",
  6673. "ref/netcore50/fr/System.Net.Http.xml",
  6674. "ref/netcore50/it/System.Net.Http.xml",
  6675. "ref/netcore50/ja/System.Net.Http.xml",
  6676. "ref/netcore50/ko/System.Net.Http.xml",
  6677. "ref/netcore50/ru/System.Net.Http.xml",
  6678. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6679. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6680. "ref/netstandard1.1/System.Net.Http.dll",
  6681. "ref/netstandard1.1/System.Net.Http.xml",
  6682. "ref/netstandard1.1/de/System.Net.Http.xml",
  6683. "ref/netstandard1.1/es/System.Net.Http.xml",
  6684. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6685. "ref/netstandard1.1/it/System.Net.Http.xml",
  6686. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6687. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6688. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6689. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6690. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6691. "ref/netstandard1.3/System.Net.Http.dll",
  6692. "ref/netstandard1.3/System.Net.Http.xml",
  6693. "ref/netstandard1.3/de/System.Net.Http.xml",
  6694. "ref/netstandard1.3/es/System.Net.Http.xml",
  6695. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6696. "ref/netstandard1.3/it/System.Net.Http.xml",
  6697. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6698. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6699. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6700. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6701. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6702. "ref/portable-net45+win8+wpa81/_._",
  6703. "ref/win8/_._",
  6704. "ref/wpa81/_._",
  6705. "ref/xamarinios10/_._",
  6706. "ref/xamarintvos10/_._",
  6707. "ref/xamarinwatchos10/_._",
  6708. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6709. "runtimes/win/lib/net46/System.Net.Http.dll",
  6710. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6711. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll"
  6712. ]
  6713. },
  6714. "System.Net.NameResolution/4.0.0": {
  6715. "sha512": "OThG4wPbLixNd2++hNQH7dg36eJbvHTHOn2OUr9uXsq67kMIHeURNBmVEIPKxA7MWvBYTqHbMv18igLyXMtTdQ==",
  6716. "type": "package",
  6717. "path": "System.Net.NameResolution/4.0.0",
  6718. "files": [
  6719. "System.Net.NameResolution.4.0.0.nupkg.sha512",
  6720. "System.Net.NameResolution.nuspec",
  6721. "ThirdPartyNotices.txt",
  6722. "dotnet_library_license.txt",
  6723. "lib/MonoAndroid10/_._",
  6724. "lib/MonoTouch10/_._",
  6725. "lib/net46/System.Net.NameResolution.dll",
  6726. "lib/xamarinios10/_._",
  6727. "lib/xamarinmac20/_._",
  6728. "lib/xamarintvos10/_._",
  6729. "lib/xamarinwatchos10/_._",
  6730. "ref/MonoAndroid10/_._",
  6731. "ref/MonoTouch10/_._",
  6732. "ref/net46/System.Net.NameResolution.dll",
  6733. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6734. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6735. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6736. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6737. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6738. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6739. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6740. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6741. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6742. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6743. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6744. "ref/xamarinios10/_._",
  6745. "ref/xamarinmac20/_._",
  6746. "ref/xamarintvos10/_._",
  6747. "ref/xamarinwatchos10/_._",
  6748. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6749. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6750. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6751. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll"
  6752. ]
  6753. },
  6754. "System.Net.NetworkInformation/4.1.0": {
  6755. "sha512": "Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==",
  6756. "type": "package",
  6757. "path": "System.Net.NetworkInformation/4.1.0",
  6758. "files": [
  6759. "System.Net.NetworkInformation.4.1.0.nupkg.sha512",
  6760. "System.Net.NetworkInformation.nuspec",
  6761. "ThirdPartyNotices.txt",
  6762. "dotnet_library_license.txt",
  6763. "lib/MonoAndroid10/_._",
  6764. "lib/MonoTouch10/_._",
  6765. "lib/net45/_._",
  6766. "lib/net46/System.Net.NetworkInformation.dll",
  6767. "lib/portable-net45+win8+wp8+wpa81/_._",
  6768. "lib/win8/_._",
  6769. "lib/wp80/_._",
  6770. "lib/wpa81/_._",
  6771. "lib/xamarinios10/_._",
  6772. "lib/xamarinmac20/_._",
  6773. "lib/xamarintvos10/_._",
  6774. "lib/xamarinwatchos10/_._",
  6775. "ref/MonoAndroid10/_._",
  6776. "ref/MonoTouch10/_._",
  6777. "ref/net45/_._",
  6778. "ref/net46/System.Net.NetworkInformation.dll",
  6779. "ref/netcore50/System.Net.NetworkInformation.dll",
  6780. "ref/netcore50/System.Net.NetworkInformation.xml",
  6781. "ref/netcore50/de/System.Net.NetworkInformation.xml",
  6782. "ref/netcore50/es/System.Net.NetworkInformation.xml",
  6783. "ref/netcore50/fr/System.Net.NetworkInformation.xml",
  6784. "ref/netcore50/it/System.Net.NetworkInformation.xml",
  6785. "ref/netcore50/ja/System.Net.NetworkInformation.xml",
  6786. "ref/netcore50/ko/System.Net.NetworkInformation.xml",
  6787. "ref/netcore50/ru/System.Net.NetworkInformation.xml",
  6788. "ref/netcore50/zh-hans/System.Net.NetworkInformation.xml",
  6789. "ref/netcore50/zh-hant/System.Net.NetworkInformation.xml",
  6790. "ref/netstandard1.0/System.Net.NetworkInformation.dll",
  6791. "ref/netstandard1.0/System.Net.NetworkInformation.xml",
  6792. "ref/netstandard1.0/de/System.Net.NetworkInformation.xml",
  6793. "ref/netstandard1.0/es/System.Net.NetworkInformation.xml",
  6794. "ref/netstandard1.0/fr/System.Net.NetworkInformation.xml",
  6795. "ref/netstandard1.0/it/System.Net.NetworkInformation.xml",
  6796. "ref/netstandard1.0/ja/System.Net.NetworkInformation.xml",
  6797. "ref/netstandard1.0/ko/System.Net.NetworkInformation.xml",
  6798. "ref/netstandard1.0/ru/System.Net.NetworkInformation.xml",
  6799. "ref/netstandard1.0/zh-hans/System.Net.NetworkInformation.xml",
  6800. "ref/netstandard1.0/zh-hant/System.Net.NetworkInformation.xml",
  6801. "ref/netstandard1.3/System.Net.NetworkInformation.dll",
  6802. "ref/netstandard1.3/System.Net.NetworkInformation.xml",
  6803. "ref/netstandard1.3/de/System.Net.NetworkInformation.xml",
  6804. "ref/netstandard1.3/es/System.Net.NetworkInformation.xml",
  6805. "ref/netstandard1.3/fr/System.Net.NetworkInformation.xml",
  6806. "ref/netstandard1.3/it/System.Net.NetworkInformation.xml",
  6807. "ref/netstandard1.3/ja/System.Net.NetworkInformation.xml",
  6808. "ref/netstandard1.3/ko/System.Net.NetworkInformation.xml",
  6809. "ref/netstandard1.3/ru/System.Net.NetworkInformation.xml",
  6810. "ref/netstandard1.3/zh-hans/System.Net.NetworkInformation.xml",
  6811. "ref/netstandard1.3/zh-hant/System.Net.NetworkInformation.xml",
  6812. "ref/portable-net45+win8+wp8+wpa81/_._",
  6813. "ref/win8/_._",
  6814. "ref/wp80/_._",
  6815. "ref/wpa81/_._",
  6816. "ref/xamarinios10/_._",
  6817. "ref/xamarinmac20/_._",
  6818. "ref/xamarintvos10/_._",
  6819. "ref/xamarinwatchos10/_._",
  6820. "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll",
  6821. "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll",
  6822. "runtimes/win/lib/net46/System.Net.NetworkInformation.dll",
  6823. "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll",
  6824. "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll"
  6825. ]
  6826. },
  6827. "System.Net.Primitives/4.3.0": {
  6828. "sha512": "/F1CygaK7ssyNozh2IJpyKST7J3zhQF69S04a++b8mS35XY7UOiDdgFdSI78pJMxR8r89VfnszrfDeU1ICUgiQ==",
  6829. "type": "package",
  6830. "path": "System.Net.Primitives/4.3.0",
  6831. "files": [
  6832. "System.Net.Primitives.4.3.0.nupkg.sha512",
  6833. "System.Net.Primitives.nuspec",
  6834. "ThirdPartyNotices.txt",
  6835. "dotnet_library_license.txt",
  6836. "lib/MonoAndroid10/_._",
  6837. "lib/MonoTouch10/_._",
  6838. "lib/net45/_._",
  6839. "lib/portable-net45+win8+wp8+wpa81/_._",
  6840. "lib/win8/_._",
  6841. "lib/wp80/_._",
  6842. "lib/wpa81/_._",
  6843. "lib/xamarinios10/_._",
  6844. "lib/xamarinmac20/_._",
  6845. "lib/xamarintvos10/_._",
  6846. "lib/xamarinwatchos10/_._",
  6847. "ref/MonoAndroid10/_._",
  6848. "ref/MonoTouch10/_._",
  6849. "ref/net45/_._",
  6850. "ref/netcore50/System.Net.Primitives.dll",
  6851. "ref/netcore50/System.Net.Primitives.xml",
  6852. "ref/netcore50/de/System.Net.Primitives.xml",
  6853. "ref/netcore50/es/System.Net.Primitives.xml",
  6854. "ref/netcore50/fr/System.Net.Primitives.xml",
  6855. "ref/netcore50/it/System.Net.Primitives.xml",
  6856. "ref/netcore50/ja/System.Net.Primitives.xml",
  6857. "ref/netcore50/ko/System.Net.Primitives.xml",
  6858. "ref/netcore50/ru/System.Net.Primitives.xml",
  6859. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6860. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6861. "ref/netstandard1.0/System.Net.Primitives.dll",
  6862. "ref/netstandard1.0/System.Net.Primitives.xml",
  6863. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6864. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6865. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6866. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6867. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6868. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6869. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6870. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6871. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6872. "ref/netstandard1.1/System.Net.Primitives.dll",
  6873. "ref/netstandard1.1/System.Net.Primitives.xml",
  6874. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6875. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6876. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6877. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6878. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6879. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6880. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6881. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6882. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6883. "ref/netstandard1.3/System.Net.Primitives.dll",
  6884. "ref/netstandard1.3/System.Net.Primitives.xml",
  6885. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6886. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6887. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6888. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6889. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6890. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6891. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6892. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6893. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6894. "ref/portable-net45+win8+wp8+wpa81/_._",
  6895. "ref/win8/_._",
  6896. "ref/wp80/_._",
  6897. "ref/wpa81/_._",
  6898. "ref/xamarinios10/_._",
  6899. "ref/xamarinmac20/_._",
  6900. "ref/xamarintvos10/_._",
  6901. "ref/xamarinwatchos10/_._"
  6902. ]
  6903. },
  6904. "System.Net.Requests/4.0.11": {
  6905. "sha512": "MrvLsG/G/1UjIFIh9tFt2dO0k4V/CILA7yAv+lrIFmUtVdzBhF4ZG/sT/AaaGuchJJ16UEBBwP3ggPXlvVARcA==",
  6906. "type": "package",
  6907. "path": "System.Net.Requests/4.0.11",
  6908. "files": [
  6909. "System.Net.Requests.4.0.11.nupkg.sha512",
  6910. "System.Net.Requests.nuspec",
  6911. "ThirdPartyNotices.txt",
  6912. "dotnet_library_license.txt",
  6913. "lib/MonoAndroid10/_._",
  6914. "lib/MonoTouch10/_._",
  6915. "lib/net45/_._",
  6916. "lib/portable-net45+win8+wp8+wpa81/_._",
  6917. "lib/win8/_._",
  6918. "lib/wp80/_._",
  6919. "lib/wpa81/_._",
  6920. "lib/xamarinios10/_._",
  6921. "lib/xamarinmac20/_._",
  6922. "lib/xamarintvos10/_._",
  6923. "lib/xamarinwatchos10/_._",
  6924. "ref/MonoAndroid10/_._",
  6925. "ref/MonoTouch10/_._",
  6926. "ref/net45/_._",
  6927. "ref/net46/_._",
  6928. "ref/netcore50/System.Net.Requests.dll",
  6929. "ref/netcore50/System.Net.Requests.xml",
  6930. "ref/netcore50/de/System.Net.Requests.xml",
  6931. "ref/netcore50/es/System.Net.Requests.xml",
  6932. "ref/netcore50/fr/System.Net.Requests.xml",
  6933. "ref/netcore50/it/System.Net.Requests.xml",
  6934. "ref/netcore50/ja/System.Net.Requests.xml",
  6935. "ref/netcore50/ko/System.Net.Requests.xml",
  6936. "ref/netcore50/ru/System.Net.Requests.xml",
  6937. "ref/netcore50/zh-hans/System.Net.Requests.xml",
  6938. "ref/netcore50/zh-hant/System.Net.Requests.xml",
  6939. "ref/netstandard1.0/System.Net.Requests.dll",
  6940. "ref/netstandard1.0/System.Net.Requests.xml",
  6941. "ref/netstandard1.0/de/System.Net.Requests.xml",
  6942. "ref/netstandard1.0/es/System.Net.Requests.xml",
  6943. "ref/netstandard1.0/fr/System.Net.Requests.xml",
  6944. "ref/netstandard1.0/it/System.Net.Requests.xml",
  6945. "ref/netstandard1.0/ja/System.Net.Requests.xml",
  6946. "ref/netstandard1.0/ko/System.Net.Requests.xml",
  6947. "ref/netstandard1.0/ru/System.Net.Requests.xml",
  6948. "ref/netstandard1.0/zh-hans/System.Net.Requests.xml",
  6949. "ref/netstandard1.0/zh-hant/System.Net.Requests.xml",
  6950. "ref/netstandard1.1/System.Net.Requests.dll",
  6951. "ref/netstandard1.1/System.Net.Requests.xml",
  6952. "ref/netstandard1.1/de/System.Net.Requests.xml",
  6953. "ref/netstandard1.1/es/System.Net.Requests.xml",
  6954. "ref/netstandard1.1/fr/System.Net.Requests.xml",
  6955. "ref/netstandard1.1/it/System.Net.Requests.xml",
  6956. "ref/netstandard1.1/ja/System.Net.Requests.xml",
  6957. "ref/netstandard1.1/ko/System.Net.Requests.xml",
  6958. "ref/netstandard1.1/ru/System.Net.Requests.xml",
  6959. "ref/netstandard1.1/zh-hans/System.Net.Requests.xml",
  6960. "ref/netstandard1.1/zh-hant/System.Net.Requests.xml",
  6961. "ref/netstandard1.3/System.Net.Requests.dll",
  6962. "ref/netstandard1.3/System.Net.Requests.xml",
  6963. "ref/netstandard1.3/de/System.Net.Requests.xml",
  6964. "ref/netstandard1.3/es/System.Net.Requests.xml",
  6965. "ref/netstandard1.3/fr/System.Net.Requests.xml",
  6966. "ref/netstandard1.3/it/System.Net.Requests.xml",
  6967. "ref/netstandard1.3/ja/System.Net.Requests.xml",
  6968. "ref/netstandard1.3/ko/System.Net.Requests.xml",
  6969. "ref/netstandard1.3/ru/System.Net.Requests.xml",
  6970. "ref/netstandard1.3/zh-hans/System.Net.Requests.xml",
  6971. "ref/netstandard1.3/zh-hant/System.Net.Requests.xml",
  6972. "ref/portable-net45+win8+wp8+wpa81/_._",
  6973. "ref/win8/_._",
  6974. "ref/wp80/_._",
  6975. "ref/wpa81/_._",
  6976. "ref/xamarinios10/_._",
  6977. "ref/xamarinmac20/_._",
  6978. "ref/xamarintvos10/_._",
  6979. "ref/xamarinwatchos10/_._",
  6980. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll",
  6981. "runtimes/win/lib/net46/_._",
  6982. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll"
  6983. ]
  6984. },
  6985. "System.Net.Security/4.0.0": {
  6986. "sha512": "VDAJz83kg0UpbDI8dx97T8lpATcoowky6BYvVYqKAyWUeZ8dDS/SOUi8PciD4bYrnDEmpJpCxOZgxX2/VO+QxQ==",
  6987. "type": "package",
  6988. "path": "System.Net.Security/4.0.0",
  6989. "files": [
  6990. "System.Net.Security.4.0.0.nupkg.sha512",
  6991. "System.Net.Security.nuspec",
  6992. "ThirdPartyNotices.txt",
  6993. "dotnet_library_license.txt",
  6994. "lib/MonoAndroid10/_._",
  6995. "lib/MonoTouch10/_._",
  6996. "lib/net46/System.Net.Security.dll",
  6997. "lib/xamarinios10/_._",
  6998. "lib/xamarinmac20/_._",
  6999. "lib/xamarintvos10/_._",
  7000. "lib/xamarinwatchos10/_._",
  7001. "ref/MonoAndroid10/_._",
  7002. "ref/MonoTouch10/_._",
  7003. "ref/net46/System.Net.Security.dll",
  7004. "ref/netstandard1.3/System.Net.Security.dll",
  7005. "ref/netstandard1.3/System.Net.Security.xml",
  7006. "ref/netstandard1.3/de/System.Net.Security.xml",
  7007. "ref/netstandard1.3/es/System.Net.Security.xml",
  7008. "ref/netstandard1.3/fr/System.Net.Security.xml",
  7009. "ref/netstandard1.3/it/System.Net.Security.xml",
  7010. "ref/netstandard1.3/ja/System.Net.Security.xml",
  7011. "ref/netstandard1.3/ko/System.Net.Security.xml",
  7012. "ref/netstandard1.3/ru/System.Net.Security.xml",
  7013. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  7014. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  7015. "ref/xamarinios10/_._",
  7016. "ref/xamarinmac20/_._",
  7017. "ref/xamarintvos10/_._",
  7018. "ref/xamarinwatchos10/_._",
  7019. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  7020. "runtimes/win/lib/net46/System.Net.Security.dll",
  7021. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  7022. "runtimes/win7/lib/netcore50/_._"
  7023. ]
  7024. },
  7025. "System.Net.Sockets/4.3.0": {
  7026. "sha512": "KtqIgQ1TFnwpL/0fbB9pYZg3NzcOfTsC0GCx1a+w3MLkNCcyRs/F/UjunKzRDp5L9zWsKV822IyNuukxjgGuww==",
  7027. "type": "package",
  7028. "path": "System.Net.Sockets/4.3.0",
  7029. "files": [
  7030. "System.Net.Sockets.4.3.0.nupkg.sha512",
  7031. "System.Net.Sockets.nuspec",
  7032. "ThirdPartyNotices.txt",
  7033. "dotnet_library_license.txt",
  7034. "lib/MonoAndroid10/_._",
  7035. "lib/MonoTouch10/_._",
  7036. "lib/net46/System.Net.Sockets.dll",
  7037. "lib/xamarinios10/_._",
  7038. "lib/xamarinmac20/_._",
  7039. "lib/xamarintvos10/_._",
  7040. "lib/xamarinwatchos10/_._",
  7041. "ref/MonoAndroid10/_._",
  7042. "ref/MonoTouch10/_._",
  7043. "ref/net46/System.Net.Sockets.dll",
  7044. "ref/netstandard1.3/System.Net.Sockets.dll",
  7045. "ref/netstandard1.3/System.Net.Sockets.xml",
  7046. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7047. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7048. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7049. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7050. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7051. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7052. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7053. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7054. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7055. "ref/xamarinios10/_._",
  7056. "ref/xamarinmac20/_._",
  7057. "ref/xamarintvos10/_._",
  7058. "ref/xamarinwatchos10/_._"
  7059. ]
  7060. },
  7061. "System.Net.WebHeaderCollection/4.0.1": {
  7062. "sha512": "1wzUZ5bS+Tt2nbj75+BxWiTFgrcigDQHfWWoXJzz1LdvPCwkgkbbi+tqojxWnGy17Sm7t57zQLdWMVNvqU+OMw==",
  7063. "type": "package",
  7064. "path": "System.Net.WebHeaderCollection/4.0.1",
  7065. "files": [
  7066. "System.Net.WebHeaderCollection.4.0.1.nupkg.sha512",
  7067. "System.Net.WebHeaderCollection.nuspec",
  7068. "ThirdPartyNotices.txt",
  7069. "dotnet_library_license.txt",
  7070. "lib/MonoAndroid10/_._",
  7071. "lib/MonoTouch10/_._",
  7072. "lib/net46/_._",
  7073. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7074. "lib/xamarinios10/_._",
  7075. "lib/xamarinmac20/_._",
  7076. "lib/xamarintvos10/_._",
  7077. "lib/xamarinwatchos10/_._",
  7078. "ref/MonoAndroid10/_._",
  7079. "ref/MonoTouch10/_._",
  7080. "ref/net46/_._",
  7081. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7082. "ref/netstandard1.3/System.Net.WebHeaderCollection.xml",
  7083. "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml",
  7084. "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml",
  7085. "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml",
  7086. "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml",
  7087. "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml",
  7088. "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml",
  7089. "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml",
  7090. "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml",
  7091. "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml",
  7092. "ref/xamarinios10/_._",
  7093. "ref/xamarinmac20/_._",
  7094. "ref/xamarintvos10/_._",
  7095. "ref/xamarinwatchos10/_._"
  7096. ]
  7097. },
  7098. "System.Net.WebSockets/4.3.0": {
  7099. "sha512": "B4lrKZVGE6lp1OKhkIk+Nyapq0hM6x61WHB2pwa70E1BPl67raIynuUWH6usxdVye4T7Tp4o7yA20po03mNbhA==",
  7100. "type": "package",
  7101. "path": "System.Net.WebSockets/4.3.0",
  7102. "files": [
  7103. "System.Net.WebSockets.4.3.0.nupkg.sha512",
  7104. "System.Net.WebSockets.nuspec",
  7105. "ThirdPartyNotices.txt",
  7106. "dotnet_library_license.txt",
  7107. "lib/MonoAndroid10/_._",
  7108. "lib/MonoTouch10/_._",
  7109. "lib/net46/System.Net.WebSockets.dll",
  7110. "lib/netstandard1.3/System.Net.WebSockets.dll",
  7111. "lib/xamarinios10/_._",
  7112. "lib/xamarinmac20/_._",
  7113. "lib/xamarintvos10/_._",
  7114. "lib/xamarinwatchos10/_._",
  7115. "ref/MonoAndroid10/_._",
  7116. "ref/MonoTouch10/_._",
  7117. "ref/net46/System.Net.WebSockets.dll",
  7118. "ref/netstandard1.3/System.Net.WebSockets.dll",
  7119. "ref/netstandard1.3/System.Net.WebSockets.xml",
  7120. "ref/netstandard1.3/de/System.Net.WebSockets.xml",
  7121. "ref/netstandard1.3/es/System.Net.WebSockets.xml",
  7122. "ref/netstandard1.3/fr/System.Net.WebSockets.xml",
  7123. "ref/netstandard1.3/it/System.Net.WebSockets.xml",
  7124. "ref/netstandard1.3/ja/System.Net.WebSockets.xml",
  7125. "ref/netstandard1.3/ko/System.Net.WebSockets.xml",
  7126. "ref/netstandard1.3/ru/System.Net.WebSockets.xml",
  7127. "ref/netstandard1.3/zh-hans/System.Net.WebSockets.xml",
  7128. "ref/netstandard1.3/zh-hant/System.Net.WebSockets.xml",
  7129. "ref/xamarinios10/_._",
  7130. "ref/xamarinmac20/_._",
  7131. "ref/xamarintvos10/_._",
  7132. "ref/xamarinwatchos10/_._"
  7133. ]
  7134. },
  7135. "System.Numerics.Vectors/4.1.1": {
  7136. "sha512": "lwrxnXsh0D6LMkShlrOit+NPn+BwEFn+q7Ul00BgIlDHQ3iWRQYY/aNV11PsIEWgreHV06wiN83G/fWp4n58CA==",
  7137. "type": "package",
  7138. "path": "System.Numerics.Vectors/4.1.1",
  7139. "files": [
  7140. "System.Numerics.Vectors.4.1.1.nupkg.sha512",
  7141. "System.Numerics.Vectors.nuspec",
  7142. "ThirdPartyNotices.txt",
  7143. "dotnet_library_license.txt",
  7144. "lib/MonoAndroid10/_._",
  7145. "lib/MonoTouch10/_._",
  7146. "lib/net46/System.Numerics.Vectors.dll",
  7147. "lib/net46/System.Numerics.Vectors.xml",
  7148. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  7149. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  7150. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  7151. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  7152. "lib/xamarinios10/_._",
  7153. "lib/xamarinmac20/_._",
  7154. "lib/xamarintvos10/_._",
  7155. "lib/xamarinwatchos10/_._",
  7156. "ref/MonoAndroid10/_._",
  7157. "ref/MonoTouch10/_._",
  7158. "ref/net46/System.Numerics.Vectors.dll",
  7159. "ref/net46/System.Numerics.Vectors.xml",
  7160. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  7161. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  7162. "ref/xamarinios10/_._",
  7163. "ref/xamarinmac20/_._",
  7164. "ref/xamarintvos10/_._",
  7165. "ref/xamarinwatchos10/_._"
  7166. ]
  7167. },
  7168. "System.ObjectModel/4.3.0": {
  7169. "sha512": "04rvkI2O4vQW06QHRKPOlMMjLwKPyHpFjOgSq3YtQqzoVy8lzaC/CtbhHJzb6E2/0hP6gMCxFz0cOvTOUoLa2g==",
  7170. "type": "package",
  7171. "path": "System.ObjectModel/4.3.0",
  7172. "files": [
  7173. "System.ObjectModel.4.3.0.nupkg.sha512",
  7174. "System.ObjectModel.nuspec",
  7175. "ThirdPartyNotices.txt",
  7176. "dotnet_library_license.txt",
  7177. "lib/MonoAndroid10/_._",
  7178. "lib/MonoTouch10/_._",
  7179. "lib/net45/_._",
  7180. "lib/netcore50/System.ObjectModel.dll",
  7181. "lib/netstandard1.3/System.ObjectModel.dll",
  7182. "lib/portable-net45+win8+wp8+wpa81/_._",
  7183. "lib/win8/_._",
  7184. "lib/wp80/_._",
  7185. "lib/wpa81/_._",
  7186. "lib/xamarinios10/_._",
  7187. "lib/xamarinmac20/_._",
  7188. "lib/xamarintvos10/_._",
  7189. "lib/xamarinwatchos10/_._",
  7190. "ref/MonoAndroid10/_._",
  7191. "ref/MonoTouch10/_._",
  7192. "ref/net45/_._",
  7193. "ref/netcore50/System.ObjectModel.dll",
  7194. "ref/netcore50/System.ObjectModel.xml",
  7195. "ref/netcore50/de/System.ObjectModel.xml",
  7196. "ref/netcore50/es/System.ObjectModel.xml",
  7197. "ref/netcore50/fr/System.ObjectModel.xml",
  7198. "ref/netcore50/it/System.ObjectModel.xml",
  7199. "ref/netcore50/ja/System.ObjectModel.xml",
  7200. "ref/netcore50/ko/System.ObjectModel.xml",
  7201. "ref/netcore50/ru/System.ObjectModel.xml",
  7202. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7203. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7204. "ref/netstandard1.0/System.ObjectModel.dll",
  7205. "ref/netstandard1.0/System.ObjectModel.xml",
  7206. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7207. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7208. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7209. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7210. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7211. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7212. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7213. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7214. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7215. "ref/netstandard1.3/System.ObjectModel.dll",
  7216. "ref/netstandard1.3/System.ObjectModel.xml",
  7217. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7218. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7219. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7220. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7221. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7222. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7223. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7224. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7225. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7226. "ref/portable-net45+win8+wp8+wpa81/_._",
  7227. "ref/win8/_._",
  7228. "ref/wp80/_._",
  7229. "ref/wpa81/_._",
  7230. "ref/xamarinios10/_._",
  7231. "ref/xamarinmac20/_._",
  7232. "ref/xamarintvos10/_._",
  7233. "ref/xamarinwatchos10/_._"
  7234. ]
  7235. },
  7236. "System.Reflection/4.3.0": {
  7237. "sha512": "rIm0+BBrDLfCzhbIrVlqqrYxjqUS1/KIV0HLsVG2cN5PGGOyVTpnged4vC2YL5yHnPaqKJgqhU5Sk+2RnEbmfw==",
  7238. "type": "package",
  7239. "path": "System.Reflection/4.3.0",
  7240. "files": [
  7241. "System.Reflection.4.3.0.nupkg.sha512",
  7242. "System.Reflection.nuspec",
  7243. "ThirdPartyNotices.txt",
  7244. "dotnet_library_license.txt",
  7245. "lib/MonoAndroid10/_._",
  7246. "lib/MonoTouch10/_._",
  7247. "lib/net45/_._",
  7248. "lib/net462/System.Reflection.dll",
  7249. "lib/portable-net45+win8+wp8+wpa81/_._",
  7250. "lib/win8/_._",
  7251. "lib/wp80/_._",
  7252. "lib/wpa81/_._",
  7253. "lib/xamarinios10/_._",
  7254. "lib/xamarinmac20/_._",
  7255. "lib/xamarintvos10/_._",
  7256. "lib/xamarinwatchos10/_._",
  7257. "ref/MonoAndroid10/_._",
  7258. "ref/MonoTouch10/_._",
  7259. "ref/net45/_._",
  7260. "ref/net462/System.Reflection.dll",
  7261. "ref/netcore50/System.Reflection.dll",
  7262. "ref/netcore50/System.Reflection.xml",
  7263. "ref/netcore50/de/System.Reflection.xml",
  7264. "ref/netcore50/es/System.Reflection.xml",
  7265. "ref/netcore50/fr/System.Reflection.xml",
  7266. "ref/netcore50/it/System.Reflection.xml",
  7267. "ref/netcore50/ja/System.Reflection.xml",
  7268. "ref/netcore50/ko/System.Reflection.xml",
  7269. "ref/netcore50/ru/System.Reflection.xml",
  7270. "ref/netcore50/zh-hans/System.Reflection.xml",
  7271. "ref/netcore50/zh-hant/System.Reflection.xml",
  7272. "ref/netstandard1.0/System.Reflection.dll",
  7273. "ref/netstandard1.0/System.Reflection.xml",
  7274. "ref/netstandard1.0/de/System.Reflection.xml",
  7275. "ref/netstandard1.0/es/System.Reflection.xml",
  7276. "ref/netstandard1.0/fr/System.Reflection.xml",
  7277. "ref/netstandard1.0/it/System.Reflection.xml",
  7278. "ref/netstandard1.0/ja/System.Reflection.xml",
  7279. "ref/netstandard1.0/ko/System.Reflection.xml",
  7280. "ref/netstandard1.0/ru/System.Reflection.xml",
  7281. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7282. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7283. "ref/netstandard1.3/System.Reflection.dll",
  7284. "ref/netstandard1.3/System.Reflection.xml",
  7285. "ref/netstandard1.3/de/System.Reflection.xml",
  7286. "ref/netstandard1.3/es/System.Reflection.xml",
  7287. "ref/netstandard1.3/fr/System.Reflection.xml",
  7288. "ref/netstandard1.3/it/System.Reflection.xml",
  7289. "ref/netstandard1.3/ja/System.Reflection.xml",
  7290. "ref/netstandard1.3/ko/System.Reflection.xml",
  7291. "ref/netstandard1.3/ru/System.Reflection.xml",
  7292. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7293. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7294. "ref/netstandard1.5/System.Reflection.dll",
  7295. "ref/netstandard1.5/System.Reflection.xml",
  7296. "ref/netstandard1.5/de/System.Reflection.xml",
  7297. "ref/netstandard1.5/es/System.Reflection.xml",
  7298. "ref/netstandard1.5/fr/System.Reflection.xml",
  7299. "ref/netstandard1.5/it/System.Reflection.xml",
  7300. "ref/netstandard1.5/ja/System.Reflection.xml",
  7301. "ref/netstandard1.5/ko/System.Reflection.xml",
  7302. "ref/netstandard1.5/ru/System.Reflection.xml",
  7303. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7304. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7305. "ref/portable-net45+win8+wp8+wpa81/_._",
  7306. "ref/win8/_._",
  7307. "ref/wp80/_._",
  7308. "ref/wpa81/_._",
  7309. "ref/xamarinios10/_._",
  7310. "ref/xamarinmac20/_._",
  7311. "ref/xamarintvos10/_._",
  7312. "ref/xamarinwatchos10/_._"
  7313. ]
  7314. },
  7315. "System.Reflection.DispatchProxy/4.0.1": {
  7316. "sha512": "SsEK/GSCyMWk4CvftyexYZjKKPE+9HjrlKo7F9AqErUffgqDQh60sm90C4YLA8xfq90ymJL/veXl/OewOQ/Hyw==",
  7317. "type": "package",
  7318. "path": "System.Reflection.DispatchProxy/4.0.1",
  7319. "files": [
  7320. "System.Reflection.DispatchProxy.4.0.1.nupkg.sha512",
  7321. "System.Reflection.DispatchProxy.nuspec",
  7322. "ThirdPartyNotices.txt",
  7323. "dotnet_library_license.txt",
  7324. "lib/MonoAndroid10/_._",
  7325. "lib/MonoTouch10/_._",
  7326. "lib/netstandard1.3/System.Reflection.DispatchProxy.dll",
  7327. "lib/xamarinios10/_._",
  7328. "lib/xamarinmac20/_._",
  7329. "lib/xamarintvos10/_._",
  7330. "lib/xamarinwatchos10/_._",
  7331. "ref/MonoAndroid10/_._",
  7332. "ref/MonoTouch10/_._",
  7333. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll",
  7334. "ref/netstandard1.3/System.Reflection.DispatchProxy.xml",
  7335. "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml",
  7336. "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml",
  7337. "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml",
  7338. "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml",
  7339. "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml",
  7340. "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml",
  7341. "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml",
  7342. "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml",
  7343. "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml",
  7344. "ref/xamarinios10/_._",
  7345. "ref/xamarinmac20/_._",
  7346. "ref/xamarintvos10/_._",
  7347. "ref/xamarinwatchos10/_._",
  7348. "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll"
  7349. ]
  7350. },
  7351. "System.Reflection.Emit/4.3.0": {
  7352. "sha512": "y0LBLyMUaxkALaxB8vhoIDC3kxRW8ASkL7cK86kbN2CpauEWE+SPGUbca2inK+HMPImkN9ut74l4DSnB30ozFQ==",
  7353. "type": "package",
  7354. "path": "System.Reflection.Emit/4.3.0",
  7355. "files": [
  7356. "System.Reflection.Emit.4.3.0.nupkg.sha512",
  7357. "System.Reflection.Emit.nuspec",
  7358. "ThirdPartyNotices.txt",
  7359. "dotnet_library_license.txt",
  7360. "lib/MonoAndroid10/_._",
  7361. "lib/monotouch10/_._",
  7362. "lib/net45/_._",
  7363. "lib/netcore50/System.Reflection.Emit.dll",
  7364. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7365. "lib/xamarinios10/_._",
  7366. "lib/xamarinmac20/_._",
  7367. "lib/xamarintvos10/_._",
  7368. "lib/xamarinwatchos10/_._",
  7369. "ref/MonoAndroid10/_._",
  7370. "ref/net45/_._",
  7371. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7372. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7373. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7374. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7375. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7376. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7377. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7378. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7379. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7380. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7381. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7382. "ref/xamarinmac20/_._"
  7383. ]
  7384. },
  7385. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7386. "sha512": "gESuD3AAQLwwD3up3lCmH0vi0sPq2E4Zi7nx4hUkuqSXm7dF4kuQqrWkKgrT2F+HHG9oxf1p/t1s+VC2jKcFmQ==",
  7387. "type": "package",
  7388. "path": "System.Reflection.Emit.ILGeneration/4.3.0",
  7389. "files": [
  7390. "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
  7391. "System.Reflection.Emit.ILGeneration.nuspec",
  7392. "ThirdPartyNotices.txt",
  7393. "dotnet_library_license.txt",
  7394. "lib/MonoAndroid10/_._",
  7395. "lib/MonoTouch10/_._",
  7396. "lib/net45/_._",
  7397. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7398. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7399. "lib/portable-net45+wp8/_._",
  7400. "lib/wp80/_._",
  7401. "lib/xamarinios10/_._",
  7402. "lib/xamarinmac20/_._",
  7403. "lib/xamarintvos10/_._",
  7404. "lib/xamarinwatchos10/_._",
  7405. "ref/MonoAndroid10/_._",
  7406. "ref/MonoTouch10/_._",
  7407. "ref/net45/_._",
  7408. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7409. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7410. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7411. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7412. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7413. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7414. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7415. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7416. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7417. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7418. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7419. "ref/portable-net45+wp8/_._",
  7420. "ref/wp80/_._",
  7421. "ref/xamarinios10/_._",
  7422. "ref/xamarinmac20/_._",
  7423. "ref/xamarintvos10/_._",
  7424. "ref/xamarinwatchos10/_._",
  7425. "runtimes/aot/lib/netcore50/_._"
  7426. ]
  7427. },
  7428. "System.Reflection.Emit.Lightweight/4.3.0": {
  7429. "sha512": "17M3uPACyrdLG/RZoY6irUI6WhLXPL8AnTUt6og3/ko3kgAwxe8jFT6m9mAQ44qVElUlBhqLb9G+iDp54GyrNg==",
  7430. "type": "package",
  7431. "path": "System.Reflection.Emit.Lightweight/4.3.0",
  7432. "files": [
  7433. "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
  7434. "System.Reflection.Emit.Lightweight.nuspec",
  7435. "ThirdPartyNotices.txt",
  7436. "dotnet_library_license.txt",
  7437. "lib/MonoAndroid10/_._",
  7438. "lib/MonoTouch10/_._",
  7439. "lib/net45/_._",
  7440. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7441. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7442. "lib/portable-net45+wp8/_._",
  7443. "lib/wp80/_._",
  7444. "lib/xamarinios10/_._",
  7445. "lib/xamarinmac20/_._",
  7446. "lib/xamarintvos10/_._",
  7447. "lib/xamarinwatchos10/_._",
  7448. "ref/MonoAndroid10/_._",
  7449. "ref/MonoTouch10/_._",
  7450. "ref/net45/_._",
  7451. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7452. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7453. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7454. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7455. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7456. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7457. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7458. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7459. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7460. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7461. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7462. "ref/portable-net45+wp8/_._",
  7463. "ref/wp80/_._",
  7464. "ref/xamarinios10/_._",
  7465. "ref/xamarinmac20/_._",
  7466. "ref/xamarintvos10/_._",
  7467. "ref/xamarinwatchos10/_._",
  7468. "runtimes/aot/lib/netcore50/_._"
  7469. ]
  7470. },
  7471. "System.Reflection.Extensions/4.3.0": {
  7472. "sha512": "TmoUwQELjPHz4mM5iiCbsqlh7pGvmbD+9zkXWQLlVR7xJaBb+KX/j41nXyX4iTqs7JEdojvT3kt/u7ZCW2TjbA==",
  7473. "type": "package",
  7474. "path": "System.Reflection.Extensions/4.3.0",
  7475. "files": [
  7476. "System.Reflection.Extensions.4.3.0.nupkg.sha512",
  7477. "System.Reflection.Extensions.nuspec",
  7478. "ThirdPartyNotices.txt",
  7479. "dotnet_library_license.txt",
  7480. "lib/MonoAndroid10/_._",
  7481. "lib/MonoTouch10/_._",
  7482. "lib/net45/_._",
  7483. "lib/portable-net45+win8+wp8+wpa81/_._",
  7484. "lib/win8/_._",
  7485. "lib/wp80/_._",
  7486. "lib/wpa81/_._",
  7487. "lib/xamarinios10/_._",
  7488. "lib/xamarinmac20/_._",
  7489. "lib/xamarintvos10/_._",
  7490. "lib/xamarinwatchos10/_._",
  7491. "ref/MonoAndroid10/_._",
  7492. "ref/MonoTouch10/_._",
  7493. "ref/net45/_._",
  7494. "ref/netcore50/System.Reflection.Extensions.dll",
  7495. "ref/netcore50/System.Reflection.Extensions.xml",
  7496. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7497. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7498. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7499. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7500. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7501. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7502. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7503. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7504. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7505. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7506. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7507. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7508. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7509. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7510. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7511. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7512. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7513. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7514. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7515. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7516. "ref/portable-net45+win8+wp8+wpa81/_._",
  7517. "ref/win8/_._",
  7518. "ref/wp80/_._",
  7519. "ref/wpa81/_._",
  7520. "ref/xamarinios10/_._",
  7521. "ref/xamarinmac20/_._",
  7522. "ref/xamarintvos10/_._",
  7523. "ref/xamarinwatchos10/_._"
  7524. ]
  7525. },
  7526. "System.Reflection.Metadata/1.3.0": {
  7527. "sha512": "F/bOSVnz+UaCELtSm4tlrWNwUTRSMfxIxmQZNZM/SY144LXkaGWuc4WAtr/jQHbiWl7UEAHlJU7P59Rw72A1xA==",
  7528. "type": "package",
  7529. "path": "System.Reflection.Metadata/1.3.0",
  7530. "files": [
  7531. "System.Reflection.Metadata.1.3.0.nupkg.sha512",
  7532. "System.Reflection.Metadata.nuspec",
  7533. "ThirdPartyNotices.txt",
  7534. "dotnet_library_license.txt",
  7535. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  7536. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  7537. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  7538. "lib/portable-net45+win8/System.Reflection.Metadata.xml"
  7539. ]
  7540. },
  7541. "System.Reflection.Primitives/4.3.0": {
  7542. "sha512": "nOjHLSGyMAcNd4KHC6+VQguBjVfSJ/GiGfofmVRvctMB/nZPFuc1ttpa7VUf2Jjae44fOQFgr1omhbKOGykaQA==",
  7543. "type": "package",
  7544. "path": "System.Reflection.Primitives/4.3.0",
  7545. "files": [
  7546. "System.Reflection.Primitives.4.3.0.nupkg.sha512",
  7547. "System.Reflection.Primitives.nuspec",
  7548. "ThirdPartyNotices.txt",
  7549. "dotnet_library_license.txt",
  7550. "lib/MonoAndroid10/_._",
  7551. "lib/MonoTouch10/_._",
  7552. "lib/net45/_._",
  7553. "lib/portable-net45+win8+wp8+wpa81/_._",
  7554. "lib/win8/_._",
  7555. "lib/wp80/_._",
  7556. "lib/wpa81/_._",
  7557. "lib/xamarinios10/_._",
  7558. "lib/xamarinmac20/_._",
  7559. "lib/xamarintvos10/_._",
  7560. "lib/xamarinwatchos10/_._",
  7561. "ref/MonoAndroid10/_._",
  7562. "ref/MonoTouch10/_._",
  7563. "ref/net45/_._",
  7564. "ref/netcore50/System.Reflection.Primitives.dll",
  7565. "ref/netcore50/System.Reflection.Primitives.xml",
  7566. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7567. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7568. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7569. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7570. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7571. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7572. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7573. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7574. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7575. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7576. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7577. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7578. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7579. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7580. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7581. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7582. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7583. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7584. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7585. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7586. "ref/portable-net45+win8+wp8+wpa81/_._",
  7587. "ref/win8/_._",
  7588. "ref/wp80/_._",
  7589. "ref/wpa81/_._",
  7590. "ref/xamarinios10/_._",
  7591. "ref/xamarinmac20/_._",
  7592. "ref/xamarintvos10/_._",
  7593. "ref/xamarinwatchos10/_._"
  7594. ]
  7595. },
  7596. "System.Reflection.TypeExtensions/4.3.0": {
  7597. "sha512": "mBE8znhdqUyHut5iu/mvMPzh0QWkWimCvddJso+6nqOmbte4XHEY1nzDw9uUW52F6NrueuD2lgx6aY+IY+l2pA==",
  7598. "type": "package",
  7599. "path": "System.Reflection.TypeExtensions/4.3.0",
  7600. "files": [
  7601. "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
  7602. "System.Reflection.TypeExtensions.nuspec",
  7603. "ThirdPartyNotices.txt",
  7604. "dotnet_library_license.txt",
  7605. "lib/MonoAndroid10/_._",
  7606. "lib/MonoTouch10/_._",
  7607. "lib/net46/System.Reflection.TypeExtensions.dll",
  7608. "lib/net462/System.Reflection.TypeExtensions.dll",
  7609. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7610. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7611. "lib/xamarinios10/_._",
  7612. "lib/xamarinmac20/_._",
  7613. "lib/xamarintvos10/_._",
  7614. "lib/xamarinwatchos10/_._",
  7615. "ref/MonoAndroid10/_._",
  7616. "ref/MonoTouch10/_._",
  7617. "ref/net46/System.Reflection.TypeExtensions.dll",
  7618. "ref/net462/System.Reflection.TypeExtensions.dll",
  7619. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7620. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7621. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7622. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7623. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7624. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7625. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7626. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7627. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7628. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7629. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7630. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7631. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7632. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7633. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7634. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7635. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7636. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7637. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7638. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7639. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7640. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7641. "ref/xamarinios10/_._",
  7642. "ref/xamarinmac20/_._",
  7643. "ref/xamarintvos10/_._",
  7644. "ref/xamarinwatchos10/_._",
  7645. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
  7646. ]
  7647. },
  7648. "System.Resources.Reader/4.0.0": {
  7649. "sha512": "o6eCc+whqNhmx4z3e858gXBS6XGbGtQxvcdfJq1l8xO0Ze2riQ01dsE1BkeoDyuo3goQOPhaXiXh11BXMOxsGg==",
  7650. "type": "package",
  7651. "path": "System.Resources.Reader/4.0.0",
  7652. "files": [
  7653. "System.Resources.Reader.4.0.0.nupkg.sha512",
  7654. "System.Resources.Reader.nuspec",
  7655. "ThirdPartyNotices.txt",
  7656. "dotnet_library_license.txt",
  7657. "lib/netstandard1.0/System.Resources.Reader.dll"
  7658. ]
  7659. },
  7660. "System.Resources.ResourceManager/4.3.0": {
  7661. "sha512": "R8JNBwxjGxZCaEPmMDCPXGS7nBjqBc3IZStpfGu1HfZVIvT0i52z9hnH2krhYUYRRt9ZVxSxdkIuDsw5ECd+Ow==",
  7662. "type": "package",
  7663. "path": "System.Resources.ResourceManager/4.3.0",
  7664. "files": [
  7665. "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
  7666. "System.Resources.ResourceManager.nuspec",
  7667. "ThirdPartyNotices.txt",
  7668. "dotnet_library_license.txt",
  7669. "lib/MonoAndroid10/_._",
  7670. "lib/MonoTouch10/_._",
  7671. "lib/net45/_._",
  7672. "lib/portable-net45+win8+wp8+wpa81/_._",
  7673. "lib/win8/_._",
  7674. "lib/wp80/_._",
  7675. "lib/wpa81/_._",
  7676. "lib/xamarinios10/_._",
  7677. "lib/xamarinmac20/_._",
  7678. "lib/xamarintvos10/_._",
  7679. "lib/xamarinwatchos10/_._",
  7680. "ref/MonoAndroid10/_._",
  7681. "ref/MonoTouch10/_._",
  7682. "ref/net45/_._",
  7683. "ref/netcore50/System.Resources.ResourceManager.dll",
  7684. "ref/netcore50/System.Resources.ResourceManager.xml",
  7685. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7686. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7687. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7688. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7689. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7690. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7691. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7692. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7693. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7694. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7695. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7696. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7697. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7698. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7699. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7700. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7701. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7702. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7703. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7704. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7705. "ref/portable-net45+win8+wp8+wpa81/_._",
  7706. "ref/win8/_._",
  7707. "ref/wp80/_._",
  7708. "ref/wpa81/_._",
  7709. "ref/xamarinios10/_._",
  7710. "ref/xamarinmac20/_._",
  7711. "ref/xamarintvos10/_._",
  7712. "ref/xamarinwatchos10/_._"
  7713. ]
  7714. },
  7715. "System.Runtime/4.3.0": {
  7716. "sha512": "GInOqt4B5f1RrcK10DwaNUZff0zDSZ2/wcHKA3SLTpwKEMZ6RT0NG4OYfT/y6rwvZ2PnJgT6U/lfzkX2wDlH4A==",
  7717. "type": "package",
  7718. "path": "System.Runtime/4.3.0",
  7719. "files": [
  7720. "System.Runtime.4.3.0.nupkg.sha512",
  7721. "System.Runtime.nuspec",
  7722. "ThirdPartyNotices.txt",
  7723. "dotnet_library_license.txt",
  7724. "lib/MonoAndroid10/_._",
  7725. "lib/MonoTouch10/_._",
  7726. "lib/net45/_._",
  7727. "lib/net462/System.Runtime.dll",
  7728. "lib/portable-net45+win8+wp80+wpa81/_._",
  7729. "lib/win8/_._",
  7730. "lib/wp80/_._",
  7731. "lib/wpa81/_._",
  7732. "lib/xamarinios10/_._",
  7733. "lib/xamarinmac20/_._",
  7734. "lib/xamarintvos10/_._",
  7735. "lib/xamarinwatchos10/_._",
  7736. "ref/MonoAndroid10/_._",
  7737. "ref/MonoTouch10/_._",
  7738. "ref/net45/_._",
  7739. "ref/net462/System.Runtime.dll",
  7740. "ref/netcore50/System.Runtime.dll",
  7741. "ref/netcore50/System.Runtime.xml",
  7742. "ref/netcore50/de/System.Runtime.xml",
  7743. "ref/netcore50/es/System.Runtime.xml",
  7744. "ref/netcore50/fr/System.Runtime.xml",
  7745. "ref/netcore50/it/System.Runtime.xml",
  7746. "ref/netcore50/ja/System.Runtime.xml",
  7747. "ref/netcore50/ko/System.Runtime.xml",
  7748. "ref/netcore50/ru/System.Runtime.xml",
  7749. "ref/netcore50/zh-hans/System.Runtime.xml",
  7750. "ref/netcore50/zh-hant/System.Runtime.xml",
  7751. "ref/netstandard1.0/System.Runtime.dll",
  7752. "ref/netstandard1.0/System.Runtime.xml",
  7753. "ref/netstandard1.0/de/System.Runtime.xml",
  7754. "ref/netstandard1.0/es/System.Runtime.xml",
  7755. "ref/netstandard1.0/fr/System.Runtime.xml",
  7756. "ref/netstandard1.0/it/System.Runtime.xml",
  7757. "ref/netstandard1.0/ja/System.Runtime.xml",
  7758. "ref/netstandard1.0/ko/System.Runtime.xml",
  7759. "ref/netstandard1.0/ru/System.Runtime.xml",
  7760. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7761. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7762. "ref/netstandard1.2/System.Runtime.dll",
  7763. "ref/netstandard1.2/System.Runtime.xml",
  7764. "ref/netstandard1.2/de/System.Runtime.xml",
  7765. "ref/netstandard1.2/es/System.Runtime.xml",
  7766. "ref/netstandard1.2/fr/System.Runtime.xml",
  7767. "ref/netstandard1.2/it/System.Runtime.xml",
  7768. "ref/netstandard1.2/ja/System.Runtime.xml",
  7769. "ref/netstandard1.2/ko/System.Runtime.xml",
  7770. "ref/netstandard1.2/ru/System.Runtime.xml",
  7771. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7772. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7773. "ref/netstandard1.3/System.Runtime.dll",
  7774. "ref/netstandard1.3/System.Runtime.xml",
  7775. "ref/netstandard1.3/de/System.Runtime.xml",
  7776. "ref/netstandard1.3/es/System.Runtime.xml",
  7777. "ref/netstandard1.3/fr/System.Runtime.xml",
  7778. "ref/netstandard1.3/it/System.Runtime.xml",
  7779. "ref/netstandard1.3/ja/System.Runtime.xml",
  7780. "ref/netstandard1.3/ko/System.Runtime.xml",
  7781. "ref/netstandard1.3/ru/System.Runtime.xml",
  7782. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7783. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7784. "ref/netstandard1.5/System.Runtime.dll",
  7785. "ref/netstandard1.5/System.Runtime.xml",
  7786. "ref/netstandard1.5/de/System.Runtime.xml",
  7787. "ref/netstandard1.5/es/System.Runtime.xml",
  7788. "ref/netstandard1.5/fr/System.Runtime.xml",
  7789. "ref/netstandard1.5/it/System.Runtime.xml",
  7790. "ref/netstandard1.5/ja/System.Runtime.xml",
  7791. "ref/netstandard1.5/ko/System.Runtime.xml",
  7792. "ref/netstandard1.5/ru/System.Runtime.xml",
  7793. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7794. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7795. "ref/portable-net45+win8+wp80+wpa81/_._",
  7796. "ref/win8/_._",
  7797. "ref/wp80/_._",
  7798. "ref/wpa81/_._",
  7799. "ref/xamarinios10/_._",
  7800. "ref/xamarinmac20/_._",
  7801. "ref/xamarintvos10/_._",
  7802. "ref/xamarinwatchos10/_._"
  7803. ]
  7804. },
  7805. "System.Runtime.CompilerServices.Unsafe/4.3.0": {
  7806. "sha512": "xhacsojOHYwPbRPNwT1bqhaXp1p4eMuctUXrOwL25kHrs3HIT6MK5EzazfbshWDKv5d3je6Dha9zChGhPMNjTA==",
  7807. "type": "package",
  7808. "path": "System.Runtime.CompilerServices.Unsafe/4.3.0",
  7809. "files": [
  7810. "System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg.sha512",
  7811. "System.Runtime.CompilerServices.Unsafe.nuspec",
  7812. "ThirdPartyNotices.txt",
  7813. "dotnet_library_license.txt",
  7814. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7815. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml"
  7816. ]
  7817. },
  7818. "System.Runtime.Extensions/4.3.0": {
  7819. "sha512": "N8FTfVQk8FkB/VM8jwi/m5L/i6VOilcNjRLGO99MobplmUqy8nhh8Wnfy2nM3jwOdSXjcA2ypZ9hoZl4bOI9QQ==",
  7820. "type": "package",
  7821. "path": "System.Runtime.Extensions/4.3.0",
  7822. "files": [
  7823. "System.Runtime.Extensions.4.3.0.nupkg.sha512",
  7824. "System.Runtime.Extensions.nuspec",
  7825. "ThirdPartyNotices.txt",
  7826. "dotnet_library_license.txt",
  7827. "lib/MonoAndroid10/_._",
  7828. "lib/MonoTouch10/_._",
  7829. "lib/net45/_._",
  7830. "lib/net462/System.Runtime.Extensions.dll",
  7831. "lib/portable-net45+win8+wp8+wpa81/_._",
  7832. "lib/win8/_._",
  7833. "lib/wp80/_._",
  7834. "lib/wpa81/_._",
  7835. "lib/xamarinios10/_._",
  7836. "lib/xamarinmac20/_._",
  7837. "lib/xamarintvos10/_._",
  7838. "lib/xamarinwatchos10/_._",
  7839. "ref/MonoAndroid10/_._",
  7840. "ref/MonoTouch10/_._",
  7841. "ref/net45/_._",
  7842. "ref/net462/System.Runtime.Extensions.dll",
  7843. "ref/netcore50/System.Runtime.Extensions.dll",
  7844. "ref/netcore50/System.Runtime.Extensions.xml",
  7845. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7846. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7847. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7848. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7849. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7850. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7851. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7852. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7853. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7854. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7855. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7856. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7857. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7858. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7859. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7860. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7861. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7862. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7863. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7864. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7865. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7866. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7867. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7868. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7869. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7870. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7871. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7872. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7873. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7874. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7875. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7876. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7877. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7878. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7879. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7880. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7881. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7882. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7883. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7884. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7885. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7886. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7887. "ref/portable-net45+win8+wp8+wpa81/_._",
  7888. "ref/win8/_._",
  7889. "ref/wp80/_._",
  7890. "ref/wpa81/_._",
  7891. "ref/xamarinios10/_._",
  7892. "ref/xamarinmac20/_._",
  7893. "ref/xamarintvos10/_._",
  7894. "ref/xamarinwatchos10/_._"
  7895. ]
  7896. },
  7897. "System.Runtime.Handles/4.3.0": {
  7898. "sha512": "fGofPWaMaMt5S3smhLR2EIjTlpqjkVuc+5kuNaus0VcZrYNXTvjBwzgu5GXhOS59q5zUs8l2dtE2jzVzIlQCSg==",
  7899. "type": "package",
  7900. "path": "System.Runtime.Handles/4.3.0",
  7901. "files": [
  7902. "System.Runtime.Handles.4.3.0.nupkg.sha512",
  7903. "System.Runtime.Handles.nuspec",
  7904. "ThirdPartyNotices.txt",
  7905. "dotnet_library_license.txt",
  7906. "lib/MonoAndroid10/_._",
  7907. "lib/MonoTouch10/_._",
  7908. "lib/net46/_._",
  7909. "lib/xamarinios10/_._",
  7910. "lib/xamarinmac20/_._",
  7911. "lib/xamarintvos10/_._",
  7912. "lib/xamarinwatchos10/_._",
  7913. "ref/MonoAndroid10/_._",
  7914. "ref/MonoTouch10/_._",
  7915. "ref/net46/_._",
  7916. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7917. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7918. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7919. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7920. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7921. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7922. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7923. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7924. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7925. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7926. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7927. "ref/xamarinios10/_._",
  7928. "ref/xamarinmac20/_._",
  7929. "ref/xamarintvos10/_._",
  7930. "ref/xamarinwatchos10/_._"
  7931. ]
  7932. },
  7933. "System.Runtime.InteropServices/4.3.0": {
  7934. "sha512": "X0kW7e0Wq6inWIDDZhy0JfBAUHiJ+Z99LWLae54MUIMgby0pZuEaXziAd9dPsLOids04ft9ksIkLZrmDBHWHtA==",
  7935. "type": "package",
  7936. "path": "System.Runtime.InteropServices/4.3.0",
  7937. "files": [
  7938. "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
  7939. "System.Runtime.InteropServices.nuspec",
  7940. "ThirdPartyNotices.txt",
  7941. "dotnet_library_license.txt",
  7942. "lib/MonoAndroid10/_._",
  7943. "lib/MonoTouch10/_._",
  7944. "lib/net45/_._",
  7945. "lib/net462/System.Runtime.InteropServices.dll",
  7946. "lib/net463/System.Runtime.InteropServices.dll",
  7947. "lib/portable-net45+win8+wpa81/_._",
  7948. "lib/win8/_._",
  7949. "lib/wpa81/_._",
  7950. "lib/xamarinios10/_._",
  7951. "lib/xamarinmac20/_._",
  7952. "lib/xamarintvos10/_._",
  7953. "lib/xamarinwatchos10/_._",
  7954. "ref/MonoAndroid10/_._",
  7955. "ref/MonoTouch10/_._",
  7956. "ref/net45/_._",
  7957. "ref/net462/System.Runtime.InteropServices.dll",
  7958. "ref/net463/System.Runtime.InteropServices.dll",
  7959. "ref/netcore50/System.Runtime.InteropServices.dll",
  7960. "ref/netcore50/System.Runtime.InteropServices.xml",
  7961. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7962. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7963. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7964. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7965. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7966. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7967. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7968. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7969. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7970. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7971. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7972. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7973. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7974. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7975. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7976. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7977. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7978. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7979. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7980. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7981. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7982. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7983. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7984. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7985. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7986. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7987. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7988. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7989. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7990. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7991. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7992. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7993. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7994. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7995. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7996. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7997. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7998. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7999. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8000. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8001. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8002. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8003. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8004. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8005. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8006. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8007. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8008. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8009. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8010. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8011. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8012. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8013. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8014. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8015. "ref/portable-net45+win8+wpa81/_._",
  8016. "ref/win8/_._",
  8017. "ref/wpa81/_._",
  8018. "ref/xamarinios10/_._",
  8019. "ref/xamarinmac20/_._",
  8020. "ref/xamarintvos10/_._",
  8021. "ref/xamarinwatchos10/_._"
  8022. ]
  8023. },
  8024. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8025. "sha512": "eMlGhHMyby7s1jrGSus4vbAHQsigM6nmzenfJ9L/Lx42ZtvHMm69yWagPwVQ7vWEOcJoChHv93qMmvhrPNJ5jQ==",
  8026. "type": "package",
  8027. "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
  8028. "files": [
  8029. "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
  8030. "System.Runtime.InteropServices.RuntimeInformation.nuspec",
  8031. "ThirdPartyNotices.txt",
  8032. "dotnet_library_license.txt",
  8033. "lib/MonoAndroid10/_._",
  8034. "lib/MonoTouch10/_._",
  8035. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8036. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8037. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8038. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8039. "lib/xamarinios10/_._",
  8040. "lib/xamarinmac20/_._",
  8041. "lib/xamarintvos10/_._",
  8042. "lib/xamarinwatchos10/_._",
  8043. "ref/MonoAndroid10/_._",
  8044. "ref/MonoTouch10/_._",
  8045. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8046. "ref/xamarinios10/_._",
  8047. "ref/xamarinmac20/_._",
  8048. "ref/xamarintvos10/_._",
  8049. "ref/xamarinwatchos10/_._",
  8050. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8051. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8052. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8053. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8054. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
  8055. ]
  8056. },
  8057. "System.Runtime.Loader/4.0.0": {
  8058. "sha512": "zUIJ1HygfgipAQd0zhmICUYccHcnVt0SDOOTyPBkVjwnOfdBsVcSRLE1A+UhH45Nv4AixpifZfS5oKfYBy/TEg==",
  8059. "type": "package",
  8060. "path": "System.Runtime.Loader/4.0.0",
  8061. "files": [
  8062. "System.Runtime.Loader.4.0.0.nupkg.sha512",
  8063. "System.Runtime.Loader.nuspec",
  8064. "ThirdPartyNotices.txt",
  8065. "dotnet_library_license.txt",
  8066. "lib/net462/_._",
  8067. "lib/netstandard1.5/System.Runtime.Loader.dll",
  8068. "ref/netstandard1.5/System.Runtime.Loader.dll",
  8069. "ref/netstandard1.5/System.Runtime.Loader.xml",
  8070. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  8071. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  8072. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  8073. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  8074. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  8075. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  8076. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  8077. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  8078. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml"
  8079. ]
  8080. },
  8081. "System.Runtime.Numerics/4.3.0": {
  8082. "sha512": "5Fjob3agW1SpK9eFQq/ovw2gOaxTm3q8U4FvuP6il8G6fp7W5RDHZ9uSBmYtgP3XvK/W5c2clKeeZr1wNH9Z6Q==",
  8083. "type": "package",
  8084. "path": "System.Runtime.Numerics/4.3.0",
  8085. "files": [
  8086. "System.Runtime.Numerics.4.3.0.nupkg.sha512",
  8087. "System.Runtime.Numerics.nuspec",
  8088. "ThirdPartyNotices.txt",
  8089. "dotnet_library_license.txt",
  8090. "lib/MonoAndroid10/_._",
  8091. "lib/MonoTouch10/_._",
  8092. "lib/net45/_._",
  8093. "lib/netcore50/System.Runtime.Numerics.dll",
  8094. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8095. "lib/portable-net45+win8+wpa81/_._",
  8096. "lib/win8/_._",
  8097. "lib/wpa81/_._",
  8098. "lib/xamarinios10/_._",
  8099. "lib/xamarinmac20/_._",
  8100. "lib/xamarintvos10/_._",
  8101. "lib/xamarinwatchos10/_._",
  8102. "ref/MonoAndroid10/_._",
  8103. "ref/MonoTouch10/_._",
  8104. "ref/net45/_._",
  8105. "ref/netcore50/System.Runtime.Numerics.dll",
  8106. "ref/netcore50/System.Runtime.Numerics.xml",
  8107. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8108. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8109. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8110. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8111. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8112. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8113. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8114. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8115. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8116. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8117. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8118. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8119. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8120. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8121. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8122. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8123. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8124. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8125. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8126. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8127. "ref/portable-net45+win8+wpa81/_._",
  8128. "ref/win8/_._",
  8129. "ref/wpa81/_._",
  8130. "ref/xamarinios10/_._",
  8131. "ref/xamarinmac20/_._",
  8132. "ref/xamarintvos10/_._",
  8133. "ref/xamarinwatchos10/_._"
  8134. ]
  8135. },
  8136. "System.Runtime.Serialization.Primitives/4.1.1": {
  8137. "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
  8138. "type": "package",
  8139. "path": "System.Runtime.Serialization.Primitives/4.1.1",
  8140. "files": [
  8141. "System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512",
  8142. "System.Runtime.Serialization.Primitives.nuspec",
  8143. "ThirdPartyNotices.txt",
  8144. "dotnet_library_license.txt",
  8145. "lib/MonoAndroid10/_._",
  8146. "lib/MonoTouch10/_._",
  8147. "lib/net45/_._",
  8148. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8149. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8150. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8151. "lib/portable-net45+win8+wp8+wpa81/_._",
  8152. "lib/win8/_._",
  8153. "lib/wp80/_._",
  8154. "lib/wpa81/_._",
  8155. "lib/xamarinios10/_._",
  8156. "lib/xamarinmac20/_._",
  8157. "lib/xamarintvos10/_._",
  8158. "lib/xamarinwatchos10/_._",
  8159. "ref/MonoAndroid10/_._",
  8160. "ref/MonoTouch10/_._",
  8161. "ref/net45/_._",
  8162. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8163. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8164. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8165. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8166. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8167. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8168. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8169. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8170. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8171. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8172. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8173. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8174. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8175. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8176. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8177. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8178. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8179. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8180. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8181. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8182. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8183. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8184. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8185. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8186. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8187. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8188. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8189. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8190. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8191. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8192. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8193. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8194. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8195. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8196. "ref/portable-net45+win8+wp8+wpa81/_._",
  8197. "ref/win8/_._",
  8198. "ref/wp80/_._",
  8199. "ref/wpa81/_._",
  8200. "ref/xamarinios10/_._",
  8201. "ref/xamarinmac20/_._",
  8202. "ref/xamarintvos10/_._",
  8203. "ref/xamarinwatchos10/_._",
  8204. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll"
  8205. ]
  8206. },
  8207. "System.Security.Claims/4.3.0": {
  8208. "sha512": "BDVkWERVmVnPyN8sSb1YlY0vytaPaaPwLbNOF1cwP4wrCm9OY5z3UnOthja88Z99YrETiD4EFfOCYmDHE4AOOA==",
  8209. "type": "package",
  8210. "path": "System.Security.Claims/4.3.0",
  8211. "files": [
  8212. "System.Security.Claims.4.3.0.nupkg.sha512",
  8213. "System.Security.Claims.nuspec",
  8214. "ThirdPartyNotices.txt",
  8215. "dotnet_library_license.txt",
  8216. "lib/MonoAndroid10/_._",
  8217. "lib/MonoTouch10/_._",
  8218. "lib/net46/System.Security.Claims.dll",
  8219. "lib/netstandard1.3/System.Security.Claims.dll",
  8220. "lib/xamarinios10/_._",
  8221. "lib/xamarinmac20/_._",
  8222. "lib/xamarintvos10/_._",
  8223. "lib/xamarinwatchos10/_._",
  8224. "ref/MonoAndroid10/_._",
  8225. "ref/MonoTouch10/_._",
  8226. "ref/net46/System.Security.Claims.dll",
  8227. "ref/netstandard1.3/System.Security.Claims.dll",
  8228. "ref/netstandard1.3/System.Security.Claims.xml",
  8229. "ref/netstandard1.3/de/System.Security.Claims.xml",
  8230. "ref/netstandard1.3/es/System.Security.Claims.xml",
  8231. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  8232. "ref/netstandard1.3/it/System.Security.Claims.xml",
  8233. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  8234. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  8235. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  8236. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  8237. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  8238. "ref/xamarinios10/_._",
  8239. "ref/xamarinmac20/_._",
  8240. "ref/xamarintvos10/_._",
  8241. "ref/xamarinwatchos10/_._"
  8242. ]
  8243. },
  8244. "System.Security.Cryptography.Algorithms/4.3.0": {
  8245. "sha512": "prGZyzFDK1I5VldOlfO0SQsCDsd8iDFTonCB2AAeYsl1GKp8Zmi2uXC/yMfnv70xWWDx/SjcCc+uJ5s8MnvlHQ==",
  8246. "type": "package",
  8247. "path": "System.Security.Cryptography.Algorithms/4.3.0",
  8248. "files": [
  8249. "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
  8250. "System.Security.Cryptography.Algorithms.nuspec",
  8251. "ThirdPartyNotices.txt",
  8252. "dotnet_library_license.txt",
  8253. "lib/MonoAndroid10/_._",
  8254. "lib/MonoTouch10/_._",
  8255. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8256. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8257. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8258. "lib/xamarinios10/_._",
  8259. "lib/xamarinmac20/_._",
  8260. "lib/xamarintvos10/_._",
  8261. "lib/xamarinwatchos10/_._",
  8262. "ref/MonoAndroid10/_._",
  8263. "ref/MonoTouch10/_._",
  8264. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8265. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8266. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8267. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8268. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8269. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8270. "ref/xamarinios10/_._",
  8271. "ref/xamarinmac20/_._",
  8272. "ref/xamarintvos10/_._",
  8273. "ref/xamarinwatchos10/_._",
  8274. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8275. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8276. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8277. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8278. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8279. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8280. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
  8281. ]
  8282. },
  8283. "System.Security.Cryptography.Cng/4.3.0": {
  8284. "sha512": "blipAQpn9NAYtknm8Yhs9s6I12s0B0OPo3RAOGWxBQCjYMx8G72oNc3eNE9JQJgw/EV66kifIaF9oVLMxR8sQA==",
  8285. "type": "package",
  8286. "path": "System.Security.Cryptography.Cng/4.3.0",
  8287. "files": [
  8288. "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
  8289. "System.Security.Cryptography.Cng.nuspec",
  8290. "ThirdPartyNotices.txt",
  8291. "dotnet_library_license.txt",
  8292. "lib/net46/System.Security.Cryptography.Cng.dll",
  8293. "lib/net461/System.Security.Cryptography.Cng.dll",
  8294. "lib/net463/System.Security.Cryptography.Cng.dll",
  8295. "ref/net46/System.Security.Cryptography.Cng.dll",
  8296. "ref/net461/System.Security.Cryptography.Cng.dll",
  8297. "ref/net463/System.Security.Cryptography.Cng.dll",
  8298. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8299. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8300. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8301. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8302. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8303. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8304. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  8305. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8306. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll"
  8307. ]
  8308. },
  8309. "System.Security.Cryptography.Csp/4.3.0": {
  8310. "sha512": "yO2k5o+Z+DiFRBvvB9vdRRAGHi6bm02M9OWXfCqQ8K0UxD3Woc3svQheZfb7PoTEFs0kGacO0IzzMWsb6Mkeow==",
  8311. "type": "package",
  8312. "path": "System.Security.Cryptography.Csp/4.3.0",
  8313. "files": [
  8314. "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
  8315. "System.Security.Cryptography.Csp.nuspec",
  8316. "ThirdPartyNotices.txt",
  8317. "dotnet_library_license.txt",
  8318. "lib/MonoAndroid10/_._",
  8319. "lib/MonoTouch10/_._",
  8320. "lib/net46/System.Security.Cryptography.Csp.dll",
  8321. "lib/xamarinios10/_._",
  8322. "lib/xamarinmac20/_._",
  8323. "lib/xamarintvos10/_._",
  8324. "lib/xamarinwatchos10/_._",
  8325. "ref/MonoAndroid10/_._",
  8326. "ref/MonoTouch10/_._",
  8327. "ref/net46/System.Security.Cryptography.Csp.dll",
  8328. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8329. "ref/xamarinios10/_._",
  8330. "ref/xamarinmac20/_._",
  8331. "ref/xamarintvos10/_._",
  8332. "ref/xamarinwatchos10/_._",
  8333. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8334. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8335. "runtimes/win/lib/netcore50/_._",
  8336. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll"
  8337. ]
  8338. },
  8339. "System.Security.Cryptography.Encoding/4.3.0": {
  8340. "sha512": "Lkf2ulpcKgt3Afd/IVRTpqN6QTz7tKWmDOnDj3pVp1fVK2EcH7Ma326DKHyyU2rvmh0YcwRoYEO95PS5bIeT+w==",
  8341. "type": "package",
  8342. "path": "System.Security.Cryptography.Encoding/4.3.0",
  8343. "files": [
  8344. "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
  8345. "System.Security.Cryptography.Encoding.nuspec",
  8346. "ThirdPartyNotices.txt",
  8347. "dotnet_library_license.txt",
  8348. "lib/MonoAndroid10/_._",
  8349. "lib/MonoTouch10/_._",
  8350. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8351. "lib/xamarinios10/_._",
  8352. "lib/xamarinmac20/_._",
  8353. "lib/xamarintvos10/_._",
  8354. "lib/xamarinwatchos10/_._",
  8355. "ref/MonoAndroid10/_._",
  8356. "ref/MonoTouch10/_._",
  8357. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8358. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8359. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8360. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8361. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8362. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8363. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8364. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8365. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8366. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8367. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8368. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8369. "ref/xamarinios10/_._",
  8370. "ref/xamarinmac20/_._",
  8371. "ref/xamarintvos10/_._",
  8372. "ref/xamarinwatchos10/_._",
  8373. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8374. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8375. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll"
  8376. ]
  8377. },
  8378. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8379. "sha512": "vOYy7Jv9KsG3ld2hLt0GoERd82SZi4BelrbXLwI9yFBYX7kpbvUCWYo4eyevk47cuJXZ9ZLVAryANcc7iY71aA==",
  8380. "type": "package",
  8381. "path": "System.Security.Cryptography.OpenSsl/4.3.0",
  8382. "files": [
  8383. "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  8384. "System.Security.Cryptography.OpenSsl.nuspec",
  8385. "ThirdPartyNotices.txt",
  8386. "dotnet_library_license.txt",
  8387. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8388. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8389. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll"
  8390. ]
  8391. },
  8392. "System.Security.Cryptography.Primitives/4.3.0": {
  8393. "sha512": "5sASQ/lka08PqSjlteeKYrpLf9tbtaFSVc3HgPCM4gbVXykM6rW7aZRaQQihKhvXLFE4mL/+NMtls3YwMc8srQ==",
  8394. "type": "package",
  8395. "path": "System.Security.Cryptography.Primitives/4.3.0",
  8396. "files": [
  8397. "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
  8398. "System.Security.Cryptography.Primitives.nuspec",
  8399. "ThirdPartyNotices.txt",
  8400. "dotnet_library_license.txt",
  8401. "lib/MonoAndroid10/_._",
  8402. "lib/MonoTouch10/_._",
  8403. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8404. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8405. "lib/xamarinios10/_._",
  8406. "lib/xamarinmac20/_._",
  8407. "lib/xamarintvos10/_._",
  8408. "lib/xamarinwatchos10/_._",
  8409. "ref/MonoAndroid10/_._",
  8410. "ref/MonoTouch10/_._",
  8411. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8412. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8413. "ref/xamarinios10/_._",
  8414. "ref/xamarinmac20/_._",
  8415. "ref/xamarintvos10/_._",
  8416. "ref/xamarinwatchos10/_._"
  8417. ]
  8418. },
  8419. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8420. "sha512": "F5wSRdv3QJe4Di/CL6AsW3CQkc0d7RLv8LOn2XubpvszI3zl239pnvGCM7YDS8S8UKtwDJByVXUfHQG/kW3zjQ==",
  8421. "type": "package",
  8422. "path": "System.Security.Cryptography.X509Certificates/4.3.0",
  8423. "files": [
  8424. "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
  8425. "System.Security.Cryptography.X509Certificates.nuspec",
  8426. "ThirdPartyNotices.txt",
  8427. "dotnet_library_license.txt",
  8428. "lib/MonoAndroid10/_._",
  8429. "lib/MonoTouch10/_._",
  8430. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8431. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8432. "lib/xamarinios10/_._",
  8433. "lib/xamarinmac20/_._",
  8434. "lib/xamarintvos10/_._",
  8435. "lib/xamarinwatchos10/_._",
  8436. "ref/MonoAndroid10/_._",
  8437. "ref/MonoTouch10/_._",
  8438. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8439. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8440. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8441. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8442. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8443. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8444. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8445. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8446. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8447. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8448. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8449. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8450. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8451. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8452. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8453. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8454. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8455. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8456. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8457. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8458. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8459. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8460. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8461. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8462. "ref/xamarinios10/_._",
  8463. "ref/xamarinmac20/_._",
  8464. "ref/xamarintvos10/_._",
  8465. "ref/xamarinwatchos10/_._",
  8466. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8467. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8468. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8469. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8470. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll"
  8471. ]
  8472. },
  8473. "System.Security.Principal/4.3.0": {
  8474. "sha512": "BMPnm8H2BmIxPAnACPKFXxkePsag2Wyto/qWZnvlSxBxAC9HNyx2Bp9+XNTg/HqfjG42ZrR4fXLZ/p9tbkrW8A==",
  8475. "type": "package",
  8476. "path": "System.Security.Principal/4.3.0",
  8477. "files": [
  8478. "System.Security.Principal.4.3.0.nupkg.sha512",
  8479. "System.Security.Principal.nuspec",
  8480. "ThirdPartyNotices.txt",
  8481. "dotnet_library_license.txt",
  8482. "lib/MonoAndroid10/_._",
  8483. "lib/MonoTouch10/_._",
  8484. "lib/net45/_._",
  8485. "lib/netcore50/System.Security.Principal.dll",
  8486. "lib/netstandard1.0/System.Security.Principal.dll",
  8487. "lib/portable-net45+win8+wp8+wpa81/_._",
  8488. "lib/win8/_._",
  8489. "lib/wp80/_._",
  8490. "lib/wpa81/_._",
  8491. "lib/xamarinios10/_._",
  8492. "lib/xamarinmac20/_._",
  8493. "lib/xamarintvos10/_._",
  8494. "lib/xamarinwatchos10/_._",
  8495. "ref/MonoAndroid10/_._",
  8496. "ref/MonoTouch10/_._",
  8497. "ref/net45/_._",
  8498. "ref/netcore50/System.Security.Principal.dll",
  8499. "ref/netcore50/System.Security.Principal.xml",
  8500. "ref/netcore50/de/System.Security.Principal.xml",
  8501. "ref/netcore50/es/System.Security.Principal.xml",
  8502. "ref/netcore50/fr/System.Security.Principal.xml",
  8503. "ref/netcore50/it/System.Security.Principal.xml",
  8504. "ref/netcore50/ja/System.Security.Principal.xml",
  8505. "ref/netcore50/ko/System.Security.Principal.xml",
  8506. "ref/netcore50/ru/System.Security.Principal.xml",
  8507. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  8508. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  8509. "ref/netstandard1.0/System.Security.Principal.dll",
  8510. "ref/netstandard1.0/System.Security.Principal.xml",
  8511. "ref/netstandard1.0/de/System.Security.Principal.xml",
  8512. "ref/netstandard1.0/es/System.Security.Principal.xml",
  8513. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  8514. "ref/netstandard1.0/it/System.Security.Principal.xml",
  8515. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  8516. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  8517. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  8518. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  8519. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  8520. "ref/portable-net45+win8+wp8+wpa81/_._",
  8521. "ref/win8/_._",
  8522. "ref/wp80/_._",
  8523. "ref/wpa81/_._",
  8524. "ref/xamarinios10/_._",
  8525. "ref/xamarinmac20/_._",
  8526. "ref/xamarintvos10/_._",
  8527. "ref/xamarinwatchos10/_._"
  8528. ]
  8529. },
  8530. "System.Security.Principal.Windows/4.3.0-preview1-24530-04": {
  8531. "sha512": "YMItt1TqxJqwdQhA1RmOPTQapHAB1xL/Fjq23e3x1jNbJfl15clOCqCh3QvPEZc4lRRCV8j5qZQXohsu41jDhw==",
  8532. "type": "package",
  8533. "path": "System.Security.Principal.Windows/4.3.0-preview1-24530-04",
  8534. "files": [
  8535. "System.Security.Principal.Windows.4.3.0-preview1-24530-04.nupkg.sha512",
  8536. "System.Security.Principal.Windows.nuspec",
  8537. "ThirdPartyNotices.txt",
  8538. "dotnet_library_license.txt",
  8539. "lib/net46/System.Security.Principal.Windows.dll",
  8540. "ref/net46/System.Security.Principal.Windows.dll",
  8541. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8542. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8543. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8544. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8545. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8546. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8547. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8548. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8549. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8550. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8551. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8552. "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8553. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8554. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll"
  8555. ]
  8556. },
  8557. "System.Text.Encoding/4.3.0": {
  8558. "sha512": "+iP02U89BqFB39pJ0wLsWT0lHFj5ccVv4+ruGvIdjl2FamD6qC07ngrw07tQF7PTVOmsuq5XN28Q+TRF5scLEQ==",
  8559. "type": "package",
  8560. "path": "System.Text.Encoding/4.3.0",
  8561. "files": [
  8562. "System.Text.Encoding.4.3.0.nupkg.sha512",
  8563. "System.Text.Encoding.nuspec",
  8564. "ThirdPartyNotices.txt",
  8565. "dotnet_library_license.txt",
  8566. "lib/MonoAndroid10/_._",
  8567. "lib/MonoTouch10/_._",
  8568. "lib/net45/_._",
  8569. "lib/portable-net45+win8+wp8+wpa81/_._",
  8570. "lib/win8/_._",
  8571. "lib/wp80/_._",
  8572. "lib/wpa81/_._",
  8573. "lib/xamarinios10/_._",
  8574. "lib/xamarinmac20/_._",
  8575. "lib/xamarintvos10/_._",
  8576. "lib/xamarinwatchos10/_._",
  8577. "ref/MonoAndroid10/_._",
  8578. "ref/MonoTouch10/_._",
  8579. "ref/net45/_._",
  8580. "ref/netcore50/System.Text.Encoding.dll",
  8581. "ref/netcore50/System.Text.Encoding.xml",
  8582. "ref/netcore50/de/System.Text.Encoding.xml",
  8583. "ref/netcore50/es/System.Text.Encoding.xml",
  8584. "ref/netcore50/fr/System.Text.Encoding.xml",
  8585. "ref/netcore50/it/System.Text.Encoding.xml",
  8586. "ref/netcore50/ja/System.Text.Encoding.xml",
  8587. "ref/netcore50/ko/System.Text.Encoding.xml",
  8588. "ref/netcore50/ru/System.Text.Encoding.xml",
  8589. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8590. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8591. "ref/netstandard1.0/System.Text.Encoding.dll",
  8592. "ref/netstandard1.0/System.Text.Encoding.xml",
  8593. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8594. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8595. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8596. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8597. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8598. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8599. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8600. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8601. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8602. "ref/netstandard1.3/System.Text.Encoding.dll",
  8603. "ref/netstandard1.3/System.Text.Encoding.xml",
  8604. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8605. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8606. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8607. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8608. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8609. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8610. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8611. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8612. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8613. "ref/portable-net45+win8+wp8+wpa81/_._",
  8614. "ref/win8/_._",
  8615. "ref/wp80/_._",
  8616. "ref/wpa81/_._",
  8617. "ref/xamarinios10/_._",
  8618. "ref/xamarinmac20/_._",
  8619. "ref/xamarintvos10/_._",
  8620. "ref/xamarinwatchos10/_._"
  8621. ]
  8622. },
  8623. "System.Text.Encoding.CodePages/4.0.1": {
  8624. "sha512": "+PUTo8pGLNuvG6zDKJswAnVUPMS4XBROyqeFvpEueyYFrim+cprnmo2zEXZZe6Enakf75umMThjinrH/qH2Y4A==",
  8625. "type": "package",
  8626. "path": "System.Text.Encoding.CodePages/4.0.1",
  8627. "files": [
  8628. "System.Text.Encoding.CodePages.4.0.1.nupkg.sha512",
  8629. "System.Text.Encoding.CodePages.nuspec",
  8630. "ThirdPartyNotices.txt",
  8631. "dotnet_library_license.txt",
  8632. "lib/MonoAndroid10/_._",
  8633. "lib/MonoTouch10/_._",
  8634. "lib/net46/System.Text.Encoding.CodePages.dll",
  8635. "lib/xamarinios10/_._",
  8636. "lib/xamarinmac20/_._",
  8637. "lib/xamarintvos10/_._",
  8638. "lib/xamarinwatchos10/_._",
  8639. "ref/MonoAndroid10/_._",
  8640. "ref/MonoTouch10/_._",
  8641. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8642. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  8643. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  8644. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  8645. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  8646. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  8647. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  8648. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  8649. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  8650. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  8651. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  8652. "ref/xamarinios10/_._",
  8653. "ref/xamarinmac20/_._",
  8654. "ref/xamarintvos10/_._",
  8655. "ref/xamarinwatchos10/_._",
  8656. "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8657. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
  8658. ]
  8659. },
  8660. "System.Text.Encoding.Extensions/4.3.0": {
  8661. "sha512": "htlnmFmHyyJ3W33dYn7ryer4luJ7QUoFCL/b5/df3YnQC2coNDk97NEH8dKKHqhvi/ApAru8ddN8zzKPkTxAZQ==",
  8662. "type": "package",
  8663. "path": "System.Text.Encoding.Extensions/4.3.0",
  8664. "files": [
  8665. "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
  8666. "System.Text.Encoding.Extensions.nuspec",
  8667. "ThirdPartyNotices.txt",
  8668. "dotnet_library_license.txt",
  8669. "lib/MonoAndroid10/_._",
  8670. "lib/MonoTouch10/_._",
  8671. "lib/net45/_._",
  8672. "lib/portable-net45+win8+wp8+wpa81/_._",
  8673. "lib/win8/_._",
  8674. "lib/wp80/_._",
  8675. "lib/wpa81/_._",
  8676. "lib/xamarinios10/_._",
  8677. "lib/xamarinmac20/_._",
  8678. "lib/xamarintvos10/_._",
  8679. "lib/xamarinwatchos10/_._",
  8680. "ref/MonoAndroid10/_._",
  8681. "ref/MonoTouch10/_._",
  8682. "ref/net45/_._",
  8683. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8684. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8685. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8686. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8687. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8688. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8689. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8690. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8691. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8692. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8693. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8694. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8695. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8696. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8697. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8698. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8699. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8700. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8701. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8702. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8703. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8704. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8705. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8706. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8707. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8708. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8709. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8710. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8711. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8712. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8713. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8714. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8715. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8716. "ref/portable-net45+win8+wp8+wpa81/_._",
  8717. "ref/win8/_._",
  8718. "ref/wp80/_._",
  8719. "ref/wpa81/_._",
  8720. "ref/xamarinios10/_._",
  8721. "ref/xamarinmac20/_._",
  8722. "ref/xamarintvos10/_._",
  8723. "ref/xamarinwatchos10/_._"
  8724. ]
  8725. },
  8726. "System.Text.Encodings.Web/4.3.0": {
  8727. "sha512": "Yc1XficqB5ae0yuwAfO8I9dbVW/B0txYWGIhyq/XeJFwWcaSvjyBlRtcuZzpwMS3f57FYoO7EZP1bV16+iHk0A==",
  8728. "type": "package",
  8729. "path": "System.Text.Encodings.Web/4.3.0",
  8730. "files": [
  8731. "System.Text.Encodings.Web.4.3.0.nupkg.sha512",
  8732. "System.Text.Encodings.Web.nuspec",
  8733. "ThirdPartyNotices.txt",
  8734. "dotnet_library_license.txt",
  8735. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8736. "lib/netstandard1.0/System.Text.Encodings.Web.xml"
  8737. ]
  8738. },
  8739. "System.Text.RegularExpressions/4.3.0": {
  8740. "sha512": "zmRmBA0opc1WBtIZBIbdhwnUeaT1JU6AUDjGzLeY6alHYGSSBxKCrCJNqbz4GE4k5CdfBE2XEpT8AeZd+XUXGQ==",
  8741. "type": "package",
  8742. "path": "System.Text.RegularExpressions/4.3.0",
  8743. "files": [
  8744. "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
  8745. "System.Text.RegularExpressions.nuspec",
  8746. "ThirdPartyNotices.txt",
  8747. "dotnet_library_license.txt",
  8748. "lib/MonoAndroid10/_._",
  8749. "lib/MonoTouch10/_._",
  8750. "lib/net45/_._",
  8751. "lib/net463/System.Text.RegularExpressions.dll",
  8752. "lib/netcore50/System.Text.RegularExpressions.dll",
  8753. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  8754. "lib/portable-net45+win8+wp8+wpa81/_._",
  8755. "lib/win8/_._",
  8756. "lib/wp80/_._",
  8757. "lib/wpa81/_._",
  8758. "lib/xamarinios10/_._",
  8759. "lib/xamarinmac20/_._",
  8760. "lib/xamarintvos10/_._",
  8761. "lib/xamarinwatchos10/_._",
  8762. "ref/MonoAndroid10/_._",
  8763. "ref/MonoTouch10/_._",
  8764. "ref/net45/_._",
  8765. "ref/net463/System.Text.RegularExpressions.dll",
  8766. "ref/netcore50/System.Text.RegularExpressions.dll",
  8767. "ref/netcore50/System.Text.RegularExpressions.xml",
  8768. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8769. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8770. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8771. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8772. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8773. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8774. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8775. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8776. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8777. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8778. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8779. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8780. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8781. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8782. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8783. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8784. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8785. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8786. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8787. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8788. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8789. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8790. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8791. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8792. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8793. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8794. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8795. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8796. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8797. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8798. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8799. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8800. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8801. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8802. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8803. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8804. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8805. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8806. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8807. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8808. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8809. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8810. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8811. "ref/portable-net45+win8+wp8+wpa81/_._",
  8812. "ref/win8/_._",
  8813. "ref/wp80/_._",
  8814. "ref/wpa81/_._",
  8815. "ref/xamarinios10/_._",
  8816. "ref/xamarinmac20/_._",
  8817. "ref/xamarintvos10/_._",
  8818. "ref/xamarinwatchos10/_._"
  8819. ]
  8820. },
  8821. "System.Threading/4.3.0": {
  8822. "sha512": "/MayCVIEltqXBtXrPKVadskHubAE6SnOQpLvifR/dXEOPFRvvwJtVpwqiV101SdHSsJi9Mzb7bpHWMM0C5Hr9Q==",
  8823. "type": "package",
  8824. "path": "System.Threading/4.3.0",
  8825. "files": [
  8826. "System.Threading.4.3.0.nupkg.sha512",
  8827. "System.Threading.nuspec",
  8828. "ThirdPartyNotices.txt",
  8829. "dotnet_library_license.txt",
  8830. "lib/MonoAndroid10/_._",
  8831. "lib/MonoTouch10/_._",
  8832. "lib/net45/_._",
  8833. "lib/netcore50/System.Threading.dll",
  8834. "lib/netstandard1.3/System.Threading.dll",
  8835. "lib/portable-net45+win8+wp8+wpa81/_._",
  8836. "lib/win8/_._",
  8837. "lib/wp80/_._",
  8838. "lib/wpa81/_._",
  8839. "lib/xamarinios10/_._",
  8840. "lib/xamarinmac20/_._",
  8841. "lib/xamarintvos10/_._",
  8842. "lib/xamarinwatchos10/_._",
  8843. "ref/MonoAndroid10/_._",
  8844. "ref/MonoTouch10/_._",
  8845. "ref/net45/_._",
  8846. "ref/netcore50/System.Threading.dll",
  8847. "ref/netcore50/System.Threading.xml",
  8848. "ref/netcore50/de/System.Threading.xml",
  8849. "ref/netcore50/es/System.Threading.xml",
  8850. "ref/netcore50/fr/System.Threading.xml",
  8851. "ref/netcore50/it/System.Threading.xml",
  8852. "ref/netcore50/ja/System.Threading.xml",
  8853. "ref/netcore50/ko/System.Threading.xml",
  8854. "ref/netcore50/ru/System.Threading.xml",
  8855. "ref/netcore50/zh-hans/System.Threading.xml",
  8856. "ref/netcore50/zh-hant/System.Threading.xml",
  8857. "ref/netstandard1.0/System.Threading.dll",
  8858. "ref/netstandard1.0/System.Threading.xml",
  8859. "ref/netstandard1.0/de/System.Threading.xml",
  8860. "ref/netstandard1.0/es/System.Threading.xml",
  8861. "ref/netstandard1.0/fr/System.Threading.xml",
  8862. "ref/netstandard1.0/it/System.Threading.xml",
  8863. "ref/netstandard1.0/ja/System.Threading.xml",
  8864. "ref/netstandard1.0/ko/System.Threading.xml",
  8865. "ref/netstandard1.0/ru/System.Threading.xml",
  8866. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8867. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8868. "ref/netstandard1.3/System.Threading.dll",
  8869. "ref/netstandard1.3/System.Threading.xml",
  8870. "ref/netstandard1.3/de/System.Threading.xml",
  8871. "ref/netstandard1.3/es/System.Threading.xml",
  8872. "ref/netstandard1.3/fr/System.Threading.xml",
  8873. "ref/netstandard1.3/it/System.Threading.xml",
  8874. "ref/netstandard1.3/ja/System.Threading.xml",
  8875. "ref/netstandard1.3/ko/System.Threading.xml",
  8876. "ref/netstandard1.3/ru/System.Threading.xml",
  8877. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8878. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8879. "ref/portable-net45+win8+wp8+wpa81/_._",
  8880. "ref/win8/_._",
  8881. "ref/wp80/_._",
  8882. "ref/wpa81/_._",
  8883. "ref/xamarinios10/_._",
  8884. "ref/xamarinmac20/_._",
  8885. "ref/xamarintvos10/_._",
  8886. "ref/xamarinwatchos10/_._",
  8887. "runtimes/aot/lib/netcore50/System.Threading.dll"
  8888. ]
  8889. },
  8890. "System.Threading.Overlapped/4.0.1": {
  8891. "sha512": "QfQWxe2enhtiKNtA3sY1OYgvk1Pz3Z8J4Uvx+g3LFOStpA9wsylP603eHP5NeFTcxBlYqyh5O1wvv3vy82Tp/Q==",
  8892. "type": "package",
  8893. "path": "System.Threading.Overlapped/4.0.1",
  8894. "files": [
  8895. "System.Threading.Overlapped.4.0.1.nupkg.sha512",
  8896. "System.Threading.Overlapped.nuspec",
  8897. "ThirdPartyNotices.txt",
  8898. "dotnet_library_license.txt",
  8899. "lib/net46/System.Threading.Overlapped.dll",
  8900. "ref/net46/System.Threading.Overlapped.dll",
  8901. "ref/netstandard1.3/System.Threading.Overlapped.dll",
  8902. "ref/netstandard1.3/System.Threading.Overlapped.xml",
  8903. "ref/netstandard1.3/de/System.Threading.Overlapped.xml",
  8904. "ref/netstandard1.3/es/System.Threading.Overlapped.xml",
  8905. "ref/netstandard1.3/fr/System.Threading.Overlapped.xml",
  8906. "ref/netstandard1.3/it/System.Threading.Overlapped.xml",
  8907. "ref/netstandard1.3/ja/System.Threading.Overlapped.xml",
  8908. "ref/netstandard1.3/ko/System.Threading.Overlapped.xml",
  8909. "ref/netstandard1.3/ru/System.Threading.Overlapped.xml",
  8910. "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml",
  8911. "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml",
  8912. "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll",
  8913. "runtimes/win/lib/net46/System.Threading.Overlapped.dll",
  8914. "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll",
  8915. "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
  8916. ]
  8917. },
  8918. "System.Threading.Tasks/4.3.0": {
  8919. "sha512": "3X5WUrc2NZmi2pV7HU3zivGrMUsuT3r0ToS/V+bmgNRV+vd+jUngFZqGRLAs6Xed/+MJO+sd2++3G3YA+kUvgg==",
  8920. "type": "package",
  8921. "path": "System.Threading.Tasks/4.3.0",
  8922. "files": [
  8923. "System.Threading.Tasks.4.3.0.nupkg.sha512",
  8924. "System.Threading.Tasks.nuspec",
  8925. "ThirdPartyNotices.txt",
  8926. "dotnet_library_license.txt",
  8927. "lib/MonoAndroid10/_._",
  8928. "lib/MonoTouch10/_._",
  8929. "lib/net45/_._",
  8930. "lib/portable-net45+win8+wp8+wpa81/_._",
  8931. "lib/win8/_._",
  8932. "lib/wp80/_._",
  8933. "lib/wpa81/_._",
  8934. "lib/xamarinios10/_._",
  8935. "lib/xamarinmac20/_._",
  8936. "lib/xamarintvos10/_._",
  8937. "lib/xamarinwatchos10/_._",
  8938. "ref/MonoAndroid10/_._",
  8939. "ref/MonoTouch10/_._",
  8940. "ref/net45/_._",
  8941. "ref/netcore50/System.Threading.Tasks.dll",
  8942. "ref/netcore50/System.Threading.Tasks.xml",
  8943. "ref/netcore50/de/System.Threading.Tasks.xml",
  8944. "ref/netcore50/es/System.Threading.Tasks.xml",
  8945. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8946. "ref/netcore50/it/System.Threading.Tasks.xml",
  8947. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8948. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8949. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8950. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8951. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8952. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8953. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8954. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8955. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8956. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8957. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8958. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8959. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8960. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8961. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8962. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8963. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8964. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8965. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8966. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8967. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8968. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8969. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8970. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8971. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8972. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8973. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8974. "ref/portable-net45+win8+wp8+wpa81/_._",
  8975. "ref/win8/_._",
  8976. "ref/wp80/_._",
  8977. "ref/wpa81/_._",
  8978. "ref/xamarinios10/_._",
  8979. "ref/xamarinmac20/_._",
  8980. "ref/xamarintvos10/_._",
  8981. "ref/xamarinwatchos10/_._"
  8982. ]
  8983. },
  8984. "System.Threading.Tasks.Dataflow/4.6.0": {
  8985. "sha512": "xoVYfOA5XE9dfmQeNewe/8fiuYLo9oyyCzDk/oKHfGXIzaezrwA6XfCjmLDiB6sOwglJJQrxyCJlXMVsi73f4A==",
  8986. "type": "package",
  8987. "path": "System.Threading.Tasks.Dataflow/4.6.0",
  8988. "files": [
  8989. "System.Threading.Tasks.Dataflow.4.6.0.nupkg.sha512",
  8990. "System.Threading.Tasks.Dataflow.nuspec",
  8991. "ThirdPartyNotices.txt",
  8992. "dotnet_library_license.txt",
  8993. "lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML",
  8994. "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
  8995. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML",
  8996. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll"
  8997. ]
  8998. },
  8999. "System.Threading.Tasks.Extensions/4.3.0": {
  9000. "sha512": "Fndgac424TbKeV2uY0TXopkg6/4WfcKT1+vYa9jCM0yrx7rJYOFx/yOYw7qoGijbyUtHxbo6ieRI3+23vhrgiA==",
  9001. "type": "package",
  9002. "path": "System.Threading.Tasks.Extensions/4.3.0",
  9003. "files": [
  9004. "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
  9005. "System.Threading.Tasks.Extensions.nuspec",
  9006. "ThirdPartyNotices.txt",
  9007. "dotnet_library_license.txt",
  9008. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9009. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9010. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9011. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml"
  9012. ]
  9013. },
  9014. "System.Threading.Tasks.Parallel/4.0.1": {
  9015. "sha512": "NeY1d7KYltSvSSYQX2FxqN/pktX0wb6urCRf3MjpbOPiRZhYBFjqCL2a8Pefgqls6np4r8ir8qA2WGZegqq3Bg==",
  9016. "type": "package",
  9017. "path": "System.Threading.Tasks.Parallel/4.0.1",
  9018. "files": [
  9019. "System.Threading.Tasks.Parallel.4.0.1.nupkg.sha512",
  9020. "System.Threading.Tasks.Parallel.nuspec",
  9021. "ThirdPartyNotices.txt",
  9022. "dotnet_library_license.txt",
  9023. "lib/MonoAndroid10/_._",
  9024. "lib/MonoTouch10/_._",
  9025. "lib/net45/_._",
  9026. "lib/netcore50/System.Threading.Tasks.Parallel.dll",
  9027. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll",
  9028. "lib/portable-net45+win8+wpa81/_._",
  9029. "lib/win8/_._",
  9030. "lib/wpa81/_._",
  9031. "lib/xamarinios10/_._",
  9032. "lib/xamarinmac20/_._",
  9033. "lib/xamarintvos10/_._",
  9034. "lib/xamarinwatchos10/_._",
  9035. "ref/MonoAndroid10/_._",
  9036. "ref/MonoTouch10/_._",
  9037. "ref/net45/_._",
  9038. "ref/netcore50/System.Threading.Tasks.Parallel.dll",
  9039. "ref/netcore50/System.Threading.Tasks.Parallel.xml",
  9040. "ref/netcore50/de/System.Threading.Tasks.Parallel.xml",
  9041. "ref/netcore50/es/System.Threading.Tasks.Parallel.xml",
  9042. "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml",
  9043. "ref/netcore50/it/System.Threading.Tasks.Parallel.xml",
  9044. "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml",
  9045. "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml",
  9046. "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml",
  9047. "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml",
  9048. "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml",
  9049. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll",
  9050. "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml",
  9051. "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml",
  9052. "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml",
  9053. "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml",
  9054. "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml",
  9055. "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml",
  9056. "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml",
  9057. "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml",
  9058. "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml",
  9059. "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml",
  9060. "ref/portable-net45+win8+wpa81/_._",
  9061. "ref/win8/_._",
  9062. "ref/wpa81/_._",
  9063. "ref/xamarinios10/_._",
  9064. "ref/xamarinmac20/_._",
  9065. "ref/xamarintvos10/_._",
  9066. "ref/xamarinwatchos10/_._"
  9067. ]
  9068. },
  9069. "System.Threading.Thread/4.0.0": {
  9070. "sha512": "vfYsSJUy2/2CLmFSQTl94avKqexfECRM3hOX6v1Fo0/etcdQpD9TZTBScGSVeIB6l9OfpEBKNO9WoWinj62oSA==",
  9071. "type": "package",
  9072. "path": "System.Threading.Thread/4.0.0",
  9073. "files": [
  9074. "System.Threading.Thread.4.0.0.nupkg.sha512",
  9075. "System.Threading.Thread.nuspec",
  9076. "ThirdPartyNotices.txt",
  9077. "dotnet_library_license.txt",
  9078. "lib/MonoAndroid10/_._",
  9079. "lib/MonoTouch10/_._",
  9080. "lib/net46/System.Threading.Thread.dll",
  9081. "lib/netcore50/_._",
  9082. "lib/netstandard1.3/System.Threading.Thread.dll",
  9083. "lib/xamarinios10/_._",
  9084. "lib/xamarinmac20/_._",
  9085. "lib/xamarintvos10/_._",
  9086. "lib/xamarinwatchos10/_._",
  9087. "ref/MonoAndroid10/_._",
  9088. "ref/MonoTouch10/_._",
  9089. "ref/net46/System.Threading.Thread.dll",
  9090. "ref/netstandard1.3/System.Threading.Thread.dll",
  9091. "ref/netstandard1.3/System.Threading.Thread.xml",
  9092. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  9093. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  9094. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  9095. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  9096. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  9097. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  9098. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  9099. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  9100. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  9101. "ref/xamarinios10/_._",
  9102. "ref/xamarinmac20/_._",
  9103. "ref/xamarintvos10/_._",
  9104. "ref/xamarinwatchos10/_._"
  9105. ]
  9106. },
  9107. "System.Threading.ThreadPool/4.0.10": {
  9108. "sha512": "0hgz4zrG3j1FXFkESz7IPHTk82jjas9cvOPp92yjPCfLHiz1WAYmXOw5L+SbyiGvYPDs1gr+Sw4nb8Sba19Vwg==",
  9109. "type": "package",
  9110. "path": "System.Threading.ThreadPool/4.0.10",
  9111. "files": [
  9112. "System.Threading.ThreadPool.4.0.10.nupkg.sha512",
  9113. "System.Threading.ThreadPool.nuspec",
  9114. "ThirdPartyNotices.txt",
  9115. "dotnet_library_license.txt",
  9116. "lib/MonoAndroid10/_._",
  9117. "lib/MonoTouch10/_._",
  9118. "lib/net46/System.Threading.ThreadPool.dll",
  9119. "lib/netcore50/_._",
  9120. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  9121. "lib/xamarinios10/_._",
  9122. "lib/xamarinmac20/_._",
  9123. "lib/xamarintvos10/_._",
  9124. "lib/xamarinwatchos10/_._",
  9125. "ref/MonoAndroid10/_._",
  9126. "ref/MonoTouch10/_._",
  9127. "ref/net46/System.Threading.ThreadPool.dll",
  9128. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  9129. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  9130. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  9131. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  9132. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  9133. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  9134. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  9135. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  9136. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  9137. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  9138. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  9139. "ref/xamarinios10/_._",
  9140. "ref/xamarinmac20/_._",
  9141. "ref/xamarintvos10/_._",
  9142. "ref/xamarinwatchos10/_._"
  9143. ]
  9144. },
  9145. "System.Threading.Timer/4.3.0": {
  9146. "sha512": "hoKRMGwOfTpSykA4CMiStPWmfIETJ6W6snKuqgHi1TZwnOdpCfXI5jkm2QEclcq04aVaqvd6/xkoXd8iObQpHw==",
  9147. "type": "package",
  9148. "path": "System.Threading.Timer/4.3.0",
  9149. "files": [
  9150. "System.Threading.Timer.4.3.0.nupkg.sha512",
  9151. "System.Threading.Timer.nuspec",
  9152. "ThirdPartyNotices.txt",
  9153. "dotnet_library_license.txt",
  9154. "lib/MonoAndroid10/_._",
  9155. "lib/MonoTouch10/_._",
  9156. "lib/net451/_._",
  9157. "lib/portable-net451+win81+wpa81/_._",
  9158. "lib/win81/_._",
  9159. "lib/wpa81/_._",
  9160. "lib/xamarinios10/_._",
  9161. "lib/xamarinmac20/_._",
  9162. "lib/xamarintvos10/_._",
  9163. "lib/xamarinwatchos10/_._",
  9164. "ref/MonoAndroid10/_._",
  9165. "ref/MonoTouch10/_._",
  9166. "ref/net451/_._",
  9167. "ref/netcore50/System.Threading.Timer.dll",
  9168. "ref/netcore50/System.Threading.Timer.xml",
  9169. "ref/netcore50/de/System.Threading.Timer.xml",
  9170. "ref/netcore50/es/System.Threading.Timer.xml",
  9171. "ref/netcore50/fr/System.Threading.Timer.xml",
  9172. "ref/netcore50/it/System.Threading.Timer.xml",
  9173. "ref/netcore50/ja/System.Threading.Timer.xml",
  9174. "ref/netcore50/ko/System.Threading.Timer.xml",
  9175. "ref/netcore50/ru/System.Threading.Timer.xml",
  9176. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9177. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9178. "ref/netstandard1.2/System.Threading.Timer.dll",
  9179. "ref/netstandard1.2/System.Threading.Timer.xml",
  9180. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9181. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9182. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9183. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9184. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9185. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9186. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9187. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9188. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9189. "ref/portable-net451+win81+wpa81/_._",
  9190. "ref/win81/_._",
  9191. "ref/wpa81/_._",
  9192. "ref/xamarinios10/_._",
  9193. "ref/xamarinmac20/_._",
  9194. "ref/xamarintvos10/_._",
  9195. "ref/xamarinwatchos10/_._"
  9196. ]
  9197. },
  9198. "System.Xml.ReaderWriter/4.3.0": {
  9199. "sha512": "f0HgI5Hp/jvkyqr1qldLrqps4+mjn6XHNoWQ1Cgj3L2paZUHq3fdRVU1NoEBYOByL/O6vXIS0D62MpyEC/Mhqw==",
  9200. "type": "package",
  9201. "path": "System.Xml.ReaderWriter/4.3.0",
  9202. "files": [
  9203. "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
  9204. "System.Xml.ReaderWriter.nuspec",
  9205. "ThirdPartyNotices.txt",
  9206. "dotnet_library_license.txt",
  9207. "lib/MonoAndroid10/_._",
  9208. "lib/MonoTouch10/_._",
  9209. "lib/net45/_._",
  9210. "lib/net46/System.Xml.ReaderWriter.dll",
  9211. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9212. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9213. "lib/portable-net45+win8+wp8+wpa81/_._",
  9214. "lib/win8/_._",
  9215. "lib/wp80/_._",
  9216. "lib/wpa81/_._",
  9217. "lib/xamarinios10/_._",
  9218. "lib/xamarinmac20/_._",
  9219. "lib/xamarintvos10/_._",
  9220. "lib/xamarinwatchos10/_._",
  9221. "ref/MonoAndroid10/_._",
  9222. "ref/MonoTouch10/_._",
  9223. "ref/net45/_._",
  9224. "ref/net46/System.Xml.ReaderWriter.dll",
  9225. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9226. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9227. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9228. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9229. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9230. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9231. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9232. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9233. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9234. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9235. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9236. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9237. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9238. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9239. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9240. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9241. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9242. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9243. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9244. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9245. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9246. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9247. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9248. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9249. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9250. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9251. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9252. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9253. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9254. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9255. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9256. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9257. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9258. "ref/portable-net45+win8+wp8+wpa81/_._",
  9259. "ref/win8/_._",
  9260. "ref/wp80/_._",
  9261. "ref/wpa81/_._",
  9262. "ref/xamarinios10/_._",
  9263. "ref/xamarinmac20/_._",
  9264. "ref/xamarintvos10/_._",
  9265. "ref/xamarinwatchos10/_._"
  9266. ]
  9267. },
  9268. "System.Xml.XDocument/4.3.0": {
  9269. "sha512": "x5+orDQBjivGFynvLXDJgkQSeF64z7GTA7EooyogRG8/8U67m7jhEFNf5bJPfQdJSmlgBEVKxsVH3uepJ4fmqA==",
  9270. "type": "package",
  9271. "path": "System.Xml.XDocument/4.3.0",
  9272. "files": [
  9273. "System.Xml.XDocument.4.3.0.nupkg.sha512",
  9274. "System.Xml.XDocument.nuspec",
  9275. "ThirdPartyNotices.txt",
  9276. "dotnet_library_license.txt",
  9277. "lib/MonoAndroid10/_._",
  9278. "lib/MonoTouch10/_._",
  9279. "lib/net45/_._",
  9280. "lib/netcore50/System.Xml.XDocument.dll",
  9281. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9282. "lib/portable-net45+win8+wp8+wpa81/_._",
  9283. "lib/win8/_._",
  9284. "lib/wp80/_._",
  9285. "lib/wpa81/_._",
  9286. "lib/xamarinios10/_._",
  9287. "lib/xamarinmac20/_._",
  9288. "lib/xamarintvos10/_._",
  9289. "lib/xamarinwatchos10/_._",
  9290. "ref/MonoAndroid10/_._",
  9291. "ref/MonoTouch10/_._",
  9292. "ref/net45/_._",
  9293. "ref/netcore50/System.Xml.XDocument.dll",
  9294. "ref/netcore50/System.Xml.XDocument.xml",
  9295. "ref/netcore50/de/System.Xml.XDocument.xml",
  9296. "ref/netcore50/es/System.Xml.XDocument.xml",
  9297. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9298. "ref/netcore50/it/System.Xml.XDocument.xml",
  9299. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9300. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9301. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9302. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9303. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9304. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9305. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9306. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9307. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9308. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9309. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9310. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9311. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9312. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9313. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9314. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9315. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9316. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9317. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9318. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9319. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9320. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9321. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9322. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9323. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9324. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9325. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9326. "ref/portable-net45+win8+wp8+wpa81/_._",
  9327. "ref/win8/_._",
  9328. "ref/wp80/_._",
  9329. "ref/wpa81/_._",
  9330. "ref/xamarinios10/_._",
  9331. "ref/xamarinmac20/_._",
  9332. "ref/xamarintvos10/_._",
  9333. "ref/xamarinwatchos10/_._"
  9334. ]
  9335. },
  9336. "System.Xml.XmlDocument/4.0.1": {
  9337. "sha512": "467a5tcqMHHaXMzG6aDXnsLSwJAmW7gHPeqOIbvXlQ/+hDRdbyFGXHe+npQ2tcYw138IRwynigPPuYnG57qwMQ==",
  9338. "type": "package",
  9339. "path": "System.Xml.XmlDocument/4.0.1",
  9340. "files": [
  9341. "System.Xml.XmlDocument.4.0.1.nupkg.sha512",
  9342. "System.Xml.XmlDocument.nuspec",
  9343. "ThirdPartyNotices.txt",
  9344. "dotnet_library_license.txt",
  9345. "lib/MonoAndroid10/_._",
  9346. "lib/MonoTouch10/_._",
  9347. "lib/net46/System.Xml.XmlDocument.dll",
  9348. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  9349. "lib/xamarinios10/_._",
  9350. "lib/xamarinmac20/_._",
  9351. "lib/xamarintvos10/_._",
  9352. "lib/xamarinwatchos10/_._",
  9353. "ref/MonoAndroid10/_._",
  9354. "ref/MonoTouch10/_._",
  9355. "ref/net46/System.Xml.XmlDocument.dll",
  9356. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  9357. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  9358. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  9359. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  9360. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  9361. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  9362. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  9363. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  9364. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  9365. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  9366. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  9367. "ref/xamarinios10/_._",
  9368. "ref/xamarinmac20/_._",
  9369. "ref/xamarintvos10/_._",
  9370. "ref/xamarinwatchos10/_._"
  9371. ]
  9372. },
  9373. "System.Xml.XPath/4.0.1": {
  9374. "sha512": "fNMrSYKz66pOCUqBLLmd3sBXCULopHsu78uU1NgMHn/SOMpXdYyIbfY+ed8O7WgzNrPDoxXXS5qxPDWagBBYWw==",
  9375. "type": "package",
  9376. "path": "System.Xml.XPath/4.0.1",
  9377. "files": [
  9378. "System.Xml.XPath.4.0.1.nupkg.sha512",
  9379. "System.Xml.XPath.nuspec",
  9380. "ThirdPartyNotices.txt",
  9381. "dotnet_library_license.txt",
  9382. "lib/MonoAndroid10/_._",
  9383. "lib/MonoTouch10/_._",
  9384. "lib/net46/System.Xml.XPath.dll",
  9385. "lib/netstandard1.3/System.Xml.XPath.dll",
  9386. "lib/xamarinios10/_._",
  9387. "lib/xamarinmac20/_._",
  9388. "lib/xamarintvos10/_._",
  9389. "lib/xamarinwatchos10/_._",
  9390. "ref/MonoAndroid10/_._",
  9391. "ref/MonoTouch10/_._",
  9392. "ref/net46/System.Xml.XPath.dll",
  9393. "ref/netstandard1.3/System.Xml.XPath.dll",
  9394. "ref/netstandard1.3/System.Xml.XPath.xml",
  9395. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  9396. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  9397. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  9398. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  9399. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  9400. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  9401. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  9402. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  9403. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  9404. "ref/xamarinios10/_._",
  9405. "ref/xamarinmac20/_._",
  9406. "ref/xamarintvos10/_._",
  9407. "ref/xamarinwatchos10/_._"
  9408. ]
  9409. },
  9410. "System.Xml.XPath.XDocument/4.0.1": {
  9411. "sha512": "M4noCUSSS3m/E9IwgkkdFA9dVeouBSP7jx4sozDLu2wm86R4zfhIsitSgfeuobLXZWEQ9AKZGLY7SmNaRGD4mA==",
  9412. "type": "package",
  9413. "path": "System.Xml.XPath.XDocument/4.0.1",
  9414. "files": [
  9415. "System.Xml.XPath.XDocument.4.0.1.nupkg.sha512",
  9416. "System.Xml.XPath.XDocument.nuspec",
  9417. "ThirdPartyNotices.txt",
  9418. "dotnet_library_license.txt",
  9419. "lib/MonoAndroid10/_._",
  9420. "lib/MonoTouch10/_._",
  9421. "lib/net46/System.Xml.XPath.XDocument.dll",
  9422. "lib/netstandard1.3/System.Xml.XPath.XDocument.dll",
  9423. "lib/xamarinios10/_._",
  9424. "lib/xamarinmac20/_._",
  9425. "lib/xamarintvos10/_._",
  9426. "lib/xamarinwatchos10/_._",
  9427. "ref/MonoAndroid10/_._",
  9428. "ref/MonoTouch10/_._",
  9429. "ref/net46/System.Xml.XPath.XDocument.dll",
  9430. "ref/netstandard1.3/System.Xml.XPath.XDocument.dll",
  9431. "ref/netstandard1.3/System.Xml.XPath.XDocument.xml",
  9432. "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml",
  9433. "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml",
  9434. "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml",
  9435. "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml",
  9436. "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml",
  9437. "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml",
  9438. "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml",
  9439. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml",
  9440. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml",
  9441. "ref/xamarinios10/_._",
  9442. "ref/xamarinmac20/_._",
  9443. "ref/xamarintvos10/_._",
  9444. "ref/xamarinwatchos10/_._"
  9445. ]
  9446. },
  9447. "Luticate2.Utils/1.0.0": {
  9448. "type": "project",
  9449. "path": "../Luticate2.Utils/project.json",
  9450. "msbuildProject": "../Luticate2.Utils/Luticate2.Utils.xproj"
  9451. }
  9452. },
  9453. "projectFileDependencyGroups": {
  9454. "": [
  9455. "Luticate2.Utils >= 1.0.*"
  9456. ],
  9457. ".NETCoreApp,Version=v1.0": []
  9458. },
  9459. "tools": {},
  9460. "projectFileToolGroups": {}
  9461. }