project.assets.json 278 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net7.0": {
  5. "coverlet.collector/3.1.2": {
  6. "type": "package",
  7. "build": {
  8. "build/netstandard1.0/coverlet.collector.targets": {}
  9. }
  10. },
  11. "Microsoft.CodeCoverage/17.3.2": {
  12. "type": "package",
  13. "compile": {
  14. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  15. },
  16. "runtime": {
  17. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  18. },
  19. "build": {
  20. "build/netstandard1.0/Microsoft.CodeCoverage.props": {},
  21. "build/netstandard1.0/Microsoft.CodeCoverage.targets": {}
  22. }
  23. },
  24. "Microsoft.CSharp/4.0.1": {
  25. "type": "package",
  26. "dependencies": {
  27. "System.Collections": "4.0.11",
  28. "System.Diagnostics.Debug": "4.0.11",
  29. "System.Dynamic.Runtime": "4.0.11",
  30. "System.Globalization": "4.0.11",
  31. "System.Linq": "4.1.0",
  32. "System.Linq.Expressions": "4.1.0",
  33. "System.ObjectModel": "4.0.12",
  34. "System.Reflection": "4.1.0",
  35. "System.Reflection.Extensions": "4.0.1",
  36. "System.Reflection.Primitives": "4.0.1",
  37. "System.Reflection.TypeExtensions": "4.1.0",
  38. "System.Resources.ResourceManager": "4.0.1",
  39. "System.Runtime": "4.1.0",
  40. "System.Runtime.Extensions": "4.1.0",
  41. "System.Runtime.InteropServices": "4.1.0",
  42. "System.Threading": "4.0.11"
  43. },
  44. "compile": {
  45. "ref/netstandard1.0/Microsoft.CSharp.dll": {
  46. "related": ".xml"
  47. }
  48. },
  49. "runtime": {
  50. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  51. }
  52. },
  53. "Microsoft.NET.Test.Sdk/17.3.2": {
  54. "type": "package",
  55. "dependencies": {
  56. "Microsoft.CodeCoverage": "17.3.2",
  57. "Microsoft.TestPlatform.TestHost": "17.3.2"
  58. },
  59. "compile": {
  60. "lib/netcoreapp2.1/_._": {}
  61. },
  62. "runtime": {
  63. "lib/netcoreapp2.1/_._": {}
  64. },
  65. "build": {
  66. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {},
  67. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {}
  68. },
  69. "buildMultiTargeting": {
  70. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {}
  71. }
  72. },
  73. "Microsoft.NETCore.Platforms/1.1.0": {
  74. "type": "package",
  75. "compile": {
  76. "lib/netstandard1.0/_._": {}
  77. },
  78. "runtime": {
  79. "lib/netstandard1.0/_._": {}
  80. }
  81. },
  82. "Microsoft.NETCore.Targets/1.1.0": {
  83. "type": "package",
  84. "compile": {
  85. "lib/netstandard1.0/_._": {}
  86. },
  87. "runtime": {
  88. "lib/netstandard1.0/_._": {}
  89. }
  90. },
  91. "Microsoft.TestPlatform.ObjectModel/17.3.2": {
  92. "type": "package",
  93. "dependencies": {
  94. "NuGet.Frameworks": "5.11.0",
  95. "System.Reflection.Metadata": "1.6.0"
  96. },
  97. "compile": {
  98. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  99. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  100. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  101. },
  102. "runtime": {
  103. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  104. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  105. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  106. },
  107. "resource": {
  108. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  109. "locale": "cs"
  110. },
  111. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  112. "locale": "cs"
  113. },
  114. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  115. "locale": "de"
  116. },
  117. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  118. "locale": "de"
  119. },
  120. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  121. "locale": "es"
  122. },
  123. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  124. "locale": "es"
  125. },
  126. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  127. "locale": "fr"
  128. },
  129. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  130. "locale": "fr"
  131. },
  132. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  133. "locale": "it"
  134. },
  135. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  136. "locale": "it"
  137. },
  138. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  139. "locale": "ja"
  140. },
  141. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  142. "locale": "ja"
  143. },
  144. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  145. "locale": "ko"
  146. },
  147. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  148. "locale": "ko"
  149. },
  150. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  151. "locale": "pl"
  152. },
  153. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  154. "locale": "pl"
  155. },
  156. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  157. "locale": "pt-BR"
  158. },
  159. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  160. "locale": "pt-BR"
  161. },
  162. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  163. "locale": "ru"
  164. },
  165. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  166. "locale": "ru"
  167. },
  168. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  169. "locale": "tr"
  170. },
  171. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  172. "locale": "tr"
  173. },
  174. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  175. "locale": "zh-Hans"
  176. },
  177. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  178. "locale": "zh-Hans"
  179. },
  180. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  181. "locale": "zh-Hant"
  182. },
  183. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  184. "locale": "zh-Hant"
  185. }
  186. }
  187. },
  188. "Microsoft.TestPlatform.TestHost/17.3.2": {
  189. "type": "package",
  190. "dependencies": {
  191. "Microsoft.TestPlatform.ObjectModel": "17.3.2",
  192. "Newtonsoft.Json": "9.0.1"
  193. },
  194. "compile": {
  195. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  196. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  197. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  198. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  199. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
  200. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  201. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
  202. "lib/netcoreapp2.1/testhost.dll": {
  203. "related": ".deps.json"
  204. }
  205. },
  206. "runtime": {
  207. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  208. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  209. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  210. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  211. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
  212. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  213. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
  214. "lib/netcoreapp2.1/testhost.dll": {
  215. "related": ".deps.json"
  216. }
  217. },
  218. "resource": {
  219. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  220. "locale": "cs"
  221. },
  222. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  223. "locale": "cs"
  224. },
  225. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  226. "locale": "cs"
  227. },
  228. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  229. "locale": "de"
  230. },
  231. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  232. "locale": "de"
  233. },
  234. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  235. "locale": "de"
  236. },
  237. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  238. "locale": "es"
  239. },
  240. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  241. "locale": "es"
  242. },
  243. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  244. "locale": "es"
  245. },
  246. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  247. "locale": "fr"
  248. },
  249. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  250. "locale": "fr"
  251. },
  252. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  253. "locale": "fr"
  254. },
  255. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  256. "locale": "it"
  257. },
  258. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  259. "locale": "it"
  260. },
  261. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  262. "locale": "it"
  263. },
  264. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  265. "locale": "ja"
  266. },
  267. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  268. "locale": "ja"
  269. },
  270. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  271. "locale": "ja"
  272. },
  273. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  274. "locale": "ko"
  275. },
  276. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  277. "locale": "ko"
  278. },
  279. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  280. "locale": "ko"
  281. },
  282. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  283. "locale": "pl"
  284. },
  285. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  286. "locale": "pl"
  287. },
  288. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  289. "locale": "pl"
  290. },
  291. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  292. "locale": "pt-BR"
  293. },
  294. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  295. "locale": "pt-BR"
  296. },
  297. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  298. "locale": "pt-BR"
  299. },
  300. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  301. "locale": "ru"
  302. },
  303. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  304. "locale": "ru"
  305. },
  306. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  307. "locale": "ru"
  308. },
  309. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  310. "locale": "tr"
  311. },
  312. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  313. "locale": "tr"
  314. },
  315. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  316. "locale": "tr"
  317. },
  318. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  319. "locale": "zh-Hans"
  320. },
  321. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  322. "locale": "zh-Hans"
  323. },
  324. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  325. "locale": "zh-Hans"
  326. },
  327. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  328. "locale": "zh-Hant"
  329. },
  330. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  331. "locale": "zh-Hant"
  332. },
  333. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  334. "locale": "zh-Hant"
  335. }
  336. },
  337. "build": {
  338. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {}
  339. }
  340. },
  341. "Microsoft.Win32.Primitives/4.3.0": {
  342. "type": "package",
  343. "dependencies": {
  344. "Microsoft.NETCore.Platforms": "1.1.0",
  345. "Microsoft.NETCore.Targets": "1.1.0",
  346. "System.Runtime": "4.3.0"
  347. },
  348. "compile": {
  349. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  350. "related": ".xml"
  351. }
  352. }
  353. },
  354. "NETStandard.Library/1.6.1": {
  355. "type": "package",
  356. "dependencies": {
  357. "Microsoft.NETCore.Platforms": "1.1.0",
  358. "Microsoft.Win32.Primitives": "4.3.0",
  359. "System.AppContext": "4.3.0",
  360. "System.Collections": "4.3.0",
  361. "System.Collections.Concurrent": "4.3.0",
  362. "System.Console": "4.3.0",
  363. "System.Diagnostics.Debug": "4.3.0",
  364. "System.Diagnostics.Tools": "4.3.0",
  365. "System.Diagnostics.Tracing": "4.3.0",
  366. "System.Globalization": "4.3.0",
  367. "System.Globalization.Calendars": "4.3.0",
  368. "System.IO": "4.3.0",
  369. "System.IO.Compression": "4.3.0",
  370. "System.IO.Compression.ZipFile": "4.3.0",
  371. "System.IO.FileSystem": "4.3.0",
  372. "System.IO.FileSystem.Primitives": "4.3.0",
  373. "System.Linq": "4.3.0",
  374. "System.Linq.Expressions": "4.3.0",
  375. "System.Net.Http": "4.3.0",
  376. "System.Net.Primitives": "4.3.0",
  377. "System.Net.Sockets": "4.3.0",
  378. "System.ObjectModel": "4.3.0",
  379. "System.Reflection": "4.3.0",
  380. "System.Reflection.Extensions": "4.3.0",
  381. "System.Reflection.Primitives": "4.3.0",
  382. "System.Resources.ResourceManager": "4.3.0",
  383. "System.Runtime": "4.3.0",
  384. "System.Runtime.Extensions": "4.3.0",
  385. "System.Runtime.Handles": "4.3.0",
  386. "System.Runtime.InteropServices": "4.3.0",
  387. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  388. "System.Runtime.Numerics": "4.3.0",
  389. "System.Security.Cryptography.Algorithms": "4.3.0",
  390. "System.Security.Cryptography.Encoding": "4.3.0",
  391. "System.Security.Cryptography.Primitives": "4.3.0",
  392. "System.Security.Cryptography.X509Certificates": "4.3.0",
  393. "System.Text.Encoding": "4.3.0",
  394. "System.Text.Encoding.Extensions": "4.3.0",
  395. "System.Text.RegularExpressions": "4.3.0",
  396. "System.Threading": "4.3.0",
  397. "System.Threading.Tasks": "4.3.0",
  398. "System.Threading.Timer": "4.3.0",
  399. "System.Xml.ReaderWriter": "4.3.0",
  400. "System.Xml.XDocument": "4.3.0"
  401. }
  402. },
  403. "Newtonsoft.Json/9.0.1": {
  404. "type": "package",
  405. "dependencies": {
  406. "Microsoft.CSharp": "4.0.1",
  407. "System.Collections": "4.0.11",
  408. "System.Diagnostics.Debug": "4.0.11",
  409. "System.Dynamic.Runtime": "4.0.11",
  410. "System.Globalization": "4.0.11",
  411. "System.IO": "4.1.0",
  412. "System.Linq": "4.1.0",
  413. "System.Linq.Expressions": "4.1.0",
  414. "System.ObjectModel": "4.0.12",
  415. "System.Reflection": "4.1.0",
  416. "System.Reflection.Extensions": "4.0.1",
  417. "System.Resources.ResourceManager": "4.0.1",
  418. "System.Runtime": "4.1.0",
  419. "System.Runtime.Extensions": "4.1.0",
  420. "System.Runtime.Serialization.Primitives": "4.1.1",
  421. "System.Text.Encoding": "4.0.11",
  422. "System.Text.Encoding.Extensions": "4.0.11",
  423. "System.Text.RegularExpressions": "4.1.0",
  424. "System.Threading": "4.0.11",
  425. "System.Threading.Tasks": "4.0.11",
  426. "System.Xml.ReaderWriter": "4.0.11",
  427. "System.Xml.XDocument": "4.0.11"
  428. },
  429. "compile": {
  430. "lib/netstandard1.0/Newtonsoft.Json.dll": {
  431. "related": ".xml"
  432. }
  433. },
  434. "runtime": {
  435. "lib/netstandard1.0/Newtonsoft.Json.dll": {
  436. "related": ".xml"
  437. }
  438. }
  439. },
  440. "NuGet.Frameworks/5.11.0": {
  441. "type": "package",
  442. "compile": {
  443. "lib/netstandard2.0/NuGet.Frameworks.dll": {
  444. "related": ".xml"
  445. }
  446. },
  447. "runtime": {
  448. "lib/netstandard2.0/NuGet.Frameworks.dll": {
  449. "related": ".xml"
  450. }
  451. }
  452. },
  453. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  454. "type": "package",
  455. "runtimeTargets": {
  456. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  457. "assetType": "native",
  458. "rid": "debian.8-x64"
  459. }
  460. }
  461. },
  462. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  463. "type": "package",
  464. "runtimeTargets": {
  465. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  466. "assetType": "native",
  467. "rid": "fedora.23-x64"
  468. }
  469. }
  470. },
  471. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  472. "type": "package",
  473. "runtimeTargets": {
  474. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  475. "assetType": "native",
  476. "rid": "fedora.24-x64"
  477. }
  478. }
  479. },
  480. "runtime.native.System/4.3.0": {
  481. "type": "package",
  482. "dependencies": {
  483. "Microsoft.NETCore.Platforms": "1.1.0",
  484. "Microsoft.NETCore.Targets": "1.1.0"
  485. },
  486. "compile": {
  487. "lib/netstandard1.0/_._": {}
  488. },
  489. "runtime": {
  490. "lib/netstandard1.0/_._": {}
  491. }
  492. },
  493. "runtime.native.System.IO.Compression/4.3.0": {
  494. "type": "package",
  495. "dependencies": {
  496. "Microsoft.NETCore.Platforms": "1.1.0",
  497. "Microsoft.NETCore.Targets": "1.1.0"
  498. },
  499. "compile": {
  500. "lib/netstandard1.0/_._": {}
  501. },
  502. "runtime": {
  503. "lib/netstandard1.0/_._": {}
  504. }
  505. },
  506. "runtime.native.System.Net.Http/4.3.0": {
  507. "type": "package",
  508. "dependencies": {
  509. "Microsoft.NETCore.Platforms": "1.1.0",
  510. "Microsoft.NETCore.Targets": "1.1.0"
  511. },
  512. "compile": {
  513. "lib/netstandard1.0/_._": {}
  514. },
  515. "runtime": {
  516. "lib/netstandard1.0/_._": {}
  517. }
  518. },
  519. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  520. "type": "package",
  521. "dependencies": {
  522. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  523. },
  524. "compile": {
  525. "lib/netstandard1.0/_._": {}
  526. },
  527. "runtime": {
  528. "lib/netstandard1.0/_._": {}
  529. }
  530. },
  531. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  532. "type": "package",
  533. "dependencies": {
  534. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  535. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  536. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  537. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  538. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  539. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  540. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  541. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  542. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  543. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  544. },
  545. "compile": {
  546. "lib/netstandard1.0/_._": {}
  547. },
  548. "runtime": {
  549. "lib/netstandard1.0/_._": {}
  550. }
  551. },
  552. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  553. "type": "package",
  554. "runtimeTargets": {
  555. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  556. "assetType": "native",
  557. "rid": "opensuse.13.2-x64"
  558. }
  559. }
  560. },
  561. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  562. "type": "package",
  563. "runtimeTargets": {
  564. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  565. "assetType": "native",
  566. "rid": "opensuse.42.1-x64"
  567. }
  568. }
  569. },
  570. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  571. "type": "package",
  572. "runtimeTargets": {
  573. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  574. "assetType": "native",
  575. "rid": "osx.10.10-x64"
  576. }
  577. }
  578. },
  579. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  580. "type": "package",
  581. "runtimeTargets": {
  582. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  583. "assetType": "native",
  584. "rid": "osx.10.10-x64"
  585. }
  586. }
  587. },
  588. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  589. "type": "package",
  590. "runtimeTargets": {
  591. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  592. "assetType": "native",
  593. "rid": "rhel.7-x64"
  594. }
  595. }
  596. },
  597. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  598. "type": "package",
  599. "runtimeTargets": {
  600. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  601. "assetType": "native",
  602. "rid": "ubuntu.14.04-x64"
  603. }
  604. }
  605. },
  606. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  607. "type": "package",
  608. "runtimeTargets": {
  609. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  610. "assetType": "native",
  611. "rid": "ubuntu.16.04-x64"
  612. }
  613. }
  614. },
  615. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  616. "type": "package",
  617. "runtimeTargets": {
  618. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  619. "assetType": "native",
  620. "rid": "ubuntu.16.10-x64"
  621. }
  622. }
  623. },
  624. "System.AppContext/4.3.0": {
  625. "type": "package",
  626. "dependencies": {
  627. "System.Runtime": "4.3.0"
  628. },
  629. "compile": {
  630. "ref/netstandard1.6/System.AppContext.dll": {
  631. "related": ".xml"
  632. }
  633. },
  634. "runtime": {
  635. "lib/netstandard1.6/System.AppContext.dll": {}
  636. }
  637. },
  638. "System.Buffers/4.3.0": {
  639. "type": "package",
  640. "dependencies": {
  641. "System.Diagnostics.Debug": "4.3.0",
  642. "System.Diagnostics.Tracing": "4.3.0",
  643. "System.Resources.ResourceManager": "4.3.0",
  644. "System.Runtime": "4.3.0",
  645. "System.Threading": "4.3.0"
  646. },
  647. "compile": {
  648. "lib/netstandard1.1/_._": {}
  649. },
  650. "runtime": {
  651. "lib/netstandard1.1/System.Buffers.dll": {}
  652. }
  653. },
  654. "System.Collections/4.3.0": {
  655. "type": "package",
  656. "dependencies": {
  657. "Microsoft.NETCore.Platforms": "1.1.0",
  658. "Microsoft.NETCore.Targets": "1.1.0",
  659. "System.Runtime": "4.3.0"
  660. },
  661. "compile": {
  662. "ref/netstandard1.3/System.Collections.dll": {
  663. "related": ".xml"
  664. }
  665. }
  666. },
  667. "System.Collections.Concurrent/4.3.0": {
  668. "type": "package",
  669. "dependencies": {
  670. "System.Collections": "4.3.0",
  671. "System.Diagnostics.Debug": "4.3.0",
  672. "System.Diagnostics.Tracing": "4.3.0",
  673. "System.Globalization": "4.3.0",
  674. "System.Reflection": "4.3.0",
  675. "System.Resources.ResourceManager": "4.3.0",
  676. "System.Runtime": "4.3.0",
  677. "System.Runtime.Extensions": "4.3.0",
  678. "System.Threading": "4.3.0",
  679. "System.Threading.Tasks": "4.3.0"
  680. },
  681. "compile": {
  682. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  683. "related": ".xml"
  684. }
  685. },
  686. "runtime": {
  687. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  688. }
  689. },
  690. "System.Console/4.3.0": {
  691. "type": "package",
  692. "dependencies": {
  693. "Microsoft.NETCore.Platforms": "1.1.0",
  694. "Microsoft.NETCore.Targets": "1.1.0",
  695. "System.IO": "4.3.0",
  696. "System.Runtime": "4.3.0",
  697. "System.Text.Encoding": "4.3.0"
  698. },
  699. "compile": {
  700. "ref/netstandard1.3/System.Console.dll": {
  701. "related": ".xml"
  702. }
  703. }
  704. },
  705. "System.Diagnostics.Debug/4.3.0": {
  706. "type": "package",
  707. "dependencies": {
  708. "Microsoft.NETCore.Platforms": "1.1.0",
  709. "Microsoft.NETCore.Targets": "1.1.0",
  710. "System.Runtime": "4.3.0"
  711. },
  712. "compile": {
  713. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  714. "related": ".xml"
  715. }
  716. }
  717. },
  718. "System.Diagnostics.DiagnosticSource/4.3.0": {
  719. "type": "package",
  720. "dependencies": {
  721. "System.Collections": "4.3.0",
  722. "System.Diagnostics.Tracing": "4.3.0",
  723. "System.Reflection": "4.3.0",
  724. "System.Runtime": "4.3.0",
  725. "System.Threading": "4.3.0"
  726. },
  727. "compile": {
  728. "lib/netstandard1.3/_._": {
  729. "related": ".xml"
  730. }
  731. },
  732. "runtime": {
  733. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  734. "related": ".xml"
  735. }
  736. }
  737. },
  738. "System.Diagnostics.Tools/4.3.0": {
  739. "type": "package",
  740. "dependencies": {
  741. "Microsoft.NETCore.Platforms": "1.1.0",
  742. "Microsoft.NETCore.Targets": "1.1.0",
  743. "System.Runtime": "4.3.0"
  744. },
  745. "compile": {
  746. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  747. "related": ".xml"
  748. }
  749. }
  750. },
  751. "System.Diagnostics.Tracing/4.3.0": {
  752. "type": "package",
  753. "dependencies": {
  754. "Microsoft.NETCore.Platforms": "1.1.0",
  755. "Microsoft.NETCore.Targets": "1.1.0",
  756. "System.Runtime": "4.3.0"
  757. },
  758. "compile": {
  759. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  760. "related": ".xml"
  761. }
  762. }
  763. },
  764. "System.Dynamic.Runtime/4.0.11": {
  765. "type": "package",
  766. "dependencies": {
  767. "System.Collections": "4.0.11",
  768. "System.Diagnostics.Debug": "4.0.11",
  769. "System.Globalization": "4.0.11",
  770. "System.Linq": "4.1.0",
  771. "System.Linq.Expressions": "4.1.0",
  772. "System.ObjectModel": "4.0.12",
  773. "System.Reflection": "4.1.0",
  774. "System.Reflection.Emit": "4.0.1",
  775. "System.Reflection.Emit.ILGeneration": "4.0.1",
  776. "System.Reflection.Primitives": "4.0.1",
  777. "System.Reflection.TypeExtensions": "4.1.0",
  778. "System.Resources.ResourceManager": "4.0.1",
  779. "System.Runtime": "4.1.0",
  780. "System.Runtime.Extensions": "4.1.0",
  781. "System.Threading": "4.0.11"
  782. },
  783. "compile": {
  784. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  785. "related": ".xml"
  786. }
  787. },
  788. "runtime": {
  789. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  790. }
  791. },
  792. "System.Globalization/4.3.0": {
  793. "type": "package",
  794. "dependencies": {
  795. "Microsoft.NETCore.Platforms": "1.1.0",
  796. "Microsoft.NETCore.Targets": "1.1.0",
  797. "System.Runtime": "4.3.0"
  798. },
  799. "compile": {
  800. "ref/netstandard1.3/System.Globalization.dll": {
  801. "related": ".xml"
  802. }
  803. }
  804. },
  805. "System.Globalization.Calendars/4.3.0": {
  806. "type": "package",
  807. "dependencies": {
  808. "Microsoft.NETCore.Platforms": "1.1.0",
  809. "Microsoft.NETCore.Targets": "1.1.0",
  810. "System.Globalization": "4.3.0",
  811. "System.Runtime": "4.3.0"
  812. },
  813. "compile": {
  814. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  815. "related": ".xml"
  816. }
  817. }
  818. },
  819. "System.Globalization.Extensions/4.3.0": {
  820. "type": "package",
  821. "dependencies": {
  822. "Microsoft.NETCore.Platforms": "1.1.0",
  823. "System.Globalization": "4.3.0",
  824. "System.Resources.ResourceManager": "4.3.0",
  825. "System.Runtime": "4.3.0",
  826. "System.Runtime.Extensions": "4.3.0",
  827. "System.Runtime.InteropServices": "4.3.0"
  828. },
  829. "compile": {
  830. "ref/netstandard1.3/_._": {
  831. "related": ".xml"
  832. }
  833. },
  834. "runtimeTargets": {
  835. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  836. "assetType": "runtime",
  837. "rid": "unix"
  838. },
  839. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  840. "assetType": "runtime",
  841. "rid": "win"
  842. }
  843. }
  844. },
  845. "System.IO/4.3.0": {
  846. "type": "package",
  847. "dependencies": {
  848. "Microsoft.NETCore.Platforms": "1.1.0",
  849. "Microsoft.NETCore.Targets": "1.1.0",
  850. "System.Runtime": "4.3.0",
  851. "System.Text.Encoding": "4.3.0",
  852. "System.Threading.Tasks": "4.3.0"
  853. },
  854. "compile": {
  855. "ref/netstandard1.5/System.IO.dll": {
  856. "related": ".xml"
  857. }
  858. }
  859. },
  860. "System.IO.Compression/4.3.0": {
  861. "type": "package",
  862. "dependencies": {
  863. "Microsoft.NETCore.Platforms": "1.1.0",
  864. "System.Buffers": "4.3.0",
  865. "System.Collections": "4.3.0",
  866. "System.Diagnostics.Debug": "4.3.0",
  867. "System.IO": "4.3.0",
  868. "System.Resources.ResourceManager": "4.3.0",
  869. "System.Runtime": "4.3.0",
  870. "System.Runtime.Extensions": "4.3.0",
  871. "System.Runtime.Handles": "4.3.0",
  872. "System.Runtime.InteropServices": "4.3.0",
  873. "System.Text.Encoding": "4.3.0",
  874. "System.Threading": "4.3.0",
  875. "System.Threading.Tasks": "4.3.0",
  876. "runtime.native.System": "4.3.0",
  877. "runtime.native.System.IO.Compression": "4.3.0"
  878. },
  879. "compile": {
  880. "ref/netstandard1.3/System.IO.Compression.dll": {
  881. "related": ".xml"
  882. }
  883. },
  884. "runtimeTargets": {
  885. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  886. "assetType": "runtime",
  887. "rid": "unix"
  888. },
  889. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  890. "assetType": "runtime",
  891. "rid": "win"
  892. }
  893. }
  894. },
  895. "System.IO.Compression.ZipFile/4.3.0": {
  896. "type": "package",
  897. "dependencies": {
  898. "System.Buffers": "4.3.0",
  899. "System.IO": "4.3.0",
  900. "System.IO.Compression": "4.3.0",
  901. "System.IO.FileSystem": "4.3.0",
  902. "System.IO.FileSystem.Primitives": "4.3.0",
  903. "System.Resources.ResourceManager": "4.3.0",
  904. "System.Runtime": "4.3.0",
  905. "System.Runtime.Extensions": "4.3.0",
  906. "System.Text.Encoding": "4.3.0"
  907. },
  908. "compile": {
  909. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  910. "related": ".xml"
  911. }
  912. },
  913. "runtime": {
  914. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  915. }
  916. },
  917. "System.IO.FileSystem/4.3.0": {
  918. "type": "package",
  919. "dependencies": {
  920. "Microsoft.NETCore.Platforms": "1.1.0",
  921. "Microsoft.NETCore.Targets": "1.1.0",
  922. "System.IO": "4.3.0",
  923. "System.IO.FileSystem.Primitives": "4.3.0",
  924. "System.Runtime": "4.3.0",
  925. "System.Runtime.Handles": "4.3.0",
  926. "System.Text.Encoding": "4.3.0",
  927. "System.Threading.Tasks": "4.3.0"
  928. },
  929. "compile": {
  930. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  931. "related": ".xml"
  932. }
  933. }
  934. },
  935. "System.IO.FileSystem.Primitives/4.3.0": {
  936. "type": "package",
  937. "dependencies": {
  938. "System.Runtime": "4.3.0"
  939. },
  940. "compile": {
  941. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  942. "related": ".xml"
  943. }
  944. },
  945. "runtime": {
  946. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  947. }
  948. },
  949. "System.Linq/4.3.0": {
  950. "type": "package",
  951. "dependencies": {
  952. "System.Collections": "4.3.0",
  953. "System.Diagnostics.Debug": "4.3.0",
  954. "System.Resources.ResourceManager": "4.3.0",
  955. "System.Runtime": "4.3.0",
  956. "System.Runtime.Extensions": "4.3.0"
  957. },
  958. "compile": {
  959. "ref/netstandard1.6/System.Linq.dll": {
  960. "related": ".xml"
  961. }
  962. },
  963. "runtime": {
  964. "lib/netstandard1.6/System.Linq.dll": {}
  965. }
  966. },
  967. "System.Linq.Expressions/4.3.0": {
  968. "type": "package",
  969. "dependencies": {
  970. "System.Collections": "4.3.0",
  971. "System.Diagnostics.Debug": "4.3.0",
  972. "System.Globalization": "4.3.0",
  973. "System.IO": "4.3.0",
  974. "System.Linq": "4.3.0",
  975. "System.ObjectModel": "4.3.0",
  976. "System.Reflection": "4.3.0",
  977. "System.Reflection.Emit": "4.3.0",
  978. "System.Reflection.Emit.ILGeneration": "4.3.0",
  979. "System.Reflection.Emit.Lightweight": "4.3.0",
  980. "System.Reflection.Extensions": "4.3.0",
  981. "System.Reflection.Primitives": "4.3.0",
  982. "System.Reflection.TypeExtensions": "4.3.0",
  983. "System.Resources.ResourceManager": "4.3.0",
  984. "System.Runtime": "4.3.0",
  985. "System.Runtime.Extensions": "4.3.0",
  986. "System.Threading": "4.3.0"
  987. },
  988. "compile": {
  989. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  990. "related": ".xml"
  991. }
  992. },
  993. "runtime": {
  994. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  995. }
  996. },
  997. "System.Net.Http/4.3.0": {
  998. "type": "package",
  999. "dependencies": {
  1000. "Microsoft.NETCore.Platforms": "1.1.0",
  1001. "System.Collections": "4.3.0",
  1002. "System.Diagnostics.Debug": "4.3.0",
  1003. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1004. "System.Diagnostics.Tracing": "4.3.0",
  1005. "System.Globalization": "4.3.0",
  1006. "System.Globalization.Extensions": "4.3.0",
  1007. "System.IO": "4.3.0",
  1008. "System.IO.FileSystem": "4.3.0",
  1009. "System.Net.Primitives": "4.3.0",
  1010. "System.Resources.ResourceManager": "4.3.0",
  1011. "System.Runtime": "4.3.0",
  1012. "System.Runtime.Extensions": "4.3.0",
  1013. "System.Runtime.Handles": "4.3.0",
  1014. "System.Runtime.InteropServices": "4.3.0",
  1015. "System.Security.Cryptography.Algorithms": "4.3.0",
  1016. "System.Security.Cryptography.Encoding": "4.3.0",
  1017. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1018. "System.Security.Cryptography.Primitives": "4.3.0",
  1019. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1020. "System.Text.Encoding": "4.3.0",
  1021. "System.Threading": "4.3.0",
  1022. "System.Threading.Tasks": "4.3.0",
  1023. "runtime.native.System": "4.3.0",
  1024. "runtime.native.System.Net.Http": "4.3.0",
  1025. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1026. },
  1027. "compile": {
  1028. "ref/netstandard1.3/System.Net.Http.dll": {
  1029. "related": ".xml"
  1030. }
  1031. },
  1032. "runtimeTargets": {
  1033. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1034. "assetType": "runtime",
  1035. "rid": "unix"
  1036. },
  1037. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1038. "assetType": "runtime",
  1039. "rid": "win"
  1040. }
  1041. }
  1042. },
  1043. "System.Net.Primitives/4.3.0": {
  1044. "type": "package",
  1045. "dependencies": {
  1046. "Microsoft.NETCore.Platforms": "1.1.0",
  1047. "Microsoft.NETCore.Targets": "1.1.0",
  1048. "System.Runtime": "4.3.0",
  1049. "System.Runtime.Handles": "4.3.0"
  1050. },
  1051. "compile": {
  1052. "ref/netstandard1.3/System.Net.Primitives.dll": {
  1053. "related": ".xml"
  1054. }
  1055. }
  1056. },
  1057. "System.Net.Sockets/4.3.0": {
  1058. "type": "package",
  1059. "dependencies": {
  1060. "Microsoft.NETCore.Platforms": "1.1.0",
  1061. "Microsoft.NETCore.Targets": "1.1.0",
  1062. "System.IO": "4.3.0",
  1063. "System.Net.Primitives": "4.3.0",
  1064. "System.Runtime": "4.3.0",
  1065. "System.Threading.Tasks": "4.3.0"
  1066. },
  1067. "compile": {
  1068. "ref/netstandard1.3/System.Net.Sockets.dll": {
  1069. "related": ".xml"
  1070. }
  1071. }
  1072. },
  1073. "System.ObjectModel/4.3.0": {
  1074. "type": "package",
  1075. "dependencies": {
  1076. "System.Collections": "4.3.0",
  1077. "System.Diagnostics.Debug": "4.3.0",
  1078. "System.Resources.ResourceManager": "4.3.0",
  1079. "System.Runtime": "4.3.0",
  1080. "System.Threading": "4.3.0"
  1081. },
  1082. "compile": {
  1083. "ref/netstandard1.3/System.ObjectModel.dll": {
  1084. "related": ".xml"
  1085. }
  1086. },
  1087. "runtime": {
  1088. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1089. }
  1090. },
  1091. "System.Reflection/4.3.0": {
  1092. "type": "package",
  1093. "dependencies": {
  1094. "Microsoft.NETCore.Platforms": "1.1.0",
  1095. "Microsoft.NETCore.Targets": "1.1.0",
  1096. "System.IO": "4.3.0",
  1097. "System.Reflection.Primitives": "4.3.0",
  1098. "System.Runtime": "4.3.0"
  1099. },
  1100. "compile": {
  1101. "ref/netstandard1.5/System.Reflection.dll": {
  1102. "related": ".xml"
  1103. }
  1104. }
  1105. },
  1106. "System.Reflection.Emit/4.3.0": {
  1107. "type": "package",
  1108. "dependencies": {
  1109. "System.IO": "4.3.0",
  1110. "System.Reflection": "4.3.0",
  1111. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1112. "System.Reflection.Primitives": "4.3.0",
  1113. "System.Runtime": "4.3.0"
  1114. },
  1115. "compile": {
  1116. "ref/netstandard1.1/_._": {
  1117. "related": ".xml"
  1118. }
  1119. },
  1120. "runtime": {
  1121. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1122. }
  1123. },
  1124. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1125. "type": "package",
  1126. "dependencies": {
  1127. "System.Reflection": "4.3.0",
  1128. "System.Reflection.Primitives": "4.3.0",
  1129. "System.Runtime": "4.3.0"
  1130. },
  1131. "compile": {
  1132. "ref/netstandard1.0/_._": {
  1133. "related": ".xml"
  1134. }
  1135. },
  1136. "runtime": {
  1137. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1138. }
  1139. },
  1140. "System.Reflection.Emit.Lightweight/4.3.0": {
  1141. "type": "package",
  1142. "dependencies": {
  1143. "System.Reflection": "4.3.0",
  1144. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1145. "System.Reflection.Primitives": "4.3.0",
  1146. "System.Runtime": "4.3.0"
  1147. },
  1148. "compile": {
  1149. "ref/netstandard1.0/_._": {
  1150. "related": ".xml"
  1151. }
  1152. },
  1153. "runtime": {
  1154. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1155. }
  1156. },
  1157. "System.Reflection.Extensions/4.3.0": {
  1158. "type": "package",
  1159. "dependencies": {
  1160. "Microsoft.NETCore.Platforms": "1.1.0",
  1161. "Microsoft.NETCore.Targets": "1.1.0",
  1162. "System.Reflection": "4.3.0",
  1163. "System.Runtime": "4.3.0"
  1164. },
  1165. "compile": {
  1166. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  1167. "related": ".xml"
  1168. }
  1169. }
  1170. },
  1171. "System.Reflection.Metadata/1.6.0": {
  1172. "type": "package",
  1173. "compile": {
  1174. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  1175. "related": ".xml"
  1176. }
  1177. },
  1178. "runtime": {
  1179. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  1180. "related": ".xml"
  1181. }
  1182. }
  1183. },
  1184. "System.Reflection.Primitives/4.3.0": {
  1185. "type": "package",
  1186. "dependencies": {
  1187. "Microsoft.NETCore.Platforms": "1.1.0",
  1188. "Microsoft.NETCore.Targets": "1.1.0",
  1189. "System.Runtime": "4.3.0"
  1190. },
  1191. "compile": {
  1192. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  1193. "related": ".xml"
  1194. }
  1195. }
  1196. },
  1197. "System.Reflection.TypeExtensions/4.3.0": {
  1198. "type": "package",
  1199. "dependencies": {
  1200. "System.Reflection": "4.3.0",
  1201. "System.Runtime": "4.3.0"
  1202. },
  1203. "compile": {
  1204. "ref/netstandard1.5/_._": {
  1205. "related": ".xml"
  1206. }
  1207. },
  1208. "runtime": {
  1209. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1210. }
  1211. },
  1212. "System.Resources.ResourceManager/4.3.0": {
  1213. "type": "package",
  1214. "dependencies": {
  1215. "Microsoft.NETCore.Platforms": "1.1.0",
  1216. "Microsoft.NETCore.Targets": "1.1.0",
  1217. "System.Globalization": "4.3.0",
  1218. "System.Reflection": "4.3.0",
  1219. "System.Runtime": "4.3.0"
  1220. },
  1221. "compile": {
  1222. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  1223. "related": ".xml"
  1224. }
  1225. }
  1226. },
  1227. "System.Runtime/4.3.0": {
  1228. "type": "package",
  1229. "dependencies": {
  1230. "Microsoft.NETCore.Platforms": "1.1.0",
  1231. "Microsoft.NETCore.Targets": "1.1.0"
  1232. },
  1233. "compile": {
  1234. "ref/netstandard1.5/System.Runtime.dll": {
  1235. "related": ".xml"
  1236. }
  1237. }
  1238. },
  1239. "System.Runtime.Extensions/4.3.0": {
  1240. "type": "package",
  1241. "dependencies": {
  1242. "Microsoft.NETCore.Platforms": "1.1.0",
  1243. "Microsoft.NETCore.Targets": "1.1.0",
  1244. "System.Runtime": "4.3.0"
  1245. },
  1246. "compile": {
  1247. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  1248. "related": ".xml"
  1249. }
  1250. }
  1251. },
  1252. "System.Runtime.Handles/4.3.0": {
  1253. "type": "package",
  1254. "dependencies": {
  1255. "Microsoft.NETCore.Platforms": "1.1.0",
  1256. "Microsoft.NETCore.Targets": "1.1.0",
  1257. "System.Runtime": "4.3.0"
  1258. },
  1259. "compile": {
  1260. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  1261. "related": ".xml"
  1262. }
  1263. }
  1264. },
  1265. "System.Runtime.InteropServices/4.3.0": {
  1266. "type": "package",
  1267. "dependencies": {
  1268. "Microsoft.NETCore.Platforms": "1.1.0",
  1269. "Microsoft.NETCore.Targets": "1.1.0",
  1270. "System.Reflection": "4.3.0",
  1271. "System.Reflection.Primitives": "4.3.0",
  1272. "System.Runtime": "4.3.0",
  1273. "System.Runtime.Handles": "4.3.0"
  1274. },
  1275. "compile": {
  1276. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  1277. }
  1278. },
  1279. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  1280. "type": "package",
  1281. "dependencies": {
  1282. "System.Reflection": "4.3.0",
  1283. "System.Reflection.Extensions": "4.3.0",
  1284. "System.Resources.ResourceManager": "4.3.0",
  1285. "System.Runtime": "4.3.0",
  1286. "System.Runtime.InteropServices": "4.3.0",
  1287. "System.Threading": "4.3.0",
  1288. "runtime.native.System": "4.3.0"
  1289. },
  1290. "compile": {
  1291. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1292. },
  1293. "runtime": {
  1294. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  1295. },
  1296. "runtimeTargets": {
  1297. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1298. "assetType": "runtime",
  1299. "rid": "unix"
  1300. },
  1301. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  1302. "assetType": "runtime",
  1303. "rid": "win"
  1304. }
  1305. }
  1306. },
  1307. "System.Runtime.Numerics/4.3.0": {
  1308. "type": "package",
  1309. "dependencies": {
  1310. "System.Globalization": "4.3.0",
  1311. "System.Resources.ResourceManager": "4.3.0",
  1312. "System.Runtime": "4.3.0",
  1313. "System.Runtime.Extensions": "4.3.0"
  1314. },
  1315. "compile": {
  1316. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  1317. "related": ".xml"
  1318. }
  1319. },
  1320. "runtime": {
  1321. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  1322. }
  1323. },
  1324. "System.Runtime.Serialization.Primitives/4.1.1": {
  1325. "type": "package",
  1326. "dependencies": {
  1327. "System.Resources.ResourceManager": "4.0.1",
  1328. "System.Runtime": "4.1.0"
  1329. },
  1330. "compile": {
  1331. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  1332. "related": ".xml"
  1333. }
  1334. },
  1335. "runtime": {
  1336. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  1337. }
  1338. },
  1339. "System.Security.Cryptography.Algorithms/4.3.0": {
  1340. "type": "package",
  1341. "dependencies": {
  1342. "Microsoft.NETCore.Platforms": "1.1.0",
  1343. "System.Collections": "4.3.0",
  1344. "System.IO": "4.3.0",
  1345. "System.Resources.ResourceManager": "4.3.0",
  1346. "System.Runtime": "4.3.0",
  1347. "System.Runtime.Extensions": "4.3.0",
  1348. "System.Runtime.Handles": "4.3.0",
  1349. "System.Runtime.InteropServices": "4.3.0",
  1350. "System.Runtime.Numerics": "4.3.0",
  1351. "System.Security.Cryptography.Encoding": "4.3.0",
  1352. "System.Security.Cryptography.Primitives": "4.3.0",
  1353. "System.Text.Encoding": "4.3.0",
  1354. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  1355. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1356. },
  1357. "compile": {
  1358. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  1359. },
  1360. "runtimeTargets": {
  1361. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1362. "assetType": "runtime",
  1363. "rid": "osx"
  1364. },
  1365. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1366. "assetType": "runtime",
  1367. "rid": "unix"
  1368. },
  1369. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  1370. "assetType": "runtime",
  1371. "rid": "win"
  1372. }
  1373. }
  1374. },
  1375. "System.Security.Cryptography.Cng/4.3.0": {
  1376. "type": "package",
  1377. "dependencies": {
  1378. "Microsoft.NETCore.Platforms": "1.1.0",
  1379. "System.IO": "4.3.0",
  1380. "System.Resources.ResourceManager": "4.3.0",
  1381. "System.Runtime": "4.3.0",
  1382. "System.Runtime.Extensions": "4.3.0",
  1383. "System.Runtime.Handles": "4.3.0",
  1384. "System.Runtime.InteropServices": "4.3.0",
  1385. "System.Security.Cryptography.Algorithms": "4.3.0",
  1386. "System.Security.Cryptography.Encoding": "4.3.0",
  1387. "System.Security.Cryptography.Primitives": "4.3.0",
  1388. "System.Text.Encoding": "4.3.0"
  1389. },
  1390. "compile": {
  1391. "ref/netstandard1.6/_._": {}
  1392. },
  1393. "runtimeTargets": {
  1394. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  1395. "assetType": "runtime",
  1396. "rid": "unix"
  1397. },
  1398. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  1399. "assetType": "runtime",
  1400. "rid": "win"
  1401. }
  1402. }
  1403. },
  1404. "System.Security.Cryptography.Csp/4.3.0": {
  1405. "type": "package",
  1406. "dependencies": {
  1407. "Microsoft.NETCore.Platforms": "1.1.0",
  1408. "System.IO": "4.3.0",
  1409. "System.Reflection": "4.3.0",
  1410. "System.Resources.ResourceManager": "4.3.0",
  1411. "System.Runtime": "4.3.0",
  1412. "System.Runtime.Extensions": "4.3.0",
  1413. "System.Runtime.Handles": "4.3.0",
  1414. "System.Runtime.InteropServices": "4.3.0",
  1415. "System.Security.Cryptography.Algorithms": "4.3.0",
  1416. "System.Security.Cryptography.Encoding": "4.3.0",
  1417. "System.Security.Cryptography.Primitives": "4.3.0",
  1418. "System.Text.Encoding": "4.3.0",
  1419. "System.Threading": "4.3.0"
  1420. },
  1421. "compile": {
  1422. "ref/netstandard1.3/_._": {}
  1423. },
  1424. "runtimeTargets": {
  1425. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1426. "assetType": "runtime",
  1427. "rid": "unix"
  1428. },
  1429. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  1430. "assetType": "runtime",
  1431. "rid": "win"
  1432. }
  1433. }
  1434. },
  1435. "System.Security.Cryptography.Encoding/4.3.0": {
  1436. "type": "package",
  1437. "dependencies": {
  1438. "Microsoft.NETCore.Platforms": "1.1.0",
  1439. "System.Collections": "4.3.0",
  1440. "System.Collections.Concurrent": "4.3.0",
  1441. "System.Linq": "4.3.0",
  1442. "System.Resources.ResourceManager": "4.3.0",
  1443. "System.Runtime": "4.3.0",
  1444. "System.Runtime.Extensions": "4.3.0",
  1445. "System.Runtime.Handles": "4.3.0",
  1446. "System.Runtime.InteropServices": "4.3.0",
  1447. "System.Security.Cryptography.Primitives": "4.3.0",
  1448. "System.Text.Encoding": "4.3.0",
  1449. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1450. },
  1451. "compile": {
  1452. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1453. "related": ".xml"
  1454. }
  1455. },
  1456. "runtimeTargets": {
  1457. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1458. "assetType": "runtime",
  1459. "rid": "unix"
  1460. },
  1461. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  1462. "assetType": "runtime",
  1463. "rid": "win"
  1464. }
  1465. }
  1466. },
  1467. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1468. "type": "package",
  1469. "dependencies": {
  1470. "System.Collections": "4.3.0",
  1471. "System.IO": "4.3.0",
  1472. "System.Resources.ResourceManager": "4.3.0",
  1473. "System.Runtime": "4.3.0",
  1474. "System.Runtime.Extensions": "4.3.0",
  1475. "System.Runtime.Handles": "4.3.0",
  1476. "System.Runtime.InteropServices": "4.3.0",
  1477. "System.Runtime.Numerics": "4.3.0",
  1478. "System.Security.Cryptography.Algorithms": "4.3.0",
  1479. "System.Security.Cryptography.Encoding": "4.3.0",
  1480. "System.Security.Cryptography.Primitives": "4.3.0",
  1481. "System.Text.Encoding": "4.3.0",
  1482. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1483. },
  1484. "compile": {
  1485. "ref/netstandard1.6/_._": {}
  1486. },
  1487. "runtime": {
  1488. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  1489. },
  1490. "runtimeTargets": {
  1491. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  1492. "assetType": "runtime",
  1493. "rid": "unix"
  1494. }
  1495. }
  1496. },
  1497. "System.Security.Cryptography.Primitives/4.3.0": {
  1498. "type": "package",
  1499. "dependencies": {
  1500. "System.Diagnostics.Debug": "4.3.0",
  1501. "System.Globalization": "4.3.0",
  1502. "System.IO": "4.3.0",
  1503. "System.Resources.ResourceManager": "4.3.0",
  1504. "System.Runtime": "4.3.0",
  1505. "System.Threading": "4.3.0",
  1506. "System.Threading.Tasks": "4.3.0"
  1507. },
  1508. "compile": {
  1509. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1510. },
  1511. "runtime": {
  1512. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  1513. }
  1514. },
  1515. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1516. "type": "package",
  1517. "dependencies": {
  1518. "Microsoft.NETCore.Platforms": "1.1.0",
  1519. "System.Collections": "4.3.0",
  1520. "System.Diagnostics.Debug": "4.3.0",
  1521. "System.Globalization": "4.3.0",
  1522. "System.Globalization.Calendars": "4.3.0",
  1523. "System.IO": "4.3.0",
  1524. "System.IO.FileSystem": "4.3.0",
  1525. "System.IO.FileSystem.Primitives": "4.3.0",
  1526. "System.Resources.ResourceManager": "4.3.0",
  1527. "System.Runtime": "4.3.0",
  1528. "System.Runtime.Extensions": "4.3.0",
  1529. "System.Runtime.Handles": "4.3.0",
  1530. "System.Runtime.InteropServices": "4.3.0",
  1531. "System.Runtime.Numerics": "4.3.0",
  1532. "System.Security.Cryptography.Algorithms": "4.3.0",
  1533. "System.Security.Cryptography.Cng": "4.3.0",
  1534. "System.Security.Cryptography.Csp": "4.3.0",
  1535. "System.Security.Cryptography.Encoding": "4.3.0",
  1536. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1537. "System.Security.Cryptography.Primitives": "4.3.0",
  1538. "System.Text.Encoding": "4.3.0",
  1539. "System.Threading": "4.3.0",
  1540. "runtime.native.System": "4.3.0",
  1541. "runtime.native.System.Net.Http": "4.3.0",
  1542. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1543. },
  1544. "compile": {
  1545. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  1546. "related": ".xml"
  1547. }
  1548. },
  1549. "runtimeTargets": {
  1550. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1551. "assetType": "runtime",
  1552. "rid": "unix"
  1553. },
  1554. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  1555. "assetType": "runtime",
  1556. "rid": "win"
  1557. }
  1558. }
  1559. },
  1560. "System.Text.Encoding/4.3.0": {
  1561. "type": "package",
  1562. "dependencies": {
  1563. "Microsoft.NETCore.Platforms": "1.1.0",
  1564. "Microsoft.NETCore.Targets": "1.1.0",
  1565. "System.Runtime": "4.3.0"
  1566. },
  1567. "compile": {
  1568. "ref/netstandard1.3/System.Text.Encoding.dll": {
  1569. "related": ".xml"
  1570. }
  1571. }
  1572. },
  1573. "System.Text.Encoding.Extensions/4.3.0": {
  1574. "type": "package",
  1575. "dependencies": {
  1576. "Microsoft.NETCore.Platforms": "1.1.0",
  1577. "Microsoft.NETCore.Targets": "1.1.0",
  1578. "System.Runtime": "4.3.0",
  1579. "System.Text.Encoding": "4.3.0"
  1580. },
  1581. "compile": {
  1582. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  1583. "related": ".xml"
  1584. }
  1585. }
  1586. },
  1587. "System.Text.RegularExpressions/4.3.0": {
  1588. "type": "package",
  1589. "dependencies": {
  1590. "System.Runtime": "4.3.0"
  1591. },
  1592. "compile": {
  1593. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  1594. },
  1595. "runtime": {
  1596. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  1597. }
  1598. },
  1599. "System.Threading/4.3.0": {
  1600. "type": "package",
  1601. "dependencies": {
  1602. "System.Runtime": "4.3.0",
  1603. "System.Threading.Tasks": "4.3.0"
  1604. },
  1605. "compile": {
  1606. "ref/netstandard1.3/System.Threading.dll": {
  1607. "related": ".xml"
  1608. }
  1609. },
  1610. "runtime": {
  1611. "lib/netstandard1.3/System.Threading.dll": {}
  1612. }
  1613. },
  1614. "System.Threading.Tasks/4.3.0": {
  1615. "type": "package",
  1616. "dependencies": {
  1617. "Microsoft.NETCore.Platforms": "1.1.0",
  1618. "Microsoft.NETCore.Targets": "1.1.0",
  1619. "System.Runtime": "4.3.0"
  1620. },
  1621. "compile": {
  1622. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  1623. "related": ".xml"
  1624. }
  1625. }
  1626. },
  1627. "System.Threading.Tasks.Extensions/4.3.0": {
  1628. "type": "package",
  1629. "dependencies": {
  1630. "System.Collections": "4.3.0",
  1631. "System.Runtime": "4.3.0",
  1632. "System.Threading.Tasks": "4.3.0"
  1633. },
  1634. "compile": {
  1635. "lib/netstandard1.0/_._": {
  1636. "related": ".xml"
  1637. }
  1638. },
  1639. "runtime": {
  1640. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  1641. "related": ".xml"
  1642. }
  1643. }
  1644. },
  1645. "System.Threading.Timer/4.3.0": {
  1646. "type": "package",
  1647. "dependencies": {
  1648. "Microsoft.NETCore.Platforms": "1.1.0",
  1649. "Microsoft.NETCore.Targets": "1.1.0",
  1650. "System.Runtime": "4.3.0"
  1651. },
  1652. "compile": {
  1653. "ref/netstandard1.2/System.Threading.Timer.dll": {
  1654. "related": ".xml"
  1655. }
  1656. }
  1657. },
  1658. "System.Xml.ReaderWriter/4.3.0": {
  1659. "type": "package",
  1660. "dependencies": {
  1661. "System.Collections": "4.3.0",
  1662. "System.Diagnostics.Debug": "4.3.0",
  1663. "System.Globalization": "4.3.0",
  1664. "System.IO": "4.3.0",
  1665. "System.IO.FileSystem": "4.3.0",
  1666. "System.IO.FileSystem.Primitives": "4.3.0",
  1667. "System.Resources.ResourceManager": "4.3.0",
  1668. "System.Runtime": "4.3.0",
  1669. "System.Runtime.Extensions": "4.3.0",
  1670. "System.Runtime.InteropServices": "4.3.0",
  1671. "System.Text.Encoding": "4.3.0",
  1672. "System.Text.Encoding.Extensions": "4.3.0",
  1673. "System.Text.RegularExpressions": "4.3.0",
  1674. "System.Threading.Tasks": "4.3.0",
  1675. "System.Threading.Tasks.Extensions": "4.3.0"
  1676. },
  1677. "compile": {
  1678. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  1679. "related": ".xml"
  1680. }
  1681. },
  1682. "runtime": {
  1683. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  1684. }
  1685. },
  1686. "System.Xml.XDocument/4.3.0": {
  1687. "type": "package",
  1688. "dependencies": {
  1689. "System.Collections": "4.3.0",
  1690. "System.Diagnostics.Debug": "4.3.0",
  1691. "System.Diagnostics.Tools": "4.3.0",
  1692. "System.Globalization": "4.3.0",
  1693. "System.IO": "4.3.0",
  1694. "System.Reflection": "4.3.0",
  1695. "System.Resources.ResourceManager": "4.3.0",
  1696. "System.Runtime": "4.3.0",
  1697. "System.Runtime.Extensions": "4.3.0",
  1698. "System.Text.Encoding": "4.3.0",
  1699. "System.Threading": "4.3.0",
  1700. "System.Xml.ReaderWriter": "4.3.0"
  1701. },
  1702. "compile": {
  1703. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  1704. "related": ".xml"
  1705. }
  1706. },
  1707. "runtime": {
  1708. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  1709. }
  1710. },
  1711. "xunit/2.4.2": {
  1712. "type": "package",
  1713. "dependencies": {
  1714. "xunit.analyzers": "1.0.0",
  1715. "xunit.assert": "2.4.2",
  1716. "xunit.core": "[2.4.2]"
  1717. }
  1718. },
  1719. "xunit.abstractions/2.0.3": {
  1720. "type": "package",
  1721. "compile": {
  1722. "lib/netstandard2.0/xunit.abstractions.dll": {
  1723. "related": ".xml"
  1724. }
  1725. },
  1726. "runtime": {
  1727. "lib/netstandard2.0/xunit.abstractions.dll": {
  1728. "related": ".xml"
  1729. }
  1730. }
  1731. },
  1732. "xunit.analyzers/1.0.0": {
  1733. "type": "package"
  1734. },
  1735. "xunit.assert/2.4.2": {
  1736. "type": "package",
  1737. "dependencies": {
  1738. "NETStandard.Library": "1.6.1"
  1739. },
  1740. "compile": {
  1741. "lib/netstandard1.1/xunit.assert.dll": {
  1742. "related": ".xml"
  1743. }
  1744. },
  1745. "runtime": {
  1746. "lib/netstandard1.1/xunit.assert.dll": {
  1747. "related": ".xml"
  1748. }
  1749. }
  1750. },
  1751. "xunit.core/2.4.2": {
  1752. "type": "package",
  1753. "dependencies": {
  1754. "xunit.extensibility.core": "[2.4.2]",
  1755. "xunit.extensibility.execution": "[2.4.2]"
  1756. },
  1757. "build": {
  1758. "build/xunit.core.props": {},
  1759. "build/xunit.core.targets": {}
  1760. },
  1761. "buildMultiTargeting": {
  1762. "buildMultiTargeting/xunit.core.props": {},
  1763. "buildMultiTargeting/xunit.core.targets": {}
  1764. }
  1765. },
  1766. "xunit.extensibility.core/2.4.2": {
  1767. "type": "package",
  1768. "dependencies": {
  1769. "NETStandard.Library": "1.6.1",
  1770. "xunit.abstractions": "2.0.3"
  1771. },
  1772. "compile": {
  1773. "lib/netstandard1.1/xunit.core.dll": {
  1774. "related": ".xml"
  1775. }
  1776. },
  1777. "runtime": {
  1778. "lib/netstandard1.1/xunit.core.dll": {
  1779. "related": ".xml"
  1780. }
  1781. }
  1782. },
  1783. "xunit.extensibility.execution/2.4.2": {
  1784. "type": "package",
  1785. "dependencies": {
  1786. "NETStandard.Library": "1.6.1",
  1787. "xunit.extensibility.core": "[2.4.2]"
  1788. },
  1789. "compile": {
  1790. "lib/netstandard1.1/xunit.execution.dotnet.dll": {
  1791. "related": ".xml"
  1792. }
  1793. },
  1794. "runtime": {
  1795. "lib/netstandard1.1/xunit.execution.dotnet.dll": {
  1796. "related": ".xml"
  1797. }
  1798. }
  1799. },
  1800. "xunit.runner.visualstudio/2.4.5": {
  1801. "type": "package",
  1802. "compile": {
  1803. "lib/netcoreapp3.1/_._": {}
  1804. },
  1805. "runtime": {
  1806. "lib/netcoreapp3.1/_._": {}
  1807. },
  1808. "build": {
  1809. "build/netcoreapp3.1/xunit.runner.visualstudio.props": {}
  1810. }
  1811. }
  1812. }
  1813. },
  1814. "libraries": {
  1815. "coverlet.collector/3.1.2": {
  1816. "sha512": "wuLDIDKD5XMt0A7lE31JPenT7QQwZPFkP5rRpdJeblyXZ9MGLI8rYjvm5fvAKln+2/X+4IxxQDxBtwdrqKNLZw==",
  1817. "type": "package",
  1818. "path": "coverlet.collector/3.1.2",
  1819. "files": [
  1820. ".nupkg.metadata",
  1821. ".signature.p7s",
  1822. "build/netstandard1.0/Microsoft.CSharp.dll",
  1823. "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll",
  1824. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  1825. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll",
  1826. "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll",
  1827. "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  1828. "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  1829. "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1830. "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1831. "build/netstandard1.0/Mono.Cecil.Mdb.dll",
  1832. "build/netstandard1.0/Mono.Cecil.Pdb.dll",
  1833. "build/netstandard1.0/Mono.Cecil.Rocks.dll",
  1834. "build/netstandard1.0/Mono.Cecil.dll",
  1835. "build/netstandard1.0/Newtonsoft.Json.dll",
  1836. "build/netstandard1.0/NuGet.Frameworks.dll",
  1837. "build/netstandard1.0/System.AppContext.dll",
  1838. "build/netstandard1.0/System.Collections.Immutable.dll",
  1839. "build/netstandard1.0/System.Dynamic.Runtime.dll",
  1840. "build/netstandard1.0/System.IO.FileSystem.Primitives.dll",
  1841. "build/netstandard1.0/System.Linq.Expressions.dll",
  1842. "build/netstandard1.0/System.Linq.dll",
  1843. "build/netstandard1.0/System.ObjectModel.dll",
  1844. "build/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  1845. "build/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  1846. "build/netstandard1.0/System.Reflection.Emit.dll",
  1847. "build/netstandard1.0/System.Reflection.Metadata.dll",
  1848. "build/netstandard1.0/System.Reflection.TypeExtensions.dll",
  1849. "build/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  1850. "build/netstandard1.0/System.Text.RegularExpressions.dll",
  1851. "build/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  1852. "build/netstandard1.0/System.Threading.dll",
  1853. "build/netstandard1.0/System.Xml.ReaderWriter.dll",
  1854. "build/netstandard1.0/System.Xml.XDocument.dll",
  1855. "build/netstandard1.0/coverlet.collector.deps.json",
  1856. "build/netstandard1.0/coverlet.collector.dll",
  1857. "build/netstandard1.0/coverlet.collector.pdb",
  1858. "build/netstandard1.0/coverlet.collector.targets",
  1859. "build/netstandard1.0/coverlet.core.dll",
  1860. "build/netstandard1.0/coverlet.core.pdb",
  1861. "coverlet-icon.png",
  1862. "coverlet.collector.3.1.2.nupkg.sha512",
  1863. "coverlet.collector.nuspec"
  1864. ]
  1865. },
  1866. "Microsoft.CodeCoverage/17.3.2": {
  1867. "sha512": "+CeYNY9hYNRgv1wAID5koeDVob1ZOrOYfRRTLxU9Zm5ZMDMkMZ8wzXgakxVv+jtk8tPdE8Ze9vVE+czMKapv/Q==",
  1868. "type": "package",
  1869. "path": "microsoft.codecoverage/17.3.2",
  1870. "files": [
  1871. ".nupkg.metadata",
  1872. ".signature.p7s",
  1873. "Icon.png",
  1874. "LICENSE_NET.txt",
  1875. "ThirdPartyNotices.txt",
  1876. "build/netstandard1.0/CodeCoverage/CodeCoverage.config",
  1877. "build/netstandard1.0/CodeCoverage/CodeCoverage.exe",
  1878. "build/netstandard1.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config",
  1879. "build/netstandard1.0/CodeCoverage/amd64/CodeCoverage.exe",
  1880. "build/netstandard1.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config",
  1881. "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll",
  1882. "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll",
  1883. "build/netstandard1.0/CodeCoverage/arm64/VanguardInstrumentationProfiler_arm64.config",
  1884. "build/netstandard1.0/CodeCoverage/arm64/covrunarm64.dll",
  1885. "build/netstandard1.0/CodeCoverage/arm64/msdia140.dll",
  1886. "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll",
  1887. "build/netstandard1.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  1888. "build/netstandard1.0/CodeCoverage/covrun32.dll",
  1889. "build/netstandard1.0/CodeCoverage/msdia140.dll",
  1890. "build/netstandard1.0/InstrumentationEngine/alpine/x64/VanguardInstrumentationProfiler_x64.config",
  1891. "build/netstandard1.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so",
  1892. "build/netstandard1.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so",
  1893. "build/netstandard1.0/InstrumentationEngine/arm64/MicrosoftInstrumentationEngine_arm64.dll",
  1894. "build/netstandard1.0/InstrumentationEngine/macos/x64/VanguardInstrumentationProfiler_x64.config",
  1895. "build/netstandard1.0/InstrumentationEngine/macos/x64/libCoverageInstrumentationMethod.dylib",
  1896. "build/netstandard1.0/InstrumentationEngine/macos/x64/libInstrumentationEngine.dylib",
  1897. "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/VanguardInstrumentationProfiler_x64.config",
  1898. "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so",
  1899. "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so",
  1900. "build/netstandard1.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll",
  1901. "build/netstandard1.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll",
  1902. "build/netstandard1.0/Microsoft.CodeCoverage.Core.dll",
  1903. "build/netstandard1.0/Microsoft.CodeCoverage.Instrumentation.dll",
  1904. "build/netstandard1.0/Microsoft.CodeCoverage.Interprocess.dll",
  1905. "build/netstandard1.0/Microsoft.CodeCoverage.props",
  1906. "build/netstandard1.0/Microsoft.CodeCoverage.targets",
  1907. "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll",
  1908. "build/netstandard1.0/Mono.Cecil.Pdb.dll",
  1909. "build/netstandard1.0/Mono.Cecil.dll",
  1910. "build/netstandard1.0/ThirdPartyNotices.txt",
  1911. "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1912. "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1913. "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1914. "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1915. "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1916. "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1917. "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1918. "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1919. "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1920. "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1921. "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1922. "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1923. "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1924. "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  1925. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  1926. "microsoft.codecoverage.17.3.2.nupkg.sha512",
  1927. "microsoft.codecoverage.nuspec"
  1928. ]
  1929. },
  1930. "Microsoft.CSharp/4.0.1": {
  1931. "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
  1932. "type": "package",
  1933. "path": "microsoft.csharp/4.0.1",
  1934. "files": [
  1935. ".nupkg.metadata",
  1936. ".signature.p7s",
  1937. "ThirdPartyNotices.txt",
  1938. "dotnet_library_license.txt",
  1939. "lib/MonoAndroid10/_._",
  1940. "lib/MonoTouch10/_._",
  1941. "lib/net45/_._",
  1942. "lib/netcore50/Microsoft.CSharp.dll",
  1943. "lib/netstandard1.3/Microsoft.CSharp.dll",
  1944. "lib/portable-net45+win8+wp8+wpa81/_._",
  1945. "lib/win8/_._",
  1946. "lib/wp80/_._",
  1947. "lib/wpa81/_._",
  1948. "lib/xamarinios10/_._",
  1949. "lib/xamarinmac20/_._",
  1950. "lib/xamarintvos10/_._",
  1951. "lib/xamarinwatchos10/_._",
  1952. "microsoft.csharp.4.0.1.nupkg.sha512",
  1953. "microsoft.csharp.nuspec",
  1954. "ref/MonoAndroid10/_._",
  1955. "ref/MonoTouch10/_._",
  1956. "ref/net45/_._",
  1957. "ref/netcore50/Microsoft.CSharp.dll",
  1958. "ref/netcore50/Microsoft.CSharp.xml",
  1959. "ref/netcore50/de/Microsoft.CSharp.xml",
  1960. "ref/netcore50/es/Microsoft.CSharp.xml",
  1961. "ref/netcore50/fr/Microsoft.CSharp.xml",
  1962. "ref/netcore50/it/Microsoft.CSharp.xml",
  1963. "ref/netcore50/ja/Microsoft.CSharp.xml",
  1964. "ref/netcore50/ko/Microsoft.CSharp.xml",
  1965. "ref/netcore50/ru/Microsoft.CSharp.xml",
  1966. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  1967. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  1968. "ref/netstandard1.0/Microsoft.CSharp.dll",
  1969. "ref/netstandard1.0/Microsoft.CSharp.xml",
  1970. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  1971. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  1972. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  1973. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  1974. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  1975. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  1976. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  1977. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  1978. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  1979. "ref/portable-net45+win8+wp8+wpa81/_._",
  1980. "ref/win8/_._",
  1981. "ref/wp80/_._",
  1982. "ref/wpa81/_._",
  1983. "ref/xamarinios10/_._",
  1984. "ref/xamarinmac20/_._",
  1985. "ref/xamarintvos10/_._",
  1986. "ref/xamarinwatchos10/_._"
  1987. ]
  1988. },
  1989. "Microsoft.NET.Test.Sdk/17.3.2": {
  1990. "sha512": "apR0ha1T8FujBwq1P8i/DOZjbI5XhcP/i8As4NnVztVSpZG8GtWRPCstcmgkUkBpvEfcrrDPlJWbuZY+Hl1hSg==",
  1991. "type": "package",
  1992. "path": "microsoft.net.test.sdk/17.3.2",
  1993. "files": [
  1994. ".nupkg.metadata",
  1995. ".signature.p7s",
  1996. "Icon.png",
  1997. "LICENSE_NET.txt",
  1998. "build/net40/Microsoft.NET.Test.Sdk.props",
  1999. "build/net40/Microsoft.NET.Test.Sdk.targets",
  2000. "build/net45/Microsoft.NET.Test.Sdk.props",
  2001. "build/net45/Microsoft.NET.Test.Sdk.targets",
  2002. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs",
  2003. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs",
  2004. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb",
  2005. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props",
  2006. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets",
  2007. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs",
  2008. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs",
  2009. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb",
  2010. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props",
  2011. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets",
  2012. "build/uap10.0/Microsoft.NET.Test.Sdk.props",
  2013. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props",
  2014. "lib/net40/_._",
  2015. "lib/net45/_._",
  2016. "lib/netcoreapp1.0/_._",
  2017. "lib/netcoreapp2.1/_._",
  2018. "lib/uap10.0/_._",
  2019. "microsoft.net.test.sdk.17.3.2.nupkg.sha512",
  2020. "microsoft.net.test.sdk.nuspec"
  2021. ]
  2022. },
  2023. "Microsoft.NETCore.Platforms/1.1.0": {
  2024. "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  2025. "type": "package",
  2026. "path": "microsoft.netcore.platforms/1.1.0",
  2027. "files": [
  2028. ".nupkg.metadata",
  2029. ".signature.p7s",
  2030. "ThirdPartyNotices.txt",
  2031. "dotnet_library_license.txt",
  2032. "lib/netstandard1.0/_._",
  2033. "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
  2034. "microsoft.netcore.platforms.nuspec",
  2035. "runtime.json"
  2036. ]
  2037. },
  2038. "Microsoft.NETCore.Targets/1.1.0": {
  2039. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  2040. "type": "package",
  2041. "path": "microsoft.netcore.targets/1.1.0",
  2042. "files": [
  2043. ".nupkg.metadata",
  2044. ".signature.p7s",
  2045. "ThirdPartyNotices.txt",
  2046. "dotnet_library_license.txt",
  2047. "lib/netstandard1.0/_._",
  2048. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  2049. "microsoft.netcore.targets.nuspec",
  2050. "runtime.json"
  2051. ]
  2052. },
  2053. "Microsoft.TestPlatform.ObjectModel/17.3.2": {
  2054. "sha512": "DJEIfSA2GDC+2m42vKGNR2hm+Uhta4SpCsLZVVvYIiYMjxtk7GzNnv82qvE4SCW3kIYllMg2D0rr8juuj/f7AA==",
  2055. "type": "package",
  2056. "path": "microsoft.testplatform.objectmodel/17.3.2",
  2057. "files": [
  2058. ".nupkg.metadata",
  2059. ".signature.p7s",
  2060. "Icon.png",
  2061. "LICENSE_NET.txt",
  2062. "lib/net45/Microsoft.TestPlatform.CoreUtilities.dll",
  2063. "lib/net45/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2064. "lib/net45/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2065. "lib/net45/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2066. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2067. "lib/net45/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2068. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2069. "lib/net45/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2070. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2071. "lib/net45/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2072. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2073. "lib/net45/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2074. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2075. "lib/net45/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2076. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2077. "lib/net45/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2078. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2079. "lib/net45/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2080. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2081. "lib/net45/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2082. "lib/net45/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2083. "lib/net45/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2084. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2085. "lib/net45/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2086. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2087. "lib/net45/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2088. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2089. "lib/net45/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2090. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2091. "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll",
  2092. "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2093. "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2094. "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2095. "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2096. "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2097. "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2098. "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2099. "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2100. "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2101. "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2102. "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2103. "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2104. "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2105. "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2106. "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2107. "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2108. "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2109. "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2110. "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2111. "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2112. "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2113. "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2114. "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2115. "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2116. "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2117. "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2118. "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2119. "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2120. "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  2121. "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2122. "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2123. "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2124. "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2125. "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2126. "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2127. "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2128. "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2129. "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2130. "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2131. "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2132. "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2133. "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2134. "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2135. "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2136. "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2137. "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2138. "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2139. "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2140. "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2141. "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2142. "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2143. "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2144. "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2145. "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2146. "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2147. "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2148. "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2149. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll",
  2150. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2151. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2152. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2153. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2154. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2155. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2156. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2157. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2158. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2159. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2160. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2161. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2162. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2163. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2164. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2165. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2166. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2167. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2168. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2169. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2170. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2171. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2172. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2173. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2174. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2175. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2176. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2177. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2178. "lib/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  2179. "lib/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2180. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2181. "lib/netstandard1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2182. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2183. "lib/netstandard1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2184. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2185. "lib/netstandard1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2186. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2187. "lib/netstandard1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2188. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2189. "lib/netstandard1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2190. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2191. "lib/netstandard1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2192. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2193. "lib/netstandard1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2194. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2195. "lib/netstandard1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2196. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2197. "lib/netstandard1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2198. "lib/netstandard1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2199. "lib/netstandard1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2200. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2201. "lib/netstandard1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2202. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2203. "lib/netstandard1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2204. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2205. "lib/netstandard1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2206. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2207. "lib/netstandard1.3/Microsoft.TestPlatform.CoreUtilities.dll",
  2208. "lib/netstandard1.3/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2209. "lib/netstandard1.3/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2210. "lib/netstandard1.3/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2211. "lib/netstandard1.3/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2212. "lib/netstandard1.3/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2213. "lib/netstandard1.3/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2214. "lib/netstandard1.3/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2215. "lib/netstandard1.3/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2216. "lib/netstandard1.3/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2217. "lib/netstandard1.3/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2218. "lib/netstandard1.3/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2219. "lib/netstandard1.3/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2220. "lib/netstandard1.3/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2221. "lib/netstandard1.3/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2222. "lib/netstandard1.3/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2223. "lib/netstandard1.3/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2224. "lib/netstandard1.3/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2225. "lib/netstandard1.3/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2226. "lib/netstandard1.3/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2227. "lib/netstandard1.3/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2228. "lib/netstandard1.3/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2229. "lib/netstandard1.3/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2230. "lib/netstandard1.3/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2231. "lib/netstandard1.3/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2232. "lib/netstandard1.3/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2233. "lib/netstandard1.3/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2234. "lib/netstandard1.3/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2235. "lib/netstandard1.3/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2236. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll",
  2237. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2238. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2239. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2240. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2241. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2242. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2243. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2244. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2245. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2246. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2247. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2248. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2249. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2250. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2251. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2252. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2253. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2254. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2255. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2256. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2257. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2258. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2259. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2260. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2261. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2262. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2263. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2264. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2265. "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll",
  2266. "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2267. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2268. "lib/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2269. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2270. "lib/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2271. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2272. "lib/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2273. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2274. "lib/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2275. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2276. "lib/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2277. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2278. "lib/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2279. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2280. "lib/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2281. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2282. "lib/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2283. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2284. "lib/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2285. "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2286. "lib/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2287. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2288. "lib/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2289. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2290. "lib/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2291. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2292. "lib/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2293. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2294. "microsoft.testplatform.objectmodel.17.3.2.nupkg.sha512",
  2295. "microsoft.testplatform.objectmodel.nuspec"
  2296. ]
  2297. },
  2298. "Microsoft.TestPlatform.TestHost/17.3.2": {
  2299. "sha512": "113J19v31pIx+PzmdEw67cWTZWh/YApnprbclFeat6szNbnpKOKG7Ap4PX5LT6E5Da+xONyilxvx2HZPpEaXPQ==",
  2300. "type": "package",
  2301. "path": "microsoft.testplatform.testhost/17.3.2",
  2302. "files": [
  2303. ".nupkg.metadata",
  2304. ".signature.p7s",
  2305. "Icon.png",
  2306. "LICENSE_NET.txt",
  2307. "ThirdPartyNotices.txt",
  2308. "build/netcoreapp1.0/Microsoft.TestPlatform.TestHost.props",
  2309. "build/netcoreapp1.0/x64/testhost.dll",
  2310. "build/netcoreapp1.0/x64/testhost.exe",
  2311. "build/netcoreapp1.0/x86/testhost.x86.dll",
  2312. "build/netcoreapp1.0/x86/testhost.x86.exe",
  2313. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props",
  2314. "build/netcoreapp2.1/x64/testhost.dll",
  2315. "build/netcoreapp2.1/x64/testhost.exe",
  2316. "build/netcoreapp2.1/x86/testhost.x86.dll",
  2317. "build/netcoreapp2.1/x86/testhost.x86.exe",
  2318. "build/uap10.0/Microsoft.TestPlatform.TestHost.props",
  2319. "build/uap10.0/Microsoft.TestPlatform.TestHost.targets",
  2320. "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2321. "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2322. "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2323. "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll",
  2324. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2325. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2326. "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2327. "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2328. "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2329. "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll",
  2330. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2331. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2332. "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2333. "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2334. "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2335. "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll",
  2336. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2337. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2338. "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2339. "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2340. "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2341. "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll",
  2342. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2343. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2344. "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2345. "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2346. "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2347. "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll",
  2348. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2349. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2350. "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2351. "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2352. "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2353. "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll",
  2354. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2355. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2356. "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2357. "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2358. "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2359. "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll",
  2360. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2361. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2362. "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2363. "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2364. "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2365. "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll",
  2366. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2367. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2368. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2369. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2370. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2371. "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll",
  2372. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2373. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2374. "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2375. "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2376. "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2377. "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll",
  2378. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2379. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2380. "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2381. "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2382. "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2383. "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll",
  2384. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2385. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2386. "build/uap10.0/x64/msdia140.dll",
  2387. "build/uap10.0/x86/msdia140.dll",
  2388. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2389. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2390. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2391. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll",
  2392. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2393. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2394. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2395. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  2396. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2397. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll",
  2398. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2399. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  2400. "lib/net45/_._",
  2401. "lib/netcoreapp1.0/Microsoft.TestPlatform.CommunicationUtilities.dll",
  2402. "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  2403. "lib/netcoreapp1.0/Microsoft.TestPlatform.CrossPlatEngine.dll",
  2404. "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2405. "lib/netcoreapp1.0/Microsoft.TestPlatform.Utilities.dll",
  2406. "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.Common.dll",
  2407. "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2408. "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2409. "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2410. "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2411. "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2412. "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2413. "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2414. "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2415. "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2416. "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2417. "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2418. "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2419. "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2420. "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2421. "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2422. "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2423. "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2424. "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2425. "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2426. "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2427. "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2428. "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2429. "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2430. "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2431. "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2432. "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2433. "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2434. "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2435. "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2436. "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2437. "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2438. "lib/netcoreapp1.0/testhost.deps.json",
  2439. "lib/netcoreapp1.0/testhost.dll",
  2440. "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2441. "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2442. "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2443. "lib/netcoreapp1.0/x64/msdia140.dll",
  2444. "lib/netcoreapp1.0/x86/msdia140.dll",
  2445. "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2446. "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2447. "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2448. "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2449. "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2450. "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2451. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll",
  2452. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll",
  2453. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll",
  2454. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2455. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll",
  2456. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll",
  2457. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2458. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2459. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2460. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2461. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2462. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2463. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2464. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2465. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2466. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2467. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2468. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2469. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2470. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2471. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2472. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2473. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2474. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2475. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2476. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2477. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2478. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2479. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2480. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2481. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2482. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2483. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2484. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2485. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2486. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2487. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2488. "lib/netcoreapp2.1/testhost.deps.json",
  2489. "lib/netcoreapp2.1/testhost.dll",
  2490. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2491. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2492. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2493. "lib/netcoreapp2.1/x64/msdia140.dll",
  2494. "lib/netcoreapp2.1/x86/msdia140.dll",
  2495. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2496. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2497. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2498. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  2499. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  2500. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  2501. "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll",
  2502. "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll",
  2503. "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll",
  2504. "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2505. "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll",
  2506. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll",
  2507. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  2508. "lib/uap10.0/testhost.dll",
  2509. "microsoft.testplatform.testhost.17.3.2.nupkg.sha512",
  2510. "microsoft.testplatform.testhost.nuspec"
  2511. ]
  2512. },
  2513. "Microsoft.Win32.Primitives/4.3.0": {
  2514. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  2515. "type": "package",
  2516. "path": "microsoft.win32.primitives/4.3.0",
  2517. "files": [
  2518. ".nupkg.metadata",
  2519. ".signature.p7s",
  2520. "ThirdPartyNotices.txt",
  2521. "dotnet_library_license.txt",
  2522. "lib/MonoAndroid10/_._",
  2523. "lib/MonoTouch10/_._",
  2524. "lib/net46/Microsoft.Win32.Primitives.dll",
  2525. "lib/xamarinios10/_._",
  2526. "lib/xamarinmac20/_._",
  2527. "lib/xamarintvos10/_._",
  2528. "lib/xamarinwatchos10/_._",
  2529. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  2530. "microsoft.win32.primitives.nuspec",
  2531. "ref/MonoAndroid10/_._",
  2532. "ref/MonoTouch10/_._",
  2533. "ref/net46/Microsoft.Win32.Primitives.dll",
  2534. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  2535. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  2536. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  2537. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  2538. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  2539. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  2540. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  2541. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  2542. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  2543. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  2544. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  2545. "ref/xamarinios10/_._",
  2546. "ref/xamarinmac20/_._",
  2547. "ref/xamarintvos10/_._",
  2548. "ref/xamarinwatchos10/_._"
  2549. ]
  2550. },
  2551. "NETStandard.Library/1.6.1": {
  2552. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  2553. "type": "package",
  2554. "path": "netstandard.library/1.6.1",
  2555. "files": [
  2556. ".nupkg.metadata",
  2557. ".signature.p7s",
  2558. "ThirdPartyNotices.txt",
  2559. "dotnet_library_license.txt",
  2560. "netstandard.library.1.6.1.nupkg.sha512",
  2561. "netstandard.library.nuspec"
  2562. ]
  2563. },
  2564. "Newtonsoft.Json/9.0.1": {
  2565. "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
  2566. "type": "package",
  2567. "path": "newtonsoft.json/9.0.1",
  2568. "hasTools": true,
  2569. "files": [
  2570. ".nupkg.metadata",
  2571. ".signature.p7s",
  2572. "lib/net20/Newtonsoft.Json.dll",
  2573. "lib/net20/Newtonsoft.Json.xml",
  2574. "lib/net35/Newtonsoft.Json.dll",
  2575. "lib/net35/Newtonsoft.Json.xml",
  2576. "lib/net40/Newtonsoft.Json.dll",
  2577. "lib/net40/Newtonsoft.Json.xml",
  2578. "lib/net45/Newtonsoft.Json.dll",
  2579. "lib/net45/Newtonsoft.Json.xml",
  2580. "lib/netstandard1.0/Newtonsoft.Json.dll",
  2581. "lib/netstandard1.0/Newtonsoft.Json.xml",
  2582. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
  2583. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
  2584. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
  2585. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
  2586. "newtonsoft.json.9.0.1.nupkg.sha512",
  2587. "newtonsoft.json.nuspec",
  2588. "tools/install.ps1"
  2589. ]
  2590. },
  2591. "NuGet.Frameworks/5.11.0": {
  2592. "sha512": "eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==",
  2593. "type": "package",
  2594. "path": "nuget.frameworks/5.11.0",
  2595. "files": [
  2596. ".nupkg.metadata",
  2597. ".signature.p7s",
  2598. "icon.png",
  2599. "lib/net40/NuGet.Frameworks.dll",
  2600. "lib/net40/NuGet.Frameworks.xml",
  2601. "lib/net472/NuGet.Frameworks.dll",
  2602. "lib/net472/NuGet.Frameworks.xml",
  2603. "lib/netstandard2.0/NuGet.Frameworks.dll",
  2604. "lib/netstandard2.0/NuGet.Frameworks.xml",
  2605. "nuget.frameworks.5.11.0.nupkg.sha512",
  2606. "nuget.frameworks.nuspec"
  2607. ]
  2608. },
  2609. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2610. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  2611. "type": "package",
  2612. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2613. "files": [
  2614. ".nupkg.metadata",
  2615. ".signature.p7s",
  2616. "ThirdPartyNotices.txt",
  2617. "dotnet_library_license.txt",
  2618. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  2619. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  2620. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  2621. ]
  2622. },
  2623. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2624. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  2625. "type": "package",
  2626. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2627. "files": [
  2628. ".nupkg.metadata",
  2629. ".signature.p7s",
  2630. "ThirdPartyNotices.txt",
  2631. "dotnet_library_license.txt",
  2632. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  2633. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  2634. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  2635. ]
  2636. },
  2637. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2638. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  2639. "type": "package",
  2640. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2641. "files": [
  2642. ".nupkg.metadata",
  2643. ".signature.p7s",
  2644. "ThirdPartyNotices.txt",
  2645. "dotnet_library_license.txt",
  2646. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  2647. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  2648. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  2649. ]
  2650. },
  2651. "runtime.native.System/4.3.0": {
  2652. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  2653. "type": "package",
  2654. "path": "runtime.native.system/4.3.0",
  2655. "files": [
  2656. ".nupkg.metadata",
  2657. ".signature.p7s",
  2658. "ThirdPartyNotices.txt",
  2659. "dotnet_library_license.txt",
  2660. "lib/netstandard1.0/_._",
  2661. "runtime.native.system.4.3.0.nupkg.sha512",
  2662. "runtime.native.system.nuspec"
  2663. ]
  2664. },
  2665. "runtime.native.System.IO.Compression/4.3.0": {
  2666. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  2667. "type": "package",
  2668. "path": "runtime.native.system.io.compression/4.3.0",
  2669. "files": [
  2670. ".nupkg.metadata",
  2671. ".signature.p7s",
  2672. "ThirdPartyNotices.txt",
  2673. "dotnet_library_license.txt",
  2674. "lib/netstandard1.0/_._",
  2675. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  2676. "runtime.native.system.io.compression.nuspec"
  2677. ]
  2678. },
  2679. "runtime.native.System.Net.Http/4.3.0": {
  2680. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  2681. "type": "package",
  2682. "path": "runtime.native.system.net.http/4.3.0",
  2683. "files": [
  2684. ".nupkg.metadata",
  2685. ".signature.p7s",
  2686. "ThirdPartyNotices.txt",
  2687. "dotnet_library_license.txt",
  2688. "lib/netstandard1.0/_._",
  2689. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  2690. "runtime.native.system.net.http.nuspec"
  2691. ]
  2692. },
  2693. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2694. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  2695. "type": "package",
  2696. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  2697. "files": [
  2698. ".nupkg.metadata",
  2699. ".signature.p7s",
  2700. "ThirdPartyNotices.txt",
  2701. "dotnet_library_license.txt",
  2702. "lib/netstandard1.0/_._",
  2703. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  2704. "runtime.native.system.security.cryptography.apple.nuspec"
  2705. ]
  2706. },
  2707. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2708. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  2709. "type": "package",
  2710. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  2711. "files": [
  2712. ".nupkg.metadata",
  2713. ".signature.p7s",
  2714. "ThirdPartyNotices.txt",
  2715. "dotnet_library_license.txt",
  2716. "lib/netstandard1.0/_._",
  2717. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  2718. "runtime.native.system.security.cryptography.openssl.nuspec"
  2719. ]
  2720. },
  2721. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2722. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  2723. "type": "package",
  2724. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2725. "files": [
  2726. ".nupkg.metadata",
  2727. ".signature.p7s",
  2728. "ThirdPartyNotices.txt",
  2729. "dotnet_library_license.txt",
  2730. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  2731. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  2732. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  2733. ]
  2734. },
  2735. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2736. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  2737. "type": "package",
  2738. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2739. "files": [
  2740. ".nupkg.metadata",
  2741. ".signature.p7s",
  2742. "ThirdPartyNotices.txt",
  2743. "dotnet_library_license.txt",
  2744. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  2745. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  2746. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  2747. ]
  2748. },
  2749. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2750. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  2751. "type": "package",
  2752. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  2753. "files": [
  2754. ".nupkg.metadata",
  2755. ".signature.p7s",
  2756. "ThirdPartyNotices.txt",
  2757. "dotnet_library_license.txt",
  2758. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  2759. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  2760. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  2761. ]
  2762. },
  2763. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2764. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  2765. "type": "package",
  2766. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2767. "files": [
  2768. ".nupkg.metadata",
  2769. ".signature.p7s",
  2770. "ThirdPartyNotices.txt",
  2771. "dotnet_library_license.txt",
  2772. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  2773. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  2774. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  2775. ]
  2776. },
  2777. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2778. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  2779. "type": "package",
  2780. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2781. "files": [
  2782. ".nupkg.metadata",
  2783. ".signature.p7s",
  2784. "ThirdPartyNotices.txt",
  2785. "dotnet_library_license.txt",
  2786. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  2787. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  2788. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  2789. ]
  2790. },
  2791. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2792. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  2793. "type": "package",
  2794. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2795. "files": [
  2796. ".nupkg.metadata",
  2797. ".signature.p7s",
  2798. "ThirdPartyNotices.txt",
  2799. "dotnet_library_license.txt",
  2800. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  2801. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  2802. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  2803. ]
  2804. },
  2805. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2806. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  2807. "type": "package",
  2808. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2809. "files": [
  2810. ".nupkg.metadata",
  2811. ".signature.p7s",
  2812. "ThirdPartyNotices.txt",
  2813. "dotnet_library_license.txt",
  2814. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  2815. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  2816. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  2817. ]
  2818. },
  2819. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2820. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  2821. "type": "package",
  2822. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  2823. "files": [
  2824. ".nupkg.metadata",
  2825. ".signature.p7s",
  2826. "ThirdPartyNotices.txt",
  2827. "dotnet_library_license.txt",
  2828. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  2829. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  2830. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  2831. ]
  2832. },
  2833. "System.AppContext/4.3.0": {
  2834. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  2835. "type": "package",
  2836. "path": "system.appcontext/4.3.0",
  2837. "files": [
  2838. ".nupkg.metadata",
  2839. ".signature.p7s",
  2840. "ThirdPartyNotices.txt",
  2841. "dotnet_library_license.txt",
  2842. "lib/MonoAndroid10/_._",
  2843. "lib/MonoTouch10/_._",
  2844. "lib/net46/System.AppContext.dll",
  2845. "lib/net463/System.AppContext.dll",
  2846. "lib/netcore50/System.AppContext.dll",
  2847. "lib/netstandard1.6/System.AppContext.dll",
  2848. "lib/xamarinios10/_._",
  2849. "lib/xamarinmac20/_._",
  2850. "lib/xamarintvos10/_._",
  2851. "lib/xamarinwatchos10/_._",
  2852. "ref/MonoAndroid10/_._",
  2853. "ref/MonoTouch10/_._",
  2854. "ref/net46/System.AppContext.dll",
  2855. "ref/net463/System.AppContext.dll",
  2856. "ref/netstandard/_._",
  2857. "ref/netstandard1.3/System.AppContext.dll",
  2858. "ref/netstandard1.3/System.AppContext.xml",
  2859. "ref/netstandard1.3/de/System.AppContext.xml",
  2860. "ref/netstandard1.3/es/System.AppContext.xml",
  2861. "ref/netstandard1.3/fr/System.AppContext.xml",
  2862. "ref/netstandard1.3/it/System.AppContext.xml",
  2863. "ref/netstandard1.3/ja/System.AppContext.xml",
  2864. "ref/netstandard1.3/ko/System.AppContext.xml",
  2865. "ref/netstandard1.3/ru/System.AppContext.xml",
  2866. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  2867. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  2868. "ref/netstandard1.6/System.AppContext.dll",
  2869. "ref/netstandard1.6/System.AppContext.xml",
  2870. "ref/netstandard1.6/de/System.AppContext.xml",
  2871. "ref/netstandard1.6/es/System.AppContext.xml",
  2872. "ref/netstandard1.6/fr/System.AppContext.xml",
  2873. "ref/netstandard1.6/it/System.AppContext.xml",
  2874. "ref/netstandard1.6/ja/System.AppContext.xml",
  2875. "ref/netstandard1.6/ko/System.AppContext.xml",
  2876. "ref/netstandard1.6/ru/System.AppContext.xml",
  2877. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  2878. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  2879. "ref/xamarinios10/_._",
  2880. "ref/xamarinmac20/_._",
  2881. "ref/xamarintvos10/_._",
  2882. "ref/xamarinwatchos10/_._",
  2883. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  2884. "system.appcontext.4.3.0.nupkg.sha512",
  2885. "system.appcontext.nuspec"
  2886. ]
  2887. },
  2888. "System.Buffers/4.3.0": {
  2889. "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
  2890. "type": "package",
  2891. "path": "system.buffers/4.3.0",
  2892. "files": [
  2893. ".nupkg.metadata",
  2894. ".signature.p7s",
  2895. "ThirdPartyNotices.txt",
  2896. "dotnet_library_license.txt",
  2897. "lib/netstandard1.1/.xml",
  2898. "lib/netstandard1.1/System.Buffers.dll",
  2899. "system.buffers.4.3.0.nupkg.sha512",
  2900. "system.buffers.nuspec"
  2901. ]
  2902. },
  2903. "System.Collections/4.3.0": {
  2904. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  2905. "type": "package",
  2906. "path": "system.collections/4.3.0",
  2907. "files": [
  2908. ".nupkg.metadata",
  2909. ".signature.p7s",
  2910. "ThirdPartyNotices.txt",
  2911. "dotnet_library_license.txt",
  2912. "lib/MonoAndroid10/_._",
  2913. "lib/MonoTouch10/_._",
  2914. "lib/net45/_._",
  2915. "lib/portable-net45+win8+wp8+wpa81/_._",
  2916. "lib/win8/_._",
  2917. "lib/wp80/_._",
  2918. "lib/wpa81/_._",
  2919. "lib/xamarinios10/_._",
  2920. "lib/xamarinmac20/_._",
  2921. "lib/xamarintvos10/_._",
  2922. "lib/xamarinwatchos10/_._",
  2923. "ref/MonoAndroid10/_._",
  2924. "ref/MonoTouch10/_._",
  2925. "ref/net45/_._",
  2926. "ref/netcore50/System.Collections.dll",
  2927. "ref/netcore50/System.Collections.xml",
  2928. "ref/netcore50/de/System.Collections.xml",
  2929. "ref/netcore50/es/System.Collections.xml",
  2930. "ref/netcore50/fr/System.Collections.xml",
  2931. "ref/netcore50/it/System.Collections.xml",
  2932. "ref/netcore50/ja/System.Collections.xml",
  2933. "ref/netcore50/ko/System.Collections.xml",
  2934. "ref/netcore50/ru/System.Collections.xml",
  2935. "ref/netcore50/zh-hans/System.Collections.xml",
  2936. "ref/netcore50/zh-hant/System.Collections.xml",
  2937. "ref/netstandard1.0/System.Collections.dll",
  2938. "ref/netstandard1.0/System.Collections.xml",
  2939. "ref/netstandard1.0/de/System.Collections.xml",
  2940. "ref/netstandard1.0/es/System.Collections.xml",
  2941. "ref/netstandard1.0/fr/System.Collections.xml",
  2942. "ref/netstandard1.0/it/System.Collections.xml",
  2943. "ref/netstandard1.0/ja/System.Collections.xml",
  2944. "ref/netstandard1.0/ko/System.Collections.xml",
  2945. "ref/netstandard1.0/ru/System.Collections.xml",
  2946. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  2947. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  2948. "ref/netstandard1.3/System.Collections.dll",
  2949. "ref/netstandard1.3/System.Collections.xml",
  2950. "ref/netstandard1.3/de/System.Collections.xml",
  2951. "ref/netstandard1.3/es/System.Collections.xml",
  2952. "ref/netstandard1.3/fr/System.Collections.xml",
  2953. "ref/netstandard1.3/it/System.Collections.xml",
  2954. "ref/netstandard1.3/ja/System.Collections.xml",
  2955. "ref/netstandard1.3/ko/System.Collections.xml",
  2956. "ref/netstandard1.3/ru/System.Collections.xml",
  2957. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  2958. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  2959. "ref/portable-net45+win8+wp8+wpa81/_._",
  2960. "ref/win8/_._",
  2961. "ref/wp80/_._",
  2962. "ref/wpa81/_._",
  2963. "ref/xamarinios10/_._",
  2964. "ref/xamarinmac20/_._",
  2965. "ref/xamarintvos10/_._",
  2966. "ref/xamarinwatchos10/_._",
  2967. "system.collections.4.3.0.nupkg.sha512",
  2968. "system.collections.nuspec"
  2969. ]
  2970. },
  2971. "System.Collections.Concurrent/4.3.0": {
  2972. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  2973. "type": "package",
  2974. "path": "system.collections.concurrent/4.3.0",
  2975. "files": [
  2976. ".nupkg.metadata",
  2977. ".signature.p7s",
  2978. "ThirdPartyNotices.txt",
  2979. "dotnet_library_license.txt",
  2980. "lib/MonoAndroid10/_._",
  2981. "lib/MonoTouch10/_._",
  2982. "lib/net45/_._",
  2983. "lib/netcore50/System.Collections.Concurrent.dll",
  2984. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  2985. "lib/portable-net45+win8+wpa81/_._",
  2986. "lib/win8/_._",
  2987. "lib/wpa81/_._",
  2988. "lib/xamarinios10/_._",
  2989. "lib/xamarinmac20/_._",
  2990. "lib/xamarintvos10/_._",
  2991. "lib/xamarinwatchos10/_._",
  2992. "ref/MonoAndroid10/_._",
  2993. "ref/MonoTouch10/_._",
  2994. "ref/net45/_._",
  2995. "ref/netcore50/System.Collections.Concurrent.dll",
  2996. "ref/netcore50/System.Collections.Concurrent.xml",
  2997. "ref/netcore50/de/System.Collections.Concurrent.xml",
  2998. "ref/netcore50/es/System.Collections.Concurrent.xml",
  2999. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  3000. "ref/netcore50/it/System.Collections.Concurrent.xml",
  3001. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  3002. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  3003. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  3004. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  3005. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  3006. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  3007. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  3008. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  3009. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  3010. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  3011. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  3012. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  3013. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  3014. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  3015. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  3016. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  3017. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  3018. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  3019. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  3020. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  3021. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  3022. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  3023. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  3024. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  3025. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  3026. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  3027. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  3028. "ref/portable-net45+win8+wpa81/_._",
  3029. "ref/win8/_._",
  3030. "ref/wpa81/_._",
  3031. "ref/xamarinios10/_._",
  3032. "ref/xamarinmac20/_._",
  3033. "ref/xamarintvos10/_._",
  3034. "ref/xamarinwatchos10/_._",
  3035. "system.collections.concurrent.4.3.0.nupkg.sha512",
  3036. "system.collections.concurrent.nuspec"
  3037. ]
  3038. },
  3039. "System.Console/4.3.0": {
  3040. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  3041. "type": "package",
  3042. "path": "system.console/4.3.0",
  3043. "files": [
  3044. ".nupkg.metadata",
  3045. ".signature.p7s",
  3046. "ThirdPartyNotices.txt",
  3047. "dotnet_library_license.txt",
  3048. "lib/MonoAndroid10/_._",
  3049. "lib/MonoTouch10/_._",
  3050. "lib/net46/System.Console.dll",
  3051. "lib/xamarinios10/_._",
  3052. "lib/xamarinmac20/_._",
  3053. "lib/xamarintvos10/_._",
  3054. "lib/xamarinwatchos10/_._",
  3055. "ref/MonoAndroid10/_._",
  3056. "ref/MonoTouch10/_._",
  3057. "ref/net46/System.Console.dll",
  3058. "ref/netstandard1.3/System.Console.dll",
  3059. "ref/netstandard1.3/System.Console.xml",
  3060. "ref/netstandard1.3/de/System.Console.xml",
  3061. "ref/netstandard1.3/es/System.Console.xml",
  3062. "ref/netstandard1.3/fr/System.Console.xml",
  3063. "ref/netstandard1.3/it/System.Console.xml",
  3064. "ref/netstandard1.3/ja/System.Console.xml",
  3065. "ref/netstandard1.3/ko/System.Console.xml",
  3066. "ref/netstandard1.3/ru/System.Console.xml",
  3067. "ref/netstandard1.3/zh-hans/System.Console.xml",
  3068. "ref/netstandard1.3/zh-hant/System.Console.xml",
  3069. "ref/xamarinios10/_._",
  3070. "ref/xamarinmac20/_._",
  3071. "ref/xamarintvos10/_._",
  3072. "ref/xamarinwatchos10/_._",
  3073. "system.console.4.3.0.nupkg.sha512",
  3074. "system.console.nuspec"
  3075. ]
  3076. },
  3077. "System.Diagnostics.Debug/4.3.0": {
  3078. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  3079. "type": "package",
  3080. "path": "system.diagnostics.debug/4.3.0",
  3081. "files": [
  3082. ".nupkg.metadata",
  3083. ".signature.p7s",
  3084. "ThirdPartyNotices.txt",
  3085. "dotnet_library_license.txt",
  3086. "lib/MonoAndroid10/_._",
  3087. "lib/MonoTouch10/_._",
  3088. "lib/net45/_._",
  3089. "lib/portable-net45+win8+wp8+wpa81/_._",
  3090. "lib/win8/_._",
  3091. "lib/wp80/_._",
  3092. "lib/wpa81/_._",
  3093. "lib/xamarinios10/_._",
  3094. "lib/xamarinmac20/_._",
  3095. "lib/xamarintvos10/_._",
  3096. "lib/xamarinwatchos10/_._",
  3097. "ref/MonoAndroid10/_._",
  3098. "ref/MonoTouch10/_._",
  3099. "ref/net45/_._",
  3100. "ref/netcore50/System.Diagnostics.Debug.dll",
  3101. "ref/netcore50/System.Diagnostics.Debug.xml",
  3102. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  3103. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  3104. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  3105. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  3106. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  3107. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  3108. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  3109. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  3110. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  3111. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  3112. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  3113. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  3114. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  3115. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  3116. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  3117. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  3118. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  3119. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  3120. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  3121. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  3122. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  3123. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  3124. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  3125. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  3126. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  3127. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  3128. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  3129. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  3130. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  3131. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  3132. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  3133. "ref/portable-net45+win8+wp8+wpa81/_._",
  3134. "ref/win8/_._",
  3135. "ref/wp80/_._",
  3136. "ref/wpa81/_._",
  3137. "ref/xamarinios10/_._",
  3138. "ref/xamarinmac20/_._",
  3139. "ref/xamarintvos10/_._",
  3140. "ref/xamarinwatchos10/_._",
  3141. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  3142. "system.diagnostics.debug.nuspec"
  3143. ]
  3144. },
  3145. "System.Diagnostics.DiagnosticSource/4.3.0": {
  3146. "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==",
  3147. "type": "package",
  3148. "path": "system.diagnostics.diagnosticsource/4.3.0",
  3149. "files": [
  3150. ".nupkg.metadata",
  3151. ".signature.p7s",
  3152. "ThirdPartyNotices.txt",
  3153. "dotnet_library_license.txt",
  3154. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  3155. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  3156. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  3157. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  3158. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  3159. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  3160. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  3161. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  3162. "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512",
  3163. "system.diagnostics.diagnosticsource.nuspec"
  3164. ]
  3165. },
  3166. "System.Diagnostics.Tools/4.3.0": {
  3167. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  3168. "type": "package",
  3169. "path": "system.diagnostics.tools/4.3.0",
  3170. "files": [
  3171. ".nupkg.metadata",
  3172. ".signature.p7s",
  3173. "ThirdPartyNotices.txt",
  3174. "dotnet_library_license.txt",
  3175. "lib/MonoAndroid10/_._",
  3176. "lib/MonoTouch10/_._",
  3177. "lib/net45/_._",
  3178. "lib/portable-net45+win8+wp8+wpa81/_._",
  3179. "lib/win8/_._",
  3180. "lib/wp80/_._",
  3181. "lib/wpa81/_._",
  3182. "lib/xamarinios10/_._",
  3183. "lib/xamarinmac20/_._",
  3184. "lib/xamarintvos10/_._",
  3185. "lib/xamarinwatchos10/_._",
  3186. "ref/MonoAndroid10/_._",
  3187. "ref/MonoTouch10/_._",
  3188. "ref/net45/_._",
  3189. "ref/netcore50/System.Diagnostics.Tools.dll",
  3190. "ref/netcore50/System.Diagnostics.Tools.xml",
  3191. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  3192. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  3193. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  3194. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  3195. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  3196. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  3197. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  3198. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  3199. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  3200. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  3201. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  3202. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  3203. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  3204. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  3205. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  3206. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  3207. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  3208. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  3209. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  3210. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  3211. "ref/portable-net45+win8+wp8+wpa81/_._",
  3212. "ref/win8/_._",
  3213. "ref/wp80/_._",
  3214. "ref/wpa81/_._",
  3215. "ref/xamarinios10/_._",
  3216. "ref/xamarinmac20/_._",
  3217. "ref/xamarintvos10/_._",
  3218. "ref/xamarinwatchos10/_._",
  3219. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  3220. "system.diagnostics.tools.nuspec"
  3221. ]
  3222. },
  3223. "System.Diagnostics.Tracing/4.3.0": {
  3224. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  3225. "type": "package",
  3226. "path": "system.diagnostics.tracing/4.3.0",
  3227. "files": [
  3228. ".nupkg.metadata",
  3229. ".signature.p7s",
  3230. "ThirdPartyNotices.txt",
  3231. "dotnet_library_license.txt",
  3232. "lib/MonoAndroid10/_._",
  3233. "lib/MonoTouch10/_._",
  3234. "lib/net45/_._",
  3235. "lib/net462/System.Diagnostics.Tracing.dll",
  3236. "lib/portable-net45+win8+wpa81/_._",
  3237. "lib/win8/_._",
  3238. "lib/wpa81/_._",
  3239. "lib/xamarinios10/_._",
  3240. "lib/xamarinmac20/_._",
  3241. "lib/xamarintvos10/_._",
  3242. "lib/xamarinwatchos10/_._",
  3243. "ref/MonoAndroid10/_._",
  3244. "ref/MonoTouch10/_._",
  3245. "ref/net45/_._",
  3246. "ref/net462/System.Diagnostics.Tracing.dll",
  3247. "ref/netcore50/System.Diagnostics.Tracing.dll",
  3248. "ref/netcore50/System.Diagnostics.Tracing.xml",
  3249. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  3250. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  3251. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  3252. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  3253. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  3254. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  3255. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  3256. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  3257. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  3258. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  3259. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  3260. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  3261. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  3262. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  3263. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  3264. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  3265. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  3266. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  3267. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  3268. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  3269. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  3270. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  3271. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  3272. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  3273. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  3274. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  3275. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  3276. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  3277. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  3278. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  3279. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  3280. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  3281. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  3282. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  3283. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  3284. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  3285. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  3286. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  3287. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  3288. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  3289. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  3290. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  3291. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  3292. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  3293. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  3294. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  3295. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  3296. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  3297. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  3298. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  3299. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  3300. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  3301. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  3302. "ref/portable-net45+win8+wpa81/_._",
  3303. "ref/win8/_._",
  3304. "ref/wpa81/_._",
  3305. "ref/xamarinios10/_._",
  3306. "ref/xamarinmac20/_._",
  3307. "ref/xamarintvos10/_._",
  3308. "ref/xamarinwatchos10/_._",
  3309. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  3310. "system.diagnostics.tracing.nuspec"
  3311. ]
  3312. },
  3313. "System.Dynamic.Runtime/4.0.11": {
  3314. "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
  3315. "type": "package",
  3316. "path": "system.dynamic.runtime/4.0.11",
  3317. "files": [
  3318. ".nupkg.metadata",
  3319. ".signature.p7s",
  3320. "ThirdPartyNotices.txt",
  3321. "dotnet_library_license.txt",
  3322. "lib/MonoAndroid10/_._",
  3323. "lib/MonoTouch10/_._",
  3324. "lib/net45/_._",
  3325. "lib/netcore50/System.Dynamic.Runtime.dll",
  3326. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  3327. "lib/portable-net45+win8+wp8+wpa81/_._",
  3328. "lib/win8/_._",
  3329. "lib/wp80/_._",
  3330. "lib/wpa81/_._",
  3331. "lib/xamarinios10/_._",
  3332. "lib/xamarinmac20/_._",
  3333. "lib/xamarintvos10/_._",
  3334. "lib/xamarinwatchos10/_._",
  3335. "ref/MonoAndroid10/_._",
  3336. "ref/MonoTouch10/_._",
  3337. "ref/net45/_._",
  3338. "ref/netcore50/System.Dynamic.Runtime.dll",
  3339. "ref/netcore50/System.Dynamic.Runtime.xml",
  3340. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  3341. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  3342. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  3343. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  3344. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  3345. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  3346. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  3347. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  3348. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  3349. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  3350. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  3351. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  3352. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  3353. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  3354. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  3355. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  3356. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  3357. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  3358. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  3359. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  3360. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  3361. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  3362. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  3363. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  3364. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  3365. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  3366. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  3367. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  3368. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  3369. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  3370. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  3371. "ref/portable-net45+win8+wp8+wpa81/_._",
  3372. "ref/win8/_._",
  3373. "ref/wp80/_._",
  3374. "ref/wpa81/_._",
  3375. "ref/xamarinios10/_._",
  3376. "ref/xamarinmac20/_._",
  3377. "ref/xamarintvos10/_._",
  3378. "ref/xamarinwatchos10/_._",
  3379. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  3380. "system.dynamic.runtime.4.0.11.nupkg.sha512",
  3381. "system.dynamic.runtime.nuspec"
  3382. ]
  3383. },
  3384. "System.Globalization/4.3.0": {
  3385. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  3386. "type": "package",
  3387. "path": "system.globalization/4.3.0",
  3388. "files": [
  3389. ".nupkg.metadata",
  3390. ".signature.p7s",
  3391. "ThirdPartyNotices.txt",
  3392. "dotnet_library_license.txt",
  3393. "lib/MonoAndroid10/_._",
  3394. "lib/MonoTouch10/_._",
  3395. "lib/net45/_._",
  3396. "lib/portable-net45+win8+wp8+wpa81/_._",
  3397. "lib/win8/_._",
  3398. "lib/wp80/_._",
  3399. "lib/wpa81/_._",
  3400. "lib/xamarinios10/_._",
  3401. "lib/xamarinmac20/_._",
  3402. "lib/xamarintvos10/_._",
  3403. "lib/xamarinwatchos10/_._",
  3404. "ref/MonoAndroid10/_._",
  3405. "ref/MonoTouch10/_._",
  3406. "ref/net45/_._",
  3407. "ref/netcore50/System.Globalization.dll",
  3408. "ref/netcore50/System.Globalization.xml",
  3409. "ref/netcore50/de/System.Globalization.xml",
  3410. "ref/netcore50/es/System.Globalization.xml",
  3411. "ref/netcore50/fr/System.Globalization.xml",
  3412. "ref/netcore50/it/System.Globalization.xml",
  3413. "ref/netcore50/ja/System.Globalization.xml",
  3414. "ref/netcore50/ko/System.Globalization.xml",
  3415. "ref/netcore50/ru/System.Globalization.xml",
  3416. "ref/netcore50/zh-hans/System.Globalization.xml",
  3417. "ref/netcore50/zh-hant/System.Globalization.xml",
  3418. "ref/netstandard1.0/System.Globalization.dll",
  3419. "ref/netstandard1.0/System.Globalization.xml",
  3420. "ref/netstandard1.0/de/System.Globalization.xml",
  3421. "ref/netstandard1.0/es/System.Globalization.xml",
  3422. "ref/netstandard1.0/fr/System.Globalization.xml",
  3423. "ref/netstandard1.0/it/System.Globalization.xml",
  3424. "ref/netstandard1.0/ja/System.Globalization.xml",
  3425. "ref/netstandard1.0/ko/System.Globalization.xml",
  3426. "ref/netstandard1.0/ru/System.Globalization.xml",
  3427. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  3428. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  3429. "ref/netstandard1.3/System.Globalization.dll",
  3430. "ref/netstandard1.3/System.Globalization.xml",
  3431. "ref/netstandard1.3/de/System.Globalization.xml",
  3432. "ref/netstandard1.3/es/System.Globalization.xml",
  3433. "ref/netstandard1.3/fr/System.Globalization.xml",
  3434. "ref/netstandard1.3/it/System.Globalization.xml",
  3435. "ref/netstandard1.3/ja/System.Globalization.xml",
  3436. "ref/netstandard1.3/ko/System.Globalization.xml",
  3437. "ref/netstandard1.3/ru/System.Globalization.xml",
  3438. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  3439. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  3440. "ref/portable-net45+win8+wp8+wpa81/_._",
  3441. "ref/win8/_._",
  3442. "ref/wp80/_._",
  3443. "ref/wpa81/_._",
  3444. "ref/xamarinios10/_._",
  3445. "ref/xamarinmac20/_._",
  3446. "ref/xamarintvos10/_._",
  3447. "ref/xamarinwatchos10/_._",
  3448. "system.globalization.4.3.0.nupkg.sha512",
  3449. "system.globalization.nuspec"
  3450. ]
  3451. },
  3452. "System.Globalization.Calendars/4.3.0": {
  3453. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  3454. "type": "package",
  3455. "path": "system.globalization.calendars/4.3.0",
  3456. "files": [
  3457. ".nupkg.metadata",
  3458. ".signature.p7s",
  3459. "ThirdPartyNotices.txt",
  3460. "dotnet_library_license.txt",
  3461. "lib/MonoAndroid10/_._",
  3462. "lib/MonoTouch10/_._",
  3463. "lib/net46/System.Globalization.Calendars.dll",
  3464. "lib/xamarinios10/_._",
  3465. "lib/xamarinmac20/_._",
  3466. "lib/xamarintvos10/_._",
  3467. "lib/xamarinwatchos10/_._",
  3468. "ref/MonoAndroid10/_._",
  3469. "ref/MonoTouch10/_._",
  3470. "ref/net46/System.Globalization.Calendars.dll",
  3471. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  3472. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  3473. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  3474. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  3475. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  3476. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  3477. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  3478. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  3479. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  3480. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  3481. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  3482. "ref/xamarinios10/_._",
  3483. "ref/xamarinmac20/_._",
  3484. "ref/xamarintvos10/_._",
  3485. "ref/xamarinwatchos10/_._",
  3486. "system.globalization.calendars.4.3.0.nupkg.sha512",
  3487. "system.globalization.calendars.nuspec"
  3488. ]
  3489. },
  3490. "System.Globalization.Extensions/4.3.0": {
  3491. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  3492. "type": "package",
  3493. "path": "system.globalization.extensions/4.3.0",
  3494. "files": [
  3495. ".nupkg.metadata",
  3496. ".signature.p7s",
  3497. "ThirdPartyNotices.txt",
  3498. "dotnet_library_license.txt",
  3499. "lib/MonoAndroid10/_._",
  3500. "lib/MonoTouch10/_._",
  3501. "lib/net46/System.Globalization.Extensions.dll",
  3502. "lib/xamarinios10/_._",
  3503. "lib/xamarinmac20/_._",
  3504. "lib/xamarintvos10/_._",
  3505. "lib/xamarinwatchos10/_._",
  3506. "ref/MonoAndroid10/_._",
  3507. "ref/MonoTouch10/_._",
  3508. "ref/net46/System.Globalization.Extensions.dll",
  3509. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  3510. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  3511. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  3512. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  3513. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  3514. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  3515. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  3516. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  3517. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  3518. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  3519. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  3520. "ref/xamarinios10/_._",
  3521. "ref/xamarinmac20/_._",
  3522. "ref/xamarintvos10/_._",
  3523. "ref/xamarinwatchos10/_._",
  3524. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  3525. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  3526. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  3527. "system.globalization.extensions.4.3.0.nupkg.sha512",
  3528. "system.globalization.extensions.nuspec"
  3529. ]
  3530. },
  3531. "System.IO/4.3.0": {
  3532. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  3533. "type": "package",
  3534. "path": "system.io/4.3.0",
  3535. "files": [
  3536. ".nupkg.metadata",
  3537. ".signature.p7s",
  3538. "ThirdPartyNotices.txt",
  3539. "dotnet_library_license.txt",
  3540. "lib/MonoAndroid10/_._",
  3541. "lib/MonoTouch10/_._",
  3542. "lib/net45/_._",
  3543. "lib/net462/System.IO.dll",
  3544. "lib/portable-net45+win8+wp8+wpa81/_._",
  3545. "lib/win8/_._",
  3546. "lib/wp80/_._",
  3547. "lib/wpa81/_._",
  3548. "lib/xamarinios10/_._",
  3549. "lib/xamarinmac20/_._",
  3550. "lib/xamarintvos10/_._",
  3551. "lib/xamarinwatchos10/_._",
  3552. "ref/MonoAndroid10/_._",
  3553. "ref/MonoTouch10/_._",
  3554. "ref/net45/_._",
  3555. "ref/net462/System.IO.dll",
  3556. "ref/netcore50/System.IO.dll",
  3557. "ref/netcore50/System.IO.xml",
  3558. "ref/netcore50/de/System.IO.xml",
  3559. "ref/netcore50/es/System.IO.xml",
  3560. "ref/netcore50/fr/System.IO.xml",
  3561. "ref/netcore50/it/System.IO.xml",
  3562. "ref/netcore50/ja/System.IO.xml",
  3563. "ref/netcore50/ko/System.IO.xml",
  3564. "ref/netcore50/ru/System.IO.xml",
  3565. "ref/netcore50/zh-hans/System.IO.xml",
  3566. "ref/netcore50/zh-hant/System.IO.xml",
  3567. "ref/netstandard1.0/System.IO.dll",
  3568. "ref/netstandard1.0/System.IO.xml",
  3569. "ref/netstandard1.0/de/System.IO.xml",
  3570. "ref/netstandard1.0/es/System.IO.xml",
  3571. "ref/netstandard1.0/fr/System.IO.xml",
  3572. "ref/netstandard1.0/it/System.IO.xml",
  3573. "ref/netstandard1.0/ja/System.IO.xml",
  3574. "ref/netstandard1.0/ko/System.IO.xml",
  3575. "ref/netstandard1.0/ru/System.IO.xml",
  3576. "ref/netstandard1.0/zh-hans/System.IO.xml",
  3577. "ref/netstandard1.0/zh-hant/System.IO.xml",
  3578. "ref/netstandard1.3/System.IO.dll",
  3579. "ref/netstandard1.3/System.IO.xml",
  3580. "ref/netstandard1.3/de/System.IO.xml",
  3581. "ref/netstandard1.3/es/System.IO.xml",
  3582. "ref/netstandard1.3/fr/System.IO.xml",
  3583. "ref/netstandard1.3/it/System.IO.xml",
  3584. "ref/netstandard1.3/ja/System.IO.xml",
  3585. "ref/netstandard1.3/ko/System.IO.xml",
  3586. "ref/netstandard1.3/ru/System.IO.xml",
  3587. "ref/netstandard1.3/zh-hans/System.IO.xml",
  3588. "ref/netstandard1.3/zh-hant/System.IO.xml",
  3589. "ref/netstandard1.5/System.IO.dll",
  3590. "ref/netstandard1.5/System.IO.xml",
  3591. "ref/netstandard1.5/de/System.IO.xml",
  3592. "ref/netstandard1.5/es/System.IO.xml",
  3593. "ref/netstandard1.5/fr/System.IO.xml",
  3594. "ref/netstandard1.5/it/System.IO.xml",
  3595. "ref/netstandard1.5/ja/System.IO.xml",
  3596. "ref/netstandard1.5/ko/System.IO.xml",
  3597. "ref/netstandard1.5/ru/System.IO.xml",
  3598. "ref/netstandard1.5/zh-hans/System.IO.xml",
  3599. "ref/netstandard1.5/zh-hant/System.IO.xml",
  3600. "ref/portable-net45+win8+wp8+wpa81/_._",
  3601. "ref/win8/_._",
  3602. "ref/wp80/_._",
  3603. "ref/wpa81/_._",
  3604. "ref/xamarinios10/_._",
  3605. "ref/xamarinmac20/_._",
  3606. "ref/xamarintvos10/_._",
  3607. "ref/xamarinwatchos10/_._",
  3608. "system.io.4.3.0.nupkg.sha512",
  3609. "system.io.nuspec"
  3610. ]
  3611. },
  3612. "System.IO.Compression/4.3.0": {
  3613. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  3614. "type": "package",
  3615. "path": "system.io.compression/4.3.0",
  3616. "files": [
  3617. ".nupkg.metadata",
  3618. ".signature.p7s",
  3619. "ThirdPartyNotices.txt",
  3620. "dotnet_library_license.txt",
  3621. "lib/MonoAndroid10/_._",
  3622. "lib/MonoTouch10/_._",
  3623. "lib/net45/_._",
  3624. "lib/net46/System.IO.Compression.dll",
  3625. "lib/portable-net45+win8+wpa81/_._",
  3626. "lib/win8/_._",
  3627. "lib/wpa81/_._",
  3628. "lib/xamarinios10/_._",
  3629. "lib/xamarinmac20/_._",
  3630. "lib/xamarintvos10/_._",
  3631. "lib/xamarinwatchos10/_._",
  3632. "ref/MonoAndroid10/_._",
  3633. "ref/MonoTouch10/_._",
  3634. "ref/net45/_._",
  3635. "ref/net46/System.IO.Compression.dll",
  3636. "ref/netcore50/System.IO.Compression.dll",
  3637. "ref/netcore50/System.IO.Compression.xml",
  3638. "ref/netcore50/de/System.IO.Compression.xml",
  3639. "ref/netcore50/es/System.IO.Compression.xml",
  3640. "ref/netcore50/fr/System.IO.Compression.xml",
  3641. "ref/netcore50/it/System.IO.Compression.xml",
  3642. "ref/netcore50/ja/System.IO.Compression.xml",
  3643. "ref/netcore50/ko/System.IO.Compression.xml",
  3644. "ref/netcore50/ru/System.IO.Compression.xml",
  3645. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  3646. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  3647. "ref/netstandard1.1/System.IO.Compression.dll",
  3648. "ref/netstandard1.1/System.IO.Compression.xml",
  3649. "ref/netstandard1.1/de/System.IO.Compression.xml",
  3650. "ref/netstandard1.1/es/System.IO.Compression.xml",
  3651. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  3652. "ref/netstandard1.1/it/System.IO.Compression.xml",
  3653. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  3654. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  3655. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  3656. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  3657. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  3658. "ref/netstandard1.3/System.IO.Compression.dll",
  3659. "ref/netstandard1.3/System.IO.Compression.xml",
  3660. "ref/netstandard1.3/de/System.IO.Compression.xml",
  3661. "ref/netstandard1.3/es/System.IO.Compression.xml",
  3662. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  3663. "ref/netstandard1.3/it/System.IO.Compression.xml",
  3664. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  3665. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  3666. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  3667. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  3668. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  3669. "ref/portable-net45+win8+wpa81/_._",
  3670. "ref/win8/_._",
  3671. "ref/wpa81/_._",
  3672. "ref/xamarinios10/_._",
  3673. "ref/xamarinmac20/_._",
  3674. "ref/xamarintvos10/_._",
  3675. "ref/xamarinwatchos10/_._",
  3676. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  3677. "runtimes/win/lib/net46/System.IO.Compression.dll",
  3678. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  3679. "system.io.compression.4.3.0.nupkg.sha512",
  3680. "system.io.compression.nuspec"
  3681. ]
  3682. },
  3683. "System.IO.Compression.ZipFile/4.3.0": {
  3684. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  3685. "type": "package",
  3686. "path": "system.io.compression.zipfile/4.3.0",
  3687. "files": [
  3688. ".nupkg.metadata",
  3689. ".signature.p7s",
  3690. "ThirdPartyNotices.txt",
  3691. "dotnet_library_license.txt",
  3692. "lib/MonoAndroid10/_._",
  3693. "lib/MonoTouch10/_._",
  3694. "lib/net46/System.IO.Compression.ZipFile.dll",
  3695. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  3696. "lib/xamarinios10/_._",
  3697. "lib/xamarinmac20/_._",
  3698. "lib/xamarintvos10/_._",
  3699. "lib/xamarinwatchos10/_._",
  3700. "ref/MonoAndroid10/_._",
  3701. "ref/MonoTouch10/_._",
  3702. "ref/net46/System.IO.Compression.ZipFile.dll",
  3703. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  3704. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  3705. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  3706. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  3707. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  3708. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  3709. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  3710. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  3711. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  3712. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  3713. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  3714. "ref/xamarinios10/_._",
  3715. "ref/xamarinmac20/_._",
  3716. "ref/xamarintvos10/_._",
  3717. "ref/xamarinwatchos10/_._",
  3718. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  3719. "system.io.compression.zipfile.nuspec"
  3720. ]
  3721. },
  3722. "System.IO.FileSystem/4.3.0": {
  3723. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  3724. "type": "package",
  3725. "path": "system.io.filesystem/4.3.0",
  3726. "files": [
  3727. ".nupkg.metadata",
  3728. ".signature.p7s",
  3729. "ThirdPartyNotices.txt",
  3730. "dotnet_library_license.txt",
  3731. "lib/MonoAndroid10/_._",
  3732. "lib/MonoTouch10/_._",
  3733. "lib/net46/System.IO.FileSystem.dll",
  3734. "lib/xamarinios10/_._",
  3735. "lib/xamarinmac20/_._",
  3736. "lib/xamarintvos10/_._",
  3737. "lib/xamarinwatchos10/_._",
  3738. "ref/MonoAndroid10/_._",
  3739. "ref/MonoTouch10/_._",
  3740. "ref/net46/System.IO.FileSystem.dll",
  3741. "ref/netstandard1.3/System.IO.FileSystem.dll",
  3742. "ref/netstandard1.3/System.IO.FileSystem.xml",
  3743. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  3744. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  3745. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  3746. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  3747. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  3748. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  3749. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  3750. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  3751. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  3752. "ref/xamarinios10/_._",
  3753. "ref/xamarinmac20/_._",
  3754. "ref/xamarintvos10/_._",
  3755. "ref/xamarinwatchos10/_._",
  3756. "system.io.filesystem.4.3.0.nupkg.sha512",
  3757. "system.io.filesystem.nuspec"
  3758. ]
  3759. },
  3760. "System.IO.FileSystem.Primitives/4.3.0": {
  3761. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  3762. "type": "package",
  3763. "path": "system.io.filesystem.primitives/4.3.0",
  3764. "files": [
  3765. ".nupkg.metadata",
  3766. ".signature.p7s",
  3767. "ThirdPartyNotices.txt",
  3768. "dotnet_library_license.txt",
  3769. "lib/MonoAndroid10/_._",
  3770. "lib/MonoTouch10/_._",
  3771. "lib/net46/System.IO.FileSystem.Primitives.dll",
  3772. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  3773. "lib/xamarinios10/_._",
  3774. "lib/xamarinmac20/_._",
  3775. "lib/xamarintvos10/_._",
  3776. "lib/xamarinwatchos10/_._",
  3777. "ref/MonoAndroid10/_._",
  3778. "ref/MonoTouch10/_._",
  3779. "ref/net46/System.IO.FileSystem.Primitives.dll",
  3780. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  3781. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  3782. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  3783. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  3784. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  3785. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  3786. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  3787. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  3788. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  3789. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  3790. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  3791. "ref/xamarinios10/_._",
  3792. "ref/xamarinmac20/_._",
  3793. "ref/xamarintvos10/_._",
  3794. "ref/xamarinwatchos10/_._",
  3795. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  3796. "system.io.filesystem.primitives.nuspec"
  3797. ]
  3798. },
  3799. "System.Linq/4.3.0": {
  3800. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  3801. "type": "package",
  3802. "path": "system.linq/4.3.0",
  3803. "files": [
  3804. ".nupkg.metadata",
  3805. ".signature.p7s",
  3806. "ThirdPartyNotices.txt",
  3807. "dotnet_library_license.txt",
  3808. "lib/MonoAndroid10/_._",
  3809. "lib/MonoTouch10/_._",
  3810. "lib/net45/_._",
  3811. "lib/net463/System.Linq.dll",
  3812. "lib/netcore50/System.Linq.dll",
  3813. "lib/netstandard1.6/System.Linq.dll",
  3814. "lib/portable-net45+win8+wp8+wpa81/_._",
  3815. "lib/win8/_._",
  3816. "lib/wp80/_._",
  3817. "lib/wpa81/_._",
  3818. "lib/xamarinios10/_._",
  3819. "lib/xamarinmac20/_._",
  3820. "lib/xamarintvos10/_._",
  3821. "lib/xamarinwatchos10/_._",
  3822. "ref/MonoAndroid10/_._",
  3823. "ref/MonoTouch10/_._",
  3824. "ref/net45/_._",
  3825. "ref/net463/System.Linq.dll",
  3826. "ref/netcore50/System.Linq.dll",
  3827. "ref/netcore50/System.Linq.xml",
  3828. "ref/netcore50/de/System.Linq.xml",
  3829. "ref/netcore50/es/System.Linq.xml",
  3830. "ref/netcore50/fr/System.Linq.xml",
  3831. "ref/netcore50/it/System.Linq.xml",
  3832. "ref/netcore50/ja/System.Linq.xml",
  3833. "ref/netcore50/ko/System.Linq.xml",
  3834. "ref/netcore50/ru/System.Linq.xml",
  3835. "ref/netcore50/zh-hans/System.Linq.xml",
  3836. "ref/netcore50/zh-hant/System.Linq.xml",
  3837. "ref/netstandard1.0/System.Linq.dll",
  3838. "ref/netstandard1.0/System.Linq.xml",
  3839. "ref/netstandard1.0/de/System.Linq.xml",
  3840. "ref/netstandard1.0/es/System.Linq.xml",
  3841. "ref/netstandard1.0/fr/System.Linq.xml",
  3842. "ref/netstandard1.0/it/System.Linq.xml",
  3843. "ref/netstandard1.0/ja/System.Linq.xml",
  3844. "ref/netstandard1.0/ko/System.Linq.xml",
  3845. "ref/netstandard1.0/ru/System.Linq.xml",
  3846. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  3847. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  3848. "ref/netstandard1.6/System.Linq.dll",
  3849. "ref/netstandard1.6/System.Linq.xml",
  3850. "ref/netstandard1.6/de/System.Linq.xml",
  3851. "ref/netstandard1.6/es/System.Linq.xml",
  3852. "ref/netstandard1.6/fr/System.Linq.xml",
  3853. "ref/netstandard1.6/it/System.Linq.xml",
  3854. "ref/netstandard1.6/ja/System.Linq.xml",
  3855. "ref/netstandard1.6/ko/System.Linq.xml",
  3856. "ref/netstandard1.6/ru/System.Linq.xml",
  3857. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  3858. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  3859. "ref/portable-net45+win8+wp8+wpa81/_._",
  3860. "ref/win8/_._",
  3861. "ref/wp80/_._",
  3862. "ref/wpa81/_._",
  3863. "ref/xamarinios10/_._",
  3864. "ref/xamarinmac20/_._",
  3865. "ref/xamarintvos10/_._",
  3866. "ref/xamarinwatchos10/_._",
  3867. "system.linq.4.3.0.nupkg.sha512",
  3868. "system.linq.nuspec"
  3869. ]
  3870. },
  3871. "System.Linq.Expressions/4.3.0": {
  3872. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  3873. "type": "package",
  3874. "path": "system.linq.expressions/4.3.0",
  3875. "files": [
  3876. ".nupkg.metadata",
  3877. ".signature.p7s",
  3878. "ThirdPartyNotices.txt",
  3879. "dotnet_library_license.txt",
  3880. "lib/MonoAndroid10/_._",
  3881. "lib/MonoTouch10/_._",
  3882. "lib/net45/_._",
  3883. "lib/net463/System.Linq.Expressions.dll",
  3884. "lib/netcore50/System.Linq.Expressions.dll",
  3885. "lib/netstandard1.6/System.Linq.Expressions.dll",
  3886. "lib/portable-net45+win8+wp8+wpa81/_._",
  3887. "lib/win8/_._",
  3888. "lib/wp80/_._",
  3889. "lib/wpa81/_._",
  3890. "lib/xamarinios10/_._",
  3891. "lib/xamarinmac20/_._",
  3892. "lib/xamarintvos10/_._",
  3893. "lib/xamarinwatchos10/_._",
  3894. "ref/MonoAndroid10/_._",
  3895. "ref/MonoTouch10/_._",
  3896. "ref/net45/_._",
  3897. "ref/net463/System.Linq.Expressions.dll",
  3898. "ref/netcore50/System.Linq.Expressions.dll",
  3899. "ref/netcore50/System.Linq.Expressions.xml",
  3900. "ref/netcore50/de/System.Linq.Expressions.xml",
  3901. "ref/netcore50/es/System.Linq.Expressions.xml",
  3902. "ref/netcore50/fr/System.Linq.Expressions.xml",
  3903. "ref/netcore50/it/System.Linq.Expressions.xml",
  3904. "ref/netcore50/ja/System.Linq.Expressions.xml",
  3905. "ref/netcore50/ko/System.Linq.Expressions.xml",
  3906. "ref/netcore50/ru/System.Linq.Expressions.xml",
  3907. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  3908. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  3909. "ref/netstandard1.0/System.Linq.Expressions.dll",
  3910. "ref/netstandard1.0/System.Linq.Expressions.xml",
  3911. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  3912. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  3913. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  3914. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  3915. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  3916. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  3917. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  3918. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  3919. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  3920. "ref/netstandard1.3/System.Linq.Expressions.dll",
  3921. "ref/netstandard1.3/System.Linq.Expressions.xml",
  3922. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  3923. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  3924. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  3925. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  3926. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  3927. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  3928. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  3929. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  3930. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  3931. "ref/netstandard1.6/System.Linq.Expressions.dll",
  3932. "ref/netstandard1.6/System.Linq.Expressions.xml",
  3933. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  3934. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  3935. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  3936. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  3937. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  3938. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  3939. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  3940. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  3941. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  3942. "ref/portable-net45+win8+wp8+wpa81/_._",
  3943. "ref/win8/_._",
  3944. "ref/wp80/_._",
  3945. "ref/wpa81/_._",
  3946. "ref/xamarinios10/_._",
  3947. "ref/xamarinmac20/_._",
  3948. "ref/xamarintvos10/_._",
  3949. "ref/xamarinwatchos10/_._",
  3950. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  3951. "system.linq.expressions.4.3.0.nupkg.sha512",
  3952. "system.linq.expressions.nuspec"
  3953. ]
  3954. },
  3955. "System.Net.Http/4.3.0": {
  3956. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  3957. "type": "package",
  3958. "path": "system.net.http/4.3.0",
  3959. "files": [
  3960. ".nupkg.metadata",
  3961. ".signature.p7s",
  3962. "ThirdPartyNotices.txt",
  3963. "dotnet_library_license.txt",
  3964. "lib/Xamarinmac20/_._",
  3965. "lib/monoandroid10/_._",
  3966. "lib/monotouch10/_._",
  3967. "lib/net45/_._",
  3968. "lib/net46/System.Net.Http.dll",
  3969. "lib/portable-net45+win8+wpa81/_._",
  3970. "lib/win8/_._",
  3971. "lib/wpa81/_._",
  3972. "lib/xamarinios10/_._",
  3973. "lib/xamarintvos10/_._",
  3974. "lib/xamarinwatchos10/_._",
  3975. "ref/Xamarinmac20/_._",
  3976. "ref/monoandroid10/_._",
  3977. "ref/monotouch10/_._",
  3978. "ref/net45/_._",
  3979. "ref/net46/System.Net.Http.dll",
  3980. "ref/net46/System.Net.Http.xml",
  3981. "ref/net46/de/System.Net.Http.xml",
  3982. "ref/net46/es/System.Net.Http.xml",
  3983. "ref/net46/fr/System.Net.Http.xml",
  3984. "ref/net46/it/System.Net.Http.xml",
  3985. "ref/net46/ja/System.Net.Http.xml",
  3986. "ref/net46/ko/System.Net.Http.xml",
  3987. "ref/net46/ru/System.Net.Http.xml",
  3988. "ref/net46/zh-hans/System.Net.Http.xml",
  3989. "ref/net46/zh-hant/System.Net.Http.xml",
  3990. "ref/netcore50/System.Net.Http.dll",
  3991. "ref/netcore50/System.Net.Http.xml",
  3992. "ref/netcore50/de/System.Net.Http.xml",
  3993. "ref/netcore50/es/System.Net.Http.xml",
  3994. "ref/netcore50/fr/System.Net.Http.xml",
  3995. "ref/netcore50/it/System.Net.Http.xml",
  3996. "ref/netcore50/ja/System.Net.Http.xml",
  3997. "ref/netcore50/ko/System.Net.Http.xml",
  3998. "ref/netcore50/ru/System.Net.Http.xml",
  3999. "ref/netcore50/zh-hans/System.Net.Http.xml",
  4000. "ref/netcore50/zh-hant/System.Net.Http.xml",
  4001. "ref/netstandard1.1/System.Net.Http.dll",
  4002. "ref/netstandard1.1/System.Net.Http.xml",
  4003. "ref/netstandard1.1/de/System.Net.Http.xml",
  4004. "ref/netstandard1.1/es/System.Net.Http.xml",
  4005. "ref/netstandard1.1/fr/System.Net.Http.xml",
  4006. "ref/netstandard1.1/it/System.Net.Http.xml",
  4007. "ref/netstandard1.1/ja/System.Net.Http.xml",
  4008. "ref/netstandard1.1/ko/System.Net.Http.xml",
  4009. "ref/netstandard1.1/ru/System.Net.Http.xml",
  4010. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  4011. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  4012. "ref/netstandard1.3/System.Net.Http.dll",
  4013. "ref/netstandard1.3/System.Net.Http.xml",
  4014. "ref/netstandard1.3/de/System.Net.Http.xml",
  4015. "ref/netstandard1.3/es/System.Net.Http.xml",
  4016. "ref/netstandard1.3/fr/System.Net.Http.xml",
  4017. "ref/netstandard1.3/it/System.Net.Http.xml",
  4018. "ref/netstandard1.3/ja/System.Net.Http.xml",
  4019. "ref/netstandard1.3/ko/System.Net.Http.xml",
  4020. "ref/netstandard1.3/ru/System.Net.Http.xml",
  4021. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  4022. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  4023. "ref/portable-net45+win8+wpa81/_._",
  4024. "ref/win8/_._",
  4025. "ref/wpa81/_._",
  4026. "ref/xamarinios10/_._",
  4027. "ref/xamarintvos10/_._",
  4028. "ref/xamarinwatchos10/_._",
  4029. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  4030. "runtimes/win/lib/net46/System.Net.Http.dll",
  4031. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  4032. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  4033. "system.net.http.4.3.0.nupkg.sha512",
  4034. "system.net.http.nuspec"
  4035. ]
  4036. },
  4037. "System.Net.Primitives/4.3.0": {
  4038. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  4039. "type": "package",
  4040. "path": "system.net.primitives/4.3.0",
  4041. "files": [
  4042. ".nupkg.metadata",
  4043. ".signature.p7s",
  4044. "ThirdPartyNotices.txt",
  4045. "dotnet_library_license.txt",
  4046. "lib/MonoAndroid10/_._",
  4047. "lib/MonoTouch10/_._",
  4048. "lib/net45/_._",
  4049. "lib/portable-net45+win8+wp8+wpa81/_._",
  4050. "lib/win8/_._",
  4051. "lib/wp80/_._",
  4052. "lib/wpa81/_._",
  4053. "lib/xamarinios10/_._",
  4054. "lib/xamarinmac20/_._",
  4055. "lib/xamarintvos10/_._",
  4056. "lib/xamarinwatchos10/_._",
  4057. "ref/MonoAndroid10/_._",
  4058. "ref/MonoTouch10/_._",
  4059. "ref/net45/_._",
  4060. "ref/netcore50/System.Net.Primitives.dll",
  4061. "ref/netcore50/System.Net.Primitives.xml",
  4062. "ref/netcore50/de/System.Net.Primitives.xml",
  4063. "ref/netcore50/es/System.Net.Primitives.xml",
  4064. "ref/netcore50/fr/System.Net.Primitives.xml",
  4065. "ref/netcore50/it/System.Net.Primitives.xml",
  4066. "ref/netcore50/ja/System.Net.Primitives.xml",
  4067. "ref/netcore50/ko/System.Net.Primitives.xml",
  4068. "ref/netcore50/ru/System.Net.Primitives.xml",
  4069. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  4070. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  4071. "ref/netstandard1.0/System.Net.Primitives.dll",
  4072. "ref/netstandard1.0/System.Net.Primitives.xml",
  4073. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  4074. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  4075. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  4076. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  4077. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  4078. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  4079. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  4080. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  4081. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  4082. "ref/netstandard1.1/System.Net.Primitives.dll",
  4083. "ref/netstandard1.1/System.Net.Primitives.xml",
  4084. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  4085. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  4086. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  4087. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  4088. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  4089. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  4090. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  4091. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  4092. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  4093. "ref/netstandard1.3/System.Net.Primitives.dll",
  4094. "ref/netstandard1.3/System.Net.Primitives.xml",
  4095. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  4096. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  4097. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  4098. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  4099. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  4100. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  4101. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  4102. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  4103. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  4104. "ref/portable-net45+win8+wp8+wpa81/_._",
  4105. "ref/win8/_._",
  4106. "ref/wp80/_._",
  4107. "ref/wpa81/_._",
  4108. "ref/xamarinios10/_._",
  4109. "ref/xamarinmac20/_._",
  4110. "ref/xamarintvos10/_._",
  4111. "ref/xamarinwatchos10/_._",
  4112. "system.net.primitives.4.3.0.nupkg.sha512",
  4113. "system.net.primitives.nuspec"
  4114. ]
  4115. },
  4116. "System.Net.Sockets/4.3.0": {
  4117. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  4118. "type": "package",
  4119. "path": "system.net.sockets/4.3.0",
  4120. "files": [
  4121. ".nupkg.metadata",
  4122. ".signature.p7s",
  4123. "ThirdPartyNotices.txt",
  4124. "dotnet_library_license.txt",
  4125. "lib/MonoAndroid10/_._",
  4126. "lib/MonoTouch10/_._",
  4127. "lib/net46/System.Net.Sockets.dll",
  4128. "lib/xamarinios10/_._",
  4129. "lib/xamarinmac20/_._",
  4130. "lib/xamarintvos10/_._",
  4131. "lib/xamarinwatchos10/_._",
  4132. "ref/MonoAndroid10/_._",
  4133. "ref/MonoTouch10/_._",
  4134. "ref/net46/System.Net.Sockets.dll",
  4135. "ref/netstandard1.3/System.Net.Sockets.dll",
  4136. "ref/netstandard1.3/System.Net.Sockets.xml",
  4137. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  4138. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  4139. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  4140. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  4141. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  4142. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  4143. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  4144. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  4145. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  4146. "ref/xamarinios10/_._",
  4147. "ref/xamarinmac20/_._",
  4148. "ref/xamarintvos10/_._",
  4149. "ref/xamarinwatchos10/_._",
  4150. "system.net.sockets.4.3.0.nupkg.sha512",
  4151. "system.net.sockets.nuspec"
  4152. ]
  4153. },
  4154. "System.ObjectModel/4.3.0": {
  4155. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  4156. "type": "package",
  4157. "path": "system.objectmodel/4.3.0",
  4158. "files": [
  4159. ".nupkg.metadata",
  4160. ".signature.p7s",
  4161. "ThirdPartyNotices.txt",
  4162. "dotnet_library_license.txt",
  4163. "lib/MonoAndroid10/_._",
  4164. "lib/MonoTouch10/_._",
  4165. "lib/net45/_._",
  4166. "lib/netcore50/System.ObjectModel.dll",
  4167. "lib/netstandard1.3/System.ObjectModel.dll",
  4168. "lib/portable-net45+win8+wp8+wpa81/_._",
  4169. "lib/win8/_._",
  4170. "lib/wp80/_._",
  4171. "lib/wpa81/_._",
  4172. "lib/xamarinios10/_._",
  4173. "lib/xamarinmac20/_._",
  4174. "lib/xamarintvos10/_._",
  4175. "lib/xamarinwatchos10/_._",
  4176. "ref/MonoAndroid10/_._",
  4177. "ref/MonoTouch10/_._",
  4178. "ref/net45/_._",
  4179. "ref/netcore50/System.ObjectModel.dll",
  4180. "ref/netcore50/System.ObjectModel.xml",
  4181. "ref/netcore50/de/System.ObjectModel.xml",
  4182. "ref/netcore50/es/System.ObjectModel.xml",
  4183. "ref/netcore50/fr/System.ObjectModel.xml",
  4184. "ref/netcore50/it/System.ObjectModel.xml",
  4185. "ref/netcore50/ja/System.ObjectModel.xml",
  4186. "ref/netcore50/ko/System.ObjectModel.xml",
  4187. "ref/netcore50/ru/System.ObjectModel.xml",
  4188. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  4189. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  4190. "ref/netstandard1.0/System.ObjectModel.dll",
  4191. "ref/netstandard1.0/System.ObjectModel.xml",
  4192. "ref/netstandard1.0/de/System.ObjectModel.xml",
  4193. "ref/netstandard1.0/es/System.ObjectModel.xml",
  4194. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  4195. "ref/netstandard1.0/it/System.ObjectModel.xml",
  4196. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  4197. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  4198. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  4199. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  4200. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  4201. "ref/netstandard1.3/System.ObjectModel.dll",
  4202. "ref/netstandard1.3/System.ObjectModel.xml",
  4203. "ref/netstandard1.3/de/System.ObjectModel.xml",
  4204. "ref/netstandard1.3/es/System.ObjectModel.xml",
  4205. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  4206. "ref/netstandard1.3/it/System.ObjectModel.xml",
  4207. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  4208. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  4209. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  4210. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  4211. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  4212. "ref/portable-net45+win8+wp8+wpa81/_._",
  4213. "ref/win8/_._",
  4214. "ref/wp80/_._",
  4215. "ref/wpa81/_._",
  4216. "ref/xamarinios10/_._",
  4217. "ref/xamarinmac20/_._",
  4218. "ref/xamarintvos10/_._",
  4219. "ref/xamarinwatchos10/_._",
  4220. "system.objectmodel.4.3.0.nupkg.sha512",
  4221. "system.objectmodel.nuspec"
  4222. ]
  4223. },
  4224. "System.Reflection/4.3.0": {
  4225. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  4226. "type": "package",
  4227. "path": "system.reflection/4.3.0",
  4228. "files": [
  4229. ".nupkg.metadata",
  4230. ".signature.p7s",
  4231. "ThirdPartyNotices.txt",
  4232. "dotnet_library_license.txt",
  4233. "lib/MonoAndroid10/_._",
  4234. "lib/MonoTouch10/_._",
  4235. "lib/net45/_._",
  4236. "lib/net462/System.Reflection.dll",
  4237. "lib/portable-net45+win8+wp8+wpa81/_._",
  4238. "lib/win8/_._",
  4239. "lib/wp80/_._",
  4240. "lib/wpa81/_._",
  4241. "lib/xamarinios10/_._",
  4242. "lib/xamarinmac20/_._",
  4243. "lib/xamarintvos10/_._",
  4244. "lib/xamarinwatchos10/_._",
  4245. "ref/MonoAndroid10/_._",
  4246. "ref/MonoTouch10/_._",
  4247. "ref/net45/_._",
  4248. "ref/net462/System.Reflection.dll",
  4249. "ref/netcore50/System.Reflection.dll",
  4250. "ref/netcore50/System.Reflection.xml",
  4251. "ref/netcore50/de/System.Reflection.xml",
  4252. "ref/netcore50/es/System.Reflection.xml",
  4253. "ref/netcore50/fr/System.Reflection.xml",
  4254. "ref/netcore50/it/System.Reflection.xml",
  4255. "ref/netcore50/ja/System.Reflection.xml",
  4256. "ref/netcore50/ko/System.Reflection.xml",
  4257. "ref/netcore50/ru/System.Reflection.xml",
  4258. "ref/netcore50/zh-hans/System.Reflection.xml",
  4259. "ref/netcore50/zh-hant/System.Reflection.xml",
  4260. "ref/netstandard1.0/System.Reflection.dll",
  4261. "ref/netstandard1.0/System.Reflection.xml",
  4262. "ref/netstandard1.0/de/System.Reflection.xml",
  4263. "ref/netstandard1.0/es/System.Reflection.xml",
  4264. "ref/netstandard1.0/fr/System.Reflection.xml",
  4265. "ref/netstandard1.0/it/System.Reflection.xml",
  4266. "ref/netstandard1.0/ja/System.Reflection.xml",
  4267. "ref/netstandard1.0/ko/System.Reflection.xml",
  4268. "ref/netstandard1.0/ru/System.Reflection.xml",
  4269. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  4270. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  4271. "ref/netstandard1.3/System.Reflection.dll",
  4272. "ref/netstandard1.3/System.Reflection.xml",
  4273. "ref/netstandard1.3/de/System.Reflection.xml",
  4274. "ref/netstandard1.3/es/System.Reflection.xml",
  4275. "ref/netstandard1.3/fr/System.Reflection.xml",
  4276. "ref/netstandard1.3/it/System.Reflection.xml",
  4277. "ref/netstandard1.3/ja/System.Reflection.xml",
  4278. "ref/netstandard1.3/ko/System.Reflection.xml",
  4279. "ref/netstandard1.3/ru/System.Reflection.xml",
  4280. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  4281. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  4282. "ref/netstandard1.5/System.Reflection.dll",
  4283. "ref/netstandard1.5/System.Reflection.xml",
  4284. "ref/netstandard1.5/de/System.Reflection.xml",
  4285. "ref/netstandard1.5/es/System.Reflection.xml",
  4286. "ref/netstandard1.5/fr/System.Reflection.xml",
  4287. "ref/netstandard1.5/it/System.Reflection.xml",
  4288. "ref/netstandard1.5/ja/System.Reflection.xml",
  4289. "ref/netstandard1.5/ko/System.Reflection.xml",
  4290. "ref/netstandard1.5/ru/System.Reflection.xml",
  4291. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  4292. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  4293. "ref/portable-net45+win8+wp8+wpa81/_._",
  4294. "ref/win8/_._",
  4295. "ref/wp80/_._",
  4296. "ref/wpa81/_._",
  4297. "ref/xamarinios10/_._",
  4298. "ref/xamarinmac20/_._",
  4299. "ref/xamarintvos10/_._",
  4300. "ref/xamarinwatchos10/_._",
  4301. "system.reflection.4.3.0.nupkg.sha512",
  4302. "system.reflection.nuspec"
  4303. ]
  4304. },
  4305. "System.Reflection.Emit/4.3.0": {
  4306. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  4307. "type": "package",
  4308. "path": "system.reflection.emit/4.3.0",
  4309. "files": [
  4310. ".nupkg.metadata",
  4311. ".signature.p7s",
  4312. "ThirdPartyNotices.txt",
  4313. "dotnet_library_license.txt",
  4314. "lib/MonoAndroid10/_._",
  4315. "lib/monotouch10/_._",
  4316. "lib/net45/_._",
  4317. "lib/netcore50/System.Reflection.Emit.dll",
  4318. "lib/netstandard1.3/System.Reflection.Emit.dll",
  4319. "lib/xamarinios10/_._",
  4320. "lib/xamarinmac20/_._",
  4321. "lib/xamarintvos10/_._",
  4322. "lib/xamarinwatchos10/_._",
  4323. "ref/MonoAndroid10/_._",
  4324. "ref/net45/_._",
  4325. "ref/netstandard1.1/System.Reflection.Emit.dll",
  4326. "ref/netstandard1.1/System.Reflection.Emit.xml",
  4327. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  4328. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  4329. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  4330. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  4331. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  4332. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  4333. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  4334. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  4335. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  4336. "ref/xamarinmac20/_._",
  4337. "system.reflection.emit.4.3.0.nupkg.sha512",
  4338. "system.reflection.emit.nuspec"
  4339. ]
  4340. },
  4341. "System.Reflection.Emit.ILGeneration/4.3.0": {
  4342. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  4343. "type": "package",
  4344. "path": "system.reflection.emit.ilgeneration/4.3.0",
  4345. "files": [
  4346. ".nupkg.metadata",
  4347. ".signature.p7s",
  4348. "ThirdPartyNotices.txt",
  4349. "dotnet_library_license.txt",
  4350. "lib/MonoAndroid10/_._",
  4351. "lib/MonoTouch10/_._",
  4352. "lib/net45/_._",
  4353. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  4354. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  4355. "lib/portable-net45+wp8/_._",
  4356. "lib/wp80/_._",
  4357. "lib/xamarinios10/_._",
  4358. "lib/xamarinmac20/_._",
  4359. "lib/xamarintvos10/_._",
  4360. "lib/xamarinwatchos10/_._",
  4361. "ref/MonoAndroid10/_._",
  4362. "ref/MonoTouch10/_._",
  4363. "ref/net45/_._",
  4364. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  4365. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  4366. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  4367. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  4368. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  4369. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  4370. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  4371. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  4372. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  4373. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  4374. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  4375. "ref/portable-net45+wp8/_._",
  4376. "ref/wp80/_._",
  4377. "ref/xamarinios10/_._",
  4378. "ref/xamarinmac20/_._",
  4379. "ref/xamarintvos10/_._",
  4380. "ref/xamarinwatchos10/_._",
  4381. "runtimes/aot/lib/netcore50/_._",
  4382. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  4383. "system.reflection.emit.ilgeneration.nuspec"
  4384. ]
  4385. },
  4386. "System.Reflection.Emit.Lightweight/4.3.0": {
  4387. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  4388. "type": "package",
  4389. "path": "system.reflection.emit.lightweight/4.3.0",
  4390. "files": [
  4391. ".nupkg.metadata",
  4392. ".signature.p7s",
  4393. "ThirdPartyNotices.txt",
  4394. "dotnet_library_license.txt",
  4395. "lib/MonoAndroid10/_._",
  4396. "lib/MonoTouch10/_._",
  4397. "lib/net45/_._",
  4398. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  4399. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  4400. "lib/portable-net45+wp8/_._",
  4401. "lib/wp80/_._",
  4402. "lib/xamarinios10/_._",
  4403. "lib/xamarinmac20/_._",
  4404. "lib/xamarintvos10/_._",
  4405. "lib/xamarinwatchos10/_._",
  4406. "ref/MonoAndroid10/_._",
  4407. "ref/MonoTouch10/_._",
  4408. "ref/net45/_._",
  4409. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  4410. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  4411. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  4412. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  4413. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  4414. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  4415. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  4416. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  4417. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  4418. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  4419. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  4420. "ref/portable-net45+wp8/_._",
  4421. "ref/wp80/_._",
  4422. "ref/xamarinios10/_._",
  4423. "ref/xamarinmac20/_._",
  4424. "ref/xamarintvos10/_._",
  4425. "ref/xamarinwatchos10/_._",
  4426. "runtimes/aot/lib/netcore50/_._",
  4427. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  4428. "system.reflection.emit.lightweight.nuspec"
  4429. ]
  4430. },
  4431. "System.Reflection.Extensions/4.3.0": {
  4432. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  4433. "type": "package",
  4434. "path": "system.reflection.extensions/4.3.0",
  4435. "files": [
  4436. ".nupkg.metadata",
  4437. ".signature.p7s",
  4438. "ThirdPartyNotices.txt",
  4439. "dotnet_library_license.txt",
  4440. "lib/MonoAndroid10/_._",
  4441. "lib/MonoTouch10/_._",
  4442. "lib/net45/_._",
  4443. "lib/portable-net45+win8+wp8+wpa81/_._",
  4444. "lib/win8/_._",
  4445. "lib/wp80/_._",
  4446. "lib/wpa81/_._",
  4447. "lib/xamarinios10/_._",
  4448. "lib/xamarinmac20/_._",
  4449. "lib/xamarintvos10/_._",
  4450. "lib/xamarinwatchos10/_._",
  4451. "ref/MonoAndroid10/_._",
  4452. "ref/MonoTouch10/_._",
  4453. "ref/net45/_._",
  4454. "ref/netcore50/System.Reflection.Extensions.dll",
  4455. "ref/netcore50/System.Reflection.Extensions.xml",
  4456. "ref/netcore50/de/System.Reflection.Extensions.xml",
  4457. "ref/netcore50/es/System.Reflection.Extensions.xml",
  4458. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  4459. "ref/netcore50/it/System.Reflection.Extensions.xml",
  4460. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  4461. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  4462. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  4463. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  4464. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  4465. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  4466. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  4467. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  4468. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  4469. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  4470. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  4471. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  4472. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  4473. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  4474. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  4475. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  4476. "ref/portable-net45+win8+wp8+wpa81/_._",
  4477. "ref/win8/_._",
  4478. "ref/wp80/_._",
  4479. "ref/wpa81/_._",
  4480. "ref/xamarinios10/_._",
  4481. "ref/xamarinmac20/_._",
  4482. "ref/xamarintvos10/_._",
  4483. "ref/xamarinwatchos10/_._",
  4484. "system.reflection.extensions.4.3.0.nupkg.sha512",
  4485. "system.reflection.extensions.nuspec"
  4486. ]
  4487. },
  4488. "System.Reflection.Metadata/1.6.0": {
  4489. "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  4490. "type": "package",
  4491. "path": "system.reflection.metadata/1.6.0",
  4492. "files": [
  4493. ".nupkg.metadata",
  4494. ".signature.p7s",
  4495. "LICENSE.TXT",
  4496. "THIRD-PARTY-NOTICES.TXT",
  4497. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  4498. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  4499. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  4500. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  4501. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  4502. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  4503. "system.reflection.metadata.1.6.0.nupkg.sha512",
  4504. "system.reflection.metadata.nuspec",
  4505. "useSharedDesignerContext.txt",
  4506. "version.txt"
  4507. ]
  4508. },
  4509. "System.Reflection.Primitives/4.3.0": {
  4510. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  4511. "type": "package",
  4512. "path": "system.reflection.primitives/4.3.0",
  4513. "files": [
  4514. ".nupkg.metadata",
  4515. ".signature.p7s",
  4516. "ThirdPartyNotices.txt",
  4517. "dotnet_library_license.txt",
  4518. "lib/MonoAndroid10/_._",
  4519. "lib/MonoTouch10/_._",
  4520. "lib/net45/_._",
  4521. "lib/portable-net45+win8+wp8+wpa81/_._",
  4522. "lib/win8/_._",
  4523. "lib/wp80/_._",
  4524. "lib/wpa81/_._",
  4525. "lib/xamarinios10/_._",
  4526. "lib/xamarinmac20/_._",
  4527. "lib/xamarintvos10/_._",
  4528. "lib/xamarinwatchos10/_._",
  4529. "ref/MonoAndroid10/_._",
  4530. "ref/MonoTouch10/_._",
  4531. "ref/net45/_._",
  4532. "ref/netcore50/System.Reflection.Primitives.dll",
  4533. "ref/netcore50/System.Reflection.Primitives.xml",
  4534. "ref/netcore50/de/System.Reflection.Primitives.xml",
  4535. "ref/netcore50/es/System.Reflection.Primitives.xml",
  4536. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  4537. "ref/netcore50/it/System.Reflection.Primitives.xml",
  4538. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  4539. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  4540. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  4541. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  4542. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  4543. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  4544. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  4545. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  4546. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  4547. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  4548. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  4549. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  4550. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  4551. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  4552. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  4553. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  4554. "ref/portable-net45+win8+wp8+wpa81/_._",
  4555. "ref/win8/_._",
  4556. "ref/wp80/_._",
  4557. "ref/wpa81/_._",
  4558. "ref/xamarinios10/_._",
  4559. "ref/xamarinmac20/_._",
  4560. "ref/xamarintvos10/_._",
  4561. "ref/xamarinwatchos10/_._",
  4562. "system.reflection.primitives.4.3.0.nupkg.sha512",
  4563. "system.reflection.primitives.nuspec"
  4564. ]
  4565. },
  4566. "System.Reflection.TypeExtensions/4.3.0": {
  4567. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  4568. "type": "package",
  4569. "path": "system.reflection.typeextensions/4.3.0",
  4570. "files": [
  4571. ".nupkg.metadata",
  4572. ".signature.p7s",
  4573. "ThirdPartyNotices.txt",
  4574. "dotnet_library_license.txt",
  4575. "lib/MonoAndroid10/_._",
  4576. "lib/MonoTouch10/_._",
  4577. "lib/net46/System.Reflection.TypeExtensions.dll",
  4578. "lib/net462/System.Reflection.TypeExtensions.dll",
  4579. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  4580. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  4581. "lib/xamarinios10/_._",
  4582. "lib/xamarinmac20/_._",
  4583. "lib/xamarintvos10/_._",
  4584. "lib/xamarinwatchos10/_._",
  4585. "ref/MonoAndroid10/_._",
  4586. "ref/MonoTouch10/_._",
  4587. "ref/net46/System.Reflection.TypeExtensions.dll",
  4588. "ref/net462/System.Reflection.TypeExtensions.dll",
  4589. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  4590. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  4591. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  4592. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  4593. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  4594. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  4595. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  4596. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  4597. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  4598. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  4599. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  4600. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  4601. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  4602. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  4603. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  4604. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  4605. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  4606. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  4607. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  4608. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  4609. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  4610. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  4611. "ref/xamarinios10/_._",
  4612. "ref/xamarinmac20/_._",
  4613. "ref/xamarintvos10/_._",
  4614. "ref/xamarinwatchos10/_._",
  4615. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  4616. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  4617. "system.reflection.typeextensions.nuspec"
  4618. ]
  4619. },
  4620. "System.Resources.ResourceManager/4.3.0": {
  4621. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  4622. "type": "package",
  4623. "path": "system.resources.resourcemanager/4.3.0",
  4624. "files": [
  4625. ".nupkg.metadata",
  4626. ".signature.p7s",
  4627. "ThirdPartyNotices.txt",
  4628. "dotnet_library_license.txt",
  4629. "lib/MonoAndroid10/_._",
  4630. "lib/MonoTouch10/_._",
  4631. "lib/net45/_._",
  4632. "lib/portable-net45+win8+wp8+wpa81/_._",
  4633. "lib/win8/_._",
  4634. "lib/wp80/_._",
  4635. "lib/wpa81/_._",
  4636. "lib/xamarinios10/_._",
  4637. "lib/xamarinmac20/_._",
  4638. "lib/xamarintvos10/_._",
  4639. "lib/xamarinwatchos10/_._",
  4640. "ref/MonoAndroid10/_._",
  4641. "ref/MonoTouch10/_._",
  4642. "ref/net45/_._",
  4643. "ref/netcore50/System.Resources.ResourceManager.dll",
  4644. "ref/netcore50/System.Resources.ResourceManager.xml",
  4645. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  4646. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  4647. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  4648. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  4649. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  4650. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  4651. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  4652. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  4653. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  4654. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  4655. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  4656. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  4657. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  4658. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  4659. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  4660. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  4661. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  4662. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  4663. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  4664. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  4665. "ref/portable-net45+win8+wp8+wpa81/_._",
  4666. "ref/win8/_._",
  4667. "ref/wp80/_._",
  4668. "ref/wpa81/_._",
  4669. "ref/xamarinios10/_._",
  4670. "ref/xamarinmac20/_._",
  4671. "ref/xamarintvos10/_._",
  4672. "ref/xamarinwatchos10/_._",
  4673. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  4674. "system.resources.resourcemanager.nuspec"
  4675. ]
  4676. },
  4677. "System.Runtime/4.3.0": {
  4678. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  4679. "type": "package",
  4680. "path": "system.runtime/4.3.0",
  4681. "files": [
  4682. ".nupkg.metadata",
  4683. ".signature.p7s",
  4684. "ThirdPartyNotices.txt",
  4685. "dotnet_library_license.txt",
  4686. "lib/MonoAndroid10/_._",
  4687. "lib/MonoTouch10/_._",
  4688. "lib/net45/_._",
  4689. "lib/net462/System.Runtime.dll",
  4690. "lib/portable-net45+win8+wp80+wpa81/_._",
  4691. "lib/win8/_._",
  4692. "lib/wp80/_._",
  4693. "lib/wpa81/_._",
  4694. "lib/xamarinios10/_._",
  4695. "lib/xamarinmac20/_._",
  4696. "lib/xamarintvos10/_._",
  4697. "lib/xamarinwatchos10/_._",
  4698. "ref/MonoAndroid10/_._",
  4699. "ref/MonoTouch10/_._",
  4700. "ref/net45/_._",
  4701. "ref/net462/System.Runtime.dll",
  4702. "ref/netcore50/System.Runtime.dll",
  4703. "ref/netcore50/System.Runtime.xml",
  4704. "ref/netcore50/de/System.Runtime.xml",
  4705. "ref/netcore50/es/System.Runtime.xml",
  4706. "ref/netcore50/fr/System.Runtime.xml",
  4707. "ref/netcore50/it/System.Runtime.xml",
  4708. "ref/netcore50/ja/System.Runtime.xml",
  4709. "ref/netcore50/ko/System.Runtime.xml",
  4710. "ref/netcore50/ru/System.Runtime.xml",
  4711. "ref/netcore50/zh-hans/System.Runtime.xml",
  4712. "ref/netcore50/zh-hant/System.Runtime.xml",
  4713. "ref/netstandard1.0/System.Runtime.dll",
  4714. "ref/netstandard1.0/System.Runtime.xml",
  4715. "ref/netstandard1.0/de/System.Runtime.xml",
  4716. "ref/netstandard1.0/es/System.Runtime.xml",
  4717. "ref/netstandard1.0/fr/System.Runtime.xml",
  4718. "ref/netstandard1.0/it/System.Runtime.xml",
  4719. "ref/netstandard1.0/ja/System.Runtime.xml",
  4720. "ref/netstandard1.0/ko/System.Runtime.xml",
  4721. "ref/netstandard1.0/ru/System.Runtime.xml",
  4722. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  4723. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  4724. "ref/netstandard1.2/System.Runtime.dll",
  4725. "ref/netstandard1.2/System.Runtime.xml",
  4726. "ref/netstandard1.2/de/System.Runtime.xml",
  4727. "ref/netstandard1.2/es/System.Runtime.xml",
  4728. "ref/netstandard1.2/fr/System.Runtime.xml",
  4729. "ref/netstandard1.2/it/System.Runtime.xml",
  4730. "ref/netstandard1.2/ja/System.Runtime.xml",
  4731. "ref/netstandard1.2/ko/System.Runtime.xml",
  4732. "ref/netstandard1.2/ru/System.Runtime.xml",
  4733. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  4734. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  4735. "ref/netstandard1.3/System.Runtime.dll",
  4736. "ref/netstandard1.3/System.Runtime.xml",
  4737. "ref/netstandard1.3/de/System.Runtime.xml",
  4738. "ref/netstandard1.3/es/System.Runtime.xml",
  4739. "ref/netstandard1.3/fr/System.Runtime.xml",
  4740. "ref/netstandard1.3/it/System.Runtime.xml",
  4741. "ref/netstandard1.3/ja/System.Runtime.xml",
  4742. "ref/netstandard1.3/ko/System.Runtime.xml",
  4743. "ref/netstandard1.3/ru/System.Runtime.xml",
  4744. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  4745. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  4746. "ref/netstandard1.5/System.Runtime.dll",
  4747. "ref/netstandard1.5/System.Runtime.xml",
  4748. "ref/netstandard1.5/de/System.Runtime.xml",
  4749. "ref/netstandard1.5/es/System.Runtime.xml",
  4750. "ref/netstandard1.5/fr/System.Runtime.xml",
  4751. "ref/netstandard1.5/it/System.Runtime.xml",
  4752. "ref/netstandard1.5/ja/System.Runtime.xml",
  4753. "ref/netstandard1.5/ko/System.Runtime.xml",
  4754. "ref/netstandard1.5/ru/System.Runtime.xml",
  4755. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  4756. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  4757. "ref/portable-net45+win8+wp80+wpa81/_._",
  4758. "ref/win8/_._",
  4759. "ref/wp80/_._",
  4760. "ref/wpa81/_._",
  4761. "ref/xamarinios10/_._",
  4762. "ref/xamarinmac20/_._",
  4763. "ref/xamarintvos10/_._",
  4764. "ref/xamarinwatchos10/_._",
  4765. "system.runtime.4.3.0.nupkg.sha512",
  4766. "system.runtime.nuspec"
  4767. ]
  4768. },
  4769. "System.Runtime.Extensions/4.3.0": {
  4770. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  4771. "type": "package",
  4772. "path": "system.runtime.extensions/4.3.0",
  4773. "files": [
  4774. ".nupkg.metadata",
  4775. ".signature.p7s",
  4776. "ThirdPartyNotices.txt",
  4777. "dotnet_library_license.txt",
  4778. "lib/MonoAndroid10/_._",
  4779. "lib/MonoTouch10/_._",
  4780. "lib/net45/_._",
  4781. "lib/net462/System.Runtime.Extensions.dll",
  4782. "lib/portable-net45+win8+wp8+wpa81/_._",
  4783. "lib/win8/_._",
  4784. "lib/wp80/_._",
  4785. "lib/wpa81/_._",
  4786. "lib/xamarinios10/_._",
  4787. "lib/xamarinmac20/_._",
  4788. "lib/xamarintvos10/_._",
  4789. "lib/xamarinwatchos10/_._",
  4790. "ref/MonoAndroid10/_._",
  4791. "ref/MonoTouch10/_._",
  4792. "ref/net45/_._",
  4793. "ref/net462/System.Runtime.Extensions.dll",
  4794. "ref/netcore50/System.Runtime.Extensions.dll",
  4795. "ref/netcore50/System.Runtime.Extensions.xml",
  4796. "ref/netcore50/de/System.Runtime.Extensions.xml",
  4797. "ref/netcore50/es/System.Runtime.Extensions.xml",
  4798. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  4799. "ref/netcore50/it/System.Runtime.Extensions.xml",
  4800. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  4801. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  4802. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  4803. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  4804. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  4805. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  4806. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  4807. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  4808. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  4809. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  4810. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  4811. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  4812. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  4813. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  4814. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  4815. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  4816. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  4817. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  4818. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  4819. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  4820. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  4821. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  4822. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  4823. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  4824. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  4825. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  4826. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  4827. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  4828. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  4829. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  4830. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  4831. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  4832. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  4833. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  4834. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  4835. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  4836. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  4837. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  4838. "ref/portable-net45+win8+wp8+wpa81/_._",
  4839. "ref/win8/_._",
  4840. "ref/wp80/_._",
  4841. "ref/wpa81/_._",
  4842. "ref/xamarinios10/_._",
  4843. "ref/xamarinmac20/_._",
  4844. "ref/xamarintvos10/_._",
  4845. "ref/xamarinwatchos10/_._",
  4846. "system.runtime.extensions.4.3.0.nupkg.sha512",
  4847. "system.runtime.extensions.nuspec"
  4848. ]
  4849. },
  4850. "System.Runtime.Handles/4.3.0": {
  4851. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  4852. "type": "package",
  4853. "path": "system.runtime.handles/4.3.0",
  4854. "files": [
  4855. ".nupkg.metadata",
  4856. ".signature.p7s",
  4857. "ThirdPartyNotices.txt",
  4858. "dotnet_library_license.txt",
  4859. "lib/MonoAndroid10/_._",
  4860. "lib/MonoTouch10/_._",
  4861. "lib/net46/_._",
  4862. "lib/xamarinios10/_._",
  4863. "lib/xamarinmac20/_._",
  4864. "lib/xamarintvos10/_._",
  4865. "lib/xamarinwatchos10/_._",
  4866. "ref/MonoAndroid10/_._",
  4867. "ref/MonoTouch10/_._",
  4868. "ref/net46/_._",
  4869. "ref/netstandard1.3/System.Runtime.Handles.dll",
  4870. "ref/netstandard1.3/System.Runtime.Handles.xml",
  4871. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  4872. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  4873. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  4874. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  4875. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  4876. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  4877. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  4878. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  4879. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  4880. "ref/xamarinios10/_._",
  4881. "ref/xamarinmac20/_._",
  4882. "ref/xamarintvos10/_._",
  4883. "ref/xamarinwatchos10/_._",
  4884. "system.runtime.handles.4.3.0.nupkg.sha512",
  4885. "system.runtime.handles.nuspec"
  4886. ]
  4887. },
  4888. "System.Runtime.InteropServices/4.3.0": {
  4889. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  4890. "type": "package",
  4891. "path": "system.runtime.interopservices/4.3.0",
  4892. "files": [
  4893. ".nupkg.metadata",
  4894. ".signature.p7s",
  4895. "ThirdPartyNotices.txt",
  4896. "dotnet_library_license.txt",
  4897. "lib/MonoAndroid10/_._",
  4898. "lib/MonoTouch10/_._",
  4899. "lib/net45/_._",
  4900. "lib/net462/System.Runtime.InteropServices.dll",
  4901. "lib/net463/System.Runtime.InteropServices.dll",
  4902. "lib/portable-net45+win8+wpa81/_._",
  4903. "lib/win8/_._",
  4904. "lib/wpa81/_._",
  4905. "lib/xamarinios10/_._",
  4906. "lib/xamarinmac20/_._",
  4907. "lib/xamarintvos10/_._",
  4908. "lib/xamarinwatchos10/_._",
  4909. "ref/MonoAndroid10/_._",
  4910. "ref/MonoTouch10/_._",
  4911. "ref/net45/_._",
  4912. "ref/net462/System.Runtime.InteropServices.dll",
  4913. "ref/net463/System.Runtime.InteropServices.dll",
  4914. "ref/netcore50/System.Runtime.InteropServices.dll",
  4915. "ref/netcore50/System.Runtime.InteropServices.xml",
  4916. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  4917. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  4918. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  4919. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  4920. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  4921. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  4922. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  4923. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  4924. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  4925. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  4926. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  4927. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  4928. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  4929. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  4930. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  4931. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  4932. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  4933. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  4934. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  4935. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  4936. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  4937. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  4938. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  4939. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  4940. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  4941. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  4942. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  4943. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  4944. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  4945. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  4946. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  4947. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  4948. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  4949. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  4950. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  4951. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  4952. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  4953. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  4954. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  4955. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  4956. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  4957. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  4958. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  4959. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  4960. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  4961. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  4962. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  4963. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  4964. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  4965. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  4966. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  4967. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  4968. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  4969. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  4970. "ref/portable-net45+win8+wpa81/_._",
  4971. "ref/win8/_._",
  4972. "ref/wpa81/_._",
  4973. "ref/xamarinios10/_._",
  4974. "ref/xamarinmac20/_._",
  4975. "ref/xamarintvos10/_._",
  4976. "ref/xamarinwatchos10/_._",
  4977. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  4978. "system.runtime.interopservices.nuspec"
  4979. ]
  4980. },
  4981. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  4982. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  4983. "type": "package",
  4984. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  4985. "files": [
  4986. ".nupkg.metadata",
  4987. ".signature.p7s",
  4988. "ThirdPartyNotices.txt",
  4989. "dotnet_library_license.txt",
  4990. "lib/MonoAndroid10/_._",
  4991. "lib/MonoTouch10/_._",
  4992. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  4993. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  4994. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  4995. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  4996. "lib/xamarinios10/_._",
  4997. "lib/xamarinmac20/_._",
  4998. "lib/xamarintvos10/_._",
  4999. "lib/xamarinwatchos10/_._",
  5000. "ref/MonoAndroid10/_._",
  5001. "ref/MonoTouch10/_._",
  5002. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5003. "ref/xamarinios10/_._",
  5004. "ref/xamarinmac20/_._",
  5005. "ref/xamarintvos10/_._",
  5006. "ref/xamarinwatchos10/_._",
  5007. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  5008. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5009. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  5010. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  5011. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  5012. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  5013. "system.runtime.interopservices.runtimeinformation.nuspec"
  5014. ]
  5015. },
  5016. "System.Runtime.Numerics/4.3.0": {
  5017. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  5018. "type": "package",
  5019. "path": "system.runtime.numerics/4.3.0",
  5020. "files": [
  5021. ".nupkg.metadata",
  5022. ".signature.p7s",
  5023. "ThirdPartyNotices.txt",
  5024. "dotnet_library_license.txt",
  5025. "lib/MonoAndroid10/_._",
  5026. "lib/MonoTouch10/_._",
  5027. "lib/net45/_._",
  5028. "lib/netcore50/System.Runtime.Numerics.dll",
  5029. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  5030. "lib/portable-net45+win8+wpa81/_._",
  5031. "lib/win8/_._",
  5032. "lib/wpa81/_._",
  5033. "lib/xamarinios10/_._",
  5034. "lib/xamarinmac20/_._",
  5035. "lib/xamarintvos10/_._",
  5036. "lib/xamarinwatchos10/_._",
  5037. "ref/MonoAndroid10/_._",
  5038. "ref/MonoTouch10/_._",
  5039. "ref/net45/_._",
  5040. "ref/netcore50/System.Runtime.Numerics.dll",
  5041. "ref/netcore50/System.Runtime.Numerics.xml",
  5042. "ref/netcore50/de/System.Runtime.Numerics.xml",
  5043. "ref/netcore50/es/System.Runtime.Numerics.xml",
  5044. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  5045. "ref/netcore50/it/System.Runtime.Numerics.xml",
  5046. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  5047. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  5048. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  5049. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  5050. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  5051. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  5052. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  5053. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  5054. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  5055. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  5056. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  5057. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  5058. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  5059. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  5060. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  5061. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  5062. "ref/portable-net45+win8+wpa81/_._",
  5063. "ref/win8/_._",
  5064. "ref/wpa81/_._",
  5065. "ref/xamarinios10/_._",
  5066. "ref/xamarinmac20/_._",
  5067. "ref/xamarintvos10/_._",
  5068. "ref/xamarinwatchos10/_._",
  5069. "system.runtime.numerics.4.3.0.nupkg.sha512",
  5070. "system.runtime.numerics.nuspec"
  5071. ]
  5072. },
  5073. "System.Runtime.Serialization.Primitives/4.1.1": {
  5074. "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
  5075. "type": "package",
  5076. "path": "system.runtime.serialization.primitives/4.1.1",
  5077. "files": [
  5078. ".nupkg.metadata",
  5079. ".signature.p7s",
  5080. "ThirdPartyNotices.txt",
  5081. "dotnet_library_license.txt",
  5082. "lib/MonoAndroid10/_._",
  5083. "lib/MonoTouch10/_._",
  5084. "lib/net45/_._",
  5085. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  5086. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  5087. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  5088. "lib/portable-net45+win8+wp8+wpa81/_._",
  5089. "lib/win8/_._",
  5090. "lib/wp80/_._",
  5091. "lib/wpa81/_._",
  5092. "lib/xamarinios10/_._",
  5093. "lib/xamarinmac20/_._",
  5094. "lib/xamarintvos10/_._",
  5095. "lib/xamarinwatchos10/_._",
  5096. "ref/MonoAndroid10/_._",
  5097. "ref/MonoTouch10/_._",
  5098. "ref/net45/_._",
  5099. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  5100. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  5101. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  5102. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  5103. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  5104. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  5105. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  5106. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  5107. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  5108. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  5109. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5110. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5111. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  5112. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  5113. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  5114. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  5115. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  5116. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  5117. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  5118. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  5119. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  5120. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5121. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5122. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  5123. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  5124. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  5125. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  5126. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  5127. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  5128. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  5129. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  5130. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  5131. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  5132. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  5133. "ref/portable-net45+win8+wp8+wpa81/_._",
  5134. "ref/win8/_._",
  5135. "ref/wp80/_._",
  5136. "ref/wpa81/_._",
  5137. "ref/xamarinios10/_._",
  5138. "ref/xamarinmac20/_._",
  5139. "ref/xamarintvos10/_._",
  5140. "ref/xamarinwatchos10/_._",
  5141. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  5142. "system.runtime.serialization.primitives.4.1.1.nupkg.sha512",
  5143. "system.runtime.serialization.primitives.nuspec"
  5144. ]
  5145. },
  5146. "System.Security.Cryptography.Algorithms/4.3.0": {
  5147. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  5148. "type": "package",
  5149. "path": "system.security.cryptography.algorithms/4.3.0",
  5150. "files": [
  5151. ".nupkg.metadata",
  5152. ".signature.p7s",
  5153. "ThirdPartyNotices.txt",
  5154. "dotnet_library_license.txt",
  5155. "lib/MonoAndroid10/_._",
  5156. "lib/MonoTouch10/_._",
  5157. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  5158. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  5159. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  5160. "lib/xamarinios10/_._",
  5161. "lib/xamarinmac20/_._",
  5162. "lib/xamarintvos10/_._",
  5163. "lib/xamarinwatchos10/_._",
  5164. "ref/MonoAndroid10/_._",
  5165. "ref/MonoTouch10/_._",
  5166. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  5167. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  5168. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  5169. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  5170. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  5171. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  5172. "ref/xamarinios10/_._",
  5173. "ref/xamarinmac20/_._",
  5174. "ref/xamarintvos10/_._",
  5175. "ref/xamarinwatchos10/_._",
  5176. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  5177. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  5178. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  5179. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  5180. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  5181. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  5182. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  5183. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  5184. "system.security.cryptography.algorithms.nuspec"
  5185. ]
  5186. },
  5187. "System.Security.Cryptography.Cng/4.3.0": {
  5188. "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  5189. "type": "package",
  5190. "path": "system.security.cryptography.cng/4.3.0",
  5191. "files": [
  5192. ".nupkg.metadata",
  5193. ".signature.p7s",
  5194. "ThirdPartyNotices.txt",
  5195. "dotnet_library_license.txt",
  5196. "lib/net46/System.Security.Cryptography.Cng.dll",
  5197. "lib/net461/System.Security.Cryptography.Cng.dll",
  5198. "lib/net463/System.Security.Cryptography.Cng.dll",
  5199. "ref/net46/System.Security.Cryptography.Cng.dll",
  5200. "ref/net461/System.Security.Cryptography.Cng.dll",
  5201. "ref/net463/System.Security.Cryptography.Cng.dll",
  5202. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  5203. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5204. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5205. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5206. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  5207. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  5208. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  5209. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  5210. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  5211. "system.security.cryptography.cng.4.3.0.nupkg.sha512",
  5212. "system.security.cryptography.cng.nuspec"
  5213. ]
  5214. },
  5215. "System.Security.Cryptography.Csp/4.3.0": {
  5216. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  5217. "type": "package",
  5218. "path": "system.security.cryptography.csp/4.3.0",
  5219. "files": [
  5220. ".nupkg.metadata",
  5221. ".signature.p7s",
  5222. "ThirdPartyNotices.txt",
  5223. "dotnet_library_license.txt",
  5224. "lib/MonoAndroid10/_._",
  5225. "lib/MonoTouch10/_._",
  5226. "lib/net46/System.Security.Cryptography.Csp.dll",
  5227. "lib/xamarinios10/_._",
  5228. "lib/xamarinmac20/_._",
  5229. "lib/xamarintvos10/_._",
  5230. "lib/xamarinwatchos10/_._",
  5231. "ref/MonoAndroid10/_._",
  5232. "ref/MonoTouch10/_._",
  5233. "ref/net46/System.Security.Cryptography.Csp.dll",
  5234. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  5235. "ref/xamarinios10/_._",
  5236. "ref/xamarinmac20/_._",
  5237. "ref/xamarintvos10/_._",
  5238. "ref/xamarinwatchos10/_._",
  5239. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  5240. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  5241. "runtimes/win/lib/netcore50/_._",
  5242. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  5243. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  5244. "system.security.cryptography.csp.nuspec"
  5245. ]
  5246. },
  5247. "System.Security.Cryptography.Encoding/4.3.0": {
  5248. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  5249. "type": "package",
  5250. "path": "system.security.cryptography.encoding/4.3.0",
  5251. "files": [
  5252. ".nupkg.metadata",
  5253. ".signature.p7s",
  5254. "ThirdPartyNotices.txt",
  5255. "dotnet_library_license.txt",
  5256. "lib/MonoAndroid10/_._",
  5257. "lib/MonoTouch10/_._",
  5258. "lib/net46/System.Security.Cryptography.Encoding.dll",
  5259. "lib/xamarinios10/_._",
  5260. "lib/xamarinmac20/_._",
  5261. "lib/xamarintvos10/_._",
  5262. "lib/xamarinwatchos10/_._",
  5263. "ref/MonoAndroid10/_._",
  5264. "ref/MonoTouch10/_._",
  5265. "ref/net46/System.Security.Cryptography.Encoding.dll",
  5266. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  5267. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  5268. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  5269. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  5270. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  5271. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  5272. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  5273. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  5274. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  5275. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  5276. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  5277. "ref/xamarinios10/_._",
  5278. "ref/xamarinmac20/_._",
  5279. "ref/xamarintvos10/_._",
  5280. "ref/xamarinwatchos10/_._",
  5281. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  5282. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  5283. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  5284. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  5285. "system.security.cryptography.encoding.nuspec"
  5286. ]
  5287. },
  5288. "System.Security.Cryptography.OpenSsl/4.3.0": {
  5289. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  5290. "type": "package",
  5291. "path": "system.security.cryptography.openssl/4.3.0",
  5292. "files": [
  5293. ".nupkg.metadata",
  5294. ".signature.p7s",
  5295. "ThirdPartyNotices.txt",
  5296. "dotnet_library_license.txt",
  5297. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  5298. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  5299. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  5300. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5301. "system.security.cryptography.openssl.nuspec"
  5302. ]
  5303. },
  5304. "System.Security.Cryptography.Primitives/4.3.0": {
  5305. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  5306. "type": "package",
  5307. "path": "system.security.cryptography.primitives/4.3.0",
  5308. "files": [
  5309. ".nupkg.metadata",
  5310. ".signature.p7s",
  5311. "ThirdPartyNotices.txt",
  5312. "dotnet_library_license.txt",
  5313. "lib/MonoAndroid10/_._",
  5314. "lib/MonoTouch10/_._",
  5315. "lib/net46/System.Security.Cryptography.Primitives.dll",
  5316. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  5317. "lib/xamarinios10/_._",
  5318. "lib/xamarinmac20/_._",
  5319. "lib/xamarintvos10/_._",
  5320. "lib/xamarinwatchos10/_._",
  5321. "ref/MonoAndroid10/_._",
  5322. "ref/MonoTouch10/_._",
  5323. "ref/net46/System.Security.Cryptography.Primitives.dll",
  5324. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  5325. "ref/xamarinios10/_._",
  5326. "ref/xamarinmac20/_._",
  5327. "ref/xamarintvos10/_._",
  5328. "ref/xamarinwatchos10/_._",
  5329. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  5330. "system.security.cryptography.primitives.nuspec"
  5331. ]
  5332. },
  5333. "System.Security.Cryptography.X509Certificates/4.3.0": {
  5334. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  5335. "type": "package",
  5336. "path": "system.security.cryptography.x509certificates/4.3.0",
  5337. "files": [
  5338. ".nupkg.metadata",
  5339. ".signature.p7s",
  5340. "ThirdPartyNotices.txt",
  5341. "dotnet_library_license.txt",
  5342. "lib/MonoAndroid10/_._",
  5343. "lib/MonoTouch10/_._",
  5344. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  5345. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  5346. "lib/xamarinios10/_._",
  5347. "lib/xamarinmac20/_._",
  5348. "lib/xamarintvos10/_._",
  5349. "lib/xamarinwatchos10/_._",
  5350. "ref/MonoAndroid10/_._",
  5351. "ref/MonoTouch10/_._",
  5352. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  5353. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  5354. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  5355. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  5356. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  5357. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  5358. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  5359. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  5360. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  5361. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  5362. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  5363. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  5364. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  5365. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  5366. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  5367. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  5368. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  5369. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  5370. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  5371. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  5372. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  5373. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  5374. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  5375. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  5376. "ref/xamarinios10/_._",
  5377. "ref/xamarinmac20/_._",
  5378. "ref/xamarintvos10/_._",
  5379. "ref/xamarinwatchos10/_._",
  5380. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  5381. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  5382. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  5383. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  5384. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  5385. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  5386. "system.security.cryptography.x509certificates.nuspec"
  5387. ]
  5388. },
  5389. "System.Text.Encoding/4.3.0": {
  5390. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  5391. "type": "package",
  5392. "path": "system.text.encoding/4.3.0",
  5393. "files": [
  5394. ".nupkg.metadata",
  5395. ".signature.p7s",
  5396. "ThirdPartyNotices.txt",
  5397. "dotnet_library_license.txt",
  5398. "lib/MonoAndroid10/_._",
  5399. "lib/MonoTouch10/_._",
  5400. "lib/net45/_._",
  5401. "lib/portable-net45+win8+wp8+wpa81/_._",
  5402. "lib/win8/_._",
  5403. "lib/wp80/_._",
  5404. "lib/wpa81/_._",
  5405. "lib/xamarinios10/_._",
  5406. "lib/xamarinmac20/_._",
  5407. "lib/xamarintvos10/_._",
  5408. "lib/xamarinwatchos10/_._",
  5409. "ref/MonoAndroid10/_._",
  5410. "ref/MonoTouch10/_._",
  5411. "ref/net45/_._",
  5412. "ref/netcore50/System.Text.Encoding.dll",
  5413. "ref/netcore50/System.Text.Encoding.xml",
  5414. "ref/netcore50/de/System.Text.Encoding.xml",
  5415. "ref/netcore50/es/System.Text.Encoding.xml",
  5416. "ref/netcore50/fr/System.Text.Encoding.xml",
  5417. "ref/netcore50/it/System.Text.Encoding.xml",
  5418. "ref/netcore50/ja/System.Text.Encoding.xml",
  5419. "ref/netcore50/ko/System.Text.Encoding.xml",
  5420. "ref/netcore50/ru/System.Text.Encoding.xml",
  5421. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  5422. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  5423. "ref/netstandard1.0/System.Text.Encoding.dll",
  5424. "ref/netstandard1.0/System.Text.Encoding.xml",
  5425. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  5426. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  5427. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  5428. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  5429. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  5430. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  5431. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  5432. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  5433. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  5434. "ref/netstandard1.3/System.Text.Encoding.dll",
  5435. "ref/netstandard1.3/System.Text.Encoding.xml",
  5436. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  5437. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  5438. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  5439. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  5440. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  5441. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  5442. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  5443. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  5444. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  5445. "ref/portable-net45+win8+wp8+wpa81/_._",
  5446. "ref/win8/_._",
  5447. "ref/wp80/_._",
  5448. "ref/wpa81/_._",
  5449. "ref/xamarinios10/_._",
  5450. "ref/xamarinmac20/_._",
  5451. "ref/xamarintvos10/_._",
  5452. "ref/xamarinwatchos10/_._",
  5453. "system.text.encoding.4.3.0.nupkg.sha512",
  5454. "system.text.encoding.nuspec"
  5455. ]
  5456. },
  5457. "System.Text.Encoding.Extensions/4.3.0": {
  5458. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  5459. "type": "package",
  5460. "path": "system.text.encoding.extensions/4.3.0",
  5461. "files": [
  5462. ".nupkg.metadata",
  5463. ".signature.p7s",
  5464. "ThirdPartyNotices.txt",
  5465. "dotnet_library_license.txt",
  5466. "lib/MonoAndroid10/_._",
  5467. "lib/MonoTouch10/_._",
  5468. "lib/net45/_._",
  5469. "lib/portable-net45+win8+wp8+wpa81/_._",
  5470. "lib/win8/_._",
  5471. "lib/wp80/_._",
  5472. "lib/wpa81/_._",
  5473. "lib/xamarinios10/_._",
  5474. "lib/xamarinmac20/_._",
  5475. "lib/xamarintvos10/_._",
  5476. "lib/xamarinwatchos10/_._",
  5477. "ref/MonoAndroid10/_._",
  5478. "ref/MonoTouch10/_._",
  5479. "ref/net45/_._",
  5480. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  5481. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  5482. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  5483. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  5484. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  5485. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  5486. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  5487. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  5488. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  5489. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  5490. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  5491. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  5492. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  5493. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  5494. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  5495. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  5496. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  5497. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  5498. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  5499. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  5500. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  5501. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  5502. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  5503. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  5504. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  5505. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  5506. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  5507. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  5508. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  5509. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  5510. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  5511. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  5512. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  5513. "ref/portable-net45+win8+wp8+wpa81/_._",
  5514. "ref/win8/_._",
  5515. "ref/wp80/_._",
  5516. "ref/wpa81/_._",
  5517. "ref/xamarinios10/_._",
  5518. "ref/xamarinmac20/_._",
  5519. "ref/xamarintvos10/_._",
  5520. "ref/xamarinwatchos10/_._",
  5521. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  5522. "system.text.encoding.extensions.nuspec"
  5523. ]
  5524. },
  5525. "System.Text.RegularExpressions/4.3.0": {
  5526. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  5527. "type": "package",
  5528. "path": "system.text.regularexpressions/4.3.0",
  5529. "files": [
  5530. ".nupkg.metadata",
  5531. ".signature.p7s",
  5532. "ThirdPartyNotices.txt",
  5533. "dotnet_library_license.txt",
  5534. "lib/MonoAndroid10/_._",
  5535. "lib/MonoTouch10/_._",
  5536. "lib/net45/_._",
  5537. "lib/net463/System.Text.RegularExpressions.dll",
  5538. "lib/netcore50/System.Text.RegularExpressions.dll",
  5539. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  5540. "lib/portable-net45+win8+wp8+wpa81/_._",
  5541. "lib/win8/_._",
  5542. "lib/wp80/_._",
  5543. "lib/wpa81/_._",
  5544. "lib/xamarinios10/_._",
  5545. "lib/xamarinmac20/_._",
  5546. "lib/xamarintvos10/_._",
  5547. "lib/xamarinwatchos10/_._",
  5548. "ref/MonoAndroid10/_._",
  5549. "ref/MonoTouch10/_._",
  5550. "ref/net45/_._",
  5551. "ref/net463/System.Text.RegularExpressions.dll",
  5552. "ref/netcore50/System.Text.RegularExpressions.dll",
  5553. "ref/netcore50/System.Text.RegularExpressions.xml",
  5554. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  5555. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  5556. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  5557. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  5558. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  5559. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  5560. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  5561. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  5562. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  5563. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  5564. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  5565. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  5566. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  5567. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  5568. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  5569. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  5570. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  5571. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  5572. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  5573. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  5574. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  5575. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  5576. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  5577. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  5578. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  5579. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  5580. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  5581. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  5582. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  5583. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  5584. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  5585. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  5586. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  5587. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  5588. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  5589. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  5590. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  5591. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  5592. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  5593. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  5594. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  5595. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  5596. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  5597. "ref/portable-net45+win8+wp8+wpa81/_._",
  5598. "ref/win8/_._",
  5599. "ref/wp80/_._",
  5600. "ref/wpa81/_._",
  5601. "ref/xamarinios10/_._",
  5602. "ref/xamarinmac20/_._",
  5603. "ref/xamarintvos10/_._",
  5604. "ref/xamarinwatchos10/_._",
  5605. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  5606. "system.text.regularexpressions.nuspec"
  5607. ]
  5608. },
  5609. "System.Threading/4.3.0": {
  5610. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  5611. "type": "package",
  5612. "path": "system.threading/4.3.0",
  5613. "files": [
  5614. ".nupkg.metadata",
  5615. ".signature.p7s",
  5616. "ThirdPartyNotices.txt",
  5617. "dotnet_library_license.txt",
  5618. "lib/MonoAndroid10/_._",
  5619. "lib/MonoTouch10/_._",
  5620. "lib/net45/_._",
  5621. "lib/netcore50/System.Threading.dll",
  5622. "lib/netstandard1.3/System.Threading.dll",
  5623. "lib/portable-net45+win8+wp8+wpa81/_._",
  5624. "lib/win8/_._",
  5625. "lib/wp80/_._",
  5626. "lib/wpa81/_._",
  5627. "lib/xamarinios10/_._",
  5628. "lib/xamarinmac20/_._",
  5629. "lib/xamarintvos10/_._",
  5630. "lib/xamarinwatchos10/_._",
  5631. "ref/MonoAndroid10/_._",
  5632. "ref/MonoTouch10/_._",
  5633. "ref/net45/_._",
  5634. "ref/netcore50/System.Threading.dll",
  5635. "ref/netcore50/System.Threading.xml",
  5636. "ref/netcore50/de/System.Threading.xml",
  5637. "ref/netcore50/es/System.Threading.xml",
  5638. "ref/netcore50/fr/System.Threading.xml",
  5639. "ref/netcore50/it/System.Threading.xml",
  5640. "ref/netcore50/ja/System.Threading.xml",
  5641. "ref/netcore50/ko/System.Threading.xml",
  5642. "ref/netcore50/ru/System.Threading.xml",
  5643. "ref/netcore50/zh-hans/System.Threading.xml",
  5644. "ref/netcore50/zh-hant/System.Threading.xml",
  5645. "ref/netstandard1.0/System.Threading.dll",
  5646. "ref/netstandard1.0/System.Threading.xml",
  5647. "ref/netstandard1.0/de/System.Threading.xml",
  5648. "ref/netstandard1.0/es/System.Threading.xml",
  5649. "ref/netstandard1.0/fr/System.Threading.xml",
  5650. "ref/netstandard1.0/it/System.Threading.xml",
  5651. "ref/netstandard1.0/ja/System.Threading.xml",
  5652. "ref/netstandard1.0/ko/System.Threading.xml",
  5653. "ref/netstandard1.0/ru/System.Threading.xml",
  5654. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  5655. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  5656. "ref/netstandard1.3/System.Threading.dll",
  5657. "ref/netstandard1.3/System.Threading.xml",
  5658. "ref/netstandard1.3/de/System.Threading.xml",
  5659. "ref/netstandard1.3/es/System.Threading.xml",
  5660. "ref/netstandard1.3/fr/System.Threading.xml",
  5661. "ref/netstandard1.3/it/System.Threading.xml",
  5662. "ref/netstandard1.3/ja/System.Threading.xml",
  5663. "ref/netstandard1.3/ko/System.Threading.xml",
  5664. "ref/netstandard1.3/ru/System.Threading.xml",
  5665. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  5666. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  5667. "ref/portable-net45+win8+wp8+wpa81/_._",
  5668. "ref/win8/_._",
  5669. "ref/wp80/_._",
  5670. "ref/wpa81/_._",
  5671. "ref/xamarinios10/_._",
  5672. "ref/xamarinmac20/_._",
  5673. "ref/xamarintvos10/_._",
  5674. "ref/xamarinwatchos10/_._",
  5675. "runtimes/aot/lib/netcore50/System.Threading.dll",
  5676. "system.threading.4.3.0.nupkg.sha512",
  5677. "system.threading.nuspec"
  5678. ]
  5679. },
  5680. "System.Threading.Tasks/4.3.0": {
  5681. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  5682. "type": "package",
  5683. "path": "system.threading.tasks/4.3.0",
  5684. "files": [
  5685. ".nupkg.metadata",
  5686. ".signature.p7s",
  5687. "ThirdPartyNotices.txt",
  5688. "dotnet_library_license.txt",
  5689. "lib/MonoAndroid10/_._",
  5690. "lib/MonoTouch10/_._",
  5691. "lib/net45/_._",
  5692. "lib/portable-net45+win8+wp8+wpa81/_._",
  5693. "lib/win8/_._",
  5694. "lib/wp80/_._",
  5695. "lib/wpa81/_._",
  5696. "lib/xamarinios10/_._",
  5697. "lib/xamarinmac20/_._",
  5698. "lib/xamarintvos10/_._",
  5699. "lib/xamarinwatchos10/_._",
  5700. "ref/MonoAndroid10/_._",
  5701. "ref/MonoTouch10/_._",
  5702. "ref/net45/_._",
  5703. "ref/netcore50/System.Threading.Tasks.dll",
  5704. "ref/netcore50/System.Threading.Tasks.xml",
  5705. "ref/netcore50/de/System.Threading.Tasks.xml",
  5706. "ref/netcore50/es/System.Threading.Tasks.xml",
  5707. "ref/netcore50/fr/System.Threading.Tasks.xml",
  5708. "ref/netcore50/it/System.Threading.Tasks.xml",
  5709. "ref/netcore50/ja/System.Threading.Tasks.xml",
  5710. "ref/netcore50/ko/System.Threading.Tasks.xml",
  5711. "ref/netcore50/ru/System.Threading.Tasks.xml",
  5712. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  5713. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  5714. "ref/netstandard1.0/System.Threading.Tasks.dll",
  5715. "ref/netstandard1.0/System.Threading.Tasks.xml",
  5716. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  5717. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  5718. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  5719. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  5720. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  5721. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  5722. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  5723. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  5724. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  5725. "ref/netstandard1.3/System.Threading.Tasks.dll",
  5726. "ref/netstandard1.3/System.Threading.Tasks.xml",
  5727. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  5728. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  5729. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  5730. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  5731. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  5732. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  5733. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  5734. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  5735. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  5736. "ref/portable-net45+win8+wp8+wpa81/_._",
  5737. "ref/win8/_._",
  5738. "ref/wp80/_._",
  5739. "ref/wpa81/_._",
  5740. "ref/xamarinios10/_._",
  5741. "ref/xamarinmac20/_._",
  5742. "ref/xamarintvos10/_._",
  5743. "ref/xamarinwatchos10/_._",
  5744. "system.threading.tasks.4.3.0.nupkg.sha512",
  5745. "system.threading.tasks.nuspec"
  5746. ]
  5747. },
  5748. "System.Threading.Tasks.Extensions/4.3.0": {
  5749. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  5750. "type": "package",
  5751. "path": "system.threading.tasks.extensions/4.3.0",
  5752. "files": [
  5753. ".nupkg.metadata",
  5754. ".signature.p7s",
  5755. "ThirdPartyNotices.txt",
  5756. "dotnet_library_license.txt",
  5757. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  5758. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  5759. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  5760. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  5761. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  5762. "system.threading.tasks.extensions.nuspec"
  5763. ]
  5764. },
  5765. "System.Threading.Timer/4.3.0": {
  5766. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  5767. "type": "package",
  5768. "path": "system.threading.timer/4.3.0",
  5769. "files": [
  5770. ".nupkg.metadata",
  5771. ".signature.p7s",
  5772. "ThirdPartyNotices.txt",
  5773. "dotnet_library_license.txt",
  5774. "lib/MonoAndroid10/_._",
  5775. "lib/MonoTouch10/_._",
  5776. "lib/net451/_._",
  5777. "lib/portable-net451+win81+wpa81/_._",
  5778. "lib/win81/_._",
  5779. "lib/wpa81/_._",
  5780. "lib/xamarinios10/_._",
  5781. "lib/xamarinmac20/_._",
  5782. "lib/xamarintvos10/_._",
  5783. "lib/xamarinwatchos10/_._",
  5784. "ref/MonoAndroid10/_._",
  5785. "ref/MonoTouch10/_._",
  5786. "ref/net451/_._",
  5787. "ref/netcore50/System.Threading.Timer.dll",
  5788. "ref/netcore50/System.Threading.Timer.xml",
  5789. "ref/netcore50/de/System.Threading.Timer.xml",
  5790. "ref/netcore50/es/System.Threading.Timer.xml",
  5791. "ref/netcore50/fr/System.Threading.Timer.xml",
  5792. "ref/netcore50/it/System.Threading.Timer.xml",
  5793. "ref/netcore50/ja/System.Threading.Timer.xml",
  5794. "ref/netcore50/ko/System.Threading.Timer.xml",
  5795. "ref/netcore50/ru/System.Threading.Timer.xml",
  5796. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  5797. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  5798. "ref/netstandard1.2/System.Threading.Timer.dll",
  5799. "ref/netstandard1.2/System.Threading.Timer.xml",
  5800. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  5801. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  5802. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  5803. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  5804. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  5805. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  5806. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  5807. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  5808. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  5809. "ref/portable-net451+win81+wpa81/_._",
  5810. "ref/win81/_._",
  5811. "ref/wpa81/_._",
  5812. "ref/xamarinios10/_._",
  5813. "ref/xamarinmac20/_._",
  5814. "ref/xamarintvos10/_._",
  5815. "ref/xamarinwatchos10/_._",
  5816. "system.threading.timer.4.3.0.nupkg.sha512",
  5817. "system.threading.timer.nuspec"
  5818. ]
  5819. },
  5820. "System.Xml.ReaderWriter/4.3.0": {
  5821. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  5822. "type": "package",
  5823. "path": "system.xml.readerwriter/4.3.0",
  5824. "files": [
  5825. ".nupkg.metadata",
  5826. ".signature.p7s",
  5827. "ThirdPartyNotices.txt",
  5828. "dotnet_library_license.txt",
  5829. "lib/MonoAndroid10/_._",
  5830. "lib/MonoTouch10/_._",
  5831. "lib/net45/_._",
  5832. "lib/net46/System.Xml.ReaderWriter.dll",
  5833. "lib/netcore50/System.Xml.ReaderWriter.dll",
  5834. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  5835. "lib/portable-net45+win8+wp8+wpa81/_._",
  5836. "lib/win8/_._",
  5837. "lib/wp80/_._",
  5838. "lib/wpa81/_._",
  5839. "lib/xamarinios10/_._",
  5840. "lib/xamarinmac20/_._",
  5841. "lib/xamarintvos10/_._",
  5842. "lib/xamarinwatchos10/_._",
  5843. "ref/MonoAndroid10/_._",
  5844. "ref/MonoTouch10/_._",
  5845. "ref/net45/_._",
  5846. "ref/net46/System.Xml.ReaderWriter.dll",
  5847. "ref/netcore50/System.Xml.ReaderWriter.dll",
  5848. "ref/netcore50/System.Xml.ReaderWriter.xml",
  5849. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  5850. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  5851. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  5852. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  5853. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  5854. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  5855. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  5856. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  5857. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  5858. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  5859. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  5860. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  5861. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  5862. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  5863. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  5864. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  5865. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  5866. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  5867. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  5868. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  5869. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  5870. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  5871. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  5872. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  5873. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  5874. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  5875. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  5876. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  5877. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  5878. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  5879. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  5880. "ref/portable-net45+win8+wp8+wpa81/_._",
  5881. "ref/win8/_._",
  5882. "ref/wp80/_._",
  5883. "ref/wpa81/_._",
  5884. "ref/xamarinios10/_._",
  5885. "ref/xamarinmac20/_._",
  5886. "ref/xamarintvos10/_._",
  5887. "ref/xamarinwatchos10/_._",
  5888. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  5889. "system.xml.readerwriter.nuspec"
  5890. ]
  5891. },
  5892. "System.Xml.XDocument/4.3.0": {
  5893. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  5894. "type": "package",
  5895. "path": "system.xml.xdocument/4.3.0",
  5896. "files": [
  5897. ".nupkg.metadata",
  5898. ".signature.p7s",
  5899. "ThirdPartyNotices.txt",
  5900. "dotnet_library_license.txt",
  5901. "lib/MonoAndroid10/_._",
  5902. "lib/MonoTouch10/_._",
  5903. "lib/net45/_._",
  5904. "lib/netcore50/System.Xml.XDocument.dll",
  5905. "lib/netstandard1.3/System.Xml.XDocument.dll",
  5906. "lib/portable-net45+win8+wp8+wpa81/_._",
  5907. "lib/win8/_._",
  5908. "lib/wp80/_._",
  5909. "lib/wpa81/_._",
  5910. "lib/xamarinios10/_._",
  5911. "lib/xamarinmac20/_._",
  5912. "lib/xamarintvos10/_._",
  5913. "lib/xamarinwatchos10/_._",
  5914. "ref/MonoAndroid10/_._",
  5915. "ref/MonoTouch10/_._",
  5916. "ref/net45/_._",
  5917. "ref/netcore50/System.Xml.XDocument.dll",
  5918. "ref/netcore50/System.Xml.XDocument.xml",
  5919. "ref/netcore50/de/System.Xml.XDocument.xml",
  5920. "ref/netcore50/es/System.Xml.XDocument.xml",
  5921. "ref/netcore50/fr/System.Xml.XDocument.xml",
  5922. "ref/netcore50/it/System.Xml.XDocument.xml",
  5923. "ref/netcore50/ja/System.Xml.XDocument.xml",
  5924. "ref/netcore50/ko/System.Xml.XDocument.xml",
  5925. "ref/netcore50/ru/System.Xml.XDocument.xml",
  5926. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  5927. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  5928. "ref/netstandard1.0/System.Xml.XDocument.dll",
  5929. "ref/netstandard1.0/System.Xml.XDocument.xml",
  5930. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  5931. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  5932. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  5933. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  5934. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  5935. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  5936. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  5937. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  5938. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  5939. "ref/netstandard1.3/System.Xml.XDocument.dll",
  5940. "ref/netstandard1.3/System.Xml.XDocument.xml",
  5941. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  5942. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  5943. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  5944. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  5945. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  5946. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  5947. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  5948. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  5949. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  5950. "ref/portable-net45+win8+wp8+wpa81/_._",
  5951. "ref/win8/_._",
  5952. "ref/wp80/_._",
  5953. "ref/wpa81/_._",
  5954. "ref/xamarinios10/_._",
  5955. "ref/xamarinmac20/_._",
  5956. "ref/xamarintvos10/_._",
  5957. "ref/xamarinwatchos10/_._",
  5958. "system.xml.xdocument.4.3.0.nupkg.sha512",
  5959. "system.xml.xdocument.nuspec"
  5960. ]
  5961. },
  5962. "xunit/2.4.2": {
  5963. "sha512": "6Mj73Ont3zj2CJuoykVJfE0ZmRwn7C+pTuRP8c4bnaaTFjwNG6tGe0prJ1yIbMe9AHrpDys63ctWacSsFJWK/w==",
  5964. "type": "package",
  5965. "path": "xunit/2.4.2",
  5966. "files": [
  5967. ".nupkg.metadata",
  5968. ".signature.p7s",
  5969. "_content/logo-128-transparent.png",
  5970. "xunit.2.4.2.nupkg.sha512",
  5971. "xunit.nuspec"
  5972. ]
  5973. },
  5974. "xunit.abstractions/2.0.3": {
  5975. "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==",
  5976. "type": "package",
  5977. "path": "xunit.abstractions/2.0.3",
  5978. "files": [
  5979. ".nupkg.metadata",
  5980. ".signature.p7s",
  5981. "lib/net35/xunit.abstractions.dll",
  5982. "lib/net35/xunit.abstractions.xml",
  5983. "lib/netstandard1.0/xunit.abstractions.dll",
  5984. "lib/netstandard1.0/xunit.abstractions.xml",
  5985. "lib/netstandard2.0/xunit.abstractions.dll",
  5986. "lib/netstandard2.0/xunit.abstractions.xml",
  5987. "xunit.abstractions.2.0.3.nupkg.sha512",
  5988. "xunit.abstractions.nuspec"
  5989. ]
  5990. },
  5991. "xunit.analyzers/1.0.0": {
  5992. "sha512": "BeO8hEgs/c8Ls2647fPfieMngncvf0D0xYNDfIO59MolxtCtVjFRd6SRc+7tj8VMqkVOuJcnc9eh4ngI2cAmLQ==",
  5993. "type": "package",
  5994. "path": "xunit.analyzers/1.0.0",
  5995. "hasTools": true,
  5996. "files": [
  5997. ".nupkg.metadata",
  5998. ".signature.p7s",
  5999. "_content/logo-128-transparent.png",
  6000. "analyzers/dotnet/cs/xunit.analyzers.dll",
  6001. "analyzers/dotnet/cs/xunit.analyzers.fixes.dll",
  6002. "tools/install.ps1",
  6003. "tools/uninstall.ps1",
  6004. "xunit.analyzers.1.0.0.nupkg.sha512",
  6005. "xunit.analyzers.nuspec"
  6006. ]
  6007. },
  6008. "xunit.assert/2.4.2": {
  6009. "sha512": "pxJISOFjn2XTTi1mcDCkRZrTFb9OtRRCtx2kZFNF51GdReLr1ls2rnyxvAS4JO247K3aNtflvh5Q0346K5BROA==",
  6010. "type": "package",
  6011. "path": "xunit.assert/2.4.2",
  6012. "files": [
  6013. ".nupkg.metadata",
  6014. ".signature.p7s",
  6015. "_content/logo-128-transparent.png",
  6016. "lib/netstandard1.1/xunit.assert.dll",
  6017. "lib/netstandard1.1/xunit.assert.xml",
  6018. "xunit.assert.2.4.2.nupkg.sha512",
  6019. "xunit.assert.nuspec"
  6020. ]
  6021. },
  6022. "xunit.core/2.4.2": {
  6023. "sha512": "KB4yGCxNqIVyekhJLXtKSEq6BaXVp/JO3mbGVE1hxypZTLEe7h+sTbAhpA+yZW2dPtXTuiW+C1B2oxxHEkrmOw==",
  6024. "type": "package",
  6025. "path": "xunit.core/2.4.2",
  6026. "files": [
  6027. ".nupkg.metadata",
  6028. ".signature.p7s",
  6029. "_content/logo-128-transparent.png",
  6030. "build/xunit.core.props",
  6031. "build/xunit.core.targets",
  6032. "buildMultiTargeting/xunit.core.props",
  6033. "buildMultiTargeting/xunit.core.targets",
  6034. "xunit.core.2.4.2.nupkg.sha512",
  6035. "xunit.core.nuspec"
  6036. ]
  6037. },
  6038. "xunit.extensibility.core/2.4.2": {
  6039. "sha512": "W1BoXTIN1C6kpVSMw25huSet25ky6IAQUNovu3zGOGN/jWnbgSoTyCrlIhmXSg0tH5nEf8q7h3OjNHOjyu5PfA==",
  6040. "type": "package",
  6041. "path": "xunit.extensibility.core/2.4.2",
  6042. "files": [
  6043. ".nupkg.metadata",
  6044. ".signature.p7s",
  6045. "_content/logo-128-transparent.png",
  6046. "lib/net452/xunit.core.dll",
  6047. "lib/net452/xunit.core.dll.tdnet",
  6048. "lib/net452/xunit.core.xml",
  6049. "lib/net452/xunit.runner.tdnet.dll",
  6050. "lib/net452/xunit.runner.utility.net452.dll",
  6051. "lib/netstandard1.1/xunit.core.dll",
  6052. "lib/netstandard1.1/xunit.core.xml",
  6053. "xunit.extensibility.core.2.4.2.nupkg.sha512",
  6054. "xunit.extensibility.core.nuspec"
  6055. ]
  6056. },
  6057. "xunit.extensibility.execution/2.4.2": {
  6058. "sha512": "CZmgcKkwpyo8FlupZdWpJCryrAOWLh1FBPG6gmVZuPQkGQsim/oL4PcP4nfrC2hHgXUFtluvaJ0Sp9PQKUMNpg==",
  6059. "type": "package",
  6060. "path": "xunit.extensibility.execution/2.4.2",
  6061. "files": [
  6062. ".nupkg.metadata",
  6063. ".signature.p7s",
  6064. "_content/logo-128-transparent.png",
  6065. "lib/net452/xunit.execution.desktop.dll",
  6066. "lib/net452/xunit.execution.desktop.xml",
  6067. "lib/netstandard1.1/xunit.execution.dotnet.dll",
  6068. "lib/netstandard1.1/xunit.execution.dotnet.xml",
  6069. "xunit.extensibility.execution.2.4.2.nupkg.sha512",
  6070. "xunit.extensibility.execution.nuspec"
  6071. ]
  6072. },
  6073. "xunit.runner.visualstudio/2.4.5": {
  6074. "sha512": "OwHamvBdUKgqsXfBzWiCW/O98BTx81UKzx2bieIOQI7CZFE5NEQZGi8PBQGIKawDW96xeRffiNf20SjfC0x9hw==",
  6075. "type": "package",
  6076. "path": "xunit.runner.visualstudio/2.4.5",
  6077. "files": [
  6078. ".nupkg.metadata",
  6079. ".signature.p7s",
  6080. "License.txt",
  6081. "build/net462/xunit.abstractions.dll",
  6082. "build/net462/xunit.runner.reporters.net452.dll",
  6083. "build/net462/xunit.runner.utility.net452.dll",
  6084. "build/net462/xunit.runner.visualstudio.props",
  6085. "build/net462/xunit.runner.visualstudio.testadapter.dll",
  6086. "build/netcoreapp3.1/xunit.abstractions.dll",
  6087. "build/netcoreapp3.1/xunit.runner.reporters.netcoreapp10.dll",
  6088. "build/netcoreapp3.1/xunit.runner.utility.netcoreapp10.dll",
  6089. "build/netcoreapp3.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll",
  6090. "build/netcoreapp3.1/xunit.runner.visualstudio.props",
  6091. "build/uap10.0.16299/xunit.runner.reporters.netstandard15.dll",
  6092. "build/uap10.0.16299/xunit.runner.utility.netstandard15.dll",
  6093. "build/uap10.0.16299/xunit.runner.utility.uwp10.dll",
  6094. "build/uap10.0.16299/xunit.runner.utility.uwp10.pri",
  6095. "build/uap10.0.16299/xunit.runner.visualstudio.props",
  6096. "build/uap10.0.16299/xunit.runner.visualstudio.targets",
  6097. "build/uap10.0.16299/xunit.runner.visualstudio.uwp.testadapter.dll",
  6098. "build/uap10.0.16299/xunit.runner.visualstudio.uwp.testadapter.pri",
  6099. "lib/net462/_._",
  6100. "lib/netcoreapp3.1/_._",
  6101. "lib/uap10.0.16299/_._",
  6102. "logo-512-transparent.png",
  6103. "xunit.runner.visualstudio.2.4.5.nupkg.sha512",
  6104. "xunit.runner.visualstudio.nuspec"
  6105. ]
  6106. }
  6107. },
  6108. "projectFileDependencyGroups": {
  6109. "net7.0": [
  6110. "C:\\Users\\get458\\Downloads\\TrueLib-master\\truelib\\Lib\\Lib.csproj",
  6111. "Microsoft.NET.Test.Sdk >= 17.3.2",
  6112. "coverlet.collector >= 3.1.2",
  6113. "xunit >= 2.4.2",
  6114. "xunit.runner.visualstudio >= 2.4.5"
  6115. ]
  6116. },
  6117. "packageFolders": {
  6118. "C:\\Users\\get458\\.nuget\\packages\\": {},
  6119. "C:\\vs studio\\Shared\\NuGetPackages": {}
  6120. },
  6121. "project": {
  6122. "version": "1.0.0",
  6123. "restore": {
  6124. "projectUniqueName": "C:\\Users\\get458\\Downloads\\TrueLib-master\\truelib\\LibTests\\LibTests.csproj",
  6125. "projectName": "LibTests",
  6126. "projectPath": "C:\\Users\\get458\\Downloads\\TrueLib-master\\truelib\\LibTests\\LibTests.csproj",
  6127. "packagesPath": "C:\\Users\\get458\\.nuget\\packages\\",
  6128. "outputPath": "C:\\Users\\get458\\Downloads\\TrueLib-master\\truelib\\LibTests\\obj\\",
  6129. "projectStyle": "PackageReference",
  6130. "fallbackFolders": [
  6131. "C:\\vs studio\\Shared\\NuGetPackages"
  6132. ],
  6133. "configFilePaths": [
  6134. "C:\\Users\\get458\\AppData\\Roaming\\NuGet\\NuGet.Config",
  6135. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  6136. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  6137. ],
  6138. "originalTargetFrameworks": [
  6139. "net7.0"
  6140. ],
  6141. "sources": {
  6142. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  6143. "C:\\Program Files\\dotnet\\library-packs": {},
  6144. "https://api.nuget.org/v3/index.json": {}
  6145. },
  6146. "frameworks": {
  6147. "net7.0": {
  6148. "targetAlias": "net7.0",
  6149. "projectReferences": {
  6150. "C:\\Users\\get458\\Downloads\\TrueLib-master\\truelib\\Lib\\Lib.csproj": {
  6151. "projectPath": "C:\\Users\\get458\\Downloads\\TrueLib-master\\truelib\\Lib\\Lib.csproj"
  6152. }
  6153. }
  6154. }
  6155. },
  6156. "warningProperties": {
  6157. "warnAsError": [
  6158. "NU1605"
  6159. ]
  6160. }
  6161. },
  6162. "frameworks": {
  6163. "net7.0": {
  6164. "targetAlias": "net7.0",
  6165. "dependencies": {
  6166. "Microsoft.NET.Test.Sdk": {
  6167. "target": "Package",
  6168. "version": "[17.3.2, )"
  6169. },
  6170. "coverlet.collector": {
  6171. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  6172. "suppressParent": "All",
  6173. "target": "Package",
  6174. "version": "[3.1.2, )"
  6175. },
  6176. "xunit": {
  6177. "target": "Package",
  6178. "version": "[2.4.2, )"
  6179. },
  6180. "xunit.runner.visualstudio": {
  6181. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  6182. "suppressParent": "All",
  6183. "target": "Package",
  6184. "version": "[2.4.5, )"
  6185. }
  6186. },
  6187. "imports": [
  6188. "net461",
  6189. "net462",
  6190. "net47",
  6191. "net471",
  6192. "net472",
  6193. "net48",
  6194. "net481"
  6195. ],
  6196. "assetTargetFallback": true,
  6197. "warn": true,
  6198. "frameworkReferences": {
  6199. "Microsoft.NETCore.App": {
  6200. "privateAssets": "all"
  6201. }
  6202. },
  6203. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
  6204. }
  6205. }
  6206. },
  6207. "logs": [
  6208. {
  6209. "code": "NU1104",
  6210. "level": "Error",
  6211. "message": "Unable to find project 'C:\\Users\\get458\\Downloads\\TrueLib-master\\truelib\\Lib\\Lib.csproj'. Check that the project reference is valid and that the project file exists.",
  6212. "libraryId": "C:\\Users\\get458\\Downloads\\TrueLib-master\\truelib\\Lib\\Lib.csproj",
  6213. "targetGraphs": [
  6214. "net7.0"
  6215. ]
  6216. }
  6217. ]
  6218. }