project.assets.json 419 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "coverlet.collector/1.2.0": {
  6. "type": "package",
  7. "build": {
  8. "build/netstandard1.0/coverlet.collector.targets": {}
  9. }
  10. },
  11. "Google.Protobuf/3.5.1": {
  12. "type": "package",
  13. "dependencies": {
  14. "NETStandard.Library": "1.6.1"
  15. },
  16. "compile": {
  17. "lib/netstandard1.0/Google.Protobuf.dll": {}
  18. },
  19. "runtime": {
  20. "lib/netstandard1.0/Google.Protobuf.dll": {}
  21. }
  22. },
  23. "iTextSharp.LGPLv2.Core/1.7.0": {
  24. "type": "package",
  25. "dependencies": {
  26. "Portable.BouncyCastle": "1.8.8",
  27. "System.Collections.NonGeneric": "4.3.0",
  28. "System.Drawing.Common": "4.7.0",
  29. "System.Net.Requests": "4.3.0",
  30. "System.Reflection.TypeExtensions": "4.7.0",
  31. "System.Runtime.Loader": "4.3.0",
  32. "System.Security.Cryptography.Algorithms": "4.3.1",
  33. "System.Text.Encoding.CodePages": "4.7.1",
  34. "System.Xml.ReaderWriter": "4.3.1",
  35. "System.Xml.XmlDocument": "4.3.0"
  36. },
  37. "compile": {
  38. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll": {}
  39. },
  40. "runtime": {
  41. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll": {}
  42. }
  43. },
  44. "Microsoft.AspNetCore.Cryptography.Internal/3.1.10": {
  45. "type": "package",
  46. "compile": {
  47. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  48. },
  49. "runtime": {
  50. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  51. }
  52. },
  53. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.10": {
  54. "type": "package",
  55. "dependencies": {
  56. "Microsoft.AspNetCore.Cryptography.Internal": "3.1.10"
  57. },
  58. "compile": {
  59. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  60. },
  61. "runtime": {
  62. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  63. }
  64. },
  65. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  66. "type": "package",
  67. "dependencies": {
  68. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  69. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  70. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  71. },
  72. "compile": {
  73. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  74. },
  75. "runtime": {
  76. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  77. }
  78. },
  79. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  80. "type": "package",
  81. "dependencies": {
  82. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  83. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  84. },
  85. "compile": {
  86. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  87. },
  88. "runtime": {
  89. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  90. }
  91. },
  92. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  93. "type": "package",
  94. "dependencies": {
  95. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  96. "System.Text.Encodings.Web": "4.5.0"
  97. },
  98. "compile": {
  99. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  100. },
  101. "runtime": {
  102. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  103. }
  104. },
  105. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  106. "type": "package",
  107. "dependencies": {
  108. "Microsoft.Extensions.Primitives": "2.2.0"
  109. },
  110. "compile": {
  111. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  112. },
  113. "runtime": {
  114. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  115. }
  116. },
  117. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/3.1.10": {
  118. "type": "package",
  119. "dependencies": {
  120. "Microsoft.EntityFrameworkCore.Relational": "3.1.10",
  121. "Microsoft.Extensions.Identity.Stores": "3.1.10"
  122. },
  123. "compile": {
  124. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  125. },
  126. "runtime": {
  127. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  128. }
  129. },
  130. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  131. "type": "package",
  132. "compile": {
  133. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  134. },
  135. "runtime": {
  136. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  137. }
  138. },
  139. "Microsoft.Bcl.HashCode/1.1.0": {
  140. "type": "package",
  141. "compile": {
  142. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  143. },
  144. "runtime": {
  145. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  146. }
  147. },
  148. "Microsoft.CodeCoverage/16.5.0": {
  149. "type": "package",
  150. "compile": {
  151. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  152. },
  153. "runtime": {
  154. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  155. },
  156. "build": {
  157. "build/netstandard1.0/Microsoft.CodeCoverage.props": {},
  158. "build/netstandard1.0/Microsoft.CodeCoverage.targets": {}
  159. }
  160. },
  161. "Microsoft.CSharp/4.3.0": {
  162. "type": "package",
  163. "dependencies": {
  164. "System.Collections": "4.3.0",
  165. "System.Diagnostics.Debug": "4.3.0",
  166. "System.Dynamic.Runtime": "4.3.0",
  167. "System.Globalization": "4.3.0",
  168. "System.Linq": "4.3.0",
  169. "System.Linq.Expressions": "4.3.0",
  170. "System.ObjectModel": "4.3.0",
  171. "System.Reflection": "4.3.0",
  172. "System.Reflection.Extensions": "4.3.0",
  173. "System.Reflection.Primitives": "4.3.0",
  174. "System.Reflection.TypeExtensions": "4.3.0",
  175. "System.Resources.ResourceManager": "4.3.0",
  176. "System.Runtime": "4.3.0",
  177. "System.Runtime.Extensions": "4.3.0",
  178. "System.Runtime.InteropServices": "4.3.0",
  179. "System.Threading": "4.3.0"
  180. },
  181. "compile": {
  182. "ref/netstandard1.0/Microsoft.CSharp.dll": {}
  183. },
  184. "runtime": {
  185. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  186. }
  187. },
  188. "Microsoft.Data.Sqlite/2.2.4": {
  189. "type": "package",
  190. "dependencies": {
  191. "Microsoft.Data.Sqlite.Core": "2.2.4",
  192. "SQLitePCLRaw.bundle_green": "1.1.12"
  193. },
  194. "compile": {
  195. "lib/netstandard2.0/_._": {}
  196. },
  197. "runtime": {
  198. "lib/netstandard2.0/_._": {}
  199. }
  200. },
  201. "Microsoft.Data.Sqlite.Core/2.2.4": {
  202. "type": "package",
  203. "dependencies": {
  204. "SQLitePCLRaw.core": "1.1.12"
  205. },
  206. "compile": {
  207. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {}
  208. },
  209. "runtime": {
  210. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {}
  211. }
  212. },
  213. "Microsoft.EntityFrameworkCore/3.1.10": {
  214. "type": "package",
  215. "dependencies": {
  216. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  217. "Microsoft.Bcl.HashCode": "1.1.0",
  218. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.10",
  219. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.10",
  220. "Microsoft.Extensions.Caching.Memory": "3.1.10",
  221. "Microsoft.Extensions.DependencyInjection": "3.1.10",
  222. "Microsoft.Extensions.Logging": "3.1.10",
  223. "System.Collections.Immutable": "1.7.1",
  224. "System.ComponentModel.Annotations": "4.7.0",
  225. "System.Diagnostics.DiagnosticSource": "4.7.1"
  226. },
  227. "compile": {
  228. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  229. },
  230. "runtime": {
  231. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  232. }
  233. },
  234. "Microsoft.EntityFrameworkCore.Abstractions/3.1.10": {
  235. "type": "package",
  236. "compile": {
  237. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  238. },
  239. "runtime": {
  240. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  241. }
  242. },
  243. "Microsoft.EntityFrameworkCore.Analyzers/3.1.10": {
  244. "type": "package",
  245. "compile": {
  246. "lib/netstandard2.0/_._": {}
  247. },
  248. "runtime": {
  249. "lib/netstandard2.0/_._": {}
  250. }
  251. },
  252. "Microsoft.EntityFrameworkCore.Relational/3.1.10": {
  253. "type": "package",
  254. "dependencies": {
  255. "Microsoft.EntityFrameworkCore": "3.1.10"
  256. },
  257. "compile": {
  258. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  259. },
  260. "runtime": {
  261. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  262. }
  263. },
  264. "Microsoft.Extensions.Caching.Abstractions/3.1.10": {
  265. "type": "package",
  266. "dependencies": {
  267. "Microsoft.Extensions.Primitives": "3.1.10"
  268. },
  269. "compile": {
  270. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  271. },
  272. "runtime": {
  273. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  274. }
  275. },
  276. "Microsoft.Extensions.Caching.Memory/3.1.10": {
  277. "type": "package",
  278. "dependencies": {
  279. "Microsoft.Extensions.Caching.Abstractions": "3.1.10",
  280. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.10",
  281. "Microsoft.Extensions.Logging.Abstractions": "3.1.10",
  282. "Microsoft.Extensions.Options": "3.1.10"
  283. },
  284. "compile": {
  285. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  286. },
  287. "runtime": {
  288. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  289. }
  290. },
  291. "Microsoft.Extensions.Configuration/3.1.10": {
  292. "type": "package",
  293. "dependencies": {
  294. "Microsoft.Extensions.Configuration.Abstractions": "3.1.10"
  295. },
  296. "compile": {
  297. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
  298. },
  299. "runtime": {
  300. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
  301. }
  302. },
  303. "Microsoft.Extensions.Configuration.Abstractions/3.1.10": {
  304. "type": "package",
  305. "dependencies": {
  306. "Microsoft.Extensions.Primitives": "3.1.10"
  307. },
  308. "compile": {
  309. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  310. },
  311. "runtime": {
  312. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  313. }
  314. },
  315. "Microsoft.Extensions.Configuration.Binder/3.1.10": {
  316. "type": "package",
  317. "dependencies": {
  318. "Microsoft.Extensions.Configuration": "3.1.10"
  319. },
  320. "compile": {
  321. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
  322. },
  323. "runtime": {
  324. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
  325. }
  326. },
  327. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  328. "type": "package",
  329. "dependencies": {
  330. "Microsoft.Extensions.Configuration": "3.1.2",
  331. "Microsoft.Extensions.FileProviders.Physical": "3.1.2"
  332. },
  333. "compile": {
  334. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  335. },
  336. "runtime": {
  337. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  338. }
  339. },
  340. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  341. "type": "package",
  342. "dependencies": {
  343. "Microsoft.Extensions.Configuration": "3.1.2",
  344. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2"
  345. },
  346. "compile": {
  347. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {}
  348. },
  349. "runtime": {
  350. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll": {}
  351. }
  352. },
  353. "Microsoft.Extensions.DependencyInjection/3.1.10": {
  354. "type": "package",
  355. "dependencies": {
  356. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.10"
  357. },
  358. "compile": {
  359. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
  360. },
  361. "runtime": {
  362. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
  363. }
  364. },
  365. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.10": {
  366. "type": "package",
  367. "compile": {
  368. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  369. },
  370. "runtime": {
  371. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  372. }
  373. },
  374. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  375. "type": "package",
  376. "dependencies": {
  377. "Microsoft.Extensions.Primitives": "3.1.2"
  378. },
  379. "compile": {
  380. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  381. },
  382. "runtime": {
  383. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  384. }
  385. },
  386. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  387. "type": "package",
  388. "dependencies": {
  389. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.2",
  390. "Microsoft.Extensions.FileSystemGlobbing": "3.1.2"
  391. },
  392. "compile": {
  393. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {}
  394. },
  395. "runtime": {
  396. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll": {}
  397. }
  398. },
  399. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  400. "type": "package",
  401. "compile": {
  402. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  403. },
  404. "runtime": {
  405. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  406. }
  407. },
  408. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  409. "type": "package",
  410. "dependencies": {
  411. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  412. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  413. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  414. "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
  415. },
  416. "compile": {
  417. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  418. },
  419. "runtime": {
  420. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  421. }
  422. },
  423. "Microsoft.Extensions.Identity.Core/3.1.10": {
  424. "type": "package",
  425. "dependencies": {
  426. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.10",
  427. "Microsoft.Extensions.Logging": "3.1.10",
  428. "Microsoft.Extensions.Options": "3.1.10"
  429. },
  430. "compile": {
  431. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll": {}
  432. },
  433. "runtime": {
  434. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll": {}
  435. }
  436. },
  437. "Microsoft.Extensions.Identity.Stores/3.1.10": {
  438. "type": "package",
  439. "dependencies": {
  440. "Microsoft.Extensions.Caching.Abstractions": "3.1.10",
  441. "Microsoft.Extensions.Identity.Core": "3.1.10",
  442. "Microsoft.Extensions.Logging": "3.1.10"
  443. },
  444. "compile": {
  445. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll": {}
  446. },
  447. "runtime": {
  448. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll": {}
  449. }
  450. },
  451. "Microsoft.Extensions.Logging/3.1.10": {
  452. "type": "package",
  453. "dependencies": {
  454. "Microsoft.Extensions.Configuration.Binder": "3.1.10",
  455. "Microsoft.Extensions.DependencyInjection": "3.1.10",
  456. "Microsoft.Extensions.Logging.Abstractions": "3.1.10",
  457. "Microsoft.Extensions.Options": "3.1.10"
  458. },
  459. "compile": {
  460. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
  461. },
  462. "runtime": {
  463. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
  464. }
  465. },
  466. "Microsoft.Extensions.Logging.Abstractions/3.1.10": {
  467. "type": "package",
  468. "compile": {
  469. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  470. },
  471. "runtime": {
  472. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  473. }
  474. },
  475. "Microsoft.Extensions.Options/3.1.10": {
  476. "type": "package",
  477. "dependencies": {
  478. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.10",
  479. "Microsoft.Extensions.Primitives": "3.1.10"
  480. },
  481. "compile": {
  482. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
  483. },
  484. "runtime": {
  485. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
  486. }
  487. },
  488. "Microsoft.Extensions.Primitives/3.1.10": {
  489. "type": "package",
  490. "compile": {
  491. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  492. },
  493. "runtime": {
  494. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  495. }
  496. },
  497. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  498. "type": "package",
  499. "dependencies": {
  500. "Microsoft.IdentityModel.Tokens": "5.6.0",
  501. "Newtonsoft.Json": "10.0.1"
  502. },
  503. "compile": {
  504. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  505. },
  506. "runtime": {
  507. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  508. }
  509. },
  510. "Microsoft.IdentityModel.Logging/5.6.0": {
  511. "type": "package",
  512. "compile": {
  513. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  514. },
  515. "runtime": {
  516. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  517. }
  518. },
  519. "Microsoft.IdentityModel.Tokens/5.6.0": {
  520. "type": "package",
  521. "dependencies": {
  522. "Microsoft.IdentityModel.Logging": "5.6.0",
  523. "Newtonsoft.Json": "10.0.1",
  524. "System.Security.Cryptography.Cng": "4.5.0"
  525. },
  526. "compile": {
  527. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  528. },
  529. "runtime": {
  530. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  531. }
  532. },
  533. "Microsoft.NET.Test.Sdk/16.5.0": {
  534. "type": "package",
  535. "dependencies": {
  536. "Microsoft.CodeCoverage": "16.5.0",
  537. "Microsoft.TestPlatform.TestHost": "16.5.0"
  538. },
  539. "build": {
  540. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {},
  541. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {}
  542. },
  543. "buildMultiTargeting": {
  544. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {}
  545. }
  546. },
  547. "Microsoft.NETCore.Jit/2.0.8": {
  548. "type": "package"
  549. },
  550. "Microsoft.NETCore.Platforms/3.1.1": {
  551. "type": "package",
  552. "compile": {
  553. "lib/netstandard1.0/_._": {}
  554. },
  555. "runtime": {
  556. "lib/netstandard1.0/_._": {}
  557. }
  558. },
  559. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  560. "type": "package",
  561. "dependencies": {
  562. "Microsoft.NETCore.Jit": "2.0.8"
  563. },
  564. "compile": {
  565. "ref/netstandard1.0/_._": {}
  566. }
  567. },
  568. "Microsoft.NETCore.Targets/1.1.0": {
  569. "type": "package",
  570. "compile": {
  571. "lib/netstandard1.0/_._": {}
  572. },
  573. "runtime": {
  574. "lib/netstandard1.0/_._": {}
  575. }
  576. },
  577. "Microsoft.TestPlatform.ObjectModel/16.5.0": {
  578. "type": "package",
  579. "dependencies": {
  580. "NuGet.Frameworks": "5.0.0"
  581. },
  582. "compile": {
  583. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
  584. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  585. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  586. },
  587. "runtime": {
  588. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
  589. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  590. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  591. },
  592. "resource": {
  593. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  594. "locale": "cs"
  595. },
  596. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  597. "locale": "cs"
  598. },
  599. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  600. "locale": "de"
  601. },
  602. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  603. "locale": "de"
  604. },
  605. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  606. "locale": "es"
  607. },
  608. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  609. "locale": "es"
  610. },
  611. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  612. "locale": "fr"
  613. },
  614. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  615. "locale": "fr"
  616. },
  617. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  618. "locale": "it"
  619. },
  620. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  621. "locale": "it"
  622. },
  623. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  624. "locale": "ja"
  625. },
  626. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  627. "locale": "ja"
  628. },
  629. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  630. "locale": "ko"
  631. },
  632. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  633. "locale": "ko"
  634. },
  635. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  636. "locale": "pl"
  637. },
  638. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  639. "locale": "pl"
  640. },
  641. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  642. "locale": "pt-BR"
  643. },
  644. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  645. "locale": "pt-BR"
  646. },
  647. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  648. "locale": "ru"
  649. },
  650. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  651. "locale": "ru"
  652. },
  653. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  654. "locale": "tr"
  655. },
  656. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  657. "locale": "tr"
  658. },
  659. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  660. "locale": "zh-Hans"
  661. },
  662. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  663. "locale": "zh-Hans"
  664. },
  665. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  666. "locale": "zh-Hant"
  667. },
  668. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  669. "locale": "zh-Hant"
  670. }
  671. }
  672. },
  673. "Microsoft.TestPlatform.TestHost/16.5.0": {
  674. "type": "package",
  675. "dependencies": {
  676. "Microsoft.TestPlatform.ObjectModel": "16.5.0",
  677. "Newtonsoft.Json": "9.0.1"
  678. },
  679. "compile": {
  680. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  681. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  682. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
  683. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  684. "lib/netcoreapp2.1/testhost.dll": {}
  685. },
  686. "runtime": {
  687. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  688. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  689. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
  690. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  691. "lib/netcoreapp2.1/testhost.dll": {}
  692. },
  693. "resource": {
  694. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  695. "locale": "cs"
  696. },
  697. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  698. "locale": "cs"
  699. },
  700. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  701. "locale": "cs"
  702. },
  703. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  704. "locale": "de"
  705. },
  706. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  707. "locale": "de"
  708. },
  709. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  710. "locale": "de"
  711. },
  712. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  713. "locale": "es"
  714. },
  715. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  716. "locale": "es"
  717. },
  718. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  719. "locale": "es"
  720. },
  721. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  722. "locale": "fr"
  723. },
  724. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  725. "locale": "fr"
  726. },
  727. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  728. "locale": "fr"
  729. },
  730. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  731. "locale": "it"
  732. },
  733. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  734. "locale": "it"
  735. },
  736. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  737. "locale": "it"
  738. },
  739. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  740. "locale": "ja"
  741. },
  742. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  743. "locale": "ja"
  744. },
  745. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  746. "locale": "ja"
  747. },
  748. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  749. "locale": "ko"
  750. },
  751. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  752. "locale": "ko"
  753. },
  754. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  755. "locale": "ko"
  756. },
  757. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  758. "locale": "pl"
  759. },
  760. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  761. "locale": "pl"
  762. },
  763. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  764. "locale": "pl"
  765. },
  766. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  767. "locale": "pt-BR"
  768. },
  769. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  770. "locale": "pt-BR"
  771. },
  772. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  773. "locale": "pt-BR"
  774. },
  775. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  776. "locale": "ru"
  777. },
  778. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  779. "locale": "ru"
  780. },
  781. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  782. "locale": "ru"
  783. },
  784. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  785. "locale": "tr"
  786. },
  787. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  788. "locale": "tr"
  789. },
  790. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  791. "locale": "tr"
  792. },
  793. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  794. "locale": "zh-Hans"
  795. },
  796. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  797. "locale": "zh-Hans"
  798. },
  799. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  800. "locale": "zh-Hans"
  801. },
  802. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  803. "locale": "zh-Hant"
  804. },
  805. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  806. "locale": "zh-Hant"
  807. },
  808. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  809. "locale": "zh-Hant"
  810. }
  811. },
  812. "build": {
  813. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {}
  814. }
  815. },
  816. "Microsoft.Win32.Primitives/4.3.0": {
  817. "type": "package",
  818. "dependencies": {
  819. "Microsoft.NETCore.Platforms": "1.1.0",
  820. "Microsoft.NETCore.Targets": "1.1.0",
  821. "System.Runtime": "4.3.0"
  822. },
  823. "compile": {
  824. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  825. }
  826. },
  827. "Microsoft.Win32.Registry/4.4.0": {
  828. "type": "package",
  829. "dependencies": {
  830. "Microsoft.NETCore.Platforms": "2.0.0",
  831. "System.Security.AccessControl": "4.4.0",
  832. "System.Security.Principal.Windows": "4.4.0"
  833. },
  834. "compile": {
  835. "ref/netstandard2.0/_._": {}
  836. },
  837. "runtime": {
  838. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  839. },
  840. "runtimeTargets": {
  841. "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": {
  842. "assetType": "runtime",
  843. "rid": "unix"
  844. },
  845. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": {
  846. "assetType": "runtime",
  847. "rid": "win"
  848. }
  849. }
  850. },
  851. "Microsoft.Win32.SystemEvents/4.7.0": {
  852. "type": "package",
  853. "dependencies": {
  854. "Microsoft.NETCore.Platforms": "3.1.0"
  855. },
  856. "compile": {
  857. "ref/netstandard2.0/_._": {}
  858. },
  859. "runtime": {
  860. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  861. },
  862. "runtimeTargets": {
  863. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  864. "assetType": "runtime",
  865. "rid": "win"
  866. }
  867. }
  868. },
  869. "MSTest.TestAdapter/2.1.0": {
  870. "type": "package",
  871. "dependencies": {
  872. "NETStandard.Library": "1.6.1",
  873. "System.Diagnostics.TextWriterTraceListener": "4.3.0"
  874. },
  875. "build": {
  876. "build/netcoreapp1.0/MSTest.TestAdapter.props": {}
  877. }
  878. },
  879. "MSTest.TestFramework/2.1.0": {
  880. "type": "package",
  881. "compile": {
  882. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {},
  883. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {}
  884. },
  885. "runtime": {
  886. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {},
  887. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {}
  888. }
  889. },
  890. "MySql.Data/8.0.15": {
  891. "type": "package",
  892. "dependencies": {
  893. "Google.Protobuf": "3.5.1",
  894. "System.Configuration.ConfigurationManager": "4.4.1",
  895. "System.Security.Permissions": "4.4.1",
  896. "System.Text.Encoding.CodePages": "4.4.0"
  897. },
  898. "compile": {
  899. "lib/netcoreapp2.0/MySql.Data.dll": {}
  900. },
  901. "runtime": {
  902. "lib/netcoreapp2.0/MySql.Data.dll": {}
  903. }
  904. },
  905. "NETStandard.Library/1.6.1": {
  906. "type": "package",
  907. "dependencies": {
  908. "Microsoft.NETCore.Platforms": "1.1.0",
  909. "Microsoft.Win32.Primitives": "4.3.0",
  910. "System.AppContext": "4.3.0",
  911. "System.Collections": "4.3.0",
  912. "System.Collections.Concurrent": "4.3.0",
  913. "System.Console": "4.3.0",
  914. "System.Diagnostics.Debug": "4.3.0",
  915. "System.Diagnostics.Tools": "4.3.0",
  916. "System.Diagnostics.Tracing": "4.3.0",
  917. "System.Globalization": "4.3.0",
  918. "System.Globalization.Calendars": "4.3.0",
  919. "System.IO": "4.3.0",
  920. "System.IO.Compression": "4.3.0",
  921. "System.IO.Compression.ZipFile": "4.3.0",
  922. "System.IO.FileSystem": "4.3.0",
  923. "System.IO.FileSystem.Primitives": "4.3.0",
  924. "System.Linq": "4.3.0",
  925. "System.Linq.Expressions": "4.3.0",
  926. "System.Net.Http": "4.3.0",
  927. "System.Net.Primitives": "4.3.0",
  928. "System.Net.Sockets": "4.3.0",
  929. "System.ObjectModel": "4.3.0",
  930. "System.Reflection": "4.3.0",
  931. "System.Reflection.Extensions": "4.3.0",
  932. "System.Reflection.Primitives": "4.3.0",
  933. "System.Resources.ResourceManager": "4.3.0",
  934. "System.Runtime": "4.3.0",
  935. "System.Runtime.Extensions": "4.3.0",
  936. "System.Runtime.Handles": "4.3.0",
  937. "System.Runtime.InteropServices": "4.3.0",
  938. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  939. "System.Runtime.Numerics": "4.3.0",
  940. "System.Security.Cryptography.Algorithms": "4.3.0",
  941. "System.Security.Cryptography.Encoding": "4.3.0",
  942. "System.Security.Cryptography.Primitives": "4.3.0",
  943. "System.Security.Cryptography.X509Certificates": "4.3.0",
  944. "System.Text.Encoding": "4.3.0",
  945. "System.Text.Encoding.Extensions": "4.3.0",
  946. "System.Text.RegularExpressions": "4.3.0",
  947. "System.Threading": "4.3.0",
  948. "System.Threading.Tasks": "4.3.0",
  949. "System.Threading.Timer": "4.3.0",
  950. "System.Xml.ReaderWriter": "4.3.0",
  951. "System.Xml.XDocument": "4.3.0"
  952. }
  953. },
  954. "Newtonsoft.Json/10.0.3": {
  955. "type": "package",
  956. "dependencies": {
  957. "Microsoft.CSharp": "4.3.0",
  958. "NETStandard.Library": "1.6.1",
  959. "System.ComponentModel.TypeConverter": "4.3.0",
  960. "System.Runtime.Serialization.Formatters": "4.3.0",
  961. "System.Runtime.Serialization.Primitives": "4.3.0",
  962. "System.Xml.XmlDocument": "4.3.0"
  963. },
  964. "compile": {
  965. "lib/netstandard1.3/Newtonsoft.Json.dll": {}
  966. },
  967. "runtime": {
  968. "lib/netstandard1.3/Newtonsoft.Json.dll": {}
  969. }
  970. },
  971. "NLog/4.7.5": {
  972. "type": "package",
  973. "compile": {
  974. "lib/netstandard2.0/NLog.dll": {}
  975. },
  976. "runtime": {
  977. "lib/netstandard2.0/NLog.dll": {}
  978. }
  979. },
  980. "NLog.Extensions.Logging/1.6.4": {
  981. "type": "package",
  982. "dependencies": {
  983. "Microsoft.Extensions.Logging": "3.0.0",
  984. "NLog": "4.7.2"
  985. },
  986. "compile": {
  987. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  988. },
  989. "runtime": {
  990. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll": {}
  991. }
  992. },
  993. "NLog.Web.AspNetCore/4.9.3": {
  994. "type": "package",
  995. "dependencies": {
  996. "NLog.Extensions.Logging": "1.6.4"
  997. },
  998. "compile": {
  999. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  1000. },
  1001. "runtime": {
  1002. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll": {}
  1003. },
  1004. "frameworkReferences": [
  1005. "Microsoft.AspNetCore.App"
  1006. ]
  1007. },
  1008. "Npgsql/3.2.7": {
  1009. "type": "package",
  1010. "dependencies": {
  1011. "System.Threading.Tasks.Extensions": "4.3.0"
  1012. },
  1013. "compile": {
  1014. "lib/netstandard2.0/Npgsql.dll": {}
  1015. },
  1016. "runtime": {
  1017. "lib/netstandard2.0/Npgsql.dll": {}
  1018. }
  1019. },
  1020. "NuGet.Frameworks/5.0.0": {
  1021. "type": "package",
  1022. "compile": {
  1023. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  1024. },
  1025. "runtime": {
  1026. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  1027. }
  1028. },
  1029. "Oracle.ManagedDataAccess.Core/2.18.3": {
  1030. "type": "package",
  1031. "compile": {
  1032. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {}
  1033. },
  1034. "runtime": {
  1035. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll": {}
  1036. }
  1037. },
  1038. "Portable.BouncyCastle/1.8.8": {
  1039. "type": "package",
  1040. "compile": {
  1041. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  1042. },
  1043. "runtime": {
  1044. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {}
  1045. }
  1046. },
  1047. "Quartz/3.2.3": {
  1048. "type": "package",
  1049. "dependencies": {
  1050. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1051. "System.Configuration.ConfigurationManager": "4.7.0",
  1052. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1053. },
  1054. "compile": {
  1055. "lib/netstandard2.0/Quartz.dll": {}
  1056. },
  1057. "runtime": {
  1058. "lib/netstandard2.0/Quartz.dll": {}
  1059. }
  1060. },
  1061. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1062. "type": "package",
  1063. "runtimeTargets": {
  1064. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1065. "assetType": "native",
  1066. "rid": "debian.8-x64"
  1067. }
  1068. }
  1069. },
  1070. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1071. "type": "package",
  1072. "runtimeTargets": {
  1073. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1074. "assetType": "native",
  1075. "rid": "fedora.23-x64"
  1076. }
  1077. }
  1078. },
  1079. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1080. "type": "package",
  1081. "runtimeTargets": {
  1082. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1083. "assetType": "native",
  1084. "rid": "fedora.24-x64"
  1085. }
  1086. }
  1087. },
  1088. "runtime.native.System/4.3.0": {
  1089. "type": "package",
  1090. "dependencies": {
  1091. "Microsoft.NETCore.Platforms": "1.1.0",
  1092. "Microsoft.NETCore.Targets": "1.1.0"
  1093. },
  1094. "compile": {
  1095. "lib/netstandard1.0/_._": {}
  1096. },
  1097. "runtime": {
  1098. "lib/netstandard1.0/_._": {}
  1099. }
  1100. },
  1101. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1102. "type": "package",
  1103. "dependencies": {
  1104. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1105. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1106. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1107. }
  1108. },
  1109. "runtime.native.System.IO.Compression/4.3.0": {
  1110. "type": "package",
  1111. "dependencies": {
  1112. "Microsoft.NETCore.Platforms": "1.1.0",
  1113. "Microsoft.NETCore.Targets": "1.1.0"
  1114. },
  1115. "compile": {
  1116. "lib/netstandard1.0/_._": {}
  1117. },
  1118. "runtime": {
  1119. "lib/netstandard1.0/_._": {}
  1120. }
  1121. },
  1122. "runtime.native.System.Net.Http/4.3.0": {
  1123. "type": "package",
  1124. "dependencies": {
  1125. "Microsoft.NETCore.Platforms": "1.1.0",
  1126. "Microsoft.NETCore.Targets": "1.1.0"
  1127. },
  1128. "compile": {
  1129. "lib/netstandard1.0/_._": {}
  1130. },
  1131. "runtime": {
  1132. "lib/netstandard1.0/_._": {}
  1133. }
  1134. },
  1135. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  1136. "type": "package",
  1137. "dependencies": {
  1138. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.1"
  1139. },
  1140. "compile": {
  1141. "lib/netstandard1.0/_._": {}
  1142. },
  1143. "runtime": {
  1144. "lib/netstandard1.0/_._": {}
  1145. }
  1146. },
  1147. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1148. "type": "package",
  1149. "dependencies": {
  1150. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1151. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1152. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1153. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1154. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1155. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1156. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1157. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1158. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
  1159. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  1160. },
  1161. "compile": {
  1162. "lib/netstandard1.0/_._": {}
  1163. },
  1164. "runtime": {
  1165. "lib/netstandard1.0/_._": {}
  1166. }
  1167. },
  1168. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1169. "type": "package",
  1170. "runtimeTargets": {
  1171. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1172. "assetType": "native",
  1173. "rid": "opensuse.13.2-x64"
  1174. }
  1175. }
  1176. },
  1177. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1178. "type": "package",
  1179. "runtimeTargets": {
  1180. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1181. "assetType": "native",
  1182. "rid": "opensuse.42.1-x64"
  1183. }
  1184. }
  1185. },
  1186. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  1187. "type": "package",
  1188. "runtimeTargets": {
  1189. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1190. "assetType": "native",
  1191. "rid": "osx.10.10-x64"
  1192. }
  1193. }
  1194. },
  1195. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1196. "type": "package",
  1197. "runtimeTargets": {
  1198. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1199. "assetType": "native",
  1200. "rid": "osx.10.10-x64"
  1201. }
  1202. }
  1203. },
  1204. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1205. "type": "package",
  1206. "runtimeTargets": {
  1207. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1208. "assetType": "native",
  1209. "rid": "rhel.7-x64"
  1210. }
  1211. }
  1212. },
  1213. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1214. "type": "package",
  1215. "runtimeTargets": {
  1216. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1217. "assetType": "native",
  1218. "rid": "ubuntu.14.04-x64"
  1219. }
  1220. }
  1221. },
  1222. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1223. "type": "package",
  1224. "runtimeTargets": {
  1225. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1226. "assetType": "native",
  1227. "rid": "ubuntu.16.04-x64"
  1228. }
  1229. }
  1230. },
  1231. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  1232. "type": "package",
  1233. "runtimeTargets": {
  1234. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1235. "assetType": "native",
  1236. "rid": "ubuntu.16.10-x64"
  1237. }
  1238. }
  1239. },
  1240. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1241. "type": "package",
  1242. "runtimeTargets": {
  1243. "runtimes/win-arm64/native/sni.dll": {
  1244. "assetType": "native",
  1245. "rid": "win-arm64"
  1246. }
  1247. }
  1248. },
  1249. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1250. "type": "package",
  1251. "runtimeTargets": {
  1252. "runtimes/win-x64/native/sni.dll": {
  1253. "assetType": "native",
  1254. "rid": "win-x64"
  1255. }
  1256. }
  1257. },
  1258. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1259. "type": "package",
  1260. "runtimeTargets": {
  1261. "runtimes/win-x86/native/sni.dll": {
  1262. "assetType": "native",
  1263. "rid": "win-x86"
  1264. }
  1265. }
  1266. },
  1267. "SQLitePCLRaw.bundle_green/1.1.12": {
  1268. "type": "package",
  1269. "dependencies": {
  1270. "SQLitePCLRaw.core": "1.1.12",
  1271. "SQLitePCLRaw.lib.e_sqlite3.linux": "1.1.12",
  1272. "SQLitePCLRaw.lib.e_sqlite3.osx": "1.1.12",
  1273. "SQLitePCLRaw.lib.e_sqlite3.v110_xp": "1.1.12",
  1274. "SQLitePCLRaw.provider.e_sqlite3.netstandard11": "1.1.12"
  1275. },
  1276. "compile": {
  1277. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {},
  1278. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {}
  1279. },
  1280. "runtime": {
  1281. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {},
  1282. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {}
  1283. }
  1284. },
  1285. "SQLitePCLRaw.core/1.1.12": {
  1286. "type": "package",
  1287. "dependencies": {
  1288. "NETStandard.Library": "1.6.0"
  1289. },
  1290. "compile": {
  1291. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
  1292. },
  1293. "runtime": {
  1294. "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
  1295. }
  1296. },
  1297. "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.12": {
  1298. "type": "package",
  1299. "compile": {
  1300. "lib/netstandard2.0/_._": {}
  1301. },
  1302. "runtime": {
  1303. "lib/netstandard2.0/_._": {}
  1304. },
  1305. "runtimeTargets": {
  1306. "runtimes/alpine-x64/native/libe_sqlite3.so": {
  1307. "assetType": "native",
  1308. "rid": "alpine-x64"
  1309. },
  1310. "runtimes/linux-arm/native/libe_sqlite3.so": {
  1311. "assetType": "native",
  1312. "rid": "linux-arm"
  1313. },
  1314. "runtimes/linux-arm64/native/libe_sqlite3.so": {
  1315. "assetType": "native",
  1316. "rid": "linux-arm64"
  1317. },
  1318. "runtimes/linux-armel/native/libe_sqlite3.so": {
  1319. "assetType": "native",
  1320. "rid": "linux-armel"
  1321. },
  1322. "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
  1323. "assetType": "native",
  1324. "rid": "linux-musl-x64"
  1325. },
  1326. "runtimes/linux-x64/native/libe_sqlite3.so": {
  1327. "assetType": "native",
  1328. "rid": "linux-x64"
  1329. },
  1330. "runtimes/linux-x86/native/libe_sqlite3.so": {
  1331. "assetType": "native",
  1332. "rid": "linux-x86"
  1333. }
  1334. }
  1335. },
  1336. "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.12": {
  1337. "type": "package",
  1338. "compile": {
  1339. "lib/netstandard2.0/_._": {}
  1340. },
  1341. "runtime": {
  1342. "lib/netstandard2.0/_._": {}
  1343. },
  1344. "runtimeTargets": {
  1345. "runtimes/osx-x64/native/libe_sqlite3.dylib": {
  1346. "assetType": "native",
  1347. "rid": "osx-x64"
  1348. }
  1349. }
  1350. },
  1351. "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.12": {
  1352. "type": "package",
  1353. "compile": {
  1354. "lib/netstandard2.0/_._": {}
  1355. },
  1356. "runtime": {
  1357. "lib/netstandard2.0/_._": {}
  1358. },
  1359. "runtimeTargets": {
  1360. "runtimes/win-x64/native/e_sqlite3.dll": {
  1361. "assetType": "native",
  1362. "rid": "win-x64"
  1363. },
  1364. "runtimes/win-x86/native/e_sqlite3.dll": {
  1365. "assetType": "native",
  1366. "rid": "win-x86"
  1367. },
  1368. "runtimes/win8-arm/native/e_sqlite3.dll": {
  1369. "assetType": "native",
  1370. "rid": "win8-arm"
  1371. }
  1372. }
  1373. },
  1374. "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.12": {
  1375. "type": "package",
  1376. "dependencies": {
  1377. "NETStandard.Library": "1.6.0",
  1378. "SQLitePCLRaw.core": "1.1.12"
  1379. },
  1380. "compile": {
  1381. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {}
  1382. },
  1383. "runtime": {
  1384. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {}
  1385. }
  1386. },
  1387. "sqlSugarCore/5.0.0.18": {
  1388. "type": "package",
  1389. "dependencies": {
  1390. "Microsoft.Data.Sqlite": "2.2.4",
  1391. "MySql.Data": "8.0.15",
  1392. "Newtonsoft.Json": "10.0.3",
  1393. "Npgsql": "3.2.7",
  1394. "Oracle.ManagedDataAccess.Core": "2.18.3",
  1395. "System.Data.Common": "4.3.0",
  1396. "System.Data.SqlClient": "4.4.0",
  1397. "System.Reflection.Emit.Lightweight": "4.3.0"
  1398. },
  1399. "compile": {
  1400. "lib/netstandard2.0/SqlSugar.dll": {}
  1401. },
  1402. "runtime": {
  1403. "lib/netstandard2.0/SqlSugar.dll": {}
  1404. }
  1405. },
  1406. "System.AppContext/4.3.0": {
  1407. "type": "package",
  1408. "dependencies": {
  1409. "System.Runtime": "4.3.0"
  1410. },
  1411. "compile": {
  1412. "ref/netstandard1.6/System.AppContext.dll": {}
  1413. },
  1414. "runtime": {
  1415. "lib/netstandard1.6/System.AppContext.dll": {}
  1416. }
  1417. },
  1418. "System.Buffers/4.3.0": {
  1419. "type": "package",
  1420. "dependencies": {
  1421. "System.Diagnostics.Debug": "4.3.0",
  1422. "System.Diagnostics.Tracing": "4.3.0",
  1423. "System.Resources.ResourceManager": "4.3.0",
  1424. "System.Runtime": "4.3.0",
  1425. "System.Threading": "4.3.0"
  1426. },
  1427. "compile": {
  1428. "lib/netstandard1.1/_._": {}
  1429. },
  1430. "runtime": {
  1431. "lib/netstandard1.1/System.Buffers.dll": {}
  1432. }
  1433. },
  1434. "System.Collections/4.3.0": {
  1435. "type": "package",
  1436. "dependencies": {
  1437. "Microsoft.NETCore.Platforms": "1.1.0",
  1438. "Microsoft.NETCore.Targets": "1.1.0",
  1439. "System.Runtime": "4.3.0"
  1440. },
  1441. "compile": {
  1442. "ref/netstandard1.3/System.Collections.dll": {}
  1443. }
  1444. },
  1445. "System.Collections.Concurrent/4.3.0": {
  1446. "type": "package",
  1447. "dependencies": {
  1448. "System.Collections": "4.3.0",
  1449. "System.Diagnostics.Debug": "4.3.0",
  1450. "System.Diagnostics.Tracing": "4.3.0",
  1451. "System.Globalization": "4.3.0",
  1452. "System.Reflection": "4.3.0",
  1453. "System.Resources.ResourceManager": "4.3.0",
  1454. "System.Runtime": "4.3.0",
  1455. "System.Runtime.Extensions": "4.3.0",
  1456. "System.Threading": "4.3.0",
  1457. "System.Threading.Tasks": "4.3.0"
  1458. },
  1459. "compile": {
  1460. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1461. },
  1462. "runtime": {
  1463. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1464. }
  1465. },
  1466. "System.Collections.Immutable/1.7.1": {
  1467. "type": "package",
  1468. "compile": {
  1469. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1470. },
  1471. "runtime": {
  1472. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1473. }
  1474. },
  1475. "System.Collections.NonGeneric/4.3.0": {
  1476. "type": "package",
  1477. "dependencies": {
  1478. "System.Diagnostics.Debug": "4.3.0",
  1479. "System.Globalization": "4.3.0",
  1480. "System.Resources.ResourceManager": "4.3.0",
  1481. "System.Runtime": "4.3.0",
  1482. "System.Runtime.Extensions": "4.3.0",
  1483. "System.Threading": "4.3.0"
  1484. },
  1485. "compile": {
  1486. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1487. },
  1488. "runtime": {
  1489. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1490. }
  1491. },
  1492. "System.Collections.Specialized/4.3.0": {
  1493. "type": "package",
  1494. "dependencies": {
  1495. "System.Collections.NonGeneric": "4.3.0",
  1496. "System.Globalization": "4.3.0",
  1497. "System.Globalization.Extensions": "4.3.0",
  1498. "System.Resources.ResourceManager": "4.3.0",
  1499. "System.Runtime": "4.3.0",
  1500. "System.Runtime.Extensions": "4.3.0",
  1501. "System.Threading": "4.3.0"
  1502. },
  1503. "compile": {
  1504. "ref/netstandard1.3/_._": {}
  1505. },
  1506. "runtime": {
  1507. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1508. }
  1509. },
  1510. "System.ComponentModel/4.3.0": {
  1511. "type": "package",
  1512. "dependencies": {
  1513. "System.Runtime": "4.3.0"
  1514. },
  1515. "compile": {
  1516. "ref/netstandard1.0/System.ComponentModel.dll": {}
  1517. },
  1518. "runtime": {
  1519. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1520. }
  1521. },
  1522. "System.ComponentModel.Annotations/4.7.0": {
  1523. "type": "package",
  1524. "compile": {
  1525. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1526. },
  1527. "runtime": {
  1528. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1529. }
  1530. },
  1531. "System.ComponentModel.Primitives/4.3.0": {
  1532. "type": "package",
  1533. "dependencies": {
  1534. "System.ComponentModel": "4.3.0",
  1535. "System.Resources.ResourceManager": "4.3.0",
  1536. "System.Runtime": "4.3.0"
  1537. },
  1538. "compile": {
  1539. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1540. },
  1541. "runtime": {
  1542. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1543. }
  1544. },
  1545. "System.ComponentModel.TypeConverter/4.3.0": {
  1546. "type": "package",
  1547. "dependencies": {
  1548. "System.Collections": "4.3.0",
  1549. "System.Collections.NonGeneric": "4.3.0",
  1550. "System.Collections.Specialized": "4.3.0",
  1551. "System.ComponentModel": "4.3.0",
  1552. "System.ComponentModel.Primitives": "4.3.0",
  1553. "System.Globalization": "4.3.0",
  1554. "System.Linq": "4.3.0",
  1555. "System.Reflection": "4.3.0",
  1556. "System.Reflection.Extensions": "4.3.0",
  1557. "System.Reflection.Primitives": "4.3.0",
  1558. "System.Reflection.TypeExtensions": "4.3.0",
  1559. "System.Resources.ResourceManager": "4.3.0",
  1560. "System.Runtime": "4.3.0",
  1561. "System.Runtime.Extensions": "4.3.0",
  1562. "System.Threading": "4.3.0"
  1563. },
  1564. "compile": {
  1565. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1566. },
  1567. "runtime": {
  1568. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1569. }
  1570. },
  1571. "System.Configuration.ConfigurationManager/4.7.0": {
  1572. "type": "package",
  1573. "dependencies": {
  1574. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1575. "System.Security.Permissions": "4.7.0"
  1576. },
  1577. "compile": {
  1578. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1579. },
  1580. "runtime": {
  1581. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1582. }
  1583. },
  1584. "System.Console/4.3.0": {
  1585. "type": "package",
  1586. "dependencies": {
  1587. "Microsoft.NETCore.Platforms": "1.1.0",
  1588. "Microsoft.NETCore.Targets": "1.1.0",
  1589. "System.IO": "4.3.0",
  1590. "System.Runtime": "4.3.0",
  1591. "System.Text.Encoding": "4.3.0"
  1592. },
  1593. "compile": {
  1594. "ref/netstandard1.3/System.Console.dll": {}
  1595. }
  1596. },
  1597. "System.Data.Common/4.3.0": {
  1598. "type": "package",
  1599. "dependencies": {
  1600. "System.Collections": "4.3.0",
  1601. "System.Globalization": "4.3.0",
  1602. "System.IO": "4.3.0",
  1603. "System.Resources.ResourceManager": "4.3.0",
  1604. "System.Runtime": "4.3.0",
  1605. "System.Runtime.Extensions": "4.3.0",
  1606. "System.Text.RegularExpressions": "4.3.0",
  1607. "System.Threading.Tasks": "4.3.0"
  1608. },
  1609. "compile": {
  1610. "ref/netstandard1.2/System.Data.Common.dll": {}
  1611. },
  1612. "runtime": {
  1613. "lib/netstandard1.2/System.Data.Common.dll": {}
  1614. }
  1615. },
  1616. "System.Data.SqlClient/4.4.0": {
  1617. "type": "package",
  1618. "dependencies": {
  1619. "Microsoft.Win32.Registry": "4.4.0",
  1620. "System.Security.Principal.Windows": "4.4.0",
  1621. "System.Text.Encoding.CodePages": "4.4.0",
  1622. "runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1623. },
  1624. "compile": {
  1625. "ref/netstandard2.0/System.Data.SqlClient.dll": {}
  1626. },
  1627. "runtime": {
  1628. "lib/netstandard2.0/System.Data.SqlClient.dll": {}
  1629. },
  1630. "runtimeTargets": {
  1631. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
  1632. "assetType": "runtime",
  1633. "rid": "unix"
  1634. },
  1635. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
  1636. "assetType": "runtime",
  1637. "rid": "win"
  1638. }
  1639. }
  1640. },
  1641. "System.Diagnostics.Debug/4.3.0": {
  1642. "type": "package",
  1643. "dependencies": {
  1644. "Microsoft.NETCore.Platforms": "1.1.0",
  1645. "Microsoft.NETCore.Targets": "1.1.0",
  1646. "System.Runtime": "4.3.0"
  1647. },
  1648. "compile": {
  1649. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1650. }
  1651. },
  1652. "System.Diagnostics.DiagnosticSource/4.7.1": {
  1653. "type": "package",
  1654. "compile": {
  1655. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1656. },
  1657. "runtime": {
  1658. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1659. }
  1660. },
  1661. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  1662. "type": "package",
  1663. "dependencies": {
  1664. "System.Diagnostics.TraceSource": "4.3.0",
  1665. "System.Globalization": "4.3.0",
  1666. "System.IO": "4.3.0",
  1667. "System.Resources.ResourceManager": "4.3.0",
  1668. "System.Runtime": "4.3.0",
  1669. "System.Threading": "4.3.0"
  1670. },
  1671. "compile": {
  1672. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
  1673. },
  1674. "runtime": {
  1675. "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll": {}
  1676. }
  1677. },
  1678. "System.Diagnostics.Tools/4.3.0": {
  1679. "type": "package",
  1680. "dependencies": {
  1681. "Microsoft.NETCore.Platforms": "1.1.0",
  1682. "Microsoft.NETCore.Targets": "1.1.0",
  1683. "System.Runtime": "4.3.0"
  1684. },
  1685. "compile": {
  1686. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1687. }
  1688. },
  1689. "System.Diagnostics.TraceSource/4.3.0": {
  1690. "type": "package",
  1691. "dependencies": {
  1692. "Microsoft.NETCore.Platforms": "1.1.0",
  1693. "System.Collections": "4.3.0",
  1694. "System.Diagnostics.Debug": "4.3.0",
  1695. "System.Globalization": "4.3.0",
  1696. "System.Resources.ResourceManager": "4.3.0",
  1697. "System.Runtime": "4.3.0",
  1698. "System.Runtime.Extensions": "4.3.0",
  1699. "System.Threading": "4.3.0",
  1700. "runtime.native.System": "4.3.0"
  1701. },
  1702. "compile": {
  1703. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  1704. },
  1705. "runtimeTargets": {
  1706. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1707. "assetType": "runtime",
  1708. "rid": "unix"
  1709. },
  1710. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1711. "assetType": "runtime",
  1712. "rid": "win"
  1713. }
  1714. }
  1715. },
  1716. "System.Diagnostics.Tracing/4.3.0": {
  1717. "type": "package",
  1718. "dependencies": {
  1719. "Microsoft.NETCore.Platforms": "1.1.0",
  1720. "Microsoft.NETCore.Targets": "1.1.0",
  1721. "System.Runtime": "4.3.0"
  1722. },
  1723. "compile": {
  1724. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1725. }
  1726. },
  1727. "System.Drawing.Common/4.7.0": {
  1728. "type": "package",
  1729. "dependencies": {
  1730. "Microsoft.NETCore.Platforms": "3.1.0",
  1731. "Microsoft.Win32.SystemEvents": "4.7.0"
  1732. },
  1733. "compile": {
  1734. "ref/netcoreapp3.0/System.Drawing.Common.dll": {}
  1735. },
  1736. "runtime": {
  1737. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  1738. },
  1739. "runtimeTargets": {
  1740. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1741. "assetType": "runtime",
  1742. "rid": "unix"
  1743. },
  1744. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1745. "assetType": "runtime",
  1746. "rid": "win"
  1747. }
  1748. }
  1749. },
  1750. "System.Dynamic.Runtime/4.3.0": {
  1751. "type": "package",
  1752. "dependencies": {
  1753. "System.Collections": "4.3.0",
  1754. "System.Diagnostics.Debug": "4.3.0",
  1755. "System.Linq": "4.3.0",
  1756. "System.Linq.Expressions": "4.3.0",
  1757. "System.ObjectModel": "4.3.0",
  1758. "System.Reflection": "4.3.0",
  1759. "System.Reflection.Emit": "4.3.0",
  1760. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1761. "System.Reflection.Primitives": "4.3.0",
  1762. "System.Reflection.TypeExtensions": "4.3.0",
  1763. "System.Resources.ResourceManager": "4.3.0",
  1764. "System.Runtime": "4.3.0",
  1765. "System.Runtime.Extensions": "4.3.0",
  1766. "System.Threading": "4.3.0"
  1767. },
  1768. "compile": {
  1769. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1770. },
  1771. "runtime": {
  1772. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  1773. }
  1774. },
  1775. "System.Globalization/4.3.0": {
  1776. "type": "package",
  1777. "dependencies": {
  1778. "Microsoft.NETCore.Platforms": "1.1.0",
  1779. "Microsoft.NETCore.Targets": "1.1.0",
  1780. "System.Runtime": "4.3.0"
  1781. },
  1782. "compile": {
  1783. "ref/netstandard1.3/System.Globalization.dll": {}
  1784. }
  1785. },
  1786. "System.Globalization.Calendars/4.3.0": {
  1787. "type": "package",
  1788. "dependencies": {
  1789. "Microsoft.NETCore.Platforms": "1.1.0",
  1790. "Microsoft.NETCore.Targets": "1.1.0",
  1791. "System.Globalization": "4.3.0",
  1792. "System.Runtime": "4.3.0"
  1793. },
  1794. "compile": {
  1795. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1796. }
  1797. },
  1798. "System.Globalization.Extensions/4.3.0": {
  1799. "type": "package",
  1800. "dependencies": {
  1801. "Microsoft.NETCore.Platforms": "1.1.0",
  1802. "System.Globalization": "4.3.0",
  1803. "System.Resources.ResourceManager": "4.3.0",
  1804. "System.Runtime": "4.3.0",
  1805. "System.Runtime.Extensions": "4.3.0",
  1806. "System.Runtime.InteropServices": "4.3.0"
  1807. },
  1808. "compile": {
  1809. "ref/netstandard1.3/_._": {}
  1810. },
  1811. "runtimeTargets": {
  1812. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1813. "assetType": "runtime",
  1814. "rid": "unix"
  1815. },
  1816. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1817. "assetType": "runtime",
  1818. "rid": "win"
  1819. }
  1820. }
  1821. },
  1822. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  1823. "type": "package",
  1824. "dependencies": {
  1825. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  1826. "Microsoft.IdentityModel.Tokens": "5.6.0",
  1827. "Newtonsoft.Json": "10.0.1"
  1828. },
  1829. "compile": {
  1830. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1831. },
  1832. "runtime": {
  1833. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1834. }
  1835. },
  1836. "System.IO/4.3.0": {
  1837. "type": "package",
  1838. "dependencies": {
  1839. "Microsoft.NETCore.Platforms": "1.1.0",
  1840. "Microsoft.NETCore.Targets": "1.1.0",
  1841. "System.Runtime": "4.3.0",
  1842. "System.Text.Encoding": "4.3.0",
  1843. "System.Threading.Tasks": "4.3.0"
  1844. },
  1845. "compile": {
  1846. "ref/netstandard1.5/System.IO.dll": {}
  1847. }
  1848. },
  1849. "System.IO.Compression/4.3.0": {
  1850. "type": "package",
  1851. "dependencies": {
  1852. "Microsoft.NETCore.Platforms": "1.1.0",
  1853. "System.Buffers": "4.3.0",
  1854. "System.Collections": "4.3.0",
  1855. "System.Diagnostics.Debug": "4.3.0",
  1856. "System.IO": "4.3.0",
  1857. "System.Resources.ResourceManager": "4.3.0",
  1858. "System.Runtime": "4.3.0",
  1859. "System.Runtime.Extensions": "4.3.0",
  1860. "System.Runtime.Handles": "4.3.0",
  1861. "System.Runtime.InteropServices": "4.3.0",
  1862. "System.Text.Encoding": "4.3.0",
  1863. "System.Threading": "4.3.0",
  1864. "System.Threading.Tasks": "4.3.0",
  1865. "runtime.native.System": "4.3.0",
  1866. "runtime.native.System.IO.Compression": "4.3.0"
  1867. },
  1868. "compile": {
  1869. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1870. },
  1871. "runtimeTargets": {
  1872. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1873. "assetType": "runtime",
  1874. "rid": "unix"
  1875. },
  1876. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1877. "assetType": "runtime",
  1878. "rid": "win"
  1879. }
  1880. }
  1881. },
  1882. "System.IO.Compression.ZipFile/4.3.0": {
  1883. "type": "package",
  1884. "dependencies": {
  1885. "System.Buffers": "4.3.0",
  1886. "System.IO": "4.3.0",
  1887. "System.IO.Compression": "4.3.0",
  1888. "System.IO.FileSystem": "4.3.0",
  1889. "System.IO.FileSystem.Primitives": "4.3.0",
  1890. "System.Resources.ResourceManager": "4.3.0",
  1891. "System.Runtime": "4.3.0",
  1892. "System.Runtime.Extensions": "4.3.0",
  1893. "System.Text.Encoding": "4.3.0"
  1894. },
  1895. "compile": {
  1896. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1897. },
  1898. "runtime": {
  1899. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1900. }
  1901. },
  1902. "System.IO.FileSystem/4.3.0": {
  1903. "type": "package",
  1904. "dependencies": {
  1905. "Microsoft.NETCore.Platforms": "1.1.0",
  1906. "Microsoft.NETCore.Targets": "1.1.0",
  1907. "System.IO": "4.3.0",
  1908. "System.IO.FileSystem.Primitives": "4.3.0",
  1909. "System.Runtime": "4.3.0",
  1910. "System.Runtime.Handles": "4.3.0",
  1911. "System.Text.Encoding": "4.3.0",
  1912. "System.Threading.Tasks": "4.3.0"
  1913. },
  1914. "compile": {
  1915. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1916. }
  1917. },
  1918. "System.IO.FileSystem.Primitives/4.3.0": {
  1919. "type": "package",
  1920. "dependencies": {
  1921. "System.Runtime": "4.3.0"
  1922. },
  1923. "compile": {
  1924. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1925. },
  1926. "runtime": {
  1927. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1928. }
  1929. },
  1930. "System.Linq/4.3.0": {
  1931. "type": "package",
  1932. "dependencies": {
  1933. "System.Collections": "4.3.0",
  1934. "System.Diagnostics.Debug": "4.3.0",
  1935. "System.Resources.ResourceManager": "4.3.0",
  1936. "System.Runtime": "4.3.0",
  1937. "System.Runtime.Extensions": "4.3.0"
  1938. },
  1939. "compile": {
  1940. "ref/netstandard1.6/System.Linq.dll": {}
  1941. },
  1942. "runtime": {
  1943. "lib/netstandard1.6/System.Linq.dll": {}
  1944. }
  1945. },
  1946. "System.Linq.Expressions/4.3.0": {
  1947. "type": "package",
  1948. "dependencies": {
  1949. "System.Collections": "4.3.0",
  1950. "System.Diagnostics.Debug": "4.3.0",
  1951. "System.Globalization": "4.3.0",
  1952. "System.IO": "4.3.0",
  1953. "System.Linq": "4.3.0",
  1954. "System.ObjectModel": "4.3.0",
  1955. "System.Reflection": "4.3.0",
  1956. "System.Reflection.Emit": "4.3.0",
  1957. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1958. "System.Reflection.Emit.Lightweight": "4.3.0",
  1959. "System.Reflection.Extensions": "4.3.0",
  1960. "System.Reflection.Primitives": "4.3.0",
  1961. "System.Reflection.TypeExtensions": "4.3.0",
  1962. "System.Resources.ResourceManager": "4.3.0",
  1963. "System.Runtime": "4.3.0",
  1964. "System.Runtime.Extensions": "4.3.0",
  1965. "System.Threading": "4.3.0"
  1966. },
  1967. "compile": {
  1968. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1969. },
  1970. "runtime": {
  1971. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1972. }
  1973. },
  1974. "System.Net.Http/4.3.0": {
  1975. "type": "package",
  1976. "dependencies": {
  1977. "Microsoft.NETCore.Platforms": "1.1.0",
  1978. "System.Collections": "4.3.0",
  1979. "System.Diagnostics.Debug": "4.3.0",
  1980. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1981. "System.Diagnostics.Tracing": "4.3.0",
  1982. "System.Globalization": "4.3.0",
  1983. "System.Globalization.Extensions": "4.3.0",
  1984. "System.IO": "4.3.0",
  1985. "System.IO.FileSystem": "4.3.0",
  1986. "System.Net.Primitives": "4.3.0",
  1987. "System.Resources.ResourceManager": "4.3.0",
  1988. "System.Runtime": "4.3.0",
  1989. "System.Runtime.Extensions": "4.3.0",
  1990. "System.Runtime.Handles": "4.3.0",
  1991. "System.Runtime.InteropServices": "4.3.0",
  1992. "System.Security.Cryptography.Algorithms": "4.3.0",
  1993. "System.Security.Cryptography.Encoding": "4.3.0",
  1994. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1995. "System.Security.Cryptography.Primitives": "4.3.0",
  1996. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1997. "System.Text.Encoding": "4.3.0",
  1998. "System.Threading": "4.3.0",
  1999. "System.Threading.Tasks": "4.3.0",
  2000. "runtime.native.System": "4.3.0",
  2001. "runtime.native.System.Net.Http": "4.3.0",
  2002. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2003. },
  2004. "compile": {
  2005. "ref/netstandard1.3/System.Net.Http.dll": {}
  2006. },
  2007. "runtimeTargets": {
  2008. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2009. "assetType": "runtime",
  2010. "rid": "unix"
  2011. },
  2012. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2013. "assetType": "runtime",
  2014. "rid": "win"
  2015. }
  2016. }
  2017. },
  2018. "System.Net.Http.WinHttpHandler/4.4.0": {
  2019. "type": "package",
  2020. "compile": {
  2021. "ref/netstandard2.0/_._": {}
  2022. },
  2023. "runtime": {
  2024. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {}
  2025. },
  2026. "runtimeTargets": {
  2027. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {
  2028. "assetType": "runtime",
  2029. "rid": "win"
  2030. }
  2031. }
  2032. },
  2033. "System.Net.Primitives/4.3.0": {
  2034. "type": "package",
  2035. "dependencies": {
  2036. "Microsoft.NETCore.Platforms": "1.1.0",
  2037. "Microsoft.NETCore.Targets": "1.1.0",
  2038. "System.Runtime": "4.3.0",
  2039. "System.Runtime.Handles": "4.3.0"
  2040. },
  2041. "compile": {
  2042. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  2043. }
  2044. },
  2045. "System.Net.Requests/4.3.0": {
  2046. "type": "package",
  2047. "dependencies": {
  2048. "Microsoft.NETCore.Platforms": "1.1.0",
  2049. "System.Collections": "4.3.0",
  2050. "System.Diagnostics.Debug": "4.3.0",
  2051. "System.Diagnostics.Tracing": "4.3.0",
  2052. "System.Globalization": "4.3.0",
  2053. "System.IO": "4.3.0",
  2054. "System.Net.Http": "4.3.0",
  2055. "System.Net.Primitives": "4.3.0",
  2056. "System.Net.WebHeaderCollection": "4.3.0",
  2057. "System.Resources.ResourceManager": "4.3.0",
  2058. "System.Runtime": "4.3.0",
  2059. "System.Threading": "4.3.0",
  2060. "System.Threading.Tasks": "4.3.0"
  2061. },
  2062. "compile": {
  2063. "ref/netstandard1.3/System.Net.Requests.dll": {}
  2064. },
  2065. "runtimeTargets": {
  2066. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": {
  2067. "assetType": "runtime",
  2068. "rid": "unix"
  2069. },
  2070. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {
  2071. "assetType": "runtime",
  2072. "rid": "win"
  2073. }
  2074. }
  2075. },
  2076. "System.Net.Sockets/4.3.0": {
  2077. "type": "package",
  2078. "dependencies": {
  2079. "Microsoft.NETCore.Platforms": "1.1.0",
  2080. "Microsoft.NETCore.Targets": "1.1.0",
  2081. "System.IO": "4.3.0",
  2082. "System.Net.Primitives": "4.3.0",
  2083. "System.Runtime": "4.3.0",
  2084. "System.Threading.Tasks": "4.3.0"
  2085. },
  2086. "compile": {
  2087. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  2088. }
  2089. },
  2090. "System.Net.WebHeaderCollection/4.3.0": {
  2091. "type": "package",
  2092. "dependencies": {
  2093. "System.Collections": "4.3.0",
  2094. "System.Resources.ResourceManager": "4.3.0",
  2095. "System.Runtime": "4.3.0",
  2096. "System.Runtime.Extensions": "4.3.0"
  2097. },
  2098. "compile": {
  2099. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2100. },
  2101. "runtime": {
  2102. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2103. }
  2104. },
  2105. "System.ObjectModel/4.3.0": {
  2106. "type": "package",
  2107. "dependencies": {
  2108. "System.Collections": "4.3.0",
  2109. "System.Diagnostics.Debug": "4.3.0",
  2110. "System.Resources.ResourceManager": "4.3.0",
  2111. "System.Runtime": "4.3.0",
  2112. "System.Threading": "4.3.0"
  2113. },
  2114. "compile": {
  2115. "ref/netstandard1.3/System.ObjectModel.dll": {}
  2116. },
  2117. "runtime": {
  2118. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2119. }
  2120. },
  2121. "System.Private.ServiceModel/4.4.4": {
  2122. "type": "package",
  2123. "dependencies": {
  2124. "Microsoft.NETCore.Platforms": "2.0.0",
  2125. "System.Net.Http.WinHttpHandler": "4.4.0",
  2126. "System.Reflection.DispatchProxy": "4.4.0",
  2127. "System.Security.Principal.Windows": "4.4.0"
  2128. },
  2129. "compile": {
  2130. "ref/netstandard/_._": {}
  2131. },
  2132. "runtimeTargets": {
  2133. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  2134. "assetType": "runtime",
  2135. "rid": "unix"
  2136. },
  2137. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll": {
  2138. "assetType": "runtime",
  2139. "rid": "win7"
  2140. }
  2141. }
  2142. },
  2143. "System.Reflection/4.3.0": {
  2144. "type": "package",
  2145. "dependencies": {
  2146. "Microsoft.NETCore.Platforms": "1.1.0",
  2147. "Microsoft.NETCore.Targets": "1.1.0",
  2148. "System.IO": "4.3.0",
  2149. "System.Reflection.Primitives": "4.3.0",
  2150. "System.Runtime": "4.3.0"
  2151. },
  2152. "compile": {
  2153. "ref/netstandard1.5/System.Reflection.dll": {}
  2154. }
  2155. },
  2156. "System.Reflection.DispatchProxy/4.4.0": {
  2157. "type": "package",
  2158. "compile": {
  2159. "ref/netcoreapp2.0/_._": {}
  2160. },
  2161. "runtime": {
  2162. "lib/netcoreapp2.0/_._": {}
  2163. }
  2164. },
  2165. "System.Reflection.Emit/4.3.0": {
  2166. "type": "package",
  2167. "dependencies": {
  2168. "System.IO": "4.3.0",
  2169. "System.Reflection": "4.3.0",
  2170. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2171. "System.Reflection.Primitives": "4.3.0",
  2172. "System.Runtime": "4.3.0"
  2173. },
  2174. "compile": {
  2175. "ref/netstandard1.1/_._": {}
  2176. },
  2177. "runtime": {
  2178. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2179. }
  2180. },
  2181. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2182. "type": "package",
  2183. "dependencies": {
  2184. "System.Reflection": "4.3.0",
  2185. "System.Reflection.Primitives": "4.3.0",
  2186. "System.Runtime": "4.3.0"
  2187. },
  2188. "compile": {
  2189. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
  2190. },
  2191. "runtime": {
  2192. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2193. }
  2194. },
  2195. "System.Reflection.Emit.Lightweight/4.3.0": {
  2196. "type": "package",
  2197. "dependencies": {
  2198. "System.Reflection": "4.3.0",
  2199. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2200. "System.Reflection.Primitives": "4.3.0",
  2201. "System.Runtime": "4.3.0"
  2202. },
  2203. "compile": {
  2204. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {}
  2205. },
  2206. "runtime": {
  2207. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2208. }
  2209. },
  2210. "System.Reflection.Extensions/4.3.0": {
  2211. "type": "package",
  2212. "dependencies": {
  2213. "Microsoft.NETCore.Platforms": "1.1.0",
  2214. "Microsoft.NETCore.Targets": "1.1.0",
  2215. "System.Reflection": "4.3.0",
  2216. "System.Runtime": "4.3.0"
  2217. },
  2218. "compile": {
  2219. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  2220. }
  2221. },
  2222. "System.Reflection.Primitives/4.3.0": {
  2223. "type": "package",
  2224. "dependencies": {
  2225. "Microsoft.NETCore.Platforms": "1.1.0",
  2226. "Microsoft.NETCore.Targets": "1.1.0",
  2227. "System.Runtime": "4.3.0"
  2228. },
  2229. "compile": {
  2230. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  2231. }
  2232. },
  2233. "System.Reflection.TypeExtensions/4.7.0": {
  2234. "type": "package",
  2235. "compile": {
  2236. "ref/netcoreapp2.0/_._": {}
  2237. },
  2238. "runtime": {
  2239. "lib/netcoreapp2.0/_._": {}
  2240. }
  2241. },
  2242. "System.Resources.ResourceManager/4.3.0": {
  2243. "type": "package",
  2244. "dependencies": {
  2245. "Microsoft.NETCore.Platforms": "1.1.0",
  2246. "Microsoft.NETCore.Targets": "1.1.0",
  2247. "System.Globalization": "4.3.0",
  2248. "System.Reflection": "4.3.0",
  2249. "System.Runtime": "4.3.0"
  2250. },
  2251. "compile": {
  2252. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  2253. }
  2254. },
  2255. "System.Runtime/4.3.0": {
  2256. "type": "package",
  2257. "dependencies": {
  2258. "Microsoft.NETCore.Platforms": "1.1.0",
  2259. "Microsoft.NETCore.Targets": "1.1.0"
  2260. },
  2261. "compile": {
  2262. "ref/netstandard1.5/System.Runtime.dll": {}
  2263. }
  2264. },
  2265. "System.Runtime.Extensions/4.3.0": {
  2266. "type": "package",
  2267. "dependencies": {
  2268. "Microsoft.NETCore.Platforms": "1.1.0",
  2269. "Microsoft.NETCore.Targets": "1.1.0",
  2270. "System.Runtime": "4.3.0"
  2271. },
  2272. "compile": {
  2273. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  2274. }
  2275. },
  2276. "System.Runtime.Handles/4.3.0": {
  2277. "type": "package",
  2278. "dependencies": {
  2279. "Microsoft.NETCore.Platforms": "1.1.0",
  2280. "Microsoft.NETCore.Targets": "1.1.0",
  2281. "System.Runtime": "4.3.0"
  2282. },
  2283. "compile": {
  2284. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  2285. }
  2286. },
  2287. "System.Runtime.InteropServices/4.3.0": {
  2288. "type": "package",
  2289. "dependencies": {
  2290. "Microsoft.NETCore.Platforms": "1.1.0",
  2291. "Microsoft.NETCore.Targets": "1.1.0",
  2292. "System.Reflection": "4.3.0",
  2293. "System.Reflection.Primitives": "4.3.0",
  2294. "System.Runtime": "4.3.0",
  2295. "System.Runtime.Handles": "4.3.0"
  2296. },
  2297. "compile": {
  2298. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2299. }
  2300. },
  2301. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2302. "type": "package",
  2303. "dependencies": {
  2304. "System.Reflection": "4.3.0",
  2305. "System.Reflection.Extensions": "4.3.0",
  2306. "System.Resources.ResourceManager": "4.3.0",
  2307. "System.Runtime": "4.3.0",
  2308. "System.Runtime.InteropServices": "4.3.0",
  2309. "System.Threading": "4.3.0",
  2310. "runtime.native.System": "4.3.0"
  2311. },
  2312. "compile": {
  2313. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2314. },
  2315. "runtime": {
  2316. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2317. },
  2318. "runtimeTargets": {
  2319. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2320. "assetType": "runtime",
  2321. "rid": "unix"
  2322. },
  2323. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2324. "assetType": "runtime",
  2325. "rid": "win"
  2326. }
  2327. }
  2328. },
  2329. "System.Runtime.Loader/4.3.0": {
  2330. "type": "package",
  2331. "dependencies": {
  2332. "System.IO": "4.3.0",
  2333. "System.Reflection": "4.3.0",
  2334. "System.Runtime": "4.3.0"
  2335. },
  2336. "compile": {
  2337. "ref/netstandard1.5/System.Runtime.Loader.dll": {}
  2338. },
  2339. "runtime": {
  2340. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  2341. }
  2342. },
  2343. "System.Runtime.Numerics/4.3.0": {
  2344. "type": "package",
  2345. "dependencies": {
  2346. "System.Globalization": "4.3.0",
  2347. "System.Resources.ResourceManager": "4.3.0",
  2348. "System.Runtime": "4.3.0",
  2349. "System.Runtime.Extensions": "4.3.0"
  2350. },
  2351. "compile": {
  2352. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  2353. },
  2354. "runtime": {
  2355. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2356. }
  2357. },
  2358. "System.Runtime.Serialization.Formatters/4.3.0": {
  2359. "type": "package",
  2360. "dependencies": {
  2361. "System.Collections": "4.3.0",
  2362. "System.Reflection": "4.3.0",
  2363. "System.Resources.ResourceManager": "4.3.0",
  2364. "System.Runtime": "4.3.0",
  2365. "System.Runtime.Serialization.Primitives": "4.3.0"
  2366. },
  2367. "compile": {
  2368. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {}
  2369. },
  2370. "runtime": {
  2371. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
  2372. }
  2373. },
  2374. "System.Runtime.Serialization.Primitives/4.3.0": {
  2375. "type": "package",
  2376. "dependencies": {
  2377. "System.Resources.ResourceManager": "4.3.0",
  2378. "System.Runtime": "4.3.0"
  2379. },
  2380. "compile": {
  2381. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2382. },
  2383. "runtime": {
  2384. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2385. }
  2386. },
  2387. "System.Security.AccessControl/4.7.0": {
  2388. "type": "package",
  2389. "dependencies": {
  2390. "Microsoft.NETCore.Platforms": "3.1.0",
  2391. "System.Security.Principal.Windows": "4.7.0"
  2392. },
  2393. "compile": {
  2394. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  2395. },
  2396. "runtime": {
  2397. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  2398. },
  2399. "runtimeTargets": {
  2400. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2401. "assetType": "runtime",
  2402. "rid": "win"
  2403. }
  2404. }
  2405. },
  2406. "System.Security.Cryptography.Algorithms/4.3.1": {
  2407. "type": "package",
  2408. "dependencies": {
  2409. "Microsoft.NETCore.Platforms": "1.1.0",
  2410. "System.Collections": "4.3.0",
  2411. "System.IO": "4.3.0",
  2412. "System.Resources.ResourceManager": "4.3.0",
  2413. "System.Runtime": "4.3.0",
  2414. "System.Runtime.Extensions": "4.3.0",
  2415. "System.Runtime.Handles": "4.3.0",
  2416. "System.Runtime.InteropServices": "4.3.0",
  2417. "System.Runtime.Numerics": "4.3.0",
  2418. "System.Security.Cryptography.Encoding": "4.3.0",
  2419. "System.Security.Cryptography.Primitives": "4.3.0",
  2420. "System.Text.Encoding": "4.3.0",
  2421. "runtime.native.System.Security.Cryptography.Apple": "4.3.1",
  2422. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
  2423. },
  2424. "compile": {
  2425. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2426. },
  2427. "runtimeTargets": {
  2428. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2429. "assetType": "runtime",
  2430. "rid": "osx"
  2431. },
  2432. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2433. "assetType": "runtime",
  2434. "rid": "unix"
  2435. },
  2436. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2437. "assetType": "runtime",
  2438. "rid": "win"
  2439. }
  2440. }
  2441. },
  2442. "System.Security.Cryptography.Cng/4.5.0": {
  2443. "type": "package",
  2444. "compile": {
  2445. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2446. },
  2447. "runtime": {
  2448. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2449. },
  2450. "runtimeTargets": {
  2451. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2452. "assetType": "runtime",
  2453. "rid": "win"
  2454. }
  2455. }
  2456. },
  2457. "System.Security.Cryptography.Csp/4.3.0": {
  2458. "type": "package",
  2459. "dependencies": {
  2460. "Microsoft.NETCore.Platforms": "1.1.0",
  2461. "System.IO": "4.3.0",
  2462. "System.Reflection": "4.3.0",
  2463. "System.Resources.ResourceManager": "4.3.0",
  2464. "System.Runtime": "4.3.0",
  2465. "System.Runtime.Extensions": "4.3.0",
  2466. "System.Runtime.Handles": "4.3.0",
  2467. "System.Runtime.InteropServices": "4.3.0",
  2468. "System.Security.Cryptography.Algorithms": "4.3.0",
  2469. "System.Security.Cryptography.Encoding": "4.3.0",
  2470. "System.Security.Cryptography.Primitives": "4.3.0",
  2471. "System.Text.Encoding": "4.3.0",
  2472. "System.Threading": "4.3.0"
  2473. },
  2474. "compile": {
  2475. "ref/netstandard1.3/_._": {}
  2476. },
  2477. "runtimeTargets": {
  2478. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2479. "assetType": "runtime",
  2480. "rid": "unix"
  2481. },
  2482. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2483. "assetType": "runtime",
  2484. "rid": "win"
  2485. }
  2486. }
  2487. },
  2488. "System.Security.Cryptography.Encoding/4.3.0": {
  2489. "type": "package",
  2490. "dependencies": {
  2491. "Microsoft.NETCore.Platforms": "1.1.0",
  2492. "System.Collections": "4.3.0",
  2493. "System.Collections.Concurrent": "4.3.0",
  2494. "System.Linq": "4.3.0",
  2495. "System.Resources.ResourceManager": "4.3.0",
  2496. "System.Runtime": "4.3.0",
  2497. "System.Runtime.Extensions": "4.3.0",
  2498. "System.Runtime.Handles": "4.3.0",
  2499. "System.Runtime.InteropServices": "4.3.0",
  2500. "System.Security.Cryptography.Primitives": "4.3.0",
  2501. "System.Text.Encoding": "4.3.0",
  2502. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2503. },
  2504. "compile": {
  2505. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  2506. },
  2507. "runtimeTargets": {
  2508. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2509. "assetType": "runtime",
  2510. "rid": "unix"
  2511. },
  2512. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2513. "assetType": "runtime",
  2514. "rid": "win"
  2515. }
  2516. }
  2517. },
  2518. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2519. "type": "package",
  2520. "dependencies": {
  2521. "System.Collections": "4.3.0",
  2522. "System.IO": "4.3.0",
  2523. "System.Resources.ResourceManager": "4.3.0",
  2524. "System.Runtime": "4.3.0",
  2525. "System.Runtime.Extensions": "4.3.0",
  2526. "System.Runtime.Handles": "4.3.0",
  2527. "System.Runtime.InteropServices": "4.3.0",
  2528. "System.Runtime.Numerics": "4.3.0",
  2529. "System.Security.Cryptography.Algorithms": "4.3.0",
  2530. "System.Security.Cryptography.Encoding": "4.3.0",
  2531. "System.Security.Cryptography.Primitives": "4.3.0",
  2532. "System.Text.Encoding": "4.3.0",
  2533. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2534. },
  2535. "compile": {
  2536. "ref/netstandard1.6/_._": {}
  2537. },
  2538. "runtime": {
  2539. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2540. },
  2541. "runtimeTargets": {
  2542. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2543. "assetType": "runtime",
  2544. "rid": "unix"
  2545. }
  2546. }
  2547. },
  2548. "System.Security.Cryptography.Primitives/4.3.0": {
  2549. "type": "package",
  2550. "dependencies": {
  2551. "System.Diagnostics.Debug": "4.3.0",
  2552. "System.Globalization": "4.3.0",
  2553. "System.IO": "4.3.0",
  2554. "System.Resources.ResourceManager": "4.3.0",
  2555. "System.Runtime": "4.3.0",
  2556. "System.Threading": "4.3.0",
  2557. "System.Threading.Tasks": "4.3.0"
  2558. },
  2559. "compile": {
  2560. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2561. },
  2562. "runtime": {
  2563. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2564. }
  2565. },
  2566. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2567. "type": "package",
  2568. "compile": {
  2569. "ref/netstandard2.0/_._": {}
  2570. },
  2571. "runtime": {
  2572. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2573. },
  2574. "runtimeTargets": {
  2575. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2576. "assetType": "runtime",
  2577. "rid": "win"
  2578. }
  2579. }
  2580. },
  2581. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2582. "type": "package",
  2583. "dependencies": {
  2584. "Microsoft.NETCore.Platforms": "1.1.0",
  2585. "System.Collections": "4.3.0",
  2586. "System.Diagnostics.Debug": "4.3.0",
  2587. "System.Globalization": "4.3.0",
  2588. "System.Globalization.Calendars": "4.3.0",
  2589. "System.IO": "4.3.0",
  2590. "System.IO.FileSystem": "4.3.0",
  2591. "System.IO.FileSystem.Primitives": "4.3.0",
  2592. "System.Resources.ResourceManager": "4.3.0",
  2593. "System.Runtime": "4.3.0",
  2594. "System.Runtime.Extensions": "4.3.0",
  2595. "System.Runtime.Handles": "4.3.0",
  2596. "System.Runtime.InteropServices": "4.3.0",
  2597. "System.Runtime.Numerics": "4.3.0",
  2598. "System.Security.Cryptography.Algorithms": "4.3.0",
  2599. "System.Security.Cryptography.Cng": "4.3.0",
  2600. "System.Security.Cryptography.Csp": "4.3.0",
  2601. "System.Security.Cryptography.Encoding": "4.3.0",
  2602. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2603. "System.Security.Cryptography.Primitives": "4.3.0",
  2604. "System.Text.Encoding": "4.3.0",
  2605. "System.Threading": "4.3.0",
  2606. "runtime.native.System": "4.3.0",
  2607. "runtime.native.System.Net.Http": "4.3.0",
  2608. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2609. },
  2610. "compile": {
  2611. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2612. },
  2613. "runtimeTargets": {
  2614. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2615. "assetType": "runtime",
  2616. "rid": "unix"
  2617. },
  2618. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2619. "assetType": "runtime",
  2620. "rid": "win"
  2621. }
  2622. }
  2623. },
  2624. "System.Security.Permissions/4.7.0": {
  2625. "type": "package",
  2626. "dependencies": {
  2627. "System.Security.AccessControl": "4.7.0",
  2628. "System.Windows.Extensions": "4.7.0"
  2629. },
  2630. "compile": {
  2631. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  2632. },
  2633. "runtime": {
  2634. "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
  2635. }
  2636. },
  2637. "System.Security.Principal.Windows/4.7.0": {
  2638. "type": "package",
  2639. "compile": {
  2640. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  2641. },
  2642. "runtime": {
  2643. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2644. },
  2645. "runtimeTargets": {
  2646. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2647. "assetType": "runtime",
  2648. "rid": "unix"
  2649. },
  2650. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2651. "assetType": "runtime",
  2652. "rid": "win"
  2653. }
  2654. }
  2655. },
  2656. "System.ServiceModel.Duplex/4.4.4": {
  2657. "type": "package",
  2658. "dependencies": {
  2659. "System.Private.ServiceModel": "4.4.4",
  2660. "System.ServiceModel.Primitives": "4.4.4"
  2661. },
  2662. "compile": {
  2663. "ref/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  2664. },
  2665. "runtime": {
  2666. "lib/netstandard2.0/System.ServiceModel.Duplex.dll": {}
  2667. }
  2668. },
  2669. "System.ServiceModel.Http/4.4.4": {
  2670. "type": "package",
  2671. "dependencies": {
  2672. "System.Private.ServiceModel": "4.4.4",
  2673. "System.ServiceModel.Primitives": "4.4.4"
  2674. },
  2675. "compile": {
  2676. "ref/netstandard2.0/System.ServiceModel.Http.dll": {}
  2677. },
  2678. "runtime": {
  2679. "lib/netstandard2.0/System.ServiceModel.Http.dll": {}
  2680. }
  2681. },
  2682. "System.ServiceModel.NetTcp/4.4.4": {
  2683. "type": "package",
  2684. "dependencies": {
  2685. "System.Private.ServiceModel": "4.4.4",
  2686. "System.ServiceModel.Primitives": "4.4.4"
  2687. },
  2688. "compile": {
  2689. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  2690. },
  2691. "runtime": {
  2692. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll": {}
  2693. }
  2694. },
  2695. "System.ServiceModel.Primitives/4.4.4": {
  2696. "type": "package",
  2697. "dependencies": {
  2698. "System.Private.ServiceModel": "4.4.4"
  2699. },
  2700. "compile": {
  2701. "ref/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  2702. "ref/netstandard2.0/System.ServiceModel.dll": {}
  2703. },
  2704. "runtime": {
  2705. "lib/netstandard2.0/System.ServiceModel.Primitives.dll": {},
  2706. "lib/netstandard2.0/System.ServiceModel.dll": {}
  2707. }
  2708. },
  2709. "System.ServiceModel.Security/4.4.4": {
  2710. "type": "package",
  2711. "dependencies": {
  2712. "System.Private.ServiceModel": "4.4.4",
  2713. "System.ServiceModel.Primitives": "4.4.4"
  2714. },
  2715. "compile": {
  2716. "ref/netstandard2.0/System.ServiceModel.Security.dll": {}
  2717. },
  2718. "runtime": {
  2719. "lib/netstandard2.0/System.ServiceModel.Security.dll": {}
  2720. }
  2721. },
  2722. "System.Text.Encoding/4.3.0": {
  2723. "type": "package",
  2724. "dependencies": {
  2725. "Microsoft.NETCore.Platforms": "1.1.0",
  2726. "Microsoft.NETCore.Targets": "1.1.0",
  2727. "System.Runtime": "4.3.0"
  2728. },
  2729. "compile": {
  2730. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2731. }
  2732. },
  2733. "System.Text.Encoding.CodePages/4.7.1": {
  2734. "type": "package",
  2735. "dependencies": {
  2736. "Microsoft.NETCore.Platforms": "3.1.1"
  2737. },
  2738. "compile": {
  2739. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2740. },
  2741. "runtime": {
  2742. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2743. },
  2744. "runtimeTargets": {
  2745. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2746. "assetType": "runtime",
  2747. "rid": "win"
  2748. }
  2749. }
  2750. },
  2751. "System.Text.Encoding.Extensions/4.3.0": {
  2752. "type": "package",
  2753. "dependencies": {
  2754. "Microsoft.NETCore.Platforms": "1.1.0",
  2755. "Microsoft.NETCore.Targets": "1.1.0",
  2756. "System.Runtime": "4.3.0",
  2757. "System.Text.Encoding": "4.3.0"
  2758. },
  2759. "compile": {
  2760. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2761. }
  2762. },
  2763. "System.Text.Encodings.Web/4.5.0": {
  2764. "type": "package",
  2765. "compile": {
  2766. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2767. },
  2768. "runtime": {
  2769. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2770. }
  2771. },
  2772. "System.Text.RegularExpressions/4.3.0": {
  2773. "type": "package",
  2774. "dependencies": {
  2775. "System.Runtime": "4.3.0"
  2776. },
  2777. "compile": {
  2778. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2779. },
  2780. "runtime": {
  2781. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2782. }
  2783. },
  2784. "System.Threading/4.3.0": {
  2785. "type": "package",
  2786. "dependencies": {
  2787. "System.Runtime": "4.3.0",
  2788. "System.Threading.Tasks": "4.3.0"
  2789. },
  2790. "compile": {
  2791. "ref/netstandard1.3/System.Threading.dll": {}
  2792. },
  2793. "runtime": {
  2794. "lib/netstandard1.3/System.Threading.dll": {}
  2795. }
  2796. },
  2797. "System.Threading.Tasks/4.3.0": {
  2798. "type": "package",
  2799. "dependencies": {
  2800. "Microsoft.NETCore.Platforms": "1.1.0",
  2801. "Microsoft.NETCore.Targets": "1.1.0",
  2802. "System.Runtime": "4.3.0"
  2803. },
  2804. "compile": {
  2805. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2806. }
  2807. },
  2808. "System.Threading.Tasks.Extensions/4.3.0": {
  2809. "type": "package",
  2810. "dependencies": {
  2811. "System.Collections": "4.3.0",
  2812. "System.Runtime": "4.3.0",
  2813. "System.Threading.Tasks": "4.3.0"
  2814. },
  2815. "compile": {
  2816. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2817. },
  2818. "runtime": {
  2819. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  2820. }
  2821. },
  2822. "System.Threading.Timer/4.3.0": {
  2823. "type": "package",
  2824. "dependencies": {
  2825. "Microsoft.NETCore.Platforms": "1.1.0",
  2826. "Microsoft.NETCore.Targets": "1.1.0",
  2827. "System.Runtime": "4.3.0"
  2828. },
  2829. "compile": {
  2830. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2831. }
  2832. },
  2833. "System.Windows.Extensions/4.7.0": {
  2834. "type": "package",
  2835. "dependencies": {
  2836. "System.Drawing.Common": "4.7.0"
  2837. },
  2838. "compile": {
  2839. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2840. },
  2841. "runtime": {
  2842. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
  2843. },
  2844. "runtimeTargets": {
  2845. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  2846. "assetType": "runtime",
  2847. "rid": "win"
  2848. }
  2849. }
  2850. },
  2851. "System.Xml.ReaderWriter/4.3.1": {
  2852. "type": "package",
  2853. "dependencies": {
  2854. "System.Collections": "4.3.0",
  2855. "System.Diagnostics.Debug": "4.3.0",
  2856. "System.Globalization": "4.3.0",
  2857. "System.IO": "4.3.0",
  2858. "System.IO.FileSystem": "4.3.0",
  2859. "System.IO.FileSystem.Primitives": "4.3.0",
  2860. "System.Resources.ResourceManager": "4.3.0",
  2861. "System.Runtime": "4.3.0",
  2862. "System.Runtime.Extensions": "4.3.0",
  2863. "System.Runtime.InteropServices": "4.3.0",
  2864. "System.Text.Encoding": "4.3.0",
  2865. "System.Text.Encoding.Extensions": "4.3.0",
  2866. "System.Text.RegularExpressions": "4.3.0",
  2867. "System.Threading.Tasks": "4.3.0",
  2868. "System.Threading.Tasks.Extensions": "4.3.0"
  2869. },
  2870. "compile": {
  2871. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2872. },
  2873. "runtime": {
  2874. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2875. }
  2876. },
  2877. "System.Xml.XDocument/4.3.0": {
  2878. "type": "package",
  2879. "dependencies": {
  2880. "System.Collections": "4.3.0",
  2881. "System.Diagnostics.Debug": "4.3.0",
  2882. "System.Diagnostics.Tools": "4.3.0",
  2883. "System.Globalization": "4.3.0",
  2884. "System.IO": "4.3.0",
  2885. "System.Reflection": "4.3.0",
  2886. "System.Resources.ResourceManager": "4.3.0",
  2887. "System.Runtime": "4.3.0",
  2888. "System.Runtime.Extensions": "4.3.0",
  2889. "System.Text.Encoding": "4.3.0",
  2890. "System.Threading": "4.3.0",
  2891. "System.Xml.ReaderWriter": "4.3.0"
  2892. },
  2893. "compile": {
  2894. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2895. },
  2896. "runtime": {
  2897. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2898. }
  2899. },
  2900. "System.Xml.XmlDocument/4.3.0": {
  2901. "type": "package",
  2902. "dependencies": {
  2903. "System.Collections": "4.3.0",
  2904. "System.Diagnostics.Debug": "4.3.0",
  2905. "System.Globalization": "4.3.0",
  2906. "System.IO": "4.3.0",
  2907. "System.Resources.ResourceManager": "4.3.0",
  2908. "System.Runtime": "4.3.0",
  2909. "System.Runtime.Extensions": "4.3.0",
  2910. "System.Text.Encoding": "4.3.0",
  2911. "System.Threading": "4.3.0",
  2912. "System.Xml.ReaderWriter": "4.3.0"
  2913. },
  2914. "compile": {
  2915. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2916. },
  2917. "runtime": {
  2918. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2919. }
  2920. },
  2921. "WebAPIBase.NetCore.BusinessCore/1.0.0": {
  2922. "type": "project",
  2923. "framework": ".NETStandard,Version=v2.1",
  2924. "dependencies": {
  2925. "Microsoft.Extensions.Configuration.Abstractions": "3.1.10",
  2926. "NLog": "4.7.5",
  2927. "System.ServiceModel.Duplex": "4.4.0",
  2928. "System.ServiceModel.Http": "4.4.0",
  2929. "System.ServiceModel.NetTcp": "4.4.0",
  2930. "System.ServiceModel.Security": "4.4.0",
  2931. "WebAPIBase.NetCore.Enties": "1.0.0",
  2932. "WebAPIBase.Utils": "1.0.0",
  2933. "iTextSharp.LGPLv2.Core": "1.7.0",
  2934. "sqlSugarCore": "5.0.0.18"
  2935. },
  2936. "compile": {
  2937. "bin/placeholder/WebAPIBase.NetCore.BusinessCore.dll": {}
  2938. },
  2939. "runtime": {
  2940. "bin/placeholder/WebAPIBase.NetCore.BusinessCore.dll": {}
  2941. }
  2942. },
  2943. "WebAPIBase.NetCore.Enties/1.0.0": {
  2944. "type": "project",
  2945. "framework": ".NETStandard,Version=v2.1",
  2946. "dependencies": {
  2947. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "3.1.10",
  2948. "Microsoft.Extensions.Identity.Stores": "3.1.10",
  2949. "WebAPIBase.Utils": "1.0.0",
  2950. "sqlSugarCore": "5.0.0.18"
  2951. },
  2952. "compile": {
  2953. "bin/placeholder/WebAPIBase.NetCore.Enties.dll": {}
  2954. },
  2955. "runtime": {
  2956. "bin/placeholder/WebAPIBase.NetCore.Enties.dll": {}
  2957. }
  2958. },
  2959. "WebAPIBase.Utils/1.0.0": {
  2960. "type": "project",
  2961. "framework": ".NETStandard,Version=v2.0",
  2962. "dependencies": {
  2963. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  2964. "Microsoft.Extensions.Caching.Memory": "3.1.2",
  2965. "Microsoft.Extensions.Configuration": "3.1.10",
  2966. "Microsoft.Extensions.Configuration.FileExtensions": "3.1.2",
  2967. "Microsoft.Extensions.Configuration.Json": "3.1.2",
  2968. "Microsoft.NETCore.Runtime.CoreCLR": "2.0.8",
  2969. "NLog": "4.7.5",
  2970. "NLog.Web.AspNetCore": "4.9.3",
  2971. "Quartz": "3.2.3",
  2972. "System.Drawing.Common": "4.7.0",
  2973. "System.IdentityModel.Tokens.Jwt": "5.6.0"
  2974. },
  2975. "compile": {
  2976. "bin/placeholder/WebAPIBase.Utils.dll": {}
  2977. },
  2978. "runtime": {
  2979. "bin/placeholder/WebAPIBase.Utils.dll": {}
  2980. }
  2981. }
  2982. }
  2983. },
  2984. "libraries": {
  2985. "coverlet.collector/1.2.0": {
  2986. "sha512": "ZB+EGXsVBIn8cew7D3S2c+rgIlokKv1dSwsXEoiFQaNXF/BSxp9Rlfz/jV1ehSWH5XpLitfRxFNW3ok7uPDOXA==",
  2987. "type": "package",
  2988. "path": "coverlet.collector/1.2.0",
  2989. "files": [
  2990. ".nupkg.metadata",
  2991. ".signature.p7s",
  2992. "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll",
  2993. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2994. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll",
  2995. "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll",
  2996. "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  2997. "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  2998. "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  2999. "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3000. "build/netstandard1.0/Mono.Cecil.Mdb.dll",
  3001. "build/netstandard1.0/Mono.Cecil.Pdb.dll",
  3002. "build/netstandard1.0/Mono.Cecil.Rocks.dll",
  3003. "build/netstandard1.0/Mono.Cecil.dll",
  3004. "build/netstandard1.0/Newtonsoft.Json.dll",
  3005. "build/netstandard1.0/System.Xml.XPath.XmlDocument.dll",
  3006. "build/netstandard1.0/coverlet.collector.deps.json",
  3007. "build/netstandard1.0/coverlet.collector.dll",
  3008. "build/netstandard1.0/coverlet.collector.pdb",
  3009. "build/netstandard1.0/coverlet.collector.targets",
  3010. "build/netstandard1.0/coverlet.core.dll",
  3011. "build/netstandard1.0/coverlet.core.pdb",
  3012. "coverlet.collector.1.2.0.nupkg.sha512",
  3013. "coverlet.collector.nuspec"
  3014. ]
  3015. },
  3016. "Google.Protobuf/3.5.1": {
  3017. "sha512": "f2k1VNaB9bfvEsvARzzEL1TZiIpL33KKK3JMH7UANlPlJVptuvsk4qpBZEnz0pORWZOdUHlVwMQuUzFqjJYCxA==",
  3018. "type": "package",
  3019. "path": "google.protobuf/3.5.1",
  3020. "files": [
  3021. ".nupkg.metadata",
  3022. ".signature.p7s",
  3023. "google.protobuf.3.5.1.nupkg.sha512",
  3024. "google.protobuf.nuspec",
  3025. "lib/net45/Google.Protobuf.dll",
  3026. "lib/net45/Google.Protobuf.xml",
  3027. "lib/netstandard1.0/Google.Protobuf.dll",
  3028. "lib/netstandard1.0/Google.Protobuf.xml"
  3029. ]
  3030. },
  3031. "iTextSharp.LGPLv2.Core/1.7.0": {
  3032. "sha512": "eN/ivAHNjPFCBle/IRmU0om47ywhX2/oumEUsRwv50FSsTCcty87BXjzn6fP2S2+yJGc6gaEQ9YFaYU7Loybkg==",
  3033. "type": "package",
  3034. "path": "itextsharp.lgplv2.core/1.7.0",
  3035. "files": [
  3036. ".nupkg.metadata",
  3037. ".signature.p7s",
  3038. "itextsharp.lgplv2.core.1.7.0.nupkg.sha512",
  3039. "itextsharp.lgplv2.core.nuspec",
  3040. "lib/net40/iTextSharp.LGPLv2.Core.dll",
  3041. "lib/net40/iTextSharp.LGPLv2.Core.xml",
  3042. "lib/netstandard1.3/iTextSharp.LGPLv2.Core.dll",
  3043. "lib/netstandard1.3/iTextSharp.LGPLv2.Core.xml",
  3044. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.dll",
  3045. "lib/netstandard2.0/iTextSharp.LGPLv2.Core.xml"
  3046. ]
  3047. },
  3048. "Microsoft.AspNetCore.Cryptography.Internal/3.1.10": {
  3049. "sha512": "s5jFewA59+K/MXnib5eC/WVCDyL4EvSVtBzvXmAlTcZ9iBqqw+4oyFWP5hHy2NZuynjvKDFsokR9zEDrdEwLYA==",
  3050. "type": "package",
  3051. "path": "microsoft.aspnetcore.cryptography.internal/3.1.10",
  3052. "files": [
  3053. ".nupkg.metadata",
  3054. ".signature.p7s",
  3055. "Icon.png",
  3056. "THIRD-PARTY-NOTICES.TXT",
  3057. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3058. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3059. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3060. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3061. "microsoft.aspnetcore.cryptography.internal.3.1.10.nupkg.sha512",
  3062. "microsoft.aspnetcore.cryptography.internal.nuspec"
  3063. ]
  3064. },
  3065. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.10": {
  3066. "sha512": "yXwwlRVybA/IlIl+djCnJAKIoQmG6AXN8K7/yx2csFkt+5SLD03/ziUhyfiH6yJ80LLlHsWxIYedug0s/UDh9g==",
  3067. "type": "package",
  3068. "path": "microsoft.aspnetcore.cryptography.keyderivation/3.1.10",
  3069. "files": [
  3070. ".nupkg.metadata",
  3071. ".signature.p7s",
  3072. "Icon.png",
  3073. "THIRD-PARTY-NOTICES.TXT",
  3074. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3075. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3076. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3077. "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3078. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  3079. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  3080. "microsoft.aspnetcore.cryptography.keyderivation.3.1.10.nupkg.sha512",
  3081. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  3082. ]
  3083. },
  3084. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  3085. "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  3086. "type": "package",
  3087. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  3088. "files": [
  3089. ".nupkg.metadata",
  3090. ".signature.p7s",
  3091. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  3092. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  3093. "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
  3094. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  3095. ]
  3096. },
  3097. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  3098. "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  3099. "type": "package",
  3100. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  3101. "files": [
  3102. ".nupkg.metadata",
  3103. ".signature.p7s",
  3104. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  3105. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  3106. "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
  3107. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  3108. ]
  3109. },
  3110. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  3111. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  3112. "type": "package",
  3113. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  3114. "files": [
  3115. ".nupkg.metadata",
  3116. ".signature.p7s",
  3117. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  3118. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  3119. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  3120. "microsoft.aspnetcore.http.abstractions.nuspec"
  3121. ]
  3122. },
  3123. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  3124. "sha512": "ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  3125. "type": "package",
  3126. "path": "microsoft.aspnetcore.http.features/2.2.0",
  3127. "files": [
  3128. ".nupkg.metadata",
  3129. ".signature.p7s",
  3130. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  3131. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  3132. "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
  3133. "microsoft.aspnetcore.http.features.nuspec"
  3134. ]
  3135. },
  3136. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/3.1.10": {
  3137. "sha512": "5zh2py185WLLC5qJRgtI44FKi95LwxxxoTTEf1S230MJZix0JygPzYzXRfnkBej0pR6c7oqwDNwGmS7JR7KNKw==",
  3138. "type": "package",
  3139. "path": "microsoft.aspnetcore.identity.entityframeworkcore/3.1.10",
  3140. "files": [
  3141. ".nupkg.metadata",
  3142. ".signature.p7s",
  3143. "Icon.png",
  3144. "THIRD-PARTY-NOTICES.TXT",
  3145. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  3146. "lib/netcoreapp3.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  3147. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  3148. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  3149. "microsoft.aspnetcore.identity.entityframeworkcore.3.1.10.nupkg.sha512",
  3150. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  3151. ]
  3152. },
  3153. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  3154. "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
  3155. "type": "package",
  3156. "path": "microsoft.bcl.asyncinterfaces/1.1.1",
  3157. "files": [
  3158. ".nupkg.metadata",
  3159. ".signature.p7s",
  3160. "Icon.png",
  3161. "LICENSE.TXT",
  3162. "THIRD-PARTY-NOTICES.TXT",
  3163. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  3164. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  3165. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3166. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  3167. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3168. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  3169. "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
  3170. "microsoft.bcl.asyncinterfaces.nuspec",
  3171. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  3172. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3173. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3174. "useSharedDesignerContext.txt",
  3175. "version.txt"
  3176. ]
  3177. },
  3178. "Microsoft.Bcl.HashCode/1.1.0": {
  3179. "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
  3180. "type": "package",
  3181. "path": "microsoft.bcl.hashcode/1.1.0",
  3182. "files": [
  3183. ".nupkg.metadata",
  3184. ".signature.p7s",
  3185. "LICENSE.TXT",
  3186. "THIRD-PARTY-NOTICES.TXT",
  3187. "lib/net461/Microsoft.Bcl.HashCode.dll",
  3188. "lib/net461/Microsoft.Bcl.HashCode.xml",
  3189. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  3190. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  3191. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  3192. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  3193. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  3194. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  3195. "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
  3196. "microsoft.bcl.hashcode.nuspec",
  3197. "ref/net461/Microsoft.Bcl.HashCode.dll",
  3198. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  3199. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  3200. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  3201. "useSharedDesignerContext.txt",
  3202. "version.txt"
  3203. ]
  3204. },
  3205. "Microsoft.CodeCoverage/16.5.0": {
  3206. "sha512": "PM5YLtyN45EyUGePJpaNogndlaQPrMgQQXHKMhMESC6KfSVvt+j7+dxBi8NYC6X6dZVysf7ngwhSW3wwvPJRSQ==",
  3207. "type": "package",
  3208. "path": "microsoft.codecoverage/16.5.0",
  3209. "files": [
  3210. ".nupkg.metadata",
  3211. ".signature.p7s",
  3212. "build/netstandard1.0/CodeCoverage/CodeCoverage.config",
  3213. "build/netstandard1.0/CodeCoverage/CodeCoverage.exe",
  3214. "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll",
  3215. "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll",
  3216. "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll",
  3217. "build/netstandard1.0/CodeCoverage/covrun32.dll",
  3218. "build/netstandard1.0/CodeCoverage/msdia140.dll",
  3219. "build/netstandard1.0/Microsoft.CodeCoverage.props",
  3220. "build/netstandard1.0/Microsoft.CodeCoverage.targets",
  3221. "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll",
  3222. "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3223. "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3224. "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3225. "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3226. "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3227. "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3228. "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3229. "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3230. "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3231. "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3232. "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3233. "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3234. "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  3235. "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  3236. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  3237. "microsoft.codecoverage.16.5.0.nupkg.sha512",
  3238. "microsoft.codecoverage.nuspec"
  3239. ]
  3240. },
  3241. "Microsoft.CSharp/4.3.0": {
  3242. "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
  3243. "type": "package",
  3244. "path": "microsoft.csharp/4.3.0",
  3245. "files": [
  3246. ".nupkg.metadata",
  3247. ".signature.p7s",
  3248. "ThirdPartyNotices.txt",
  3249. "dotnet_library_license.txt",
  3250. "lib/MonoAndroid10/_._",
  3251. "lib/MonoTouch10/_._",
  3252. "lib/net45/_._",
  3253. "lib/netcore50/Microsoft.CSharp.dll",
  3254. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3255. "lib/portable-net45+win8+wp8+wpa81/_._",
  3256. "lib/win8/_._",
  3257. "lib/wp80/_._",
  3258. "lib/wpa81/_._",
  3259. "lib/xamarinios10/_._",
  3260. "lib/xamarinmac20/_._",
  3261. "lib/xamarintvos10/_._",
  3262. "lib/xamarinwatchos10/_._",
  3263. "microsoft.csharp.4.3.0.nupkg.sha512",
  3264. "microsoft.csharp.nuspec",
  3265. "ref/MonoAndroid10/_._",
  3266. "ref/MonoTouch10/_._",
  3267. "ref/net45/_._",
  3268. "ref/netcore50/Microsoft.CSharp.dll",
  3269. "ref/netcore50/Microsoft.CSharp.xml",
  3270. "ref/netcore50/de/Microsoft.CSharp.xml",
  3271. "ref/netcore50/es/Microsoft.CSharp.xml",
  3272. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3273. "ref/netcore50/it/Microsoft.CSharp.xml",
  3274. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3275. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3276. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3277. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3278. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3279. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3280. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3281. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3282. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3283. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3284. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3285. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3286. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3287. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  3288. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  3289. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  3290. "ref/portable-net45+win8+wp8+wpa81/_._",
  3291. "ref/win8/_._",
  3292. "ref/wp80/_._",
  3293. "ref/wpa81/_._",
  3294. "ref/xamarinios10/_._",
  3295. "ref/xamarinmac20/_._",
  3296. "ref/xamarintvos10/_._",
  3297. "ref/xamarinwatchos10/_._"
  3298. ]
  3299. },
  3300. "Microsoft.Data.Sqlite/2.2.4": {
  3301. "sha512": "QgYDdW07QZUyZPwisIU3Db62FnK6Yfcuru7KAsHusLGstJ0kBIXFnG185PcWmm2ba4AN0ab1iwrhXZr/9Yxj0w==",
  3302. "type": "package",
  3303. "path": "microsoft.data.sqlite/2.2.4",
  3304. "files": [
  3305. ".nupkg.metadata",
  3306. ".signature.p7s",
  3307. "lib/netstandard2.0/_._",
  3308. "microsoft.data.sqlite.2.2.4.nupkg.sha512",
  3309. "microsoft.data.sqlite.nuspec"
  3310. ]
  3311. },
  3312. "Microsoft.Data.Sqlite.Core/2.2.4": {
  3313. "sha512": "69DJj8bUJpXPfWpmJ/Sh165GWjLjlL516l0GnJDImabfR+leXb61HaQF97THWvyx5yY7MvpO94QW5nyiXMVOAA==",
  3314. "type": "package",
  3315. "path": "microsoft.data.sqlite.core/2.2.4",
  3316. "files": [
  3317. ".nupkg.metadata",
  3318. ".signature.p7s",
  3319. "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
  3320. "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
  3321. "microsoft.data.sqlite.core.2.2.4.nupkg.sha512",
  3322. "microsoft.data.sqlite.core.nuspec"
  3323. ]
  3324. },
  3325. "Microsoft.EntityFrameworkCore/3.1.10": {
  3326. "sha512": "0IhJl9mVJ4IhHobKvOo2iLB0xfxX2eYaSz4VZX+bMSm8IyZA1tOmyaOtg7oSzeUAe6eqpKVQLTgMFzk2AqCcaA==",
  3327. "type": "package",
  3328. "path": "microsoft.entityframeworkcore/3.1.10",
  3329. "files": [
  3330. ".nupkg.metadata",
  3331. ".signature.p7s",
  3332. "Icon.png",
  3333. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  3334. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  3335. "microsoft.entityframeworkcore.3.1.10.nupkg.sha512",
  3336. "microsoft.entityframeworkcore.nuspec"
  3337. ]
  3338. },
  3339. "Microsoft.EntityFrameworkCore.Abstractions/3.1.10": {
  3340. "sha512": "B1kUQ7o6+4Ly2neo86RJCpTYzTPpW1xzpHyRaTmGQS/p7umZOGoBJay+i/YDLmZkUPI4XULGnu5KJKipA0awUw==",
  3341. "type": "package",
  3342. "path": "microsoft.entityframeworkcore.abstractions/3.1.10",
  3343. "files": [
  3344. ".nupkg.metadata",
  3345. ".signature.p7s",
  3346. "Icon.png",
  3347. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3348. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3349. "microsoft.entityframeworkcore.abstractions.3.1.10.nupkg.sha512",
  3350. "microsoft.entityframeworkcore.abstractions.nuspec"
  3351. ]
  3352. },
  3353. "Microsoft.EntityFrameworkCore.Analyzers/3.1.10": {
  3354. "sha512": "reHrrF8i/Wao7l2PVXJ+JeZzEC4OkbcbfnQs8vtiT+SQ5P4MdQj3WzMkupjebaJWhIJZRc6qPT4BD9BUWQU4wQ==",
  3355. "type": "package",
  3356. "path": "microsoft.entityframeworkcore.analyzers/3.1.10",
  3357. "files": [
  3358. ".nupkg.metadata",
  3359. ".signature.p7s",
  3360. "Icon.png",
  3361. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3362. "lib/netstandard2.0/_._",
  3363. "microsoft.entityframeworkcore.analyzers.3.1.10.nupkg.sha512",
  3364. "microsoft.entityframeworkcore.analyzers.nuspec"
  3365. ]
  3366. },
  3367. "Microsoft.EntityFrameworkCore.Relational/3.1.10": {
  3368. "sha512": "JpDMpGDx+wPvFSbw9vu13nfZESdu2SPFhLI1bPZwqDU0ZV40TmUOUN91hHjWhgh5qRX1jQTWMuvK3EmlpywgAw==",
  3369. "type": "package",
  3370. "path": "microsoft.entityframeworkcore.relational/3.1.10",
  3371. "files": [
  3372. ".nupkg.metadata",
  3373. ".signature.p7s",
  3374. "Icon.png",
  3375. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  3376. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  3377. "microsoft.entityframeworkcore.relational.3.1.10.nupkg.sha512",
  3378. "microsoft.entityframeworkcore.relational.nuspec"
  3379. ]
  3380. },
  3381. "Microsoft.Extensions.Caching.Abstractions/3.1.10": {
  3382. "sha512": "xdl25cxDgwVxF9ckD9vJ5AdjzRE1vTGLYj9kZf6aL317ZneUijkxd/nSuzN1gEuO74dwG/Yfr1zfs636D6YZsA==",
  3383. "type": "package",
  3384. "path": "microsoft.extensions.caching.abstractions/3.1.10",
  3385. "files": [
  3386. ".nupkg.metadata",
  3387. ".signature.p7s",
  3388. "Icon.png",
  3389. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  3390. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  3391. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3392. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3393. "microsoft.extensions.caching.abstractions.3.1.10.nupkg.sha512",
  3394. "microsoft.extensions.caching.abstractions.nuspec"
  3395. ]
  3396. },
  3397. "Microsoft.Extensions.Caching.Memory/3.1.10": {
  3398. "sha512": "pR6mRkJx67/itEnEpnBiiATeH/P6RnhqvriD6RdQsXepO+uisfUrd149CTGPc1G5J0Qf9bwSCJkb/MYkuQ6mqw==",
  3399. "type": "package",
  3400. "path": "microsoft.extensions.caching.memory/3.1.10",
  3401. "files": [
  3402. ".nupkg.metadata",
  3403. ".signature.p7s",
  3404. "Icon.png",
  3405. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  3406. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  3407. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3408. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3409. "microsoft.extensions.caching.memory.3.1.10.nupkg.sha512",
  3410. "microsoft.extensions.caching.memory.nuspec"
  3411. ]
  3412. },
  3413. "Microsoft.Extensions.Configuration/3.1.10": {
  3414. "sha512": "HHBhCP3wAJe7UIXjim0wFXty0WG/rZAP3aZyy03uuaxiOOPHJjbUdY6K9qkfQuP+hsRzfiT+np5k4rFmcSo3og==",
  3415. "type": "package",
  3416. "path": "microsoft.extensions.configuration/3.1.10",
  3417. "files": [
  3418. ".nupkg.metadata",
  3419. ".signature.p7s",
  3420. "Icon.png",
  3421. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
  3422. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
  3423. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3424. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3425. "microsoft.extensions.configuration.3.1.10.nupkg.sha512",
  3426. "microsoft.extensions.configuration.nuspec"
  3427. ]
  3428. },
  3429. "Microsoft.Extensions.Configuration.Abstractions/3.1.10": {
  3430. "sha512": "UEfngyXt8XYhmekUza9JsWlA37pNOtZAjcK5EEKQrHo2LDKJmZVmcyAUFlkzCcf97OSr+w/MiDLifDDNQk9agw==",
  3431. "type": "package",
  3432. "path": "microsoft.extensions.configuration.abstractions/3.1.10",
  3433. "files": [
  3434. ".nupkg.metadata",
  3435. ".signature.p7s",
  3436. "Icon.png",
  3437. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
  3438. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
  3439. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3440. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3441. "microsoft.extensions.configuration.abstractions.3.1.10.nupkg.sha512",
  3442. "microsoft.extensions.configuration.abstractions.nuspec"
  3443. ]
  3444. },
  3445. "Microsoft.Extensions.Configuration.Binder/3.1.10": {
  3446. "sha512": "B9nQBk0GZVkOgSB1oB9V/7kvxhBvLCqm2x4m8MIoSxrd9yga8MVq2HWqnai8zZdH1WL6OlOG5mCVrwgAVwNNJg==",
  3447. "type": "package",
  3448. "path": "microsoft.extensions.configuration.binder/3.1.10",
  3449. "files": [
  3450. ".nupkg.metadata",
  3451. ".signature.p7s",
  3452. "Icon.png",
  3453. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
  3454. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
  3455. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3456. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3457. "microsoft.extensions.configuration.binder.3.1.10.nupkg.sha512",
  3458. "microsoft.extensions.configuration.binder.nuspec"
  3459. ]
  3460. },
  3461. "Microsoft.Extensions.Configuration.FileExtensions/3.1.2": {
  3462. "sha512": "itZcJUf2IRa4e4NFTQgR4JUmwndEU5O0isQsKkZXHiHXwExgLkX9D09R7YIK272w3jpKaYw/DejntAC7zzsNWg==",
  3463. "type": "package",
  3464. "path": "microsoft.extensions.configuration.fileextensions/3.1.2",
  3465. "files": [
  3466. ".nupkg.metadata",
  3467. ".signature.p7s",
  3468. "Icon.png",
  3469. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3470. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3471. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  3472. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  3473. "microsoft.extensions.configuration.fileextensions.3.1.2.nupkg.sha512",
  3474. "microsoft.extensions.configuration.fileextensions.nuspec"
  3475. ]
  3476. },
  3477. "Microsoft.Extensions.Configuration.Json/3.1.2": {
  3478. "sha512": "AQ64UCqGXP2UTfkVE1fdUJdlKEEiFZIOXpt6lkIz+tunuJWh1m+/eIppY+ITgjoKsfFc2W8ldNonIntHx5ybNQ==",
  3479. "type": "package",
  3480. "path": "microsoft.extensions.configuration.json/3.1.2",
  3481. "files": [
  3482. ".nupkg.metadata",
  3483. ".signature.p7s",
  3484. "Icon.png",
  3485. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll",
  3486. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.xml",
  3487. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  3488. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  3489. "microsoft.extensions.configuration.json.3.1.2.nupkg.sha512",
  3490. "microsoft.extensions.configuration.json.nuspec"
  3491. ]
  3492. },
  3493. "Microsoft.Extensions.DependencyInjection/3.1.10": {
  3494. "sha512": "fla8hKhQmld2s/7arhUxlu3dzZLBFJLg4BQiQZdqKND4MlmnMU9jhoxY4MMlSYl6MtxumtwASHMJnuV9f96IQQ==",
  3495. "type": "package",
  3496. "path": "microsoft.extensions.dependencyinjection/3.1.10",
  3497. "files": [
  3498. ".nupkg.metadata",
  3499. ".signature.p7s",
  3500. "Icon.png",
  3501. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3502. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3503. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
  3504. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
  3505. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3506. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3507. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3508. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3509. "microsoft.extensions.dependencyinjection.3.1.10.nupkg.sha512",
  3510. "microsoft.extensions.dependencyinjection.nuspec"
  3511. ]
  3512. },
  3513. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.10": {
  3514. "sha512": "bhjtAN7Ix5WOAr47RK16Lr1l2eizSBMCYQSavkooZyf6Xdf8XWAYGWsGsPqUFOeeRxzhpRho051rXaLn5wskVw==",
  3515. "type": "package",
  3516. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.10",
  3517. "files": [
  3518. ".nupkg.metadata",
  3519. ".signature.p7s",
  3520. "Icon.png",
  3521. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3522. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3523. "microsoft.extensions.dependencyinjection.abstractions.3.1.10.nupkg.sha512",
  3524. "microsoft.extensions.dependencyinjection.abstractions.nuspec"
  3525. ]
  3526. },
  3527. "Microsoft.Extensions.FileProviders.Abstractions/3.1.2": {
  3528. "sha512": "O9+N6KuA7kiPIYpdgRFFveKRyI3X2hLgdqdEwQki0MOA5XtCVOkxz8O+6CK1+b1a7Y1TildGfx3i+h/652vyHg==",
  3529. "type": "package",
  3530. "path": "microsoft.extensions.fileproviders.abstractions/3.1.2",
  3531. "files": [
  3532. ".nupkg.metadata",
  3533. ".signature.p7s",
  3534. "Icon.png",
  3535. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3536. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3537. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  3538. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  3539. "microsoft.extensions.fileproviders.abstractions.3.1.2.nupkg.sha512",
  3540. "microsoft.extensions.fileproviders.abstractions.nuspec"
  3541. ]
  3542. },
  3543. "Microsoft.Extensions.FileProviders.Physical/3.1.2": {
  3544. "sha512": "lAbbwKapBfwGLVcfNL7TG4o7zRqLOiVY7/ylUKgnh2D9TotJ2riXzNTmQldksIYrmcJcNrq/WBalTpawSSAkJg==",
  3545. "type": "package",
  3546. "path": "microsoft.extensions.fileproviders.physical/3.1.2",
  3547. "files": [
  3548. ".nupkg.metadata",
  3549. ".signature.p7s",
  3550. "Icon.png",
  3551. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll",
  3552. "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.xml",
  3553. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  3554. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  3555. "microsoft.extensions.fileproviders.physical.3.1.2.nupkg.sha512",
  3556. "microsoft.extensions.fileproviders.physical.nuspec"
  3557. ]
  3558. },
  3559. "Microsoft.Extensions.FileSystemGlobbing/3.1.2": {
  3560. "sha512": "/EgWQ25z1RZgzAT6JSOJiuQ/PFm53Kl1H3kzAgs5JIh52UaD1RmxW1znv5VbQlTfgLzRSeQZ3aPPA9SNakuSzw==",
  3561. "type": "package",
  3562. "path": "microsoft.extensions.filesystemglobbing/3.1.2",
  3563. "files": [
  3564. ".nupkg.metadata",
  3565. ".signature.p7s",
  3566. "Icon.png",
  3567. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  3568. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  3569. "microsoft.extensions.filesystemglobbing.3.1.2.nupkg.sha512",
  3570. "microsoft.extensions.filesystemglobbing.nuspec"
  3571. ]
  3572. },
  3573. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  3574. "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
  3575. "type": "package",
  3576. "path": "microsoft.extensions.hosting.abstractions/2.2.0",
  3577. "files": [
  3578. ".nupkg.metadata",
  3579. ".signature.p7s",
  3580. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  3581. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  3582. "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512",
  3583. "microsoft.extensions.hosting.abstractions.nuspec"
  3584. ]
  3585. },
  3586. "Microsoft.Extensions.Identity.Core/3.1.10": {
  3587. "sha512": "AuVQQAi7DtsrrHk6aO9BnMQCPGfI49AjeXOALTdbrJrPaLn35De9pAgobKftaUILwM4uzQdYEK012yqz2NH46w==",
  3588. "type": "package",
  3589. "path": "microsoft.extensions.identity.core/3.1.10",
  3590. "files": [
  3591. ".nupkg.metadata",
  3592. ".signature.p7s",
  3593. "Icon.png",
  3594. "THIRD-PARTY-NOTICES.TXT",
  3595. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll",
  3596. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.xml",
  3597. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  3598. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  3599. "microsoft.extensions.identity.core.3.1.10.nupkg.sha512",
  3600. "microsoft.extensions.identity.core.nuspec"
  3601. ]
  3602. },
  3603. "Microsoft.Extensions.Identity.Stores/3.1.10": {
  3604. "sha512": "USjhGGw7PivOcVVqNGPd2lg1S1J2jvrRePlgxNcPt4gSbTtGuaRBdd78dvpHoR1GQnJ93YqoyGH3X3FsHeDL/w==",
  3605. "type": "package",
  3606. "path": "microsoft.extensions.identity.stores/3.1.10",
  3607. "files": [
  3608. ".nupkg.metadata",
  3609. ".signature.p7s",
  3610. "Icon.png",
  3611. "THIRD-PARTY-NOTICES.TXT",
  3612. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll",
  3613. "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.xml",
  3614. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  3615. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  3616. "microsoft.extensions.identity.stores.3.1.10.nupkg.sha512",
  3617. "microsoft.extensions.identity.stores.nuspec"
  3618. ]
  3619. },
  3620. "Microsoft.Extensions.Logging/3.1.10": {
  3621. "sha512": "GjP+4cUFdsNk/Px6BlJ7p7x7ibpawcaAV4tfrRJTv2s6Nb7yz5OEKA0kbNl1ZXKa6uMQzbNqc5+B/tJsqzgIXg==",
  3622. "type": "package",
  3623. "path": "microsoft.extensions.logging/3.1.10",
  3624. "files": [
  3625. ".nupkg.metadata",
  3626. ".signature.p7s",
  3627. "Icon.png",
  3628. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
  3629. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
  3630. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3631. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3632. "microsoft.extensions.logging.3.1.10.nupkg.sha512",
  3633. "microsoft.extensions.logging.nuspec"
  3634. ]
  3635. },
  3636. "Microsoft.Extensions.Logging.Abstractions/3.1.10": {
  3637. "sha512": "bKHbgzbGsPZbEaExRaJqBz3WQ1GfhMttM23e1nivLJ8HbA3Ad526mW2G2K350q3Dc3HG83I5W8uSZWG4Rv4IpA==",
  3638. "type": "package",
  3639. "path": "microsoft.extensions.logging.abstractions/3.1.10",
  3640. "files": [
  3641. ".nupkg.metadata",
  3642. ".signature.p7s",
  3643. "Icon.png",
  3644. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3645. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3646. "microsoft.extensions.logging.abstractions.3.1.10.nupkg.sha512",
  3647. "microsoft.extensions.logging.abstractions.nuspec"
  3648. ]
  3649. },
  3650. "Microsoft.Extensions.Options/3.1.10": {
  3651. "sha512": "CusdV4eIv+CGb9Fy6a+JcRqpcVJREmvFI8eHk3nQ76VLtEAIJpKQY5r5sRSs5w6NevNi2ukdnKleH0YCPudFZQ==",
  3652. "type": "package",
  3653. "path": "microsoft.extensions.options/3.1.10",
  3654. "files": [
  3655. ".nupkg.metadata",
  3656. ".signature.p7s",
  3657. "Icon.png",
  3658. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
  3659. "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
  3660. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3661. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3662. "microsoft.extensions.options.3.1.10.nupkg.sha512",
  3663. "microsoft.extensions.options.nuspec"
  3664. ]
  3665. },
  3666. "Microsoft.Extensions.Primitives/3.1.10": {
  3667. "sha512": "YDuQS3BeaVY6PCWUm5f6qFTYsxhwntQrcfwUzbohU/0rZBL5XI+UsD5SgggHKHX+rFY4laaT428q608Sw/mDsw==",
  3668. "type": "package",
  3669. "path": "microsoft.extensions.primitives/3.1.10",
  3670. "files": [
  3671. ".nupkg.metadata",
  3672. ".signature.p7s",
  3673. "Icon.png",
  3674. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  3675. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  3676. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3677. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3678. "microsoft.extensions.primitives.3.1.10.nupkg.sha512",
  3679. "microsoft.extensions.primitives.nuspec"
  3680. ]
  3681. },
  3682. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  3683. "sha512": "0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
  3684. "type": "package",
  3685. "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
  3686. "files": [
  3687. ".nupkg.metadata",
  3688. ".signature.p7s",
  3689. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3690. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3691. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll",
  3692. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml",
  3693. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3694. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3695. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll",
  3696. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml",
  3697. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3698. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3699. "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512",
  3700. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3701. ]
  3702. },
  3703. "Microsoft.IdentityModel.Logging/5.6.0": {
  3704. "sha512": "zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
  3705. "type": "package",
  3706. "path": "microsoft.identitymodel.logging/5.6.0",
  3707. "files": [
  3708. ".nupkg.metadata",
  3709. ".signature.p7s",
  3710. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3711. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3712. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  3713. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  3714. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3715. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3716. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  3717. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  3718. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3719. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3720. "microsoft.identitymodel.logging.5.6.0.nupkg.sha512",
  3721. "microsoft.identitymodel.logging.nuspec"
  3722. ]
  3723. },
  3724. "Microsoft.IdentityModel.Tokens/5.6.0": {
  3725. "sha512": "C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
  3726. "type": "package",
  3727. "path": "microsoft.identitymodel.tokens/5.6.0",
  3728. "files": [
  3729. ".nupkg.metadata",
  3730. ".signature.p7s",
  3731. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3732. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3733. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  3734. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  3735. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3736. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3737. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  3738. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  3739. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3740. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3741. "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512",
  3742. "microsoft.identitymodel.tokens.nuspec"
  3743. ]
  3744. },
  3745. "Microsoft.NET.Test.Sdk/16.5.0": {
  3746. "sha512": "yHZOhVSPuGqgHi+KhHiAZqNY08avkQraXKvgKgDU8c/ztmGzw7gmukkv49EaTq6T3xmp4XroWk3gAlbJHMxl8w==",
  3747. "type": "package",
  3748. "path": "microsoft.net.test.sdk/16.5.0",
  3749. "files": [
  3750. ".nupkg.metadata",
  3751. ".signature.p7s",
  3752. "build/net40/Microsoft.NET.Test.Sdk.props",
  3753. "build/net40/Microsoft.NET.Test.Sdk.targets",
  3754. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs",
  3755. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs",
  3756. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb",
  3757. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props",
  3758. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets",
  3759. "build/uap10.0/Microsoft.NET.Test.Sdk.props",
  3760. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props",
  3761. "microsoft.net.test.sdk.16.5.0.nupkg.sha512",
  3762. "microsoft.net.test.sdk.nuspec"
  3763. ]
  3764. },
  3765. "Microsoft.NETCore.Jit/2.0.8": {
  3766. "sha512": "webbzOhpGlR6qnCeb4m2OWHixBK0IgoyISVIhPVlLH8bY9yZtjnK4XQKkEkh/a9l5K26ddus7l+QpNh3EtnyYQ==",
  3767. "type": "package",
  3768. "path": "microsoft.netcore.jit/2.0.8",
  3769. "files": [
  3770. ".nupkg.metadata",
  3771. ".signature.p7s",
  3772. "LICENSE.TXT",
  3773. "THIRD-PARTY-NOTICES.TXT",
  3774. "microsoft.netcore.jit.2.0.8.nupkg.sha512",
  3775. "microsoft.netcore.jit.nuspec",
  3776. "runtime.json",
  3777. "version.txt"
  3778. ]
  3779. },
  3780. "Microsoft.NETCore.Platforms/3.1.1": {
  3781. "sha512": "RmINcaqiEkawM9C8oxFMN/CZmn1fGKWVsosbSY/8ARUNdHqV47hqhPVbrG3qUqLaRQI5w4HuqFOqrbhoSWcH6w==",
  3782. "type": "package",
  3783. "path": "microsoft.netcore.platforms/3.1.1",
  3784. "files": [
  3785. ".nupkg.metadata",
  3786. ".signature.p7s",
  3787. "Icon.png",
  3788. "LICENSE.TXT",
  3789. "THIRD-PARTY-NOTICES.TXT",
  3790. "lib/netstandard1.0/_._",
  3791. "microsoft.netcore.platforms.3.1.1.nupkg.sha512",
  3792. "microsoft.netcore.platforms.nuspec",
  3793. "runtime.json",
  3794. "useSharedDesignerContext.txt",
  3795. "version.txt"
  3796. ]
  3797. },
  3798. "Microsoft.NETCore.Runtime.CoreCLR/2.0.8": {
  3799. "sha512": "F0t5KmilC9zaZY3JZYMfWSo+r+5PeZCXLP8uFToHTKL5kL2pTu4YPyxgweYfzTh4tb7OfZL32xnKdkzbWBP0aw==",
  3800. "type": "package",
  3801. "path": "microsoft.netcore.runtime.coreclr/2.0.8",
  3802. "files": [
  3803. ".nupkg.metadata",
  3804. ".signature.p7s",
  3805. "LICENSE.TXT",
  3806. "THIRD-PARTY-NOTICES.TXT",
  3807. "microsoft.netcore.runtime.coreclr.2.0.8.nupkg.sha512",
  3808. "microsoft.netcore.runtime.coreclr.nuspec",
  3809. "ref/netstandard1.0/_._",
  3810. "runtime.json",
  3811. "version.txt"
  3812. ]
  3813. },
  3814. "Microsoft.NETCore.Targets/1.1.0": {
  3815. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3816. "type": "package",
  3817. "path": "microsoft.netcore.targets/1.1.0",
  3818. "files": [
  3819. ".nupkg.metadata",
  3820. ".signature.p7s",
  3821. "ThirdPartyNotices.txt",
  3822. "dotnet_library_license.txt",
  3823. "lib/netstandard1.0/_._",
  3824. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3825. "microsoft.netcore.targets.nuspec",
  3826. "runtime.json"
  3827. ]
  3828. },
  3829. "Microsoft.TestPlatform.ObjectModel/16.5.0": {
  3830. "sha512": "NnLFxmFBCAS6kye2JFszD5WKgj4Zve5KX/R0mhYwh6BVnSeybI2unRnjEPtLyY3CAVhwrY4bh/8LNFtslAcGZg==",
  3831. "type": "package",
  3832. "path": "microsoft.testplatform.objectmodel/16.5.0",
  3833. "files": [
  3834. ".nupkg.metadata",
  3835. ".signature.p7s",
  3836. "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll",
  3837. "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3838. "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3839. "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3840. "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3841. "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3842. "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3843. "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3844. "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3845. "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3846. "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3847. "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3848. "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3849. "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3850. "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3851. "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3852. "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3853. "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3854. "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3855. "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3856. "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3857. "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3858. "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3859. "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3860. "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3861. "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3862. "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3863. "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3864. "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3865. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll",
  3866. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  3867. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  3868. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3869. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3870. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3871. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3872. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3873. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3874. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3875. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3876. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3877. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3878. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3879. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3880. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3881. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3882. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3883. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3884. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3885. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3886. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3887. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3888. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3889. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3890. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3891. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3892. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3893. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3894. "microsoft.testplatform.objectmodel.16.5.0.nupkg.sha512",
  3895. "microsoft.testplatform.objectmodel.nuspec"
  3896. ]
  3897. },
  3898. "Microsoft.TestPlatform.TestHost/16.5.0": {
  3899. "sha512": "ytGymboQIvjNX5pLC0yp/Bz9sGDHqSnLQgBRtd4VrqOUgKmmcfxMYZ6p0TBZgAT1oijdC6xqUZ7rl8mbaaXTJw==",
  3900. "type": "package",
  3901. "path": "microsoft.testplatform.testhost/16.5.0",
  3902. "files": [
  3903. ".nupkg.metadata",
  3904. ".signature.p7s",
  3905. "ThirdPartyNotices.txt",
  3906. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props",
  3907. "build/netcoreapp2.1/x64/testhost.dll",
  3908. "build/netcoreapp2.1/x64/testhost.exe",
  3909. "build/netcoreapp2.1/x86/testhost.x86.dll",
  3910. "build/netcoreapp2.1/x86/testhost.x86.exe",
  3911. "build/uap10.0/Microsoft.TestPlatform.TestHost.props",
  3912. "build/uap10.0/Microsoft.TestPlatform.TestHost.targets",
  3913. "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3914. "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3915. "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3916. "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll",
  3917. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3918. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3919. "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3920. "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3921. "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3922. "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll",
  3923. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3924. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3925. "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3926. "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3927. "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3928. "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll",
  3929. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3930. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3931. "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3932. "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3933. "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3934. "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll",
  3935. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3936. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3937. "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3938. "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3939. "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3940. "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll",
  3941. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3942. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3943. "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3944. "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3945. "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3946. "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll",
  3947. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3948. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3949. "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3950. "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3951. "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3952. "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll",
  3953. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3954. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3955. "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3956. "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3957. "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3958. "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll",
  3959. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3960. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3961. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3962. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3963. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3964. "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll",
  3965. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3966. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3967. "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3968. "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3969. "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3970. "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll",
  3971. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3972. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3973. "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3974. "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3975. "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3976. "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll",
  3977. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3978. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3979. "build/uap10.0/x64/msdia140.dll",
  3980. "build/uap10.0/x86/msdia140.dll",
  3981. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3982. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3983. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3984. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll",
  3985. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3986. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3987. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3988. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  3989. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  3990. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll",
  3991. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  3992. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  3993. "lib/net45/_._",
  3994. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll",
  3995. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll",
  3996. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll",
  3997. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll",
  3998. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  3999. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4000. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4001. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4002. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4003. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4004. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4005. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4006. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4007. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4008. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4009. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4010. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4011. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4012. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4013. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4014. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4015. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4016. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4017. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4018. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4019. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4020. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4021. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4022. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4023. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4024. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4025. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4026. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4027. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4028. "lib/netcoreapp2.1/testhost.deps.json",
  4029. "lib/netcoreapp2.1/testhost.dll",
  4030. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4031. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4032. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4033. "lib/netcoreapp2.1/x64/msdia140.dll",
  4034. "lib/netcoreapp2.1/x86/msdia140.dll",
  4035. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4036. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4037. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4038. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  4039. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  4040. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  4041. "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll",
  4042. "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll",
  4043. "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll",
  4044. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll",
  4045. "lib/uap10.0/testhost.dll",
  4046. "microsoft.testplatform.testhost.16.5.0.nupkg.sha512",
  4047. "microsoft.testplatform.testhost.nuspec"
  4048. ]
  4049. },
  4050. "Microsoft.Win32.Primitives/4.3.0": {
  4051. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  4052. "type": "package",
  4053. "path": "microsoft.win32.primitives/4.3.0",
  4054. "files": [
  4055. ".nupkg.metadata",
  4056. ".signature.p7s",
  4057. "ThirdPartyNotices.txt",
  4058. "dotnet_library_license.txt",
  4059. "lib/MonoAndroid10/_._",
  4060. "lib/MonoTouch10/_._",
  4061. "lib/net46/Microsoft.Win32.Primitives.dll",
  4062. "lib/xamarinios10/_._",
  4063. "lib/xamarinmac20/_._",
  4064. "lib/xamarintvos10/_._",
  4065. "lib/xamarinwatchos10/_._",
  4066. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  4067. "microsoft.win32.primitives.nuspec",
  4068. "ref/MonoAndroid10/_._",
  4069. "ref/MonoTouch10/_._",
  4070. "ref/net46/Microsoft.Win32.Primitives.dll",
  4071. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4072. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4073. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4074. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4075. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4076. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4077. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4078. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4079. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4080. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4081. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4082. "ref/xamarinios10/_._",
  4083. "ref/xamarinmac20/_._",
  4084. "ref/xamarintvos10/_._",
  4085. "ref/xamarinwatchos10/_._"
  4086. ]
  4087. },
  4088. "Microsoft.Win32.Registry/4.4.0": {
  4089. "sha512": "dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
  4090. "type": "package",
  4091. "path": "microsoft.win32.registry/4.4.0",
  4092. "files": [
  4093. ".nupkg.metadata",
  4094. ".signature.p7s",
  4095. "LICENSE.TXT",
  4096. "THIRD-PARTY-NOTICES.TXT",
  4097. "lib/net46/Microsoft.Win32.Registry.dll",
  4098. "lib/net461/Microsoft.Win32.Registry.dll",
  4099. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4100. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  4101. "microsoft.win32.registry.4.4.0.nupkg.sha512",
  4102. "microsoft.win32.registry.nuspec",
  4103. "ref/net46/Microsoft.Win32.Registry.dll",
  4104. "ref/net461/Microsoft.Win32.Registry.dll",
  4105. "ref/net461/Microsoft.Win32.Registry.xml",
  4106. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  4107. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  4108. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  4109. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  4110. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  4111. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  4112. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  4113. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  4114. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  4115. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  4116. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  4117. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  4118. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  4119. "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll",
  4120. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  4121. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  4122. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll",
  4123. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4124. "useSharedDesignerContext.txt",
  4125. "version.txt"
  4126. ]
  4127. },
  4128. "Microsoft.Win32.SystemEvents/4.7.0": {
  4129. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  4130. "type": "package",
  4131. "path": "microsoft.win32.systemevents/4.7.0",
  4132. "files": [
  4133. ".nupkg.metadata",
  4134. ".signature.p7s",
  4135. "LICENSE.TXT",
  4136. "THIRD-PARTY-NOTICES.TXT",
  4137. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  4138. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  4139. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4140. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4141. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  4142. "microsoft.win32.systemevents.nuspec",
  4143. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  4144. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  4145. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  4146. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  4147. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  4148. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  4149. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  4150. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  4151. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  4152. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  4153. "useSharedDesignerContext.txt",
  4154. "version.txt"
  4155. ]
  4156. },
  4157. "MSTest.TestAdapter/2.1.0": {
  4158. "sha512": "roxWjDyH5S+XlibaHM96VswxYq4vfbB53Ys9k3Qr2F1uNH+VpgIbygNQvtZUxSoAaI7aNSMMKA/HBfZPg5QDCA==",
  4159. "type": "package",
  4160. "path": "mstest.testadapter/2.1.0",
  4161. "files": [
  4162. ".nupkg.metadata",
  4163. ".signature.p7s",
  4164. "LICENSE.txt",
  4165. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  4166. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll",
  4167. "build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4168. "build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4169. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4170. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4171. "build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4172. "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4173. "build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4174. "build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4175. "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4176. "build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4177. "build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4178. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4179. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4180. "build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4181. "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4182. "build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4183. "build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4184. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4185. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4186. "build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4187. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4188. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4189. "build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4190. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4191. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4192. "build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4193. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4194. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4195. "build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4196. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4197. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4198. "build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4199. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4200. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4201. "build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4202. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4203. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4204. "build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4205. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  4206. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  4207. "build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  4208. "build/net45/MSTest.TestAdapter.props",
  4209. "build/net45/MSTest.TestAdapter.targets",
  4210. "build/netcoreapp1.0/MSTest.TestAdapter.props",
  4211. "build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4212. "build/uap10.0/MSTest.TestAdapter.props",
  4213. "build/uap10.0/MSTest.TestAdapter.targets",
  4214. "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  4215. "mstest.testadapter.2.1.0.nupkg.sha512",
  4216. "mstest.testadapter.nuspec"
  4217. ]
  4218. },
  4219. "MSTest.TestFramework/2.1.0": {
  4220. "sha512": "FcW3sokxmi52e4gzBdv4bv59yQWJ0Lg2F579U82O4V9Pr7aNwTe7HxlHChzQqvcqgnH69XH8aDfMlfM3Y1wjAg==",
  4221. "type": "package",
  4222. "path": "mstest.testframework/2.1.0",
  4223. "files": [
  4224. ".nupkg.metadata",
  4225. ".signature.p7s",
  4226. "LICENSE.txt",
  4227. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4228. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4229. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4230. "lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4231. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4232. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4233. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4234. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4235. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4236. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4237. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4238. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4239. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4240. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4241. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4242. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4243. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4244. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4245. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4246. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4247. "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4248. "lib/net45/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4249. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4250. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4251. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4252. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4253. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4254. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4255. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4256. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4257. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4258. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4259. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4260. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4261. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4262. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4263. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4264. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4265. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4266. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4267. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4268. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4269. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4270. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4271. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4272. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4273. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4274. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4275. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4276. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4277. "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4278. "lib/netstandard1.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4279. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4280. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4281. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4282. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4283. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4284. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4285. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4286. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4287. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML",
  4288. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  4289. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.XML",
  4290. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  4291. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4292. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4293. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4294. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4295. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4296. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4297. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4298. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4299. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4300. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4301. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4302. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4303. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4304. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4305. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4306. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4307. "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4308. "lib/uap10.0/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4309. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4310. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4311. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4312. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4313. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4314. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4315. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  4316. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  4317. "mstest.testframework.2.1.0.nupkg.sha512",
  4318. "mstest.testframework.nuspec"
  4319. ]
  4320. },
  4321. "MySql.Data/8.0.15": {
  4322. "sha512": "PnjT2+TzlYUBF5cILcLMD1ux85P5iiRTF9PWx+Mel6/Z/rx+k39aWuA0mozfdgd+0TlJjGKKTyQZfKeYlRXTUA==",
  4323. "type": "package",
  4324. "path": "mysql.data/8.0.15",
  4325. "files": [
  4326. ".nupkg.metadata",
  4327. ".signature.p7s",
  4328. "lib/net452/MySql.Data.dll",
  4329. "lib/net452/MySql.Data.xml",
  4330. "lib/netcoreapp2.0/MySql.Data.dll",
  4331. "lib/netcoreapp2.0/MySql.Data.xml",
  4332. "lib/netstandard1.6/MySql.Data.dll",
  4333. "lib/netstandard1.6/MySql.Data.xml",
  4334. "lib/netstandard2.0/MySql.Data.dll",
  4335. "lib/netstandard2.0/MySql.Data.xml",
  4336. "mysql.data.8.0.15.nupkg.sha512",
  4337. "mysql.data.nuspec"
  4338. ]
  4339. },
  4340. "NETStandard.Library/1.6.1": {
  4341. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4342. "type": "package",
  4343. "path": "netstandard.library/1.6.1",
  4344. "files": [
  4345. ".nupkg.metadata",
  4346. ".signature.p7s",
  4347. "ThirdPartyNotices.txt",
  4348. "dotnet_library_license.txt",
  4349. "netstandard.library.1.6.1.nupkg.sha512",
  4350. "netstandard.library.nuspec"
  4351. ]
  4352. },
  4353. "Newtonsoft.Json/10.0.3": {
  4354. "sha512": "hSXaFmh7hNCuEoC4XNY5DrRkLDzYHqPx/Ik23R4J86Z7PE/Y6YidhG602dFVdLBRSdG6xp9NabH3dXpcoxWvww==",
  4355. "type": "package",
  4356. "path": "newtonsoft.json/10.0.3",
  4357. "hasTools": true,
  4358. "files": [
  4359. ".nupkg.metadata",
  4360. ".signature.p7s",
  4361. "LICENSE.md",
  4362. "lib/net20/Newtonsoft.Json.dll",
  4363. "lib/net20/Newtonsoft.Json.xml",
  4364. "lib/net35/Newtonsoft.Json.dll",
  4365. "lib/net35/Newtonsoft.Json.xml",
  4366. "lib/net40/Newtonsoft.Json.dll",
  4367. "lib/net40/Newtonsoft.Json.xml",
  4368. "lib/net45/Newtonsoft.Json.dll",
  4369. "lib/net45/Newtonsoft.Json.xml",
  4370. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4371. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4372. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4373. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4374. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4375. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4376. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4377. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4378. "newtonsoft.json.10.0.3.nupkg.sha512",
  4379. "newtonsoft.json.nuspec",
  4380. "tools/install.ps1"
  4381. ]
  4382. },
  4383. "NLog/4.7.5": {
  4384. "sha512": "1Udzim+UwoAGk0vW6T2rEBXJq1COvqTuE+4NFj2zHytuX1WOu+1Yes1qABG1IJOA5V3OMilIufUU1Ha9T0rrzQ==",
  4385. "type": "package",
  4386. "path": "nlog/4.7.5",
  4387. "files": [
  4388. ".nupkg.metadata",
  4389. ".signature.p7s",
  4390. "lib/monoandroid44/NLog.dll",
  4391. "lib/monoandroid44/NLog.xml",
  4392. "lib/net35/NLog.dll",
  4393. "lib/net35/NLog.xml",
  4394. "lib/net40-client/NLog.dll",
  4395. "lib/net40-client/NLog.xml",
  4396. "lib/net45/NLog.dll",
  4397. "lib/net45/NLog.xml",
  4398. "lib/netstandard1.3/NLog.dll",
  4399. "lib/netstandard1.3/NLog.xml",
  4400. "lib/netstandard1.5/NLog.dll",
  4401. "lib/netstandard1.5/NLog.xml",
  4402. "lib/netstandard2.0/NLog.dll",
  4403. "lib/netstandard2.0/NLog.xml",
  4404. "lib/sl4/NLog.dll",
  4405. "lib/sl4/NLog.xml",
  4406. "lib/sl5/NLog.dll",
  4407. "lib/sl5/NLog.xml",
  4408. "lib/wp8/NLog.dll",
  4409. "lib/wp8/NLog.xml",
  4410. "lib/xamarinios10/NLog.dll",
  4411. "lib/xamarinios10/NLog.xml",
  4412. "nlog.4.7.5.nupkg.sha512",
  4413. "nlog.nuspec"
  4414. ]
  4415. },
  4416. "NLog.Extensions.Logging/1.6.4": {
  4417. "sha512": "ESOBd/bzxFacwpWTdTXaAaItJz/0Mzibyw65YB0uQT4pf2hXtwHp2626qEiVOmaacIQbJH5wGpBLNcVpbQLpKA==",
  4418. "type": "package",
  4419. "path": "nlog.extensions.logging/1.6.4",
  4420. "files": [
  4421. ".nupkg.metadata",
  4422. ".signature.p7s",
  4423. "lib/net451/NLog.Extensions.Logging.dll",
  4424. "lib/net451/NLog.Extensions.Logging.xml",
  4425. "lib/net461/NLog.Extensions.Logging.dll",
  4426. "lib/net461/NLog.Extensions.Logging.xml",
  4427. "lib/netcoreapp3.0/NLog.Extensions.Logging.dll",
  4428. "lib/netcoreapp3.0/NLog.Extensions.Logging.xml",
  4429. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  4430. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  4431. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  4432. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  4433. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  4434. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  4435. "nlog.extensions.logging.1.6.4.nupkg.sha512",
  4436. "nlog.extensions.logging.nuspec"
  4437. ]
  4438. },
  4439. "NLog.Web.AspNetCore/4.9.3": {
  4440. "sha512": "v3TiGaFXENM3/fVCFJJaien7A44EcGwceySh5rFNkp5RC3PZvsbDjEXoOeqsDz8+i5iuYQDMjTFuD2JReNdj9g==",
  4441. "type": "package",
  4442. "path": "nlog.web.aspnetcore/4.9.3",
  4443. "files": [
  4444. ".nupkg.metadata",
  4445. ".signature.p7s",
  4446. "lib/net451/NLog.Web.AspNetCore.dll",
  4447. "lib/net451/NLog.Web.AspNetCore.xml",
  4448. "lib/net461/NLog.Web.AspNetCore.dll",
  4449. "lib/net461/NLog.Web.AspNetCore.xml",
  4450. "lib/netcoreapp3.0/NLog.Web.AspNetCore.dll",
  4451. "lib/netcoreapp3.0/NLog.Web.AspNetCore.xml",
  4452. "lib/netstandard1.5/NLog.Web.AspNetCore.dll",
  4453. "lib/netstandard1.5/NLog.Web.AspNetCore.xml",
  4454. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  4455. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  4456. "nlog.web.aspnetcore.4.9.3.nupkg.sha512",
  4457. "nlog.web.aspnetcore.nuspec"
  4458. ]
  4459. },
  4460. "Npgsql/3.2.7": {
  4461. "sha512": "CxSXzWn/MNbHX8L1xfQSzrZfJEA2Yt5cvT27Az5abmvbqtUY1ab6xAkmBj5FfLyKCIYEnmSrxn1IY1+Jy13oFA==",
  4462. "type": "package",
  4463. "path": "npgsql/3.2.7",
  4464. "files": [
  4465. ".nupkg.metadata",
  4466. ".signature.p7s",
  4467. "lib/net45/Npgsql.dll",
  4468. "lib/net45/Npgsql.xml",
  4469. "lib/net451/Npgsql.dll",
  4470. "lib/net451/Npgsql.xml",
  4471. "lib/netstandard1.3/Npgsql.dll",
  4472. "lib/netstandard1.3/Npgsql.xml",
  4473. "lib/netstandard2.0/Npgsql.dll",
  4474. "lib/netstandard2.0/Npgsql.xml",
  4475. "npgsql.3.2.7.nupkg.sha512",
  4476. "npgsql.nuspec"
  4477. ]
  4478. },
  4479. "NuGet.Frameworks/5.0.0": {
  4480. "sha512": "c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==",
  4481. "type": "package",
  4482. "path": "nuget.frameworks/5.0.0",
  4483. "files": [
  4484. ".nupkg.metadata",
  4485. ".signature.p7s",
  4486. "lib/net40/NuGet.Frameworks.dll",
  4487. "lib/net40/NuGet.Frameworks.xml",
  4488. "lib/net472/NuGet.Frameworks.dll",
  4489. "lib/net472/NuGet.Frameworks.xml",
  4490. "lib/netstandard2.0/NuGet.Frameworks.dll",
  4491. "lib/netstandard2.0/NuGet.Frameworks.xml",
  4492. "nuget.frameworks.5.0.0.nupkg.sha512",
  4493. "nuget.frameworks.nuspec"
  4494. ]
  4495. },
  4496. "Oracle.ManagedDataAccess.Core/2.18.3": {
  4497. "sha512": "YaN+rm9wgFQAuWxrrR7lUxEQI4WJnNkMTlZb+gbv2W4D/ML2kkgz4N8Z76W9Polx6BU+kK3Vx2R8RD9u7sea7g==",
  4498. "type": "package",
  4499. "path": "oracle.manageddataaccess.core/2.18.3",
  4500. "files": [
  4501. ".nupkg.metadata",
  4502. ".signature.p7s",
  4503. "info.txt",
  4504. "lib/netstandard2.0/Oracle.ManagedDataAccess.dll",
  4505. "oracle.manageddataaccess.core.2.18.3.nupkg.sha512",
  4506. "oracle.manageddataaccess.core.nuspec",
  4507. "readme.txt"
  4508. ]
  4509. },
  4510. "Portable.BouncyCastle/1.8.8": {
  4511. "sha512": "1rxdf8NfyAxLlqIEciCl/yNhmz1YiLkmp6rrF8p3/NVmyHHzPWLx8djtDvSAwhPLg64BXvsRcM3+5bP1HAUdYg==",
  4512. "type": "package",
  4513. "path": "portable.bouncycastle/1.8.8",
  4514. "files": [
  4515. ".nupkg.metadata",
  4516. ".signature.p7s",
  4517. "lib/net40/BouncyCastle.Crypto.dll",
  4518. "lib/net40/BouncyCastle.Crypto.xml",
  4519. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  4520. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  4521. "portable.bouncycastle.1.8.8.nupkg.sha512",
  4522. "portable.bouncycastle.nuspec"
  4523. ]
  4524. },
  4525. "Quartz/3.2.3": {
  4526. "sha512": "AWybQvHH/eI69NEiqe4x4jgCGYOCxHfsbrK7IdZJU35MC+85wneNtY4xd9CkUiLlYJvV7YsU0uBMzJV00HKtWg==",
  4527. "type": "package",
  4528. "path": "quartz/3.2.3",
  4529. "files": [
  4530. ".nupkg.metadata",
  4531. ".signature.p7s",
  4532. "lib/net461/Quartz.dll",
  4533. "lib/net461/Quartz.xml",
  4534. "lib/netstandard2.0/Quartz.dll",
  4535. "lib/netstandard2.0/Quartz.xml",
  4536. "quartz-logo-small.png",
  4537. "quartz.3.2.3.nupkg.sha512",
  4538. "quartz.nuspec"
  4539. ]
  4540. },
  4541. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4542. "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
  4543. "type": "package",
  4544. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4545. "files": [
  4546. ".nupkg.metadata",
  4547. ".signature.p7s",
  4548. "ThirdPartyNotices.txt",
  4549. "dotnet_library_license.txt",
  4550. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4551. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4552. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4553. ]
  4554. },
  4555. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4556. "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
  4557. "type": "package",
  4558. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4559. "files": [
  4560. ".nupkg.metadata",
  4561. ".signature.p7s",
  4562. "ThirdPartyNotices.txt",
  4563. "dotnet_library_license.txt",
  4564. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4565. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4566. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4567. ]
  4568. },
  4569. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4570. "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
  4571. "type": "package",
  4572. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4573. "files": [
  4574. ".nupkg.metadata",
  4575. ".signature.p7s",
  4576. "ThirdPartyNotices.txt",
  4577. "dotnet_library_license.txt",
  4578. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4579. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4580. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4581. ]
  4582. },
  4583. "runtime.native.System/4.3.0": {
  4584. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4585. "type": "package",
  4586. "path": "runtime.native.system/4.3.0",
  4587. "files": [
  4588. ".nupkg.metadata",
  4589. ".signature.p7s",
  4590. "ThirdPartyNotices.txt",
  4591. "dotnet_library_license.txt",
  4592. "lib/netstandard1.0/_._",
  4593. "runtime.native.system.4.3.0.nupkg.sha512",
  4594. "runtime.native.system.nuspec"
  4595. ]
  4596. },
  4597. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4598. "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
  4599. "type": "package",
  4600. "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
  4601. "files": [
  4602. ".nupkg.metadata",
  4603. ".signature.p7s",
  4604. "LICENSE.TXT",
  4605. "THIRD-PARTY-NOTICES.TXT",
  4606. "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4607. "runtime.native.system.data.sqlclient.sni.nuspec",
  4608. "useSharedDesignerContext.txt",
  4609. "version.txt"
  4610. ]
  4611. },
  4612. "runtime.native.System.IO.Compression/4.3.0": {
  4613. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4614. "type": "package",
  4615. "path": "runtime.native.system.io.compression/4.3.0",
  4616. "files": [
  4617. ".nupkg.metadata",
  4618. ".signature.p7s",
  4619. "ThirdPartyNotices.txt",
  4620. "dotnet_library_license.txt",
  4621. "lib/netstandard1.0/_._",
  4622. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4623. "runtime.native.system.io.compression.nuspec"
  4624. ]
  4625. },
  4626. "runtime.native.System.Net.Http/4.3.0": {
  4627. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4628. "type": "package",
  4629. "path": "runtime.native.system.net.http/4.3.0",
  4630. "files": [
  4631. ".nupkg.metadata",
  4632. ".signature.p7s",
  4633. "ThirdPartyNotices.txt",
  4634. "dotnet_library_license.txt",
  4635. "lib/netstandard1.0/_._",
  4636. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4637. "runtime.native.system.net.http.nuspec"
  4638. ]
  4639. },
  4640. "runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  4641. "sha512": "UPrVPlqPRSVZaB4ADmbsQ77KXn9ORiWXyA1RP2W2+byCh3bhgT1bQz0jbeOoog9/2oTQ5wWZSDSMeb74MjezcA==",
  4642. "type": "package",
  4643. "path": "runtime.native.system.security.cryptography.apple/4.3.1",
  4644. "files": [
  4645. ".nupkg.metadata",
  4646. ".signature.p7s",
  4647. "ThirdPartyNotices.txt",
  4648. "dotnet_library_license.txt",
  4649. "lib/netstandard1.0/_._",
  4650. "runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512",
  4651. "runtime.native.system.security.cryptography.apple.nuspec"
  4652. ]
  4653. },
  4654. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4655. "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
  4656. "type": "package",
  4657. "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
  4658. "files": [
  4659. ".nupkg.metadata",
  4660. ".signature.p7s",
  4661. "ThirdPartyNotices.txt",
  4662. "dotnet_library_license.txt",
  4663. "lib/netstandard1.0/_._",
  4664. "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4665. "runtime.native.system.security.cryptography.openssl.nuspec"
  4666. ]
  4667. },
  4668. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4669. "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
  4670. "type": "package",
  4671. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4672. "files": [
  4673. ".nupkg.metadata",
  4674. ".signature.p7s",
  4675. "ThirdPartyNotices.txt",
  4676. "dotnet_library_license.txt",
  4677. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4678. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4679. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4680. ]
  4681. },
  4682. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4683. "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
  4684. "type": "package",
  4685. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4686. "files": [
  4687. ".nupkg.metadata",
  4688. ".signature.p7s",
  4689. "ThirdPartyNotices.txt",
  4690. "dotnet_library_license.txt",
  4691. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4692. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4693. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4694. ]
  4695. },
  4696. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.1": {
  4697. "sha512": "t15yGf5r6vMV1rB5O6TgfXKChtCaN3niwFw44M2ImX3eZ8yzueplqMqXPCbWzoBDHJVz9fE+9LFUGCsUmS2Jgg==",
  4698. "type": "package",
  4699. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.1",
  4700. "files": [
  4701. ".nupkg.metadata",
  4702. ".signature.p7s",
  4703. "ThirdPartyNotices.txt",
  4704. "dotnet_library_license.txt",
  4705. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.1.nupkg.sha512",
  4706. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4707. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4708. ]
  4709. },
  4710. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4711. "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
  4712. "type": "package",
  4713. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4714. "files": [
  4715. ".nupkg.metadata",
  4716. ".signature.p7s",
  4717. "ThirdPartyNotices.txt",
  4718. "dotnet_library_license.txt",
  4719. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4720. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4721. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4722. ]
  4723. },
  4724. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4725. "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
  4726. "type": "package",
  4727. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4728. "files": [
  4729. ".nupkg.metadata",
  4730. ".signature.p7s",
  4731. "ThirdPartyNotices.txt",
  4732. "dotnet_library_license.txt",
  4733. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4734. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4735. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4736. ]
  4737. },
  4738. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4739. "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
  4740. "type": "package",
  4741. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4742. "files": [
  4743. ".nupkg.metadata",
  4744. ".signature.p7s",
  4745. "ThirdPartyNotices.txt",
  4746. "dotnet_library_license.txt",
  4747. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4748. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4749. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4750. ]
  4751. },
  4752. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4753. "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
  4754. "type": "package",
  4755. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4756. "files": [
  4757. ".nupkg.metadata",
  4758. ".signature.p7s",
  4759. "ThirdPartyNotices.txt",
  4760. "dotnet_library_license.txt",
  4761. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4762. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4763. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4764. ]
  4765. },
  4766. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
  4767. "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
  4768. "type": "package",
  4769. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
  4770. "files": [
  4771. ".nupkg.metadata",
  4772. ".signature.p7s",
  4773. "ThirdPartyNotices.txt",
  4774. "dotnet_library_license.txt",
  4775. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
  4776. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4777. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4778. ]
  4779. },
  4780. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4781. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  4782. "type": "package",
  4783. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4784. "files": [
  4785. ".nupkg.metadata",
  4786. ".signature.p7s",
  4787. "ThirdPartyNotices.txt",
  4788. "dotnet_library_license.txt",
  4789. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4790. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  4791. "runtimes/win-arm64/native/sni.dll",
  4792. "useSharedDesignerContext.txt",
  4793. "version.txt"
  4794. ]
  4795. },
  4796. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4797. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  4798. "type": "package",
  4799. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4800. "files": [
  4801. ".nupkg.metadata",
  4802. ".signature.p7s",
  4803. "ThirdPartyNotices.txt",
  4804. "dotnet_library_license.txt",
  4805. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4806. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  4807. "runtimes/win-x64/native/sni.dll",
  4808. "useSharedDesignerContext.txt",
  4809. "version.txt"
  4810. ]
  4811. },
  4812. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4813. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  4814. "type": "package",
  4815. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  4816. "files": [
  4817. ".nupkg.metadata",
  4818. ".signature.p7s",
  4819. "ThirdPartyNotices.txt",
  4820. "dotnet_library_license.txt",
  4821. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4822. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  4823. "runtimes/win-x86/native/sni.dll",
  4824. "useSharedDesignerContext.txt",
  4825. "version.txt"
  4826. ]
  4827. },
  4828. "SQLitePCLRaw.bundle_green/1.1.12": {
  4829. "sha512": "U5lZv+E0JBCG5uQngaRgyIAlbzIwRczb0m46XJfLGXovtfVOaMNRY/oGyKAJjdexVrfqLRd+JyopGMySpAZRGQ==",
  4830. "type": "package",
  4831. "path": "sqlitepclraw.bundle_green/1.1.12",
  4832. "files": [
  4833. ".nupkg.metadata",
  4834. ".signature.p7s",
  4835. "build/wp8/SQLitePCLRaw.bundle_green.targets",
  4836. "build/wp80/arm/SQLitePCLRaw.batteries_green.dll",
  4837. "build/wp80/arm/SQLitePCLRaw.batteries_v2.dll",
  4838. "build/wp80/x86/SQLitePCLRaw.batteries_green.dll",
  4839. "build/wp80/x86/SQLitePCLRaw.batteries_v2.dll",
  4840. "lib/MonoAndroid/SQLitePCLRaw.batteries_green.dll",
  4841. "lib/MonoAndroid/SQLitePCLRaw.batteries_v2.dll",
  4842. "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_green.dll",
  4843. "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_v2.dll",
  4844. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4845. "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4846. "lib/net35/SQLitePCLRaw.batteries_green.dll",
  4847. "lib/net35/SQLitePCLRaw.batteries_v2.dll",
  4848. "lib/net40/SQLitePCLRaw.batteries_green.dll",
  4849. "lib/net40/SQLitePCLRaw.batteries_v2.dll",
  4850. "lib/net45/SQLitePCLRaw.batteries_green.dll",
  4851. "lib/net45/SQLitePCLRaw.batteries_v2.dll",
  4852. "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll",
  4853. "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll",
  4854. "lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll",
  4855. "lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll",
  4856. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4857. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4858. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4859. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4860. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
  4861. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
  4862. "lib/uap10.0/SQLitePCLRaw.batteries_green.dll",
  4863. "lib/uap10.0/SQLitePCLRaw.batteries_v2.dll",
  4864. "lib/win8/SQLitePCLRaw.batteries_green.dll",
  4865. "lib/win8/SQLitePCLRaw.batteries_v2.dll",
  4866. "lib/win81/SQLitePCLRaw.batteries_green.dll",
  4867. "lib/win81/SQLitePCLRaw.batteries_v2.dll",
  4868. "lib/wp8/_._",
  4869. "lib/wpa81/SQLitePCLRaw.batteries_green.dll",
  4870. "lib/wpa81/SQLitePCLRaw.batteries_v2.dll",
  4871. "sqlitepclraw.bundle_green.1.1.12.nupkg.sha512",
  4872. "sqlitepclraw.bundle_green.nuspec"
  4873. ]
  4874. },
  4875. "SQLitePCLRaw.core/1.1.12": {
  4876. "sha512": "S4hr+tE275ran5jyKFW/FYPG6Bz6nsHUp9H8chqKxzk21PxJadLd9LnvLe6LMRP/IqY5+LOIIDQF3m/2iDlZ7Q==",
  4877. "type": "package",
  4878. "path": "sqlitepclraw.core/1.1.12",
  4879. "files": [
  4880. ".nupkg.metadata",
  4881. ".signature.p7s",
  4882. "lib/MonoAndroid/SQLitePCLRaw.core.dll",
  4883. "lib/Xamarin.Mac20/SQLitePCLRaw.core.dll",
  4884. "lib/Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4885. "lib/net35/SQLitePCLRaw.core.dll",
  4886. "lib/net40/SQLitePCLRaw.core.dll",
  4887. "lib/net45/SQLitePCLRaw.core.dll",
  4888. "lib/netstandard1.0/SQLitePCLRaw.core.dll",
  4889. "lib/netstandard1.1/SQLitePCLRaw.core.dll",
  4890. "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4891. "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4892. "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
  4893. "lib/uap10.0/SQLitePCLRaw.core.dll",
  4894. "lib/win8/SQLitePCLRaw.core.dll",
  4895. "lib/win81/SQLitePCLRaw.core.dll",
  4896. "lib/wpa81/SQLitePCLRaw.core.dll",
  4897. "sqlitepclraw.core.1.1.12.nupkg.sha512",
  4898. "sqlitepclraw.core.nuspec"
  4899. ]
  4900. },
  4901. "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.12": {
  4902. "sha512": "Tn/YE1VxWtHa4MQ9KC//ptIw6cLAUh+xXSdpX7MyGINmb4/igqyx0IOEq5WeH/+cuI/EnDtdWAOn98eMQnKsTQ==",
  4903. "type": "package",
  4904. "path": "sqlitepclraw.lib.e_sqlite3.linux/1.1.12",
  4905. "files": [
  4906. ".nupkg.metadata",
  4907. ".signature.p7s",
  4908. "build/net35/SQLitePCLRaw.lib.e_sqlite3.linux.targets",
  4909. "lib/net35/_._",
  4910. "lib/netstandard1.0/_._",
  4911. "lib/netstandard2.0/_._",
  4912. "runtimes/alpine-x64/native/libe_sqlite3.so",
  4913. "runtimes/linux-arm/native/libe_sqlite3.so",
  4914. "runtimes/linux-arm64/native/libe_sqlite3.so",
  4915. "runtimes/linux-armel/native/libe_sqlite3.so",
  4916. "runtimes/linux-musl-x64/native/libe_sqlite3.so",
  4917. "runtimes/linux-x64/native/libe_sqlite3.so",
  4918. "runtimes/linux-x86/native/libe_sqlite3.so",
  4919. "sqlitepclraw.lib.e_sqlite3.linux.1.1.12.nupkg.sha512",
  4920. "sqlitepclraw.lib.e_sqlite3.linux.nuspec"
  4921. ]
  4922. },
  4923. "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.12": {
  4924. "sha512": "qfl1ljn6NOQDyM2i9JDZc6xekHoC+Fqe4GzuhWFCS6siI7lLInw09HHSZRqyimV36vjdQYnyBBFKSn53rSOYkA==",
  4925. "type": "package",
  4926. "path": "sqlitepclraw.lib.e_sqlite3.osx/1.1.12",
  4927. "files": [
  4928. ".nupkg.metadata",
  4929. ".signature.p7s",
  4930. "build/Xamarin.Mac20/SQLitePCLRaw.lib.e_sqlite3.osx.targets",
  4931. "build/net35/SQLitePCLRaw.lib.e_sqlite3.osx.targets",
  4932. "lib/Xamarin.Mac20/_._",
  4933. "lib/net35/_._",
  4934. "lib/netstandard1.0/_._",
  4935. "lib/netstandard2.0/_._",
  4936. "runtimes/osx-x64/native/libe_sqlite3.dylib",
  4937. "sqlitepclraw.lib.e_sqlite3.osx.1.1.12.nupkg.sha512",
  4938. "sqlitepclraw.lib.e_sqlite3.osx.nuspec"
  4939. ]
  4940. },
  4941. "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.12": {
  4942. "sha512": "YfmaVhcEyAGU6BZ7NQiYYfCHKsCYjldwsafiFKArzqeM8MHuhfqft1Fjdv7ncukXrvKsHXhCrzJzKEMwPXiSSg==",
  4943. "type": "package",
  4944. "path": "sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.12",
  4945. "files": [
  4946. ".nupkg.metadata",
  4947. ".signature.p7s",
  4948. "build/net35/SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets",
  4949. "lib/net35/_._",
  4950. "lib/netstandard1.0/_._",
  4951. "lib/netstandard2.0/_._",
  4952. "runtimes/win-x64/native/e_sqlite3.dll",
  4953. "runtimes/win-x86/native/e_sqlite3.dll",
  4954. "runtimes/win8-arm/native/e_sqlite3.dll",
  4955. "sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.12.nupkg.sha512",
  4956. "sqlitepclraw.lib.e_sqlite3.v110_xp.nuspec"
  4957. ]
  4958. },
  4959. "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.12": {
  4960. "sha512": "qjz6Ad1Q5hiI8imCiG5Mpa/w8E8+rAk3SRJdX54uEOo5nPywiN1H0jmMZO+ID0nPibQA3yjlAHt5/GcLW9Iftg==",
  4961. "type": "package",
  4962. "path": "sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.12",
  4963. "files": [
  4964. ".nupkg.metadata",
  4965. ".signature.p7s",
  4966. "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll",
  4967. "sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.12.nupkg.sha512",
  4968. "sqlitepclraw.provider.e_sqlite3.netstandard11.nuspec"
  4969. ]
  4970. },
  4971. "sqlSugarCore/5.0.0.18": {
  4972. "sha512": "AtNXN+yg50fIZuOHBggWvxY/sBH0nqTFEVM6CDmmc06WxUJ0MA8N7kBbKxVYVWbhpD8/INWZrGJ4tko3ZKD88A==",
  4973. "type": "package",
  4974. "path": "sqlsugarcore/5.0.0.18",
  4975. "files": [
  4976. ".nupkg.metadata",
  4977. ".signature.p7s",
  4978. "lib/netstandard2.0/SqlSugar.dll",
  4979. "sqlsugarcore.5.0.0.18.nupkg.sha512",
  4980. "sqlsugarcore.nuspec"
  4981. ]
  4982. },
  4983. "System.AppContext/4.3.0": {
  4984. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4985. "type": "package",
  4986. "path": "system.appcontext/4.3.0",
  4987. "files": [
  4988. ".nupkg.metadata",
  4989. ".signature.p7s",
  4990. "ThirdPartyNotices.txt",
  4991. "dotnet_library_license.txt",
  4992. "lib/MonoAndroid10/_._",
  4993. "lib/MonoTouch10/_._",
  4994. "lib/net46/System.AppContext.dll",
  4995. "lib/net463/System.AppContext.dll",
  4996. "lib/netcore50/System.AppContext.dll",
  4997. "lib/netstandard1.6/System.AppContext.dll",
  4998. "lib/xamarinios10/_._",
  4999. "lib/xamarinmac20/_._",
  5000. "lib/xamarintvos10/_._",
  5001. "lib/xamarinwatchos10/_._",
  5002. "ref/MonoAndroid10/_._",
  5003. "ref/MonoTouch10/_._",
  5004. "ref/net46/System.AppContext.dll",
  5005. "ref/net463/System.AppContext.dll",
  5006. "ref/netstandard/_._",
  5007. "ref/netstandard1.3/System.AppContext.dll",
  5008. "ref/netstandard1.3/System.AppContext.xml",
  5009. "ref/netstandard1.3/de/System.AppContext.xml",
  5010. "ref/netstandard1.3/es/System.AppContext.xml",
  5011. "ref/netstandard1.3/fr/System.AppContext.xml",
  5012. "ref/netstandard1.3/it/System.AppContext.xml",
  5013. "ref/netstandard1.3/ja/System.AppContext.xml",
  5014. "ref/netstandard1.3/ko/System.AppContext.xml",
  5015. "ref/netstandard1.3/ru/System.AppContext.xml",
  5016. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5017. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5018. "ref/netstandard1.6/System.AppContext.dll",
  5019. "ref/netstandard1.6/System.AppContext.xml",
  5020. "ref/netstandard1.6/de/System.AppContext.xml",
  5021. "ref/netstandard1.6/es/System.AppContext.xml",
  5022. "ref/netstandard1.6/fr/System.AppContext.xml",
  5023. "ref/netstandard1.6/it/System.AppContext.xml",
  5024. "ref/netstandard1.6/ja/System.AppContext.xml",
  5025. "ref/netstandard1.6/ko/System.AppContext.xml",
  5026. "ref/netstandard1.6/ru/System.AppContext.xml",
  5027. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5028. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5029. "ref/xamarinios10/_._",
  5030. "ref/xamarinmac20/_._",
  5031. "ref/xamarintvos10/_._",
  5032. "ref/xamarinwatchos10/_._",
  5033. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5034. "system.appcontext.4.3.0.nupkg.sha512",
  5035. "system.appcontext.nuspec"
  5036. ]
  5037. },
  5038. "System.Buffers/4.3.0": {
  5039. "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
  5040. "type": "package",
  5041. "path": "system.buffers/4.3.0",
  5042. "files": [
  5043. ".nupkg.metadata",
  5044. ".signature.p7s",
  5045. "ThirdPartyNotices.txt",
  5046. "dotnet_library_license.txt",
  5047. "lib/netstandard1.1/.xml",
  5048. "lib/netstandard1.1/System.Buffers.dll",
  5049. "system.buffers.4.3.0.nupkg.sha512",
  5050. "system.buffers.nuspec"
  5051. ]
  5052. },
  5053. "System.Collections/4.3.0": {
  5054. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5055. "type": "package",
  5056. "path": "system.collections/4.3.0",
  5057. "files": [
  5058. ".nupkg.metadata",
  5059. ".signature.p7s",
  5060. "ThirdPartyNotices.txt",
  5061. "dotnet_library_license.txt",
  5062. "lib/MonoAndroid10/_._",
  5063. "lib/MonoTouch10/_._",
  5064. "lib/net45/_._",
  5065. "lib/portable-net45+win8+wp8+wpa81/_._",
  5066. "lib/win8/_._",
  5067. "lib/wp80/_._",
  5068. "lib/wpa81/_._",
  5069. "lib/xamarinios10/_._",
  5070. "lib/xamarinmac20/_._",
  5071. "lib/xamarintvos10/_._",
  5072. "lib/xamarinwatchos10/_._",
  5073. "ref/MonoAndroid10/_._",
  5074. "ref/MonoTouch10/_._",
  5075. "ref/net45/_._",
  5076. "ref/netcore50/System.Collections.dll",
  5077. "ref/netcore50/System.Collections.xml",
  5078. "ref/netcore50/de/System.Collections.xml",
  5079. "ref/netcore50/es/System.Collections.xml",
  5080. "ref/netcore50/fr/System.Collections.xml",
  5081. "ref/netcore50/it/System.Collections.xml",
  5082. "ref/netcore50/ja/System.Collections.xml",
  5083. "ref/netcore50/ko/System.Collections.xml",
  5084. "ref/netcore50/ru/System.Collections.xml",
  5085. "ref/netcore50/zh-hans/System.Collections.xml",
  5086. "ref/netcore50/zh-hant/System.Collections.xml",
  5087. "ref/netstandard1.0/System.Collections.dll",
  5088. "ref/netstandard1.0/System.Collections.xml",
  5089. "ref/netstandard1.0/de/System.Collections.xml",
  5090. "ref/netstandard1.0/es/System.Collections.xml",
  5091. "ref/netstandard1.0/fr/System.Collections.xml",
  5092. "ref/netstandard1.0/it/System.Collections.xml",
  5093. "ref/netstandard1.0/ja/System.Collections.xml",
  5094. "ref/netstandard1.0/ko/System.Collections.xml",
  5095. "ref/netstandard1.0/ru/System.Collections.xml",
  5096. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5097. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5098. "ref/netstandard1.3/System.Collections.dll",
  5099. "ref/netstandard1.3/System.Collections.xml",
  5100. "ref/netstandard1.3/de/System.Collections.xml",
  5101. "ref/netstandard1.3/es/System.Collections.xml",
  5102. "ref/netstandard1.3/fr/System.Collections.xml",
  5103. "ref/netstandard1.3/it/System.Collections.xml",
  5104. "ref/netstandard1.3/ja/System.Collections.xml",
  5105. "ref/netstandard1.3/ko/System.Collections.xml",
  5106. "ref/netstandard1.3/ru/System.Collections.xml",
  5107. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5108. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5109. "ref/portable-net45+win8+wp8+wpa81/_._",
  5110. "ref/win8/_._",
  5111. "ref/wp80/_._",
  5112. "ref/wpa81/_._",
  5113. "ref/xamarinios10/_._",
  5114. "ref/xamarinmac20/_._",
  5115. "ref/xamarintvos10/_._",
  5116. "ref/xamarinwatchos10/_._",
  5117. "system.collections.4.3.0.nupkg.sha512",
  5118. "system.collections.nuspec"
  5119. ]
  5120. },
  5121. "System.Collections.Concurrent/4.3.0": {
  5122. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  5123. "type": "package",
  5124. "path": "system.collections.concurrent/4.3.0",
  5125. "files": [
  5126. ".nupkg.metadata",
  5127. ".signature.p7s",
  5128. "ThirdPartyNotices.txt",
  5129. "dotnet_library_license.txt",
  5130. "lib/MonoAndroid10/_._",
  5131. "lib/MonoTouch10/_._",
  5132. "lib/net45/_._",
  5133. "lib/netcore50/System.Collections.Concurrent.dll",
  5134. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5135. "lib/portable-net45+win8+wpa81/_._",
  5136. "lib/win8/_._",
  5137. "lib/wpa81/_._",
  5138. "lib/xamarinios10/_._",
  5139. "lib/xamarinmac20/_._",
  5140. "lib/xamarintvos10/_._",
  5141. "lib/xamarinwatchos10/_._",
  5142. "ref/MonoAndroid10/_._",
  5143. "ref/MonoTouch10/_._",
  5144. "ref/net45/_._",
  5145. "ref/netcore50/System.Collections.Concurrent.dll",
  5146. "ref/netcore50/System.Collections.Concurrent.xml",
  5147. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5148. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5149. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5150. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5151. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5152. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5153. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5154. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5155. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5156. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5157. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5158. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5159. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5160. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5161. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5162. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5163. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5164. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5165. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5166. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5167. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5168. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5169. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5170. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5171. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5172. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5173. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5174. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5175. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5176. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5177. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5178. "ref/portable-net45+win8+wpa81/_._",
  5179. "ref/win8/_._",
  5180. "ref/wpa81/_._",
  5181. "ref/xamarinios10/_._",
  5182. "ref/xamarinmac20/_._",
  5183. "ref/xamarintvos10/_._",
  5184. "ref/xamarinwatchos10/_._",
  5185. "system.collections.concurrent.4.3.0.nupkg.sha512",
  5186. "system.collections.concurrent.nuspec"
  5187. ]
  5188. },
  5189. "System.Collections.Immutable/1.7.1": {
  5190. "sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
  5191. "type": "package",
  5192. "path": "system.collections.immutable/1.7.1",
  5193. "files": [
  5194. ".nupkg.metadata",
  5195. ".signature.p7s",
  5196. "Icon.png",
  5197. "LICENSE.TXT",
  5198. "THIRD-PARTY-NOTICES.TXT",
  5199. "lib/net461/System.Collections.Immutable.dll",
  5200. "lib/net461/System.Collections.Immutable.xml",
  5201. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5202. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5203. "lib/netstandard1.3/System.Collections.Immutable.dll",
  5204. "lib/netstandard1.3/System.Collections.Immutable.xml",
  5205. "lib/netstandard2.0/System.Collections.Immutable.dll",
  5206. "lib/netstandard2.0/System.Collections.Immutable.xml",
  5207. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5208. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  5209. "system.collections.immutable.1.7.1.nupkg.sha512",
  5210. "system.collections.immutable.nuspec",
  5211. "useSharedDesignerContext.txt",
  5212. "version.txt"
  5213. ]
  5214. },
  5215. "System.Collections.NonGeneric/4.3.0": {
  5216. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5217. "type": "package",
  5218. "path": "system.collections.nongeneric/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.Collections.NonGeneric.dll",
  5227. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5228. "lib/xamarinios10/_._",
  5229. "lib/xamarinmac20/_._",
  5230. "lib/xamarintvos10/_._",
  5231. "lib/xamarinwatchos10/_._",
  5232. "ref/MonoAndroid10/_._",
  5233. "ref/MonoTouch10/_._",
  5234. "ref/net46/System.Collections.NonGeneric.dll",
  5235. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5236. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5237. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5238. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5239. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5240. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5241. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5242. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5243. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5244. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5245. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5246. "ref/xamarinios10/_._",
  5247. "ref/xamarinmac20/_._",
  5248. "ref/xamarintvos10/_._",
  5249. "ref/xamarinwatchos10/_._",
  5250. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  5251. "system.collections.nongeneric.nuspec"
  5252. ]
  5253. },
  5254. "System.Collections.Specialized/4.3.0": {
  5255. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  5256. "type": "package",
  5257. "path": "system.collections.specialized/4.3.0",
  5258. "files": [
  5259. ".nupkg.metadata",
  5260. ".signature.p7s",
  5261. "ThirdPartyNotices.txt",
  5262. "dotnet_library_license.txt",
  5263. "lib/MonoAndroid10/_._",
  5264. "lib/MonoTouch10/_._",
  5265. "lib/net46/System.Collections.Specialized.dll",
  5266. "lib/netstandard1.3/System.Collections.Specialized.dll",
  5267. "lib/xamarinios10/_._",
  5268. "lib/xamarinmac20/_._",
  5269. "lib/xamarintvos10/_._",
  5270. "lib/xamarinwatchos10/_._",
  5271. "ref/MonoAndroid10/_._",
  5272. "ref/MonoTouch10/_._",
  5273. "ref/net46/System.Collections.Specialized.dll",
  5274. "ref/netstandard1.3/System.Collections.Specialized.dll",
  5275. "ref/netstandard1.3/System.Collections.Specialized.xml",
  5276. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  5277. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  5278. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  5279. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  5280. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  5281. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  5282. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  5283. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  5284. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  5285. "ref/xamarinios10/_._",
  5286. "ref/xamarinmac20/_._",
  5287. "ref/xamarintvos10/_._",
  5288. "ref/xamarinwatchos10/_._",
  5289. "system.collections.specialized.4.3.0.nupkg.sha512",
  5290. "system.collections.specialized.nuspec"
  5291. ]
  5292. },
  5293. "System.ComponentModel/4.3.0": {
  5294. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  5295. "type": "package",
  5296. "path": "system.componentmodel/4.3.0",
  5297. "files": [
  5298. ".nupkg.metadata",
  5299. ".signature.p7s",
  5300. "ThirdPartyNotices.txt",
  5301. "dotnet_library_license.txt",
  5302. "lib/MonoAndroid10/_._",
  5303. "lib/MonoTouch10/_._",
  5304. "lib/net45/_._",
  5305. "lib/netcore50/System.ComponentModel.dll",
  5306. "lib/netstandard1.3/System.ComponentModel.dll",
  5307. "lib/portable-net45+win8+wp8+wpa81/_._",
  5308. "lib/win8/_._",
  5309. "lib/wp80/_._",
  5310. "lib/wpa81/_._",
  5311. "lib/xamarinios10/_._",
  5312. "lib/xamarinmac20/_._",
  5313. "lib/xamarintvos10/_._",
  5314. "lib/xamarinwatchos10/_._",
  5315. "ref/MonoAndroid10/_._",
  5316. "ref/MonoTouch10/_._",
  5317. "ref/net45/_._",
  5318. "ref/netcore50/System.ComponentModel.dll",
  5319. "ref/netcore50/System.ComponentModel.xml",
  5320. "ref/netcore50/de/System.ComponentModel.xml",
  5321. "ref/netcore50/es/System.ComponentModel.xml",
  5322. "ref/netcore50/fr/System.ComponentModel.xml",
  5323. "ref/netcore50/it/System.ComponentModel.xml",
  5324. "ref/netcore50/ja/System.ComponentModel.xml",
  5325. "ref/netcore50/ko/System.ComponentModel.xml",
  5326. "ref/netcore50/ru/System.ComponentModel.xml",
  5327. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5328. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5329. "ref/netstandard1.0/System.ComponentModel.dll",
  5330. "ref/netstandard1.0/System.ComponentModel.xml",
  5331. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5332. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5333. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5334. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5335. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5336. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5337. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5338. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5339. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5340. "ref/portable-net45+win8+wp8+wpa81/_._",
  5341. "ref/win8/_._",
  5342. "ref/wp80/_._",
  5343. "ref/wpa81/_._",
  5344. "ref/xamarinios10/_._",
  5345. "ref/xamarinmac20/_._",
  5346. "ref/xamarintvos10/_._",
  5347. "ref/xamarinwatchos10/_._",
  5348. "system.componentmodel.4.3.0.nupkg.sha512",
  5349. "system.componentmodel.nuspec"
  5350. ]
  5351. },
  5352. "System.ComponentModel.Annotations/4.7.0": {
  5353. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  5354. "type": "package",
  5355. "path": "system.componentmodel.annotations/4.7.0",
  5356. "files": [
  5357. ".nupkg.metadata",
  5358. ".signature.p7s",
  5359. "LICENSE.TXT",
  5360. "THIRD-PARTY-NOTICES.TXT",
  5361. "lib/MonoAndroid10/_._",
  5362. "lib/MonoTouch10/_._",
  5363. "lib/net45/_._",
  5364. "lib/net461/System.ComponentModel.Annotations.dll",
  5365. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5366. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5367. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  5368. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  5369. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  5370. "lib/portable-net45+win8/_._",
  5371. "lib/win8/_._",
  5372. "lib/xamarinios10/_._",
  5373. "lib/xamarinmac20/_._",
  5374. "lib/xamarintvos10/_._",
  5375. "lib/xamarinwatchos10/_._",
  5376. "ref/MonoAndroid10/_._",
  5377. "ref/MonoTouch10/_._",
  5378. "ref/net45/_._",
  5379. "ref/net461/System.ComponentModel.Annotations.dll",
  5380. "ref/net461/System.ComponentModel.Annotations.xml",
  5381. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5382. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5383. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5384. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5385. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5386. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5387. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5388. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5389. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5390. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5391. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5392. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5393. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5394. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5395. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5396. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5397. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5398. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5399. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5400. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5401. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5402. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5403. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5404. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5405. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5406. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5407. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5408. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5409. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5410. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5411. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5412. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5413. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5414. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5415. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5416. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5417. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5418. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5419. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5420. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5421. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5422. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5423. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5424. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5425. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  5426. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  5427. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  5428. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  5429. "ref/portable-net45+win8/_._",
  5430. "ref/win8/_._",
  5431. "ref/xamarinios10/_._",
  5432. "ref/xamarinmac20/_._",
  5433. "ref/xamarintvos10/_._",
  5434. "ref/xamarinwatchos10/_._",
  5435. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  5436. "system.componentmodel.annotations.nuspec",
  5437. "useSharedDesignerContext.txt",
  5438. "version.txt"
  5439. ]
  5440. },
  5441. "System.ComponentModel.Primitives/4.3.0": {
  5442. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  5443. "type": "package",
  5444. "path": "system.componentmodel.primitives/4.3.0",
  5445. "files": [
  5446. ".nupkg.metadata",
  5447. ".signature.p7s",
  5448. "ThirdPartyNotices.txt",
  5449. "dotnet_library_license.txt",
  5450. "lib/MonoAndroid10/_._",
  5451. "lib/MonoTouch10/_._",
  5452. "lib/net45/System.ComponentModel.Primitives.dll",
  5453. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5454. "lib/xamarinios10/_._",
  5455. "lib/xamarinmac20/_._",
  5456. "lib/xamarintvos10/_._",
  5457. "lib/xamarinwatchos10/_._",
  5458. "ref/MonoAndroid10/_._",
  5459. "ref/MonoTouch10/_._",
  5460. "ref/net45/System.ComponentModel.Primitives.dll",
  5461. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5462. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5463. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5464. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5465. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5466. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5467. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5468. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5469. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5470. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5471. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5472. "ref/xamarinios10/_._",
  5473. "ref/xamarinmac20/_._",
  5474. "ref/xamarintvos10/_._",
  5475. "ref/xamarinwatchos10/_._",
  5476. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  5477. "system.componentmodel.primitives.nuspec"
  5478. ]
  5479. },
  5480. "System.ComponentModel.TypeConverter/4.3.0": {
  5481. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  5482. "type": "package",
  5483. "path": "system.componentmodel.typeconverter/4.3.0",
  5484. "files": [
  5485. ".nupkg.metadata",
  5486. ".signature.p7s",
  5487. "ThirdPartyNotices.txt",
  5488. "dotnet_library_license.txt",
  5489. "lib/MonoAndroid10/_._",
  5490. "lib/MonoTouch10/_._",
  5491. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5492. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5493. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5494. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5495. "lib/xamarinios10/_._",
  5496. "lib/xamarinmac20/_._",
  5497. "lib/xamarintvos10/_._",
  5498. "lib/xamarinwatchos10/_._",
  5499. "ref/MonoAndroid10/_._",
  5500. "ref/MonoTouch10/_._",
  5501. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5502. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5503. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5504. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5505. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5506. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5507. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5508. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5509. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5510. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5511. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5512. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5513. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5514. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5515. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5516. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5517. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5518. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5519. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5520. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5521. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5522. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5523. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5524. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5525. "ref/xamarinios10/_._",
  5526. "ref/xamarinmac20/_._",
  5527. "ref/xamarintvos10/_._",
  5528. "ref/xamarinwatchos10/_._",
  5529. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  5530. "system.componentmodel.typeconverter.nuspec"
  5531. ]
  5532. },
  5533. "System.Configuration.ConfigurationManager/4.7.0": {
  5534. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  5535. "type": "package",
  5536. "path": "system.configuration.configurationmanager/4.7.0",
  5537. "files": [
  5538. ".nupkg.metadata",
  5539. ".signature.p7s",
  5540. "LICENSE.TXT",
  5541. "THIRD-PARTY-NOTICES.TXT",
  5542. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5543. "lib/net461/System.Configuration.ConfigurationManager.xml",
  5544. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5545. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5546. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5547. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5548. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5549. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5550. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  5551. "system.configuration.configurationmanager.nuspec",
  5552. "useSharedDesignerContext.txt",
  5553. "version.txt"
  5554. ]
  5555. },
  5556. "System.Console/4.3.0": {
  5557. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5558. "type": "package",
  5559. "path": "system.console/4.3.0",
  5560. "files": [
  5561. ".nupkg.metadata",
  5562. ".signature.p7s",
  5563. "ThirdPartyNotices.txt",
  5564. "dotnet_library_license.txt",
  5565. "lib/MonoAndroid10/_._",
  5566. "lib/MonoTouch10/_._",
  5567. "lib/net46/System.Console.dll",
  5568. "lib/xamarinios10/_._",
  5569. "lib/xamarinmac20/_._",
  5570. "lib/xamarintvos10/_._",
  5571. "lib/xamarinwatchos10/_._",
  5572. "ref/MonoAndroid10/_._",
  5573. "ref/MonoTouch10/_._",
  5574. "ref/net46/System.Console.dll",
  5575. "ref/netstandard1.3/System.Console.dll",
  5576. "ref/netstandard1.3/System.Console.xml",
  5577. "ref/netstandard1.3/de/System.Console.xml",
  5578. "ref/netstandard1.3/es/System.Console.xml",
  5579. "ref/netstandard1.3/fr/System.Console.xml",
  5580. "ref/netstandard1.3/it/System.Console.xml",
  5581. "ref/netstandard1.3/ja/System.Console.xml",
  5582. "ref/netstandard1.3/ko/System.Console.xml",
  5583. "ref/netstandard1.3/ru/System.Console.xml",
  5584. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5585. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5586. "ref/xamarinios10/_._",
  5587. "ref/xamarinmac20/_._",
  5588. "ref/xamarintvos10/_._",
  5589. "ref/xamarinwatchos10/_._",
  5590. "system.console.4.3.0.nupkg.sha512",
  5591. "system.console.nuspec"
  5592. ]
  5593. },
  5594. "System.Data.Common/4.3.0": {
  5595. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  5596. "type": "package",
  5597. "path": "system.data.common/4.3.0",
  5598. "files": [
  5599. ".nupkg.metadata",
  5600. ".signature.p7s",
  5601. "ThirdPartyNotices.txt",
  5602. "dotnet_library_license.txt",
  5603. "lib/MonoAndroid10/_._",
  5604. "lib/MonoTouch10/_._",
  5605. "lib/net451/System.Data.Common.dll",
  5606. "lib/netstandard1.2/System.Data.Common.dll",
  5607. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5608. "lib/xamarinios10/_._",
  5609. "lib/xamarinmac20/_._",
  5610. "lib/xamarintvos10/_._",
  5611. "lib/xamarinwatchos10/_._",
  5612. "ref/MonoAndroid10/_._",
  5613. "ref/MonoTouch10/_._",
  5614. "ref/net451/System.Data.Common.dll",
  5615. "ref/netstandard1.2/System.Data.Common.dll",
  5616. "ref/netstandard1.2/System.Data.Common.xml",
  5617. "ref/netstandard1.2/de/System.Data.Common.xml",
  5618. "ref/netstandard1.2/es/System.Data.Common.xml",
  5619. "ref/netstandard1.2/fr/System.Data.Common.xml",
  5620. "ref/netstandard1.2/it/System.Data.Common.xml",
  5621. "ref/netstandard1.2/ja/System.Data.Common.xml",
  5622. "ref/netstandard1.2/ko/System.Data.Common.xml",
  5623. "ref/netstandard1.2/ru/System.Data.Common.xml",
  5624. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  5625. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  5626. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5627. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  5628. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  5629. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  5630. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  5631. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  5632. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  5633. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  5634. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  5635. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  5636. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  5637. "ref/xamarinios10/_._",
  5638. "ref/xamarinmac20/_._",
  5639. "ref/xamarintvos10/_._",
  5640. "ref/xamarinwatchos10/_._",
  5641. "system.data.common.4.3.0.nupkg.sha512",
  5642. "system.data.common.nuspec"
  5643. ]
  5644. },
  5645. "System.Data.SqlClient/4.4.0": {
  5646. "sha512": "fxb9ghn1k1Ua7FFdlvtiBOD4/PsQvD/fk2KnhS+FK7VC6OggEx6P+lP1P0+KMb5V2dqS1+FbR7HCenoqzJMNIA==",
  5647. "type": "package",
  5648. "path": "system.data.sqlclient/4.4.0",
  5649. "files": [
  5650. ".nupkg.metadata",
  5651. ".signature.p7s",
  5652. "LICENSE.TXT",
  5653. "THIRD-PARTY-NOTICES.TXT",
  5654. "lib/MonoAndroid10/_._",
  5655. "lib/MonoTouch10/_._",
  5656. "lib/net451/System.Data.SqlClient.dll",
  5657. "lib/net46/System.Data.SqlClient.dll",
  5658. "lib/net461/System.Data.SqlClient.dll",
  5659. "lib/netstandard1.2/System.Data.SqlClient.dll",
  5660. "lib/netstandard1.3/System.Data.SqlClient.dll",
  5661. "lib/netstandard2.0/System.Data.SqlClient.dll",
  5662. "lib/xamarinios10/_._",
  5663. "lib/xamarinmac20/_._",
  5664. "lib/xamarintvos10/_._",
  5665. "lib/xamarinwatchos10/_._",
  5666. "ref/MonoAndroid10/_._",
  5667. "ref/MonoTouch10/_._",
  5668. "ref/net451/System.Data.SqlClient.dll",
  5669. "ref/net46/System.Data.SqlClient.dll",
  5670. "ref/net461/System.Data.SqlClient.dll",
  5671. "ref/net461/System.Data.SqlClient.xml",
  5672. "ref/netstandard1.2/System.Data.SqlClient.dll",
  5673. "ref/netstandard1.2/System.Data.SqlClient.xml",
  5674. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  5675. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  5676. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  5677. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  5678. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  5679. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  5680. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  5681. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  5682. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  5683. "ref/netstandard1.3/System.Data.SqlClient.dll",
  5684. "ref/netstandard1.3/System.Data.SqlClient.xml",
  5685. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  5686. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  5687. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  5688. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  5689. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  5690. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  5691. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  5692. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  5693. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  5694. "ref/netstandard2.0/System.Data.SqlClient.dll",
  5695. "ref/netstandard2.0/System.Data.SqlClient.xml",
  5696. "ref/xamarinios10/_._",
  5697. "ref/xamarinmac20/_._",
  5698. "ref/xamarintvos10/_._",
  5699. "ref/xamarinwatchos10/_._",
  5700. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  5701. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  5702. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  5703. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  5704. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  5705. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  5706. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  5707. "system.data.sqlclient.4.4.0.nupkg.sha512",
  5708. "system.data.sqlclient.nuspec",
  5709. "useSharedDesignerContext.txt",
  5710. "version.txt"
  5711. ]
  5712. },
  5713. "System.Diagnostics.Debug/4.3.0": {
  5714. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5715. "type": "package",
  5716. "path": "system.diagnostics.debug/4.3.0",
  5717. "files": [
  5718. ".nupkg.metadata",
  5719. ".signature.p7s",
  5720. "ThirdPartyNotices.txt",
  5721. "dotnet_library_license.txt",
  5722. "lib/MonoAndroid10/_._",
  5723. "lib/MonoTouch10/_._",
  5724. "lib/net45/_._",
  5725. "lib/portable-net45+win8+wp8+wpa81/_._",
  5726. "lib/win8/_._",
  5727. "lib/wp80/_._",
  5728. "lib/wpa81/_._",
  5729. "lib/xamarinios10/_._",
  5730. "lib/xamarinmac20/_._",
  5731. "lib/xamarintvos10/_._",
  5732. "lib/xamarinwatchos10/_._",
  5733. "ref/MonoAndroid10/_._",
  5734. "ref/MonoTouch10/_._",
  5735. "ref/net45/_._",
  5736. "ref/netcore50/System.Diagnostics.Debug.dll",
  5737. "ref/netcore50/System.Diagnostics.Debug.xml",
  5738. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5739. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5740. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5741. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5742. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5743. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5744. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5745. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5746. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5747. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5748. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5749. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5750. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5751. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5752. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5753. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5754. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5755. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5756. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5757. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5758. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5759. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5760. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5761. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5762. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5763. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5764. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5765. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5766. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5767. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5768. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5769. "ref/portable-net45+win8+wp8+wpa81/_._",
  5770. "ref/win8/_._",
  5771. "ref/wp80/_._",
  5772. "ref/wpa81/_._",
  5773. "ref/xamarinios10/_._",
  5774. "ref/xamarinmac20/_._",
  5775. "ref/xamarintvos10/_._",
  5776. "ref/xamarinwatchos10/_._",
  5777. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5778. "system.diagnostics.debug.nuspec"
  5779. ]
  5780. },
  5781. "System.Diagnostics.DiagnosticSource/4.7.1": {
  5782. "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
  5783. "type": "package",
  5784. "path": "system.diagnostics.diagnosticsource/4.7.1",
  5785. "files": [
  5786. ".nupkg.metadata",
  5787. ".signature.p7s",
  5788. "Icon.png",
  5789. "LICENSE.TXT",
  5790. "THIRD-PARTY-NOTICES.TXT",
  5791. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5792. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5793. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5794. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5795. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5796. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5797. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5798. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5799. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5800. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5801. "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
  5802. "system.diagnostics.diagnosticsource.nuspec",
  5803. "useSharedDesignerContext.txt",
  5804. "version.txt"
  5805. ]
  5806. },
  5807. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  5808. "sha512": "F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==",
  5809. "type": "package",
  5810. "path": "system.diagnostics.textwritertracelistener/4.3.0",
  5811. "files": [
  5812. ".nupkg.metadata",
  5813. ".signature.p7s",
  5814. "ThirdPartyNotices.txt",
  5815. "dotnet_library_license.txt",
  5816. "lib/MonoAndroid10/_._",
  5817. "lib/MonoTouch10/_._",
  5818. "lib/net46/System.Diagnostics.TextWriterTraceListener.dll",
  5819. "lib/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
  5820. "lib/xamarinios10/_._",
  5821. "lib/xamarinmac20/_._",
  5822. "lib/xamarintvos10/_._",
  5823. "lib/xamarinwatchos10/_._",
  5824. "ref/MonoAndroid10/_._",
  5825. "ref/MonoTouch10/_._",
  5826. "ref/net46/System.Diagnostics.TextWriterTraceListener.dll",
  5827. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.dll",
  5828. "ref/netstandard1.3/System.Diagnostics.TextWriterTraceListener.xml",
  5829. "ref/netstandard1.3/de/System.Diagnostics.TextWriterTraceListener.xml",
  5830. "ref/netstandard1.3/es/System.Diagnostics.TextWriterTraceListener.xml",
  5831. "ref/netstandard1.3/fr/System.Diagnostics.TextWriterTraceListener.xml",
  5832. "ref/netstandard1.3/it/System.Diagnostics.TextWriterTraceListener.xml",
  5833. "ref/netstandard1.3/ja/System.Diagnostics.TextWriterTraceListener.xml",
  5834. "ref/netstandard1.3/ko/System.Diagnostics.TextWriterTraceListener.xml",
  5835. "ref/netstandard1.3/ru/System.Diagnostics.TextWriterTraceListener.xml",
  5836. "ref/netstandard1.3/zh-hans/System.Diagnostics.TextWriterTraceListener.xml",
  5837. "ref/netstandard1.3/zh-hant/System.Diagnostics.TextWriterTraceListener.xml",
  5838. "ref/xamarinios10/_._",
  5839. "ref/xamarinmac20/_._",
  5840. "ref/xamarintvos10/_._",
  5841. "ref/xamarinwatchos10/_._",
  5842. "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512",
  5843. "system.diagnostics.textwritertracelistener.nuspec"
  5844. ]
  5845. },
  5846. "System.Diagnostics.Tools/4.3.0": {
  5847. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5848. "type": "package",
  5849. "path": "system.diagnostics.tools/4.3.0",
  5850. "files": [
  5851. ".nupkg.metadata",
  5852. ".signature.p7s",
  5853. "ThirdPartyNotices.txt",
  5854. "dotnet_library_license.txt",
  5855. "lib/MonoAndroid10/_._",
  5856. "lib/MonoTouch10/_._",
  5857. "lib/net45/_._",
  5858. "lib/portable-net45+win8+wp8+wpa81/_._",
  5859. "lib/win8/_._",
  5860. "lib/wp80/_._",
  5861. "lib/wpa81/_._",
  5862. "lib/xamarinios10/_._",
  5863. "lib/xamarinmac20/_._",
  5864. "lib/xamarintvos10/_._",
  5865. "lib/xamarinwatchos10/_._",
  5866. "ref/MonoAndroid10/_._",
  5867. "ref/MonoTouch10/_._",
  5868. "ref/net45/_._",
  5869. "ref/netcore50/System.Diagnostics.Tools.dll",
  5870. "ref/netcore50/System.Diagnostics.Tools.xml",
  5871. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5872. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5873. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5874. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5875. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5876. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5877. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5878. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5879. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5880. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5881. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5882. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5883. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5884. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5885. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5886. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5887. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5888. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5889. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5890. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5891. "ref/portable-net45+win8+wp8+wpa81/_._",
  5892. "ref/win8/_._",
  5893. "ref/wp80/_._",
  5894. "ref/wpa81/_._",
  5895. "ref/xamarinios10/_._",
  5896. "ref/xamarinmac20/_._",
  5897. "ref/xamarintvos10/_._",
  5898. "ref/xamarinwatchos10/_._",
  5899. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5900. "system.diagnostics.tools.nuspec"
  5901. ]
  5902. },
  5903. "System.Diagnostics.TraceSource/4.3.0": {
  5904. "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  5905. "type": "package",
  5906. "path": "system.diagnostics.tracesource/4.3.0",
  5907. "files": [
  5908. ".nupkg.metadata",
  5909. ".signature.p7s",
  5910. "ThirdPartyNotices.txt",
  5911. "dotnet_library_license.txt",
  5912. "lib/MonoAndroid10/_._",
  5913. "lib/MonoTouch10/_._",
  5914. "lib/net46/System.Diagnostics.TraceSource.dll",
  5915. "lib/xamarinios10/_._",
  5916. "lib/xamarinmac20/_._",
  5917. "lib/xamarintvos10/_._",
  5918. "lib/xamarinwatchos10/_._",
  5919. "ref/MonoAndroid10/_._",
  5920. "ref/MonoTouch10/_._",
  5921. "ref/net46/System.Diagnostics.TraceSource.dll",
  5922. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5923. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  5924. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  5925. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  5926. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  5927. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  5928. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  5929. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  5930. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  5931. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  5932. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  5933. "ref/xamarinios10/_._",
  5934. "ref/xamarinmac20/_._",
  5935. "ref/xamarintvos10/_._",
  5936. "ref/xamarinwatchos10/_._",
  5937. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5938. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  5939. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  5940. "system.diagnostics.tracesource.4.3.0.nupkg.sha512",
  5941. "system.diagnostics.tracesource.nuspec"
  5942. ]
  5943. },
  5944. "System.Diagnostics.Tracing/4.3.0": {
  5945. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5946. "type": "package",
  5947. "path": "system.diagnostics.tracing/4.3.0",
  5948. "files": [
  5949. ".nupkg.metadata",
  5950. ".signature.p7s",
  5951. "ThirdPartyNotices.txt",
  5952. "dotnet_library_license.txt",
  5953. "lib/MonoAndroid10/_._",
  5954. "lib/MonoTouch10/_._",
  5955. "lib/net45/_._",
  5956. "lib/net462/System.Diagnostics.Tracing.dll",
  5957. "lib/portable-net45+win8+wpa81/_._",
  5958. "lib/win8/_._",
  5959. "lib/wpa81/_._",
  5960. "lib/xamarinios10/_._",
  5961. "lib/xamarinmac20/_._",
  5962. "lib/xamarintvos10/_._",
  5963. "lib/xamarinwatchos10/_._",
  5964. "ref/MonoAndroid10/_._",
  5965. "ref/MonoTouch10/_._",
  5966. "ref/net45/_._",
  5967. "ref/net462/System.Diagnostics.Tracing.dll",
  5968. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5969. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5970. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5971. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5972. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5973. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5974. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5975. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5976. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5977. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5978. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5979. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5980. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5981. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5982. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5983. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5984. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5985. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5986. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5987. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5988. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5989. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5990. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5991. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5992. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5993. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5994. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5995. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5996. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5997. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5998. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5999. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6000. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6001. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6002. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6003. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6004. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6005. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6006. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6007. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6008. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6009. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6010. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6011. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6012. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6013. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6014. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6015. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6016. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6017. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6018. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6019. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6020. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6021. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6022. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6023. "ref/portable-net45+win8+wpa81/_._",
  6024. "ref/win8/_._",
  6025. "ref/wpa81/_._",
  6026. "ref/xamarinios10/_._",
  6027. "ref/xamarinmac20/_._",
  6028. "ref/xamarintvos10/_._",
  6029. "ref/xamarinwatchos10/_._",
  6030. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6031. "system.diagnostics.tracing.nuspec"
  6032. ]
  6033. },
  6034. "System.Drawing.Common/4.7.0": {
  6035. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  6036. "type": "package",
  6037. "path": "system.drawing.common/4.7.0",
  6038. "files": [
  6039. ".nupkg.metadata",
  6040. ".signature.p7s",
  6041. "LICENSE.TXT",
  6042. "THIRD-PARTY-NOTICES.TXT",
  6043. "lib/MonoAndroid10/_._",
  6044. "lib/MonoTouch10/_._",
  6045. "lib/net461/System.Drawing.Common.dll",
  6046. "lib/netstandard2.0/System.Drawing.Common.dll",
  6047. "lib/xamarinios10/_._",
  6048. "lib/xamarinmac20/_._",
  6049. "lib/xamarintvos10/_._",
  6050. "lib/xamarinwatchos10/_._",
  6051. "ref/MonoAndroid10/_._",
  6052. "ref/MonoTouch10/_._",
  6053. "ref/net461/System.Drawing.Common.dll",
  6054. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  6055. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  6056. "ref/netstandard2.0/System.Drawing.Common.dll",
  6057. "ref/xamarinios10/_._",
  6058. "ref/xamarinmac20/_._",
  6059. "ref/xamarintvos10/_._",
  6060. "ref/xamarinwatchos10/_._",
  6061. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6062. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6063. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6064. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6065. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6066. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6067. "system.drawing.common.4.7.0.nupkg.sha512",
  6068. "system.drawing.common.nuspec",
  6069. "useSharedDesignerContext.txt",
  6070. "version.txt"
  6071. ]
  6072. },
  6073. "System.Dynamic.Runtime/4.3.0": {
  6074. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  6075. "type": "package",
  6076. "path": "system.dynamic.runtime/4.3.0",
  6077. "files": [
  6078. ".nupkg.metadata",
  6079. ".signature.p7s",
  6080. "ThirdPartyNotices.txt",
  6081. "dotnet_library_license.txt",
  6082. "lib/MonoAndroid10/_._",
  6083. "lib/MonoTouch10/_._",
  6084. "lib/net45/_._",
  6085. "lib/netcore50/System.Dynamic.Runtime.dll",
  6086. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  6087. "lib/portable-net45+win8+wp8+wpa81/_._",
  6088. "lib/win8/_._",
  6089. "lib/wp80/_._",
  6090. "lib/wpa81/_._",
  6091. "lib/xamarinios10/_._",
  6092. "lib/xamarinmac20/_._",
  6093. "lib/xamarintvos10/_._",
  6094. "lib/xamarinwatchos10/_._",
  6095. "ref/MonoAndroid10/_._",
  6096. "ref/MonoTouch10/_._",
  6097. "ref/net45/_._",
  6098. "ref/netcore50/System.Dynamic.Runtime.dll",
  6099. "ref/netcore50/System.Dynamic.Runtime.xml",
  6100. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6101. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6102. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6103. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6104. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6105. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6106. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6107. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6108. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6109. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6110. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6111. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6112. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6113. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6114. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6115. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6116. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6117. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6118. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6119. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6120. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6121. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6122. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6123. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6124. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6125. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6126. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6127. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6128. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6129. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6130. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6131. "ref/portable-net45+win8+wp8+wpa81/_._",
  6132. "ref/win8/_._",
  6133. "ref/wp80/_._",
  6134. "ref/wpa81/_._",
  6135. "ref/xamarinios10/_._",
  6136. "ref/xamarinmac20/_._",
  6137. "ref/xamarintvos10/_._",
  6138. "ref/xamarinwatchos10/_._",
  6139. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  6140. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  6141. "system.dynamic.runtime.nuspec"
  6142. ]
  6143. },
  6144. "System.Globalization/4.3.0": {
  6145. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6146. "type": "package",
  6147. "path": "system.globalization/4.3.0",
  6148. "files": [
  6149. ".nupkg.metadata",
  6150. ".signature.p7s",
  6151. "ThirdPartyNotices.txt",
  6152. "dotnet_library_license.txt",
  6153. "lib/MonoAndroid10/_._",
  6154. "lib/MonoTouch10/_._",
  6155. "lib/net45/_._",
  6156. "lib/portable-net45+win8+wp8+wpa81/_._",
  6157. "lib/win8/_._",
  6158. "lib/wp80/_._",
  6159. "lib/wpa81/_._",
  6160. "lib/xamarinios10/_._",
  6161. "lib/xamarinmac20/_._",
  6162. "lib/xamarintvos10/_._",
  6163. "lib/xamarinwatchos10/_._",
  6164. "ref/MonoAndroid10/_._",
  6165. "ref/MonoTouch10/_._",
  6166. "ref/net45/_._",
  6167. "ref/netcore50/System.Globalization.dll",
  6168. "ref/netcore50/System.Globalization.xml",
  6169. "ref/netcore50/de/System.Globalization.xml",
  6170. "ref/netcore50/es/System.Globalization.xml",
  6171. "ref/netcore50/fr/System.Globalization.xml",
  6172. "ref/netcore50/it/System.Globalization.xml",
  6173. "ref/netcore50/ja/System.Globalization.xml",
  6174. "ref/netcore50/ko/System.Globalization.xml",
  6175. "ref/netcore50/ru/System.Globalization.xml",
  6176. "ref/netcore50/zh-hans/System.Globalization.xml",
  6177. "ref/netcore50/zh-hant/System.Globalization.xml",
  6178. "ref/netstandard1.0/System.Globalization.dll",
  6179. "ref/netstandard1.0/System.Globalization.xml",
  6180. "ref/netstandard1.0/de/System.Globalization.xml",
  6181. "ref/netstandard1.0/es/System.Globalization.xml",
  6182. "ref/netstandard1.0/fr/System.Globalization.xml",
  6183. "ref/netstandard1.0/it/System.Globalization.xml",
  6184. "ref/netstandard1.0/ja/System.Globalization.xml",
  6185. "ref/netstandard1.0/ko/System.Globalization.xml",
  6186. "ref/netstandard1.0/ru/System.Globalization.xml",
  6187. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6188. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6189. "ref/netstandard1.3/System.Globalization.dll",
  6190. "ref/netstandard1.3/System.Globalization.xml",
  6191. "ref/netstandard1.3/de/System.Globalization.xml",
  6192. "ref/netstandard1.3/es/System.Globalization.xml",
  6193. "ref/netstandard1.3/fr/System.Globalization.xml",
  6194. "ref/netstandard1.3/it/System.Globalization.xml",
  6195. "ref/netstandard1.3/ja/System.Globalization.xml",
  6196. "ref/netstandard1.3/ko/System.Globalization.xml",
  6197. "ref/netstandard1.3/ru/System.Globalization.xml",
  6198. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6199. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6200. "ref/portable-net45+win8+wp8+wpa81/_._",
  6201. "ref/win8/_._",
  6202. "ref/wp80/_._",
  6203. "ref/wpa81/_._",
  6204. "ref/xamarinios10/_._",
  6205. "ref/xamarinmac20/_._",
  6206. "ref/xamarintvos10/_._",
  6207. "ref/xamarinwatchos10/_._",
  6208. "system.globalization.4.3.0.nupkg.sha512",
  6209. "system.globalization.nuspec"
  6210. ]
  6211. },
  6212. "System.Globalization.Calendars/4.3.0": {
  6213. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6214. "type": "package",
  6215. "path": "system.globalization.calendars/4.3.0",
  6216. "files": [
  6217. ".nupkg.metadata",
  6218. ".signature.p7s",
  6219. "ThirdPartyNotices.txt",
  6220. "dotnet_library_license.txt",
  6221. "lib/MonoAndroid10/_._",
  6222. "lib/MonoTouch10/_._",
  6223. "lib/net46/System.Globalization.Calendars.dll",
  6224. "lib/xamarinios10/_._",
  6225. "lib/xamarinmac20/_._",
  6226. "lib/xamarintvos10/_._",
  6227. "lib/xamarinwatchos10/_._",
  6228. "ref/MonoAndroid10/_._",
  6229. "ref/MonoTouch10/_._",
  6230. "ref/net46/System.Globalization.Calendars.dll",
  6231. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6232. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6233. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6234. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6235. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6236. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6237. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6238. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6239. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6240. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6241. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6242. "ref/xamarinios10/_._",
  6243. "ref/xamarinmac20/_._",
  6244. "ref/xamarintvos10/_._",
  6245. "ref/xamarinwatchos10/_._",
  6246. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6247. "system.globalization.calendars.nuspec"
  6248. ]
  6249. },
  6250. "System.Globalization.Extensions/4.3.0": {
  6251. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6252. "type": "package",
  6253. "path": "system.globalization.extensions/4.3.0",
  6254. "files": [
  6255. ".nupkg.metadata",
  6256. ".signature.p7s",
  6257. "ThirdPartyNotices.txt",
  6258. "dotnet_library_license.txt",
  6259. "lib/MonoAndroid10/_._",
  6260. "lib/MonoTouch10/_._",
  6261. "lib/net46/System.Globalization.Extensions.dll",
  6262. "lib/xamarinios10/_._",
  6263. "lib/xamarinmac20/_._",
  6264. "lib/xamarintvos10/_._",
  6265. "lib/xamarinwatchos10/_._",
  6266. "ref/MonoAndroid10/_._",
  6267. "ref/MonoTouch10/_._",
  6268. "ref/net46/System.Globalization.Extensions.dll",
  6269. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6270. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6271. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6272. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6273. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6274. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6275. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6276. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6277. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6278. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6279. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6280. "ref/xamarinios10/_._",
  6281. "ref/xamarinmac20/_._",
  6282. "ref/xamarintvos10/_._",
  6283. "ref/xamarinwatchos10/_._",
  6284. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6285. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6286. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6287. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6288. "system.globalization.extensions.nuspec"
  6289. ]
  6290. },
  6291. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  6292. "sha512": "KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
  6293. "type": "package",
  6294. "path": "system.identitymodel.tokens.jwt/5.6.0",
  6295. "files": [
  6296. ".nupkg.metadata",
  6297. ".signature.p7s",
  6298. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  6299. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  6300. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  6301. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  6302. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  6303. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  6304. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  6305. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  6306. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  6307. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  6308. "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512",
  6309. "system.identitymodel.tokens.jwt.nuspec"
  6310. ]
  6311. },
  6312. "System.IO/4.3.0": {
  6313. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6314. "type": "package",
  6315. "path": "system.io/4.3.0",
  6316. "files": [
  6317. ".nupkg.metadata",
  6318. ".signature.p7s",
  6319. "ThirdPartyNotices.txt",
  6320. "dotnet_library_license.txt",
  6321. "lib/MonoAndroid10/_._",
  6322. "lib/MonoTouch10/_._",
  6323. "lib/net45/_._",
  6324. "lib/net462/System.IO.dll",
  6325. "lib/portable-net45+win8+wp8+wpa81/_._",
  6326. "lib/win8/_._",
  6327. "lib/wp80/_._",
  6328. "lib/wpa81/_._",
  6329. "lib/xamarinios10/_._",
  6330. "lib/xamarinmac20/_._",
  6331. "lib/xamarintvos10/_._",
  6332. "lib/xamarinwatchos10/_._",
  6333. "ref/MonoAndroid10/_._",
  6334. "ref/MonoTouch10/_._",
  6335. "ref/net45/_._",
  6336. "ref/net462/System.IO.dll",
  6337. "ref/netcore50/System.IO.dll",
  6338. "ref/netcore50/System.IO.xml",
  6339. "ref/netcore50/de/System.IO.xml",
  6340. "ref/netcore50/es/System.IO.xml",
  6341. "ref/netcore50/fr/System.IO.xml",
  6342. "ref/netcore50/it/System.IO.xml",
  6343. "ref/netcore50/ja/System.IO.xml",
  6344. "ref/netcore50/ko/System.IO.xml",
  6345. "ref/netcore50/ru/System.IO.xml",
  6346. "ref/netcore50/zh-hans/System.IO.xml",
  6347. "ref/netcore50/zh-hant/System.IO.xml",
  6348. "ref/netstandard1.0/System.IO.dll",
  6349. "ref/netstandard1.0/System.IO.xml",
  6350. "ref/netstandard1.0/de/System.IO.xml",
  6351. "ref/netstandard1.0/es/System.IO.xml",
  6352. "ref/netstandard1.0/fr/System.IO.xml",
  6353. "ref/netstandard1.0/it/System.IO.xml",
  6354. "ref/netstandard1.0/ja/System.IO.xml",
  6355. "ref/netstandard1.0/ko/System.IO.xml",
  6356. "ref/netstandard1.0/ru/System.IO.xml",
  6357. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6358. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6359. "ref/netstandard1.3/System.IO.dll",
  6360. "ref/netstandard1.3/System.IO.xml",
  6361. "ref/netstandard1.3/de/System.IO.xml",
  6362. "ref/netstandard1.3/es/System.IO.xml",
  6363. "ref/netstandard1.3/fr/System.IO.xml",
  6364. "ref/netstandard1.3/it/System.IO.xml",
  6365. "ref/netstandard1.3/ja/System.IO.xml",
  6366. "ref/netstandard1.3/ko/System.IO.xml",
  6367. "ref/netstandard1.3/ru/System.IO.xml",
  6368. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6369. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6370. "ref/netstandard1.5/System.IO.dll",
  6371. "ref/netstandard1.5/System.IO.xml",
  6372. "ref/netstandard1.5/de/System.IO.xml",
  6373. "ref/netstandard1.5/es/System.IO.xml",
  6374. "ref/netstandard1.5/fr/System.IO.xml",
  6375. "ref/netstandard1.5/it/System.IO.xml",
  6376. "ref/netstandard1.5/ja/System.IO.xml",
  6377. "ref/netstandard1.5/ko/System.IO.xml",
  6378. "ref/netstandard1.5/ru/System.IO.xml",
  6379. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6380. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6381. "ref/portable-net45+win8+wp8+wpa81/_._",
  6382. "ref/win8/_._",
  6383. "ref/wp80/_._",
  6384. "ref/wpa81/_._",
  6385. "ref/xamarinios10/_._",
  6386. "ref/xamarinmac20/_._",
  6387. "ref/xamarintvos10/_._",
  6388. "ref/xamarinwatchos10/_._",
  6389. "system.io.4.3.0.nupkg.sha512",
  6390. "system.io.nuspec"
  6391. ]
  6392. },
  6393. "System.IO.Compression/4.3.0": {
  6394. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6395. "type": "package",
  6396. "path": "system.io.compression/4.3.0",
  6397. "files": [
  6398. ".nupkg.metadata",
  6399. ".signature.p7s",
  6400. "ThirdPartyNotices.txt",
  6401. "dotnet_library_license.txt",
  6402. "lib/MonoAndroid10/_._",
  6403. "lib/MonoTouch10/_._",
  6404. "lib/net45/_._",
  6405. "lib/net46/System.IO.Compression.dll",
  6406. "lib/portable-net45+win8+wpa81/_._",
  6407. "lib/win8/_._",
  6408. "lib/wpa81/_._",
  6409. "lib/xamarinios10/_._",
  6410. "lib/xamarinmac20/_._",
  6411. "lib/xamarintvos10/_._",
  6412. "lib/xamarinwatchos10/_._",
  6413. "ref/MonoAndroid10/_._",
  6414. "ref/MonoTouch10/_._",
  6415. "ref/net45/_._",
  6416. "ref/net46/System.IO.Compression.dll",
  6417. "ref/netcore50/System.IO.Compression.dll",
  6418. "ref/netcore50/System.IO.Compression.xml",
  6419. "ref/netcore50/de/System.IO.Compression.xml",
  6420. "ref/netcore50/es/System.IO.Compression.xml",
  6421. "ref/netcore50/fr/System.IO.Compression.xml",
  6422. "ref/netcore50/it/System.IO.Compression.xml",
  6423. "ref/netcore50/ja/System.IO.Compression.xml",
  6424. "ref/netcore50/ko/System.IO.Compression.xml",
  6425. "ref/netcore50/ru/System.IO.Compression.xml",
  6426. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6427. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6428. "ref/netstandard1.1/System.IO.Compression.dll",
  6429. "ref/netstandard1.1/System.IO.Compression.xml",
  6430. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6431. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6432. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6433. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6434. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6435. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6436. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6437. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6438. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6439. "ref/netstandard1.3/System.IO.Compression.dll",
  6440. "ref/netstandard1.3/System.IO.Compression.xml",
  6441. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6442. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6443. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6444. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6445. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6446. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6447. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6448. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6449. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6450. "ref/portable-net45+win8+wpa81/_._",
  6451. "ref/win8/_._",
  6452. "ref/wpa81/_._",
  6453. "ref/xamarinios10/_._",
  6454. "ref/xamarinmac20/_._",
  6455. "ref/xamarintvos10/_._",
  6456. "ref/xamarinwatchos10/_._",
  6457. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6458. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6459. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6460. "system.io.compression.4.3.0.nupkg.sha512",
  6461. "system.io.compression.nuspec"
  6462. ]
  6463. },
  6464. "System.IO.Compression.ZipFile/4.3.0": {
  6465. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6466. "type": "package",
  6467. "path": "system.io.compression.zipfile/4.3.0",
  6468. "files": [
  6469. ".nupkg.metadata",
  6470. ".signature.p7s",
  6471. "ThirdPartyNotices.txt",
  6472. "dotnet_library_license.txt",
  6473. "lib/MonoAndroid10/_._",
  6474. "lib/MonoTouch10/_._",
  6475. "lib/net46/System.IO.Compression.ZipFile.dll",
  6476. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6477. "lib/xamarinios10/_._",
  6478. "lib/xamarinmac20/_._",
  6479. "lib/xamarintvos10/_._",
  6480. "lib/xamarinwatchos10/_._",
  6481. "ref/MonoAndroid10/_._",
  6482. "ref/MonoTouch10/_._",
  6483. "ref/net46/System.IO.Compression.ZipFile.dll",
  6484. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6485. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6486. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6487. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6488. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6489. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6490. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6491. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6492. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6493. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6494. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6495. "ref/xamarinios10/_._",
  6496. "ref/xamarinmac20/_._",
  6497. "ref/xamarintvos10/_._",
  6498. "ref/xamarinwatchos10/_._",
  6499. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6500. "system.io.compression.zipfile.nuspec"
  6501. ]
  6502. },
  6503. "System.IO.FileSystem/4.3.0": {
  6504. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6505. "type": "package",
  6506. "path": "system.io.filesystem/4.3.0",
  6507. "files": [
  6508. ".nupkg.metadata",
  6509. ".signature.p7s",
  6510. "ThirdPartyNotices.txt",
  6511. "dotnet_library_license.txt",
  6512. "lib/MonoAndroid10/_._",
  6513. "lib/MonoTouch10/_._",
  6514. "lib/net46/System.IO.FileSystem.dll",
  6515. "lib/xamarinios10/_._",
  6516. "lib/xamarinmac20/_._",
  6517. "lib/xamarintvos10/_._",
  6518. "lib/xamarinwatchos10/_._",
  6519. "ref/MonoAndroid10/_._",
  6520. "ref/MonoTouch10/_._",
  6521. "ref/net46/System.IO.FileSystem.dll",
  6522. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6523. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6524. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6525. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6526. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6527. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6528. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6529. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6530. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6531. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6532. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6533. "ref/xamarinios10/_._",
  6534. "ref/xamarinmac20/_._",
  6535. "ref/xamarintvos10/_._",
  6536. "ref/xamarinwatchos10/_._",
  6537. "system.io.filesystem.4.3.0.nupkg.sha512",
  6538. "system.io.filesystem.nuspec"
  6539. ]
  6540. },
  6541. "System.IO.FileSystem.Primitives/4.3.0": {
  6542. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6543. "type": "package",
  6544. "path": "system.io.filesystem.primitives/4.3.0",
  6545. "files": [
  6546. ".nupkg.metadata",
  6547. ".signature.p7s",
  6548. "ThirdPartyNotices.txt",
  6549. "dotnet_library_license.txt",
  6550. "lib/MonoAndroid10/_._",
  6551. "lib/MonoTouch10/_._",
  6552. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6553. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6554. "lib/xamarinios10/_._",
  6555. "lib/xamarinmac20/_._",
  6556. "lib/xamarintvos10/_._",
  6557. "lib/xamarinwatchos10/_._",
  6558. "ref/MonoAndroid10/_._",
  6559. "ref/MonoTouch10/_._",
  6560. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6561. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6562. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6563. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6564. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6565. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6566. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6567. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6568. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6569. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6570. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6571. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6572. "ref/xamarinios10/_._",
  6573. "ref/xamarinmac20/_._",
  6574. "ref/xamarintvos10/_._",
  6575. "ref/xamarinwatchos10/_._",
  6576. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  6577. "system.io.filesystem.primitives.nuspec"
  6578. ]
  6579. },
  6580. "System.Linq/4.3.0": {
  6581. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  6582. "type": "package",
  6583. "path": "system.linq/4.3.0",
  6584. "files": [
  6585. ".nupkg.metadata",
  6586. ".signature.p7s",
  6587. "ThirdPartyNotices.txt",
  6588. "dotnet_library_license.txt",
  6589. "lib/MonoAndroid10/_._",
  6590. "lib/MonoTouch10/_._",
  6591. "lib/net45/_._",
  6592. "lib/net463/System.Linq.dll",
  6593. "lib/netcore50/System.Linq.dll",
  6594. "lib/netstandard1.6/System.Linq.dll",
  6595. "lib/portable-net45+win8+wp8+wpa81/_._",
  6596. "lib/win8/_._",
  6597. "lib/wp80/_._",
  6598. "lib/wpa81/_._",
  6599. "lib/xamarinios10/_._",
  6600. "lib/xamarinmac20/_._",
  6601. "lib/xamarintvos10/_._",
  6602. "lib/xamarinwatchos10/_._",
  6603. "ref/MonoAndroid10/_._",
  6604. "ref/MonoTouch10/_._",
  6605. "ref/net45/_._",
  6606. "ref/net463/System.Linq.dll",
  6607. "ref/netcore50/System.Linq.dll",
  6608. "ref/netcore50/System.Linq.xml",
  6609. "ref/netcore50/de/System.Linq.xml",
  6610. "ref/netcore50/es/System.Linq.xml",
  6611. "ref/netcore50/fr/System.Linq.xml",
  6612. "ref/netcore50/it/System.Linq.xml",
  6613. "ref/netcore50/ja/System.Linq.xml",
  6614. "ref/netcore50/ko/System.Linq.xml",
  6615. "ref/netcore50/ru/System.Linq.xml",
  6616. "ref/netcore50/zh-hans/System.Linq.xml",
  6617. "ref/netcore50/zh-hant/System.Linq.xml",
  6618. "ref/netstandard1.0/System.Linq.dll",
  6619. "ref/netstandard1.0/System.Linq.xml",
  6620. "ref/netstandard1.0/de/System.Linq.xml",
  6621. "ref/netstandard1.0/es/System.Linq.xml",
  6622. "ref/netstandard1.0/fr/System.Linq.xml",
  6623. "ref/netstandard1.0/it/System.Linq.xml",
  6624. "ref/netstandard1.0/ja/System.Linq.xml",
  6625. "ref/netstandard1.0/ko/System.Linq.xml",
  6626. "ref/netstandard1.0/ru/System.Linq.xml",
  6627. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6628. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6629. "ref/netstandard1.6/System.Linq.dll",
  6630. "ref/netstandard1.6/System.Linq.xml",
  6631. "ref/netstandard1.6/de/System.Linq.xml",
  6632. "ref/netstandard1.6/es/System.Linq.xml",
  6633. "ref/netstandard1.6/fr/System.Linq.xml",
  6634. "ref/netstandard1.6/it/System.Linq.xml",
  6635. "ref/netstandard1.6/ja/System.Linq.xml",
  6636. "ref/netstandard1.6/ko/System.Linq.xml",
  6637. "ref/netstandard1.6/ru/System.Linq.xml",
  6638. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6639. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6640. "ref/portable-net45+win8+wp8+wpa81/_._",
  6641. "ref/win8/_._",
  6642. "ref/wp80/_._",
  6643. "ref/wpa81/_._",
  6644. "ref/xamarinios10/_._",
  6645. "ref/xamarinmac20/_._",
  6646. "ref/xamarintvos10/_._",
  6647. "ref/xamarinwatchos10/_._",
  6648. "system.linq.4.3.0.nupkg.sha512",
  6649. "system.linq.nuspec"
  6650. ]
  6651. },
  6652. "System.Linq.Expressions/4.3.0": {
  6653. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  6654. "type": "package",
  6655. "path": "system.linq.expressions/4.3.0",
  6656. "files": [
  6657. ".nupkg.metadata",
  6658. ".signature.p7s",
  6659. "ThirdPartyNotices.txt",
  6660. "dotnet_library_license.txt",
  6661. "lib/MonoAndroid10/_._",
  6662. "lib/MonoTouch10/_._",
  6663. "lib/net45/_._",
  6664. "lib/net463/System.Linq.Expressions.dll",
  6665. "lib/netcore50/System.Linq.Expressions.dll",
  6666. "lib/netstandard1.6/System.Linq.Expressions.dll",
  6667. "lib/portable-net45+win8+wp8+wpa81/_._",
  6668. "lib/win8/_._",
  6669. "lib/wp80/_._",
  6670. "lib/wpa81/_._",
  6671. "lib/xamarinios10/_._",
  6672. "lib/xamarinmac20/_._",
  6673. "lib/xamarintvos10/_._",
  6674. "lib/xamarinwatchos10/_._",
  6675. "ref/MonoAndroid10/_._",
  6676. "ref/MonoTouch10/_._",
  6677. "ref/net45/_._",
  6678. "ref/net463/System.Linq.Expressions.dll",
  6679. "ref/netcore50/System.Linq.Expressions.dll",
  6680. "ref/netcore50/System.Linq.Expressions.xml",
  6681. "ref/netcore50/de/System.Linq.Expressions.xml",
  6682. "ref/netcore50/es/System.Linq.Expressions.xml",
  6683. "ref/netcore50/fr/System.Linq.Expressions.xml",
  6684. "ref/netcore50/it/System.Linq.Expressions.xml",
  6685. "ref/netcore50/ja/System.Linq.Expressions.xml",
  6686. "ref/netcore50/ko/System.Linq.Expressions.xml",
  6687. "ref/netcore50/ru/System.Linq.Expressions.xml",
  6688. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  6689. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  6690. "ref/netstandard1.0/System.Linq.Expressions.dll",
  6691. "ref/netstandard1.0/System.Linq.Expressions.xml",
  6692. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  6693. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  6694. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  6695. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  6696. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  6697. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  6698. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  6699. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  6700. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  6701. "ref/netstandard1.3/System.Linq.Expressions.dll",
  6702. "ref/netstandard1.3/System.Linq.Expressions.xml",
  6703. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  6704. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  6705. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  6706. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  6707. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  6708. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  6709. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  6710. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  6711. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  6712. "ref/netstandard1.6/System.Linq.Expressions.dll",
  6713. "ref/netstandard1.6/System.Linq.Expressions.xml",
  6714. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  6715. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  6716. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  6717. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  6718. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  6719. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  6720. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  6721. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  6722. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  6723. "ref/portable-net45+win8+wp8+wpa81/_._",
  6724. "ref/win8/_._",
  6725. "ref/wp80/_._",
  6726. "ref/wpa81/_._",
  6727. "ref/xamarinios10/_._",
  6728. "ref/xamarinmac20/_._",
  6729. "ref/xamarintvos10/_._",
  6730. "ref/xamarinwatchos10/_._",
  6731. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  6732. "system.linq.expressions.4.3.0.nupkg.sha512",
  6733. "system.linq.expressions.nuspec"
  6734. ]
  6735. },
  6736. "System.Net.Http/4.3.0": {
  6737. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  6738. "type": "package",
  6739. "path": "system.net.http/4.3.0",
  6740. "files": [
  6741. ".nupkg.metadata",
  6742. ".signature.p7s",
  6743. "ThirdPartyNotices.txt",
  6744. "dotnet_library_license.txt",
  6745. "lib/Xamarinmac20/_._",
  6746. "lib/monoandroid10/_._",
  6747. "lib/monotouch10/_._",
  6748. "lib/net45/_._",
  6749. "lib/net46/System.Net.Http.dll",
  6750. "lib/portable-net45+win8+wpa81/_._",
  6751. "lib/win8/_._",
  6752. "lib/wpa81/_._",
  6753. "lib/xamarinios10/_._",
  6754. "lib/xamarintvos10/_._",
  6755. "lib/xamarinwatchos10/_._",
  6756. "ref/Xamarinmac20/_._",
  6757. "ref/monoandroid10/_._",
  6758. "ref/monotouch10/_._",
  6759. "ref/net45/_._",
  6760. "ref/net46/System.Net.Http.dll",
  6761. "ref/net46/System.Net.Http.xml",
  6762. "ref/net46/de/System.Net.Http.xml",
  6763. "ref/net46/es/System.Net.Http.xml",
  6764. "ref/net46/fr/System.Net.Http.xml",
  6765. "ref/net46/it/System.Net.Http.xml",
  6766. "ref/net46/ja/System.Net.Http.xml",
  6767. "ref/net46/ko/System.Net.Http.xml",
  6768. "ref/net46/ru/System.Net.Http.xml",
  6769. "ref/net46/zh-hans/System.Net.Http.xml",
  6770. "ref/net46/zh-hant/System.Net.Http.xml",
  6771. "ref/netcore50/System.Net.Http.dll",
  6772. "ref/netcore50/System.Net.Http.xml",
  6773. "ref/netcore50/de/System.Net.Http.xml",
  6774. "ref/netcore50/es/System.Net.Http.xml",
  6775. "ref/netcore50/fr/System.Net.Http.xml",
  6776. "ref/netcore50/it/System.Net.Http.xml",
  6777. "ref/netcore50/ja/System.Net.Http.xml",
  6778. "ref/netcore50/ko/System.Net.Http.xml",
  6779. "ref/netcore50/ru/System.Net.Http.xml",
  6780. "ref/netcore50/zh-hans/System.Net.Http.xml",
  6781. "ref/netcore50/zh-hant/System.Net.Http.xml",
  6782. "ref/netstandard1.1/System.Net.Http.dll",
  6783. "ref/netstandard1.1/System.Net.Http.xml",
  6784. "ref/netstandard1.1/de/System.Net.Http.xml",
  6785. "ref/netstandard1.1/es/System.Net.Http.xml",
  6786. "ref/netstandard1.1/fr/System.Net.Http.xml",
  6787. "ref/netstandard1.1/it/System.Net.Http.xml",
  6788. "ref/netstandard1.1/ja/System.Net.Http.xml",
  6789. "ref/netstandard1.1/ko/System.Net.Http.xml",
  6790. "ref/netstandard1.1/ru/System.Net.Http.xml",
  6791. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  6792. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  6793. "ref/netstandard1.3/System.Net.Http.dll",
  6794. "ref/netstandard1.3/System.Net.Http.xml",
  6795. "ref/netstandard1.3/de/System.Net.Http.xml",
  6796. "ref/netstandard1.3/es/System.Net.Http.xml",
  6797. "ref/netstandard1.3/fr/System.Net.Http.xml",
  6798. "ref/netstandard1.3/it/System.Net.Http.xml",
  6799. "ref/netstandard1.3/ja/System.Net.Http.xml",
  6800. "ref/netstandard1.3/ko/System.Net.Http.xml",
  6801. "ref/netstandard1.3/ru/System.Net.Http.xml",
  6802. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  6803. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  6804. "ref/portable-net45+win8+wpa81/_._",
  6805. "ref/win8/_._",
  6806. "ref/wpa81/_._",
  6807. "ref/xamarinios10/_._",
  6808. "ref/xamarintvos10/_._",
  6809. "ref/xamarinwatchos10/_._",
  6810. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6811. "runtimes/win/lib/net46/System.Net.Http.dll",
  6812. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6813. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6814. "system.net.http.4.3.0.nupkg.sha512",
  6815. "system.net.http.nuspec"
  6816. ]
  6817. },
  6818. "System.Net.Http.WinHttpHandler/4.4.0": {
  6819. "sha512": "ZmsFZIZ4PL2UfUlfj4KCzzAGGE2SF39ENIqtvfgu0bwMEAe3J3CqZr765E2W6eQQtNK08/8DpHcsA0sAKZdEtA==",
  6820. "type": "package",
  6821. "path": "system.net.http.winhttphandler/4.4.0",
  6822. "files": [
  6823. ".nupkg.metadata",
  6824. ".signature.p7s",
  6825. "LICENSE.TXT",
  6826. "THIRD-PARTY-NOTICES.TXT",
  6827. "lib/net46/System.Net.Http.WinHttpHandler.dll",
  6828. "lib/net461/System.Net.Http.WinHttpHandler.dll",
  6829. "lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6830. "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6831. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6832. "ref/netstandard1.3/System.Net.Http.WinHttpHandler.xml",
  6833. "ref/netstandard1.3/de/System.Net.Http.WinHttpHandler.xml",
  6834. "ref/netstandard1.3/es/System.Net.Http.WinHttpHandler.xml",
  6835. "ref/netstandard1.3/fr/System.Net.Http.WinHttpHandler.xml",
  6836. "ref/netstandard1.3/it/System.Net.Http.WinHttpHandler.xml",
  6837. "ref/netstandard1.3/ja/System.Net.Http.WinHttpHandler.xml",
  6838. "ref/netstandard1.3/ko/System.Net.Http.WinHttpHandler.xml",
  6839. "ref/netstandard1.3/ru/System.Net.Http.WinHttpHandler.xml",
  6840. "ref/netstandard1.3/zh-hans/System.Net.Http.WinHttpHandler.xml",
  6841. "ref/netstandard1.3/zh-hant/System.Net.Http.WinHttpHandler.xml",
  6842. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6843. "ref/netstandard2.0/System.Net.Http.WinHttpHandler.xml",
  6844. "runtimes/win/lib/net46/System.Net.Http.WinHttpHandler.dll",
  6845. "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll",
  6846. "runtimes/win/lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll",
  6847. "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll",
  6848. "system.net.http.winhttphandler.4.4.0.nupkg.sha512",
  6849. "system.net.http.winhttphandler.nuspec",
  6850. "useSharedDesignerContext.txt",
  6851. "version.txt"
  6852. ]
  6853. },
  6854. "System.Net.Primitives/4.3.0": {
  6855. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6856. "type": "package",
  6857. "path": "system.net.primitives/4.3.0",
  6858. "files": [
  6859. ".nupkg.metadata",
  6860. ".signature.p7s",
  6861. "ThirdPartyNotices.txt",
  6862. "dotnet_library_license.txt",
  6863. "lib/MonoAndroid10/_._",
  6864. "lib/MonoTouch10/_._",
  6865. "lib/net45/_._",
  6866. "lib/portable-net45+win8+wp8+wpa81/_._",
  6867. "lib/win8/_._",
  6868. "lib/wp80/_._",
  6869. "lib/wpa81/_._",
  6870. "lib/xamarinios10/_._",
  6871. "lib/xamarinmac20/_._",
  6872. "lib/xamarintvos10/_._",
  6873. "lib/xamarinwatchos10/_._",
  6874. "ref/MonoAndroid10/_._",
  6875. "ref/MonoTouch10/_._",
  6876. "ref/net45/_._",
  6877. "ref/netcore50/System.Net.Primitives.dll",
  6878. "ref/netcore50/System.Net.Primitives.xml",
  6879. "ref/netcore50/de/System.Net.Primitives.xml",
  6880. "ref/netcore50/es/System.Net.Primitives.xml",
  6881. "ref/netcore50/fr/System.Net.Primitives.xml",
  6882. "ref/netcore50/it/System.Net.Primitives.xml",
  6883. "ref/netcore50/ja/System.Net.Primitives.xml",
  6884. "ref/netcore50/ko/System.Net.Primitives.xml",
  6885. "ref/netcore50/ru/System.Net.Primitives.xml",
  6886. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6887. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6888. "ref/netstandard1.0/System.Net.Primitives.dll",
  6889. "ref/netstandard1.0/System.Net.Primitives.xml",
  6890. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6891. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6892. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6893. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6894. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6895. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6896. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6897. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6898. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6899. "ref/netstandard1.1/System.Net.Primitives.dll",
  6900. "ref/netstandard1.1/System.Net.Primitives.xml",
  6901. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6902. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6903. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6904. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6905. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6906. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6907. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6908. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6909. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6910. "ref/netstandard1.3/System.Net.Primitives.dll",
  6911. "ref/netstandard1.3/System.Net.Primitives.xml",
  6912. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6913. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6914. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6915. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6916. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6917. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6918. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6919. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6920. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6921. "ref/portable-net45+win8+wp8+wpa81/_._",
  6922. "ref/win8/_._",
  6923. "ref/wp80/_._",
  6924. "ref/wpa81/_._",
  6925. "ref/xamarinios10/_._",
  6926. "ref/xamarinmac20/_._",
  6927. "ref/xamarintvos10/_._",
  6928. "ref/xamarinwatchos10/_._",
  6929. "system.net.primitives.4.3.0.nupkg.sha512",
  6930. "system.net.primitives.nuspec"
  6931. ]
  6932. },
  6933. "System.Net.Requests/4.3.0": {
  6934. "sha512": "OZNUuAs0kDXUzm7U5NZ1ojVta5YFZmgT2yxBqsQ7Eseq5Ahz88LInGRuNLJ/NP2F8W1q7tse1pKDthj3reF5QA==",
  6935. "type": "package",
  6936. "path": "system.net.requests/4.3.0",
  6937. "files": [
  6938. ".nupkg.metadata",
  6939. ".signature.p7s",
  6940. "ThirdPartyNotices.txt",
  6941. "dotnet_library_license.txt",
  6942. "lib/MonoAndroid10/_._",
  6943. "lib/MonoTouch10/_._",
  6944. "lib/net45/_._",
  6945. "lib/portable-net45+win8+wp8+wpa81/_._",
  6946. "lib/win8/_._",
  6947. "lib/wp80/_._",
  6948. "lib/wpa81/_._",
  6949. "lib/xamarinios10/_._",
  6950. "lib/xamarinmac20/_._",
  6951. "lib/xamarintvos10/_._",
  6952. "lib/xamarinwatchos10/_._",
  6953. "ref/MonoAndroid10/_._",
  6954. "ref/MonoTouch10/_._",
  6955. "ref/net45/_._",
  6956. "ref/net46/_._",
  6957. "ref/netcore50/System.Net.Requests.dll",
  6958. "ref/netcore50/System.Net.Requests.xml",
  6959. "ref/netcore50/de/System.Net.Requests.xml",
  6960. "ref/netcore50/es/System.Net.Requests.xml",
  6961. "ref/netcore50/fr/System.Net.Requests.xml",
  6962. "ref/netcore50/it/System.Net.Requests.xml",
  6963. "ref/netcore50/ja/System.Net.Requests.xml",
  6964. "ref/netcore50/ko/System.Net.Requests.xml",
  6965. "ref/netcore50/ru/System.Net.Requests.xml",
  6966. "ref/netcore50/zh-hans/System.Net.Requests.xml",
  6967. "ref/netcore50/zh-hant/System.Net.Requests.xml",
  6968. "ref/netstandard1.0/System.Net.Requests.dll",
  6969. "ref/netstandard1.0/System.Net.Requests.xml",
  6970. "ref/netstandard1.0/de/System.Net.Requests.xml",
  6971. "ref/netstandard1.0/es/System.Net.Requests.xml",
  6972. "ref/netstandard1.0/fr/System.Net.Requests.xml",
  6973. "ref/netstandard1.0/it/System.Net.Requests.xml",
  6974. "ref/netstandard1.0/ja/System.Net.Requests.xml",
  6975. "ref/netstandard1.0/ko/System.Net.Requests.xml",
  6976. "ref/netstandard1.0/ru/System.Net.Requests.xml",
  6977. "ref/netstandard1.0/zh-hans/System.Net.Requests.xml",
  6978. "ref/netstandard1.0/zh-hant/System.Net.Requests.xml",
  6979. "ref/netstandard1.1/System.Net.Requests.dll",
  6980. "ref/netstandard1.1/System.Net.Requests.xml",
  6981. "ref/netstandard1.1/de/System.Net.Requests.xml",
  6982. "ref/netstandard1.1/es/System.Net.Requests.xml",
  6983. "ref/netstandard1.1/fr/System.Net.Requests.xml",
  6984. "ref/netstandard1.1/it/System.Net.Requests.xml",
  6985. "ref/netstandard1.1/ja/System.Net.Requests.xml",
  6986. "ref/netstandard1.1/ko/System.Net.Requests.xml",
  6987. "ref/netstandard1.1/ru/System.Net.Requests.xml",
  6988. "ref/netstandard1.1/zh-hans/System.Net.Requests.xml",
  6989. "ref/netstandard1.1/zh-hant/System.Net.Requests.xml",
  6990. "ref/netstandard1.3/System.Net.Requests.dll",
  6991. "ref/netstandard1.3/System.Net.Requests.xml",
  6992. "ref/netstandard1.3/de/System.Net.Requests.xml",
  6993. "ref/netstandard1.3/es/System.Net.Requests.xml",
  6994. "ref/netstandard1.3/fr/System.Net.Requests.xml",
  6995. "ref/netstandard1.3/it/System.Net.Requests.xml",
  6996. "ref/netstandard1.3/ja/System.Net.Requests.xml",
  6997. "ref/netstandard1.3/ko/System.Net.Requests.xml",
  6998. "ref/netstandard1.3/ru/System.Net.Requests.xml",
  6999. "ref/netstandard1.3/zh-hans/System.Net.Requests.xml",
  7000. "ref/netstandard1.3/zh-hant/System.Net.Requests.xml",
  7001. "ref/portable-net45+win8+wp8+wpa81/_._",
  7002. "ref/win8/_._",
  7003. "ref/wp80/_._",
  7004. "ref/wpa81/_._",
  7005. "ref/xamarinios10/_._",
  7006. "ref/xamarinmac20/_._",
  7007. "ref/xamarintvos10/_._",
  7008. "ref/xamarinwatchos10/_._",
  7009. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll",
  7010. "runtimes/win/lib/net46/_._",
  7011. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll",
  7012. "system.net.requests.4.3.0.nupkg.sha512",
  7013. "system.net.requests.nuspec"
  7014. ]
  7015. },
  7016. "System.Net.Sockets/4.3.0": {
  7017. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7018. "type": "package",
  7019. "path": "system.net.sockets/4.3.0",
  7020. "files": [
  7021. ".nupkg.metadata",
  7022. ".signature.p7s",
  7023. "ThirdPartyNotices.txt",
  7024. "dotnet_library_license.txt",
  7025. "lib/MonoAndroid10/_._",
  7026. "lib/MonoTouch10/_._",
  7027. "lib/net46/System.Net.Sockets.dll",
  7028. "lib/xamarinios10/_._",
  7029. "lib/xamarinmac20/_._",
  7030. "lib/xamarintvos10/_._",
  7031. "lib/xamarinwatchos10/_._",
  7032. "ref/MonoAndroid10/_._",
  7033. "ref/MonoTouch10/_._",
  7034. "ref/net46/System.Net.Sockets.dll",
  7035. "ref/netstandard1.3/System.Net.Sockets.dll",
  7036. "ref/netstandard1.3/System.Net.Sockets.xml",
  7037. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7038. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7039. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7040. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7041. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7042. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7043. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7044. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7045. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7046. "ref/xamarinios10/_._",
  7047. "ref/xamarinmac20/_._",
  7048. "ref/xamarintvos10/_._",
  7049. "ref/xamarinwatchos10/_._",
  7050. "system.net.sockets.4.3.0.nupkg.sha512",
  7051. "system.net.sockets.nuspec"
  7052. ]
  7053. },
  7054. "System.Net.WebHeaderCollection/4.3.0": {
  7055. "sha512": "XZrXYG3c7QV/GpWeoaRC02rM6LH2JJetfVYskf35wdC/w2fFDFMphec4gmVH2dkll6abtW14u9Rt96pxd9YH2A==",
  7056. "type": "package",
  7057. "path": "system.net.webheadercollection/4.3.0",
  7058. "files": [
  7059. ".nupkg.metadata",
  7060. ".signature.p7s",
  7061. "ThirdPartyNotices.txt",
  7062. "dotnet_library_license.txt",
  7063. "lib/MonoAndroid10/_._",
  7064. "lib/MonoTouch10/_._",
  7065. "lib/net46/_._",
  7066. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7067. "lib/xamarinios10/_._",
  7068. "lib/xamarinmac20/_._",
  7069. "lib/xamarintvos10/_._",
  7070. "lib/xamarinwatchos10/_._",
  7071. "ref/MonoAndroid10/_._",
  7072. "ref/MonoTouch10/_._",
  7073. "ref/net46/_._",
  7074. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7075. "ref/netstandard1.3/System.Net.WebHeaderCollection.xml",
  7076. "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml",
  7077. "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml",
  7078. "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml",
  7079. "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml",
  7080. "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml",
  7081. "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml",
  7082. "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml",
  7083. "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml",
  7084. "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml",
  7085. "ref/xamarinios10/_._",
  7086. "ref/xamarinmac20/_._",
  7087. "ref/xamarintvos10/_._",
  7088. "ref/xamarinwatchos10/_._",
  7089. "system.net.webheadercollection.4.3.0.nupkg.sha512",
  7090. "system.net.webheadercollection.nuspec"
  7091. ]
  7092. },
  7093. "System.ObjectModel/4.3.0": {
  7094. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7095. "type": "package",
  7096. "path": "system.objectmodel/4.3.0",
  7097. "files": [
  7098. ".nupkg.metadata",
  7099. ".signature.p7s",
  7100. "ThirdPartyNotices.txt",
  7101. "dotnet_library_license.txt",
  7102. "lib/MonoAndroid10/_._",
  7103. "lib/MonoTouch10/_._",
  7104. "lib/net45/_._",
  7105. "lib/netcore50/System.ObjectModel.dll",
  7106. "lib/netstandard1.3/System.ObjectModel.dll",
  7107. "lib/portable-net45+win8+wp8+wpa81/_._",
  7108. "lib/win8/_._",
  7109. "lib/wp80/_._",
  7110. "lib/wpa81/_._",
  7111. "lib/xamarinios10/_._",
  7112. "lib/xamarinmac20/_._",
  7113. "lib/xamarintvos10/_._",
  7114. "lib/xamarinwatchos10/_._",
  7115. "ref/MonoAndroid10/_._",
  7116. "ref/MonoTouch10/_._",
  7117. "ref/net45/_._",
  7118. "ref/netcore50/System.ObjectModel.dll",
  7119. "ref/netcore50/System.ObjectModel.xml",
  7120. "ref/netcore50/de/System.ObjectModel.xml",
  7121. "ref/netcore50/es/System.ObjectModel.xml",
  7122. "ref/netcore50/fr/System.ObjectModel.xml",
  7123. "ref/netcore50/it/System.ObjectModel.xml",
  7124. "ref/netcore50/ja/System.ObjectModel.xml",
  7125. "ref/netcore50/ko/System.ObjectModel.xml",
  7126. "ref/netcore50/ru/System.ObjectModel.xml",
  7127. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7128. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7129. "ref/netstandard1.0/System.ObjectModel.dll",
  7130. "ref/netstandard1.0/System.ObjectModel.xml",
  7131. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7132. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7133. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7134. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7135. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7136. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7137. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7138. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7139. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7140. "ref/netstandard1.3/System.ObjectModel.dll",
  7141. "ref/netstandard1.3/System.ObjectModel.xml",
  7142. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7143. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7144. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7145. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7146. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7147. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7148. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7149. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7150. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7151. "ref/portable-net45+win8+wp8+wpa81/_._",
  7152. "ref/win8/_._",
  7153. "ref/wp80/_._",
  7154. "ref/wpa81/_._",
  7155. "ref/xamarinios10/_._",
  7156. "ref/xamarinmac20/_._",
  7157. "ref/xamarintvos10/_._",
  7158. "ref/xamarinwatchos10/_._",
  7159. "system.objectmodel.4.3.0.nupkg.sha512",
  7160. "system.objectmodel.nuspec"
  7161. ]
  7162. },
  7163. "System.Private.ServiceModel/4.4.4": {
  7164. "sha512": "tsDkr5hwYwxV2LaB3H5BvCltCX57wv7JzwU5q8IV9vrFdzq/e/nPJAj4U5Ny/FzR4sMTVRprVSwl4mZqfFkt4Q==",
  7165. "type": "package",
  7166. "path": "system.private.servicemodel/4.4.4",
  7167. "files": [
  7168. ".nupkg.metadata",
  7169. ".signature.p7s",
  7170. "LICENSE.TXT",
  7171. "THIRD-PARTY-NOTICES.TXT",
  7172. "ref/netstandard/_._",
  7173. "runtimes/unix/lib/netstandard1.3/System.Private.ServiceModel.dll",
  7174. "runtimes/unix/lib/netstandard2.0/System.Private.ServiceModel.dll",
  7175. "runtimes/win7/lib/netcore50/System.Private.ServiceModel.dll",
  7176. "runtimes/win7/lib/netstandard1.3/System.Private.ServiceModel.dll",
  7177. "runtimes/win7/lib/netstandard2.0/System.Private.ServiceModel.dll",
  7178. "system.private.servicemodel.4.4.4.nupkg.sha512",
  7179. "system.private.servicemodel.nuspec",
  7180. "version.txt"
  7181. ]
  7182. },
  7183. "System.Reflection/4.3.0": {
  7184. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7185. "type": "package",
  7186. "path": "system.reflection/4.3.0",
  7187. "files": [
  7188. ".nupkg.metadata",
  7189. ".signature.p7s",
  7190. "ThirdPartyNotices.txt",
  7191. "dotnet_library_license.txt",
  7192. "lib/MonoAndroid10/_._",
  7193. "lib/MonoTouch10/_._",
  7194. "lib/net45/_._",
  7195. "lib/net462/System.Reflection.dll",
  7196. "lib/portable-net45+win8+wp8+wpa81/_._",
  7197. "lib/win8/_._",
  7198. "lib/wp80/_._",
  7199. "lib/wpa81/_._",
  7200. "lib/xamarinios10/_._",
  7201. "lib/xamarinmac20/_._",
  7202. "lib/xamarintvos10/_._",
  7203. "lib/xamarinwatchos10/_._",
  7204. "ref/MonoAndroid10/_._",
  7205. "ref/MonoTouch10/_._",
  7206. "ref/net45/_._",
  7207. "ref/net462/System.Reflection.dll",
  7208. "ref/netcore50/System.Reflection.dll",
  7209. "ref/netcore50/System.Reflection.xml",
  7210. "ref/netcore50/de/System.Reflection.xml",
  7211. "ref/netcore50/es/System.Reflection.xml",
  7212. "ref/netcore50/fr/System.Reflection.xml",
  7213. "ref/netcore50/it/System.Reflection.xml",
  7214. "ref/netcore50/ja/System.Reflection.xml",
  7215. "ref/netcore50/ko/System.Reflection.xml",
  7216. "ref/netcore50/ru/System.Reflection.xml",
  7217. "ref/netcore50/zh-hans/System.Reflection.xml",
  7218. "ref/netcore50/zh-hant/System.Reflection.xml",
  7219. "ref/netstandard1.0/System.Reflection.dll",
  7220. "ref/netstandard1.0/System.Reflection.xml",
  7221. "ref/netstandard1.0/de/System.Reflection.xml",
  7222. "ref/netstandard1.0/es/System.Reflection.xml",
  7223. "ref/netstandard1.0/fr/System.Reflection.xml",
  7224. "ref/netstandard1.0/it/System.Reflection.xml",
  7225. "ref/netstandard1.0/ja/System.Reflection.xml",
  7226. "ref/netstandard1.0/ko/System.Reflection.xml",
  7227. "ref/netstandard1.0/ru/System.Reflection.xml",
  7228. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7229. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7230. "ref/netstandard1.3/System.Reflection.dll",
  7231. "ref/netstandard1.3/System.Reflection.xml",
  7232. "ref/netstandard1.3/de/System.Reflection.xml",
  7233. "ref/netstandard1.3/es/System.Reflection.xml",
  7234. "ref/netstandard1.3/fr/System.Reflection.xml",
  7235. "ref/netstandard1.3/it/System.Reflection.xml",
  7236. "ref/netstandard1.3/ja/System.Reflection.xml",
  7237. "ref/netstandard1.3/ko/System.Reflection.xml",
  7238. "ref/netstandard1.3/ru/System.Reflection.xml",
  7239. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7240. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7241. "ref/netstandard1.5/System.Reflection.dll",
  7242. "ref/netstandard1.5/System.Reflection.xml",
  7243. "ref/netstandard1.5/de/System.Reflection.xml",
  7244. "ref/netstandard1.5/es/System.Reflection.xml",
  7245. "ref/netstandard1.5/fr/System.Reflection.xml",
  7246. "ref/netstandard1.5/it/System.Reflection.xml",
  7247. "ref/netstandard1.5/ja/System.Reflection.xml",
  7248. "ref/netstandard1.5/ko/System.Reflection.xml",
  7249. "ref/netstandard1.5/ru/System.Reflection.xml",
  7250. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7251. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7252. "ref/portable-net45+win8+wp8+wpa81/_._",
  7253. "ref/win8/_._",
  7254. "ref/wp80/_._",
  7255. "ref/wpa81/_._",
  7256. "ref/xamarinios10/_._",
  7257. "ref/xamarinmac20/_._",
  7258. "ref/xamarintvos10/_._",
  7259. "ref/xamarinwatchos10/_._",
  7260. "system.reflection.4.3.0.nupkg.sha512",
  7261. "system.reflection.nuspec"
  7262. ]
  7263. },
  7264. "System.Reflection.DispatchProxy/4.4.0": {
  7265. "sha512": "xK6JE0mpsBD+T0qu3V6dmVRa06PxAvIIM/zSjouqP7Sk6X+FQj+9XFRz9GmZk9aJGMU1LX6AgTZIlsYZ64QKsw==",
  7266. "type": "package",
  7267. "path": "system.reflection.dispatchproxy/4.4.0",
  7268. "files": [
  7269. ".nupkg.metadata",
  7270. ".signature.p7s",
  7271. "LICENSE.TXT",
  7272. "THIRD-PARTY-NOTICES.TXT",
  7273. "lib/MonoAndroid10/_._",
  7274. "lib/MonoTouch10/_._",
  7275. "lib/net461/System.Reflection.DispatchProxy.dll",
  7276. "lib/netcoreapp2.0/_._",
  7277. "lib/netstandard1.3/System.Reflection.DispatchProxy.dll",
  7278. "lib/netstandard2.0/System.Reflection.DispatchProxy.dll",
  7279. "lib/xamarinios10/_._",
  7280. "lib/xamarinmac20/_._",
  7281. "lib/xamarintvos10/_._",
  7282. "lib/xamarinwatchos10/_._",
  7283. "ref/MonoAndroid10/_._",
  7284. "ref/MonoTouch10/_._",
  7285. "ref/netcoreapp2.0/_._",
  7286. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll",
  7287. "ref/netstandard1.3/System.Reflection.DispatchProxy.xml",
  7288. "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml",
  7289. "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml",
  7290. "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml",
  7291. "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml",
  7292. "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml",
  7293. "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml",
  7294. "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml",
  7295. "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml",
  7296. "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml",
  7297. "ref/netstandard2.0/System.Reflection.DispatchProxy.dll",
  7298. "ref/netstandard2.0/System.Reflection.DispatchProxy.xml",
  7299. "ref/xamarinios10/_._",
  7300. "ref/xamarinmac20/_._",
  7301. "ref/xamarintvos10/_._",
  7302. "ref/xamarinwatchos10/_._",
  7303. "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll",
  7304. "system.reflection.dispatchproxy.4.4.0.nupkg.sha512",
  7305. "system.reflection.dispatchproxy.nuspec",
  7306. "useSharedDesignerContext.txt",
  7307. "version.txt"
  7308. ]
  7309. },
  7310. "System.Reflection.Emit/4.3.0": {
  7311. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7312. "type": "package",
  7313. "path": "system.reflection.emit/4.3.0",
  7314. "files": [
  7315. ".nupkg.metadata",
  7316. ".signature.p7s",
  7317. "ThirdPartyNotices.txt",
  7318. "dotnet_library_license.txt",
  7319. "lib/MonoAndroid10/_._",
  7320. "lib/monotouch10/_._",
  7321. "lib/net45/_._",
  7322. "lib/netcore50/System.Reflection.Emit.dll",
  7323. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7324. "lib/xamarinios10/_._",
  7325. "lib/xamarinmac20/_._",
  7326. "lib/xamarintvos10/_._",
  7327. "lib/xamarinwatchos10/_._",
  7328. "ref/MonoAndroid10/_._",
  7329. "ref/net45/_._",
  7330. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7331. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7332. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7333. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7334. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7335. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7336. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7337. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7338. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7339. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7340. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7341. "ref/xamarinmac20/_._",
  7342. "system.reflection.emit.4.3.0.nupkg.sha512",
  7343. "system.reflection.emit.nuspec"
  7344. ]
  7345. },
  7346. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7347. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7348. "type": "package",
  7349. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7350. "files": [
  7351. ".nupkg.metadata",
  7352. ".signature.p7s",
  7353. "ThirdPartyNotices.txt",
  7354. "dotnet_library_license.txt",
  7355. "lib/MonoAndroid10/_._",
  7356. "lib/MonoTouch10/_._",
  7357. "lib/net45/_._",
  7358. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7359. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7360. "lib/portable-net45+wp8/_._",
  7361. "lib/wp80/_._",
  7362. "lib/xamarinios10/_._",
  7363. "lib/xamarinmac20/_._",
  7364. "lib/xamarintvos10/_._",
  7365. "lib/xamarinwatchos10/_._",
  7366. "ref/MonoAndroid10/_._",
  7367. "ref/MonoTouch10/_._",
  7368. "ref/net45/_._",
  7369. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7370. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7371. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7372. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7373. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7374. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7375. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7376. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7377. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7378. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7379. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7380. "ref/portable-net45+wp8/_._",
  7381. "ref/wp80/_._",
  7382. "ref/xamarinios10/_._",
  7383. "ref/xamarinmac20/_._",
  7384. "ref/xamarintvos10/_._",
  7385. "ref/xamarinwatchos10/_._",
  7386. "runtimes/aot/lib/netcore50/_._",
  7387. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7388. "system.reflection.emit.ilgeneration.nuspec"
  7389. ]
  7390. },
  7391. "System.Reflection.Emit.Lightweight/4.3.0": {
  7392. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7393. "type": "package",
  7394. "path": "system.reflection.emit.lightweight/4.3.0",
  7395. "files": [
  7396. ".nupkg.metadata",
  7397. ".signature.p7s",
  7398. "ThirdPartyNotices.txt",
  7399. "dotnet_library_license.txt",
  7400. "lib/MonoAndroid10/_._",
  7401. "lib/MonoTouch10/_._",
  7402. "lib/net45/_._",
  7403. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7404. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7405. "lib/portable-net45+wp8/_._",
  7406. "lib/wp80/_._",
  7407. "lib/xamarinios10/_._",
  7408. "lib/xamarinmac20/_._",
  7409. "lib/xamarintvos10/_._",
  7410. "lib/xamarinwatchos10/_._",
  7411. "ref/MonoAndroid10/_._",
  7412. "ref/MonoTouch10/_._",
  7413. "ref/net45/_._",
  7414. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7415. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7416. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7417. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7418. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7419. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7420. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7421. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7422. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7423. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7424. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7425. "ref/portable-net45+wp8/_._",
  7426. "ref/wp80/_._",
  7427. "ref/xamarinios10/_._",
  7428. "ref/xamarinmac20/_._",
  7429. "ref/xamarintvos10/_._",
  7430. "ref/xamarinwatchos10/_._",
  7431. "runtimes/aot/lib/netcore50/_._",
  7432. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7433. "system.reflection.emit.lightweight.nuspec"
  7434. ]
  7435. },
  7436. "System.Reflection.Extensions/4.3.0": {
  7437. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7438. "type": "package",
  7439. "path": "system.reflection.extensions/4.3.0",
  7440. "files": [
  7441. ".nupkg.metadata",
  7442. ".signature.p7s",
  7443. "ThirdPartyNotices.txt",
  7444. "dotnet_library_license.txt",
  7445. "lib/MonoAndroid10/_._",
  7446. "lib/MonoTouch10/_._",
  7447. "lib/net45/_._",
  7448. "lib/portable-net45+win8+wp8+wpa81/_._",
  7449. "lib/win8/_._",
  7450. "lib/wp80/_._",
  7451. "lib/wpa81/_._",
  7452. "lib/xamarinios10/_._",
  7453. "lib/xamarinmac20/_._",
  7454. "lib/xamarintvos10/_._",
  7455. "lib/xamarinwatchos10/_._",
  7456. "ref/MonoAndroid10/_._",
  7457. "ref/MonoTouch10/_._",
  7458. "ref/net45/_._",
  7459. "ref/netcore50/System.Reflection.Extensions.dll",
  7460. "ref/netcore50/System.Reflection.Extensions.xml",
  7461. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7462. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7463. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7464. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7465. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7466. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7467. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7468. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7469. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7470. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7471. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7472. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7473. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7474. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7475. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7476. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7477. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7478. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7479. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7480. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7481. "ref/portable-net45+win8+wp8+wpa81/_._",
  7482. "ref/win8/_._",
  7483. "ref/wp80/_._",
  7484. "ref/wpa81/_._",
  7485. "ref/xamarinios10/_._",
  7486. "ref/xamarinmac20/_._",
  7487. "ref/xamarintvos10/_._",
  7488. "ref/xamarinwatchos10/_._",
  7489. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7490. "system.reflection.extensions.nuspec"
  7491. ]
  7492. },
  7493. "System.Reflection.Primitives/4.3.0": {
  7494. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7495. "type": "package",
  7496. "path": "system.reflection.primitives/4.3.0",
  7497. "files": [
  7498. ".nupkg.metadata",
  7499. ".signature.p7s",
  7500. "ThirdPartyNotices.txt",
  7501. "dotnet_library_license.txt",
  7502. "lib/MonoAndroid10/_._",
  7503. "lib/MonoTouch10/_._",
  7504. "lib/net45/_._",
  7505. "lib/portable-net45+win8+wp8+wpa81/_._",
  7506. "lib/win8/_._",
  7507. "lib/wp80/_._",
  7508. "lib/wpa81/_._",
  7509. "lib/xamarinios10/_._",
  7510. "lib/xamarinmac20/_._",
  7511. "lib/xamarintvos10/_._",
  7512. "lib/xamarinwatchos10/_._",
  7513. "ref/MonoAndroid10/_._",
  7514. "ref/MonoTouch10/_._",
  7515. "ref/net45/_._",
  7516. "ref/netcore50/System.Reflection.Primitives.dll",
  7517. "ref/netcore50/System.Reflection.Primitives.xml",
  7518. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7519. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7520. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7521. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7522. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7523. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7524. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7525. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7526. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7527. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7528. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7529. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7530. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7531. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7532. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7533. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7534. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7535. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7536. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7537. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7538. "ref/portable-net45+win8+wp8+wpa81/_._",
  7539. "ref/win8/_._",
  7540. "ref/wp80/_._",
  7541. "ref/wpa81/_._",
  7542. "ref/xamarinios10/_._",
  7543. "ref/xamarinmac20/_._",
  7544. "ref/xamarintvos10/_._",
  7545. "ref/xamarinwatchos10/_._",
  7546. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7547. "system.reflection.primitives.nuspec"
  7548. ]
  7549. },
  7550. "System.Reflection.TypeExtensions/4.7.0": {
  7551. "sha512": "VybpaOQQhqE6siHppMktjfGBw1GCwvCqiufqmP8F1nj7fTUNtW35LOEt3UZTEsECfo+ELAl/9o9nJx3U91i7vA==",
  7552. "type": "package",
  7553. "path": "system.reflection.typeextensions/4.7.0",
  7554. "files": [
  7555. ".nupkg.metadata",
  7556. ".signature.p7s",
  7557. "LICENSE.TXT",
  7558. "THIRD-PARTY-NOTICES.TXT",
  7559. "lib/MonoAndroid10/_._",
  7560. "lib/MonoTouch10/_._",
  7561. "lib/net46/System.Reflection.TypeExtensions.dll",
  7562. "lib/net461/System.Reflection.TypeExtensions.dll",
  7563. "lib/net461/System.Reflection.TypeExtensions.xml",
  7564. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7565. "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll",
  7566. "lib/netcoreapp2.0/_._",
  7567. "lib/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7568. "lib/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7569. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7570. "lib/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7571. "lib/netstandard2.0/System.Reflection.TypeExtensions.dll",
  7572. "lib/netstandard2.0/System.Reflection.TypeExtensions.xml",
  7573. "lib/uap10.0.16299/_._",
  7574. "lib/xamarinios10/_._",
  7575. "lib/xamarinmac20/_._",
  7576. "lib/xamarintvos10/_._",
  7577. "lib/xamarinwatchos10/_._",
  7578. "ref/MonoAndroid10/_._",
  7579. "ref/MonoTouch10/_._",
  7580. "ref/net46/System.Reflection.TypeExtensions.dll",
  7581. "ref/net461/System.Reflection.TypeExtensions.dll",
  7582. "ref/net461/System.Reflection.TypeExtensions.xml",
  7583. "ref/net472/System.Reflection.TypeExtensions.dll",
  7584. "ref/net472/System.Reflection.TypeExtensions.xml",
  7585. "ref/netcoreapp2.0/_._",
  7586. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7587. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7588. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7589. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7590. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7591. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7592. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7593. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7594. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7595. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7596. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7597. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7598. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7599. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7600. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7601. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7602. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7603. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7604. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7605. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7606. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7607. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7608. "ref/netstandard2.0/System.Reflection.TypeExtensions.dll",
  7609. "ref/netstandard2.0/System.Reflection.TypeExtensions.xml",
  7610. "ref/uap10.0.16299/_._",
  7611. "ref/xamarinios10/_._",
  7612. "ref/xamarinmac20/_._",
  7613. "ref/xamarintvos10/_._",
  7614. "ref/xamarinwatchos10/_._",
  7615. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7616. "runtimes/aot/lib/uap10.0.16299/_._",
  7617. "system.reflection.typeextensions.4.7.0.nupkg.sha512",
  7618. "system.reflection.typeextensions.nuspec",
  7619. "useSharedDesignerContext.txt",
  7620. "version.txt"
  7621. ]
  7622. },
  7623. "System.Resources.ResourceManager/4.3.0": {
  7624. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7625. "type": "package",
  7626. "path": "system.resources.resourcemanager/4.3.0",
  7627. "files": [
  7628. ".nupkg.metadata",
  7629. ".signature.p7s",
  7630. "ThirdPartyNotices.txt",
  7631. "dotnet_library_license.txt",
  7632. "lib/MonoAndroid10/_._",
  7633. "lib/MonoTouch10/_._",
  7634. "lib/net45/_._",
  7635. "lib/portable-net45+win8+wp8+wpa81/_._",
  7636. "lib/win8/_._",
  7637. "lib/wp80/_._",
  7638. "lib/wpa81/_._",
  7639. "lib/xamarinios10/_._",
  7640. "lib/xamarinmac20/_._",
  7641. "lib/xamarintvos10/_._",
  7642. "lib/xamarinwatchos10/_._",
  7643. "ref/MonoAndroid10/_._",
  7644. "ref/MonoTouch10/_._",
  7645. "ref/net45/_._",
  7646. "ref/netcore50/System.Resources.ResourceManager.dll",
  7647. "ref/netcore50/System.Resources.ResourceManager.xml",
  7648. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7649. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7650. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7651. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7652. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7653. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7654. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7655. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7656. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7657. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7658. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7659. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7660. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7661. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7662. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7663. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7664. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7665. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7666. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7667. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7668. "ref/portable-net45+win8+wp8+wpa81/_._",
  7669. "ref/win8/_._",
  7670. "ref/wp80/_._",
  7671. "ref/wpa81/_._",
  7672. "ref/xamarinios10/_._",
  7673. "ref/xamarinmac20/_._",
  7674. "ref/xamarintvos10/_._",
  7675. "ref/xamarinwatchos10/_._",
  7676. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7677. "system.resources.resourcemanager.nuspec"
  7678. ]
  7679. },
  7680. "System.Runtime/4.3.0": {
  7681. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7682. "type": "package",
  7683. "path": "system.runtime/4.3.0",
  7684. "files": [
  7685. ".nupkg.metadata",
  7686. ".signature.p7s",
  7687. "ThirdPartyNotices.txt",
  7688. "dotnet_library_license.txt",
  7689. "lib/MonoAndroid10/_._",
  7690. "lib/MonoTouch10/_._",
  7691. "lib/net45/_._",
  7692. "lib/net462/System.Runtime.dll",
  7693. "lib/portable-net45+win8+wp80+wpa81/_._",
  7694. "lib/win8/_._",
  7695. "lib/wp80/_._",
  7696. "lib/wpa81/_._",
  7697. "lib/xamarinios10/_._",
  7698. "lib/xamarinmac20/_._",
  7699. "lib/xamarintvos10/_._",
  7700. "lib/xamarinwatchos10/_._",
  7701. "ref/MonoAndroid10/_._",
  7702. "ref/MonoTouch10/_._",
  7703. "ref/net45/_._",
  7704. "ref/net462/System.Runtime.dll",
  7705. "ref/netcore50/System.Runtime.dll",
  7706. "ref/netcore50/System.Runtime.xml",
  7707. "ref/netcore50/de/System.Runtime.xml",
  7708. "ref/netcore50/es/System.Runtime.xml",
  7709. "ref/netcore50/fr/System.Runtime.xml",
  7710. "ref/netcore50/it/System.Runtime.xml",
  7711. "ref/netcore50/ja/System.Runtime.xml",
  7712. "ref/netcore50/ko/System.Runtime.xml",
  7713. "ref/netcore50/ru/System.Runtime.xml",
  7714. "ref/netcore50/zh-hans/System.Runtime.xml",
  7715. "ref/netcore50/zh-hant/System.Runtime.xml",
  7716. "ref/netstandard1.0/System.Runtime.dll",
  7717. "ref/netstandard1.0/System.Runtime.xml",
  7718. "ref/netstandard1.0/de/System.Runtime.xml",
  7719. "ref/netstandard1.0/es/System.Runtime.xml",
  7720. "ref/netstandard1.0/fr/System.Runtime.xml",
  7721. "ref/netstandard1.0/it/System.Runtime.xml",
  7722. "ref/netstandard1.0/ja/System.Runtime.xml",
  7723. "ref/netstandard1.0/ko/System.Runtime.xml",
  7724. "ref/netstandard1.0/ru/System.Runtime.xml",
  7725. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7726. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7727. "ref/netstandard1.2/System.Runtime.dll",
  7728. "ref/netstandard1.2/System.Runtime.xml",
  7729. "ref/netstandard1.2/de/System.Runtime.xml",
  7730. "ref/netstandard1.2/es/System.Runtime.xml",
  7731. "ref/netstandard1.2/fr/System.Runtime.xml",
  7732. "ref/netstandard1.2/it/System.Runtime.xml",
  7733. "ref/netstandard1.2/ja/System.Runtime.xml",
  7734. "ref/netstandard1.2/ko/System.Runtime.xml",
  7735. "ref/netstandard1.2/ru/System.Runtime.xml",
  7736. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7737. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7738. "ref/netstandard1.3/System.Runtime.dll",
  7739. "ref/netstandard1.3/System.Runtime.xml",
  7740. "ref/netstandard1.3/de/System.Runtime.xml",
  7741. "ref/netstandard1.3/es/System.Runtime.xml",
  7742. "ref/netstandard1.3/fr/System.Runtime.xml",
  7743. "ref/netstandard1.3/it/System.Runtime.xml",
  7744. "ref/netstandard1.3/ja/System.Runtime.xml",
  7745. "ref/netstandard1.3/ko/System.Runtime.xml",
  7746. "ref/netstandard1.3/ru/System.Runtime.xml",
  7747. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7748. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7749. "ref/netstandard1.5/System.Runtime.dll",
  7750. "ref/netstandard1.5/System.Runtime.xml",
  7751. "ref/netstandard1.5/de/System.Runtime.xml",
  7752. "ref/netstandard1.5/es/System.Runtime.xml",
  7753. "ref/netstandard1.5/fr/System.Runtime.xml",
  7754. "ref/netstandard1.5/it/System.Runtime.xml",
  7755. "ref/netstandard1.5/ja/System.Runtime.xml",
  7756. "ref/netstandard1.5/ko/System.Runtime.xml",
  7757. "ref/netstandard1.5/ru/System.Runtime.xml",
  7758. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7759. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7760. "ref/portable-net45+win8+wp80+wpa81/_._",
  7761. "ref/win8/_._",
  7762. "ref/wp80/_._",
  7763. "ref/wpa81/_._",
  7764. "ref/xamarinios10/_._",
  7765. "ref/xamarinmac20/_._",
  7766. "ref/xamarintvos10/_._",
  7767. "ref/xamarinwatchos10/_._",
  7768. "system.runtime.4.3.0.nupkg.sha512",
  7769. "system.runtime.nuspec"
  7770. ]
  7771. },
  7772. "System.Runtime.Extensions/4.3.0": {
  7773. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7774. "type": "package",
  7775. "path": "system.runtime.extensions/4.3.0",
  7776. "files": [
  7777. ".nupkg.metadata",
  7778. ".signature.p7s",
  7779. "ThirdPartyNotices.txt",
  7780. "dotnet_library_license.txt",
  7781. "lib/MonoAndroid10/_._",
  7782. "lib/MonoTouch10/_._",
  7783. "lib/net45/_._",
  7784. "lib/net462/System.Runtime.Extensions.dll",
  7785. "lib/portable-net45+win8+wp8+wpa81/_._",
  7786. "lib/win8/_._",
  7787. "lib/wp80/_._",
  7788. "lib/wpa81/_._",
  7789. "lib/xamarinios10/_._",
  7790. "lib/xamarinmac20/_._",
  7791. "lib/xamarintvos10/_._",
  7792. "lib/xamarinwatchos10/_._",
  7793. "ref/MonoAndroid10/_._",
  7794. "ref/MonoTouch10/_._",
  7795. "ref/net45/_._",
  7796. "ref/net462/System.Runtime.Extensions.dll",
  7797. "ref/netcore50/System.Runtime.Extensions.dll",
  7798. "ref/netcore50/System.Runtime.Extensions.xml",
  7799. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7800. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7801. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7802. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7803. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7804. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7805. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7806. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7807. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7808. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7809. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7810. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7811. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7812. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7813. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7814. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7815. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7816. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7817. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7818. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7819. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7820. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7821. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7822. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7823. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7824. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7825. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7826. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7827. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7828. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7829. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7830. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7831. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7832. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7833. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7834. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7835. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7836. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7837. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7838. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7839. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7840. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7841. "ref/portable-net45+win8+wp8+wpa81/_._",
  7842. "ref/win8/_._",
  7843. "ref/wp80/_._",
  7844. "ref/wpa81/_._",
  7845. "ref/xamarinios10/_._",
  7846. "ref/xamarinmac20/_._",
  7847. "ref/xamarintvos10/_._",
  7848. "ref/xamarinwatchos10/_._",
  7849. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7850. "system.runtime.extensions.nuspec"
  7851. ]
  7852. },
  7853. "System.Runtime.Handles/4.3.0": {
  7854. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  7855. "type": "package",
  7856. "path": "system.runtime.handles/4.3.0",
  7857. "files": [
  7858. ".nupkg.metadata",
  7859. ".signature.p7s",
  7860. "ThirdPartyNotices.txt",
  7861. "dotnet_library_license.txt",
  7862. "lib/MonoAndroid10/_._",
  7863. "lib/MonoTouch10/_._",
  7864. "lib/net46/_._",
  7865. "lib/xamarinios10/_._",
  7866. "lib/xamarinmac20/_._",
  7867. "lib/xamarintvos10/_._",
  7868. "lib/xamarinwatchos10/_._",
  7869. "ref/MonoAndroid10/_._",
  7870. "ref/MonoTouch10/_._",
  7871. "ref/net46/_._",
  7872. "ref/netstandard1.3/System.Runtime.Handles.dll",
  7873. "ref/netstandard1.3/System.Runtime.Handles.xml",
  7874. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  7875. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  7876. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  7877. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  7878. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  7879. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  7880. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  7881. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  7882. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  7883. "ref/xamarinios10/_._",
  7884. "ref/xamarinmac20/_._",
  7885. "ref/xamarintvos10/_._",
  7886. "ref/xamarinwatchos10/_._",
  7887. "system.runtime.handles.4.3.0.nupkg.sha512",
  7888. "system.runtime.handles.nuspec"
  7889. ]
  7890. },
  7891. "System.Runtime.InteropServices/4.3.0": {
  7892. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7893. "type": "package",
  7894. "path": "system.runtime.interopservices/4.3.0",
  7895. "files": [
  7896. ".nupkg.metadata",
  7897. ".signature.p7s",
  7898. "ThirdPartyNotices.txt",
  7899. "dotnet_library_license.txt",
  7900. "lib/MonoAndroid10/_._",
  7901. "lib/MonoTouch10/_._",
  7902. "lib/net45/_._",
  7903. "lib/net462/System.Runtime.InteropServices.dll",
  7904. "lib/net463/System.Runtime.InteropServices.dll",
  7905. "lib/portable-net45+win8+wpa81/_._",
  7906. "lib/win8/_._",
  7907. "lib/wpa81/_._",
  7908. "lib/xamarinios10/_._",
  7909. "lib/xamarinmac20/_._",
  7910. "lib/xamarintvos10/_._",
  7911. "lib/xamarinwatchos10/_._",
  7912. "ref/MonoAndroid10/_._",
  7913. "ref/MonoTouch10/_._",
  7914. "ref/net45/_._",
  7915. "ref/net462/System.Runtime.InteropServices.dll",
  7916. "ref/net463/System.Runtime.InteropServices.dll",
  7917. "ref/netcore50/System.Runtime.InteropServices.dll",
  7918. "ref/netcore50/System.Runtime.InteropServices.xml",
  7919. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7920. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7921. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7922. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7923. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7924. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7925. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7926. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7927. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7928. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7929. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7930. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7931. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7932. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7933. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7934. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7935. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7936. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7937. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7938. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7939. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7940. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7941. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7942. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7943. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7944. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7945. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7946. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7947. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7948. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7949. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7950. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7951. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7952. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7953. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7954. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7955. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7956. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7957. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7958. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7959. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7960. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7961. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7962. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7963. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7964. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7965. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7966. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7967. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7968. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7969. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7970. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7971. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7972. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7973. "ref/portable-net45+win8+wpa81/_._",
  7974. "ref/win8/_._",
  7975. "ref/wpa81/_._",
  7976. "ref/xamarinios10/_._",
  7977. "ref/xamarinmac20/_._",
  7978. "ref/xamarintvos10/_._",
  7979. "ref/xamarinwatchos10/_._",
  7980. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7981. "system.runtime.interopservices.nuspec"
  7982. ]
  7983. },
  7984. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7985. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7986. "type": "package",
  7987. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7988. "files": [
  7989. ".nupkg.metadata",
  7990. ".signature.p7s",
  7991. "ThirdPartyNotices.txt",
  7992. "dotnet_library_license.txt",
  7993. "lib/MonoAndroid10/_._",
  7994. "lib/MonoTouch10/_._",
  7995. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7996. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7997. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7998. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7999. "lib/xamarinios10/_._",
  8000. "lib/xamarinmac20/_._",
  8001. "lib/xamarintvos10/_._",
  8002. "lib/xamarinwatchos10/_._",
  8003. "ref/MonoAndroid10/_._",
  8004. "ref/MonoTouch10/_._",
  8005. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8006. "ref/xamarinios10/_._",
  8007. "ref/xamarinmac20/_._",
  8008. "ref/xamarintvos10/_._",
  8009. "ref/xamarinwatchos10/_._",
  8010. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8011. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8012. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8013. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8014. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8015. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  8016. "system.runtime.interopservices.runtimeinformation.nuspec"
  8017. ]
  8018. },
  8019. "System.Runtime.Loader/4.3.0": {
  8020. "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  8021. "type": "package",
  8022. "path": "system.runtime.loader/4.3.0",
  8023. "files": [
  8024. ".nupkg.metadata",
  8025. ".signature.p7s",
  8026. "ThirdPartyNotices.txt",
  8027. "dotnet_library_license.txt",
  8028. "lib/MonoAndroid10/_._",
  8029. "lib/MonoTouch10/_._",
  8030. "lib/net462/_._",
  8031. "lib/netstandard1.5/System.Runtime.Loader.dll",
  8032. "lib/xamarinios10/_._",
  8033. "lib/xamarinmac20/_._",
  8034. "lib/xamarintvos10/_._",
  8035. "lib/xamarinwatchos10/_._",
  8036. "ref/netstandard1.5/System.Runtime.Loader.dll",
  8037. "ref/netstandard1.5/System.Runtime.Loader.xml",
  8038. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  8039. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  8040. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  8041. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  8042. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  8043. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  8044. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  8045. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  8046. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
  8047. "system.runtime.loader.4.3.0.nupkg.sha512",
  8048. "system.runtime.loader.nuspec"
  8049. ]
  8050. },
  8051. "System.Runtime.Numerics/4.3.0": {
  8052. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8053. "type": "package",
  8054. "path": "system.runtime.numerics/4.3.0",
  8055. "files": [
  8056. ".nupkg.metadata",
  8057. ".signature.p7s",
  8058. "ThirdPartyNotices.txt",
  8059. "dotnet_library_license.txt",
  8060. "lib/MonoAndroid10/_._",
  8061. "lib/MonoTouch10/_._",
  8062. "lib/net45/_._",
  8063. "lib/netcore50/System.Runtime.Numerics.dll",
  8064. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8065. "lib/portable-net45+win8+wpa81/_._",
  8066. "lib/win8/_._",
  8067. "lib/wpa81/_._",
  8068. "lib/xamarinios10/_._",
  8069. "lib/xamarinmac20/_._",
  8070. "lib/xamarintvos10/_._",
  8071. "lib/xamarinwatchos10/_._",
  8072. "ref/MonoAndroid10/_._",
  8073. "ref/MonoTouch10/_._",
  8074. "ref/net45/_._",
  8075. "ref/netcore50/System.Runtime.Numerics.dll",
  8076. "ref/netcore50/System.Runtime.Numerics.xml",
  8077. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8078. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8079. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8080. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8081. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8082. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8083. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8084. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8085. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8086. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8087. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8088. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8089. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8090. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8091. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8092. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8093. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8094. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8095. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8096. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8097. "ref/portable-net45+win8+wpa81/_._",
  8098. "ref/win8/_._",
  8099. "ref/wpa81/_._",
  8100. "ref/xamarinios10/_._",
  8101. "ref/xamarinmac20/_._",
  8102. "ref/xamarintvos10/_._",
  8103. "ref/xamarinwatchos10/_._",
  8104. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8105. "system.runtime.numerics.nuspec"
  8106. ]
  8107. },
  8108. "System.Runtime.Serialization.Formatters/4.3.0": {
  8109. "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  8110. "type": "package",
  8111. "path": "system.runtime.serialization.formatters/4.3.0",
  8112. "files": [
  8113. ".nupkg.metadata",
  8114. ".signature.p7s",
  8115. "ThirdPartyNotices.txt",
  8116. "dotnet_library_license.txt",
  8117. "lib/MonoAndroid10/_._",
  8118. "lib/MonoTouch10/_._",
  8119. "lib/net46/System.Runtime.Serialization.Formatters.dll",
  8120. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
  8121. "lib/xamarinios10/_._",
  8122. "lib/xamarinmac20/_._",
  8123. "lib/xamarintvos10/_._",
  8124. "lib/xamarinwatchos10/_._",
  8125. "ref/MonoAndroid10/_._",
  8126. "ref/MonoTouch10/_._",
  8127. "ref/net46/System.Runtime.Serialization.Formatters.dll",
  8128. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
  8129. "ref/xamarinios10/_._",
  8130. "ref/xamarinmac20/_._",
  8131. "ref/xamarintvos10/_._",
  8132. "ref/xamarinwatchos10/_._",
  8133. "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
  8134. "system.runtime.serialization.formatters.nuspec"
  8135. ]
  8136. },
  8137. "System.Runtime.Serialization.Primitives/4.3.0": {
  8138. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  8139. "type": "package",
  8140. "path": "system.runtime.serialization.primitives/4.3.0",
  8141. "files": [
  8142. ".nupkg.metadata",
  8143. ".signature.p7s",
  8144. "ThirdPartyNotices.txt",
  8145. "dotnet_library_license.txt",
  8146. "lib/MonoAndroid10/_._",
  8147. "lib/MonoTouch10/_._",
  8148. "lib/net45/_._",
  8149. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8150. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8151. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8152. "lib/portable-net45+win8+wp8+wpa81/_._",
  8153. "lib/win8/_._",
  8154. "lib/wp80/_._",
  8155. "lib/wpa81/_._",
  8156. "lib/xamarinios10/_._",
  8157. "lib/xamarinmac20/_._",
  8158. "lib/xamarintvos10/_._",
  8159. "lib/xamarinwatchos10/_._",
  8160. "ref/MonoAndroid10/_._",
  8161. "ref/MonoTouch10/_._",
  8162. "ref/net45/_._",
  8163. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8164. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8165. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8166. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8167. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8168. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8169. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8170. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8171. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8172. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8173. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8174. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8175. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8176. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8177. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8178. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8179. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8180. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8181. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8182. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8183. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8184. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8185. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8186. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8187. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8188. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8189. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8190. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8191. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8192. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8193. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8194. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8195. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8196. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8197. "ref/portable-net45+win8+wp8+wpa81/_._",
  8198. "ref/win8/_._",
  8199. "ref/wp80/_._",
  8200. "ref/wpa81/_._",
  8201. "ref/xamarinios10/_._",
  8202. "ref/xamarinmac20/_._",
  8203. "ref/xamarintvos10/_._",
  8204. "ref/xamarinwatchos10/_._",
  8205. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8206. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  8207. "system.runtime.serialization.primitives.nuspec"
  8208. ]
  8209. },
  8210. "System.Security.AccessControl/4.7.0": {
  8211. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  8212. "type": "package",
  8213. "path": "system.security.accesscontrol/4.7.0",
  8214. "files": [
  8215. ".nupkg.metadata",
  8216. ".signature.p7s",
  8217. "LICENSE.TXT",
  8218. "THIRD-PARTY-NOTICES.TXT",
  8219. "lib/net46/System.Security.AccessControl.dll",
  8220. "lib/net461/System.Security.AccessControl.dll",
  8221. "lib/net461/System.Security.AccessControl.xml",
  8222. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8223. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8224. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8225. "lib/uap10.0.16299/_._",
  8226. "ref/net46/System.Security.AccessControl.dll",
  8227. "ref/net461/System.Security.AccessControl.dll",
  8228. "ref/net461/System.Security.AccessControl.xml",
  8229. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8230. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8231. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8232. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8233. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8234. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8235. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8236. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8237. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8238. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8239. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8240. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8241. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8242. "ref/uap10.0.16299/_._",
  8243. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8244. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8245. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8246. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8247. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  8248. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8249. "runtimes/win/lib/uap10.0.16299/_._",
  8250. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  8251. "system.security.accesscontrol.nuspec",
  8252. "useSharedDesignerContext.txt",
  8253. "version.txt"
  8254. ]
  8255. },
  8256. "System.Security.Cryptography.Algorithms/4.3.1": {
  8257. "sha512": "DVUblnRfnarrI5olEC2B/OCsJQd0anjVaObQMndHSc43efbc88/RMOlDyg/EyY0ix5ecyZMXS8zMksb5ukebZA==",
  8258. "type": "package",
  8259. "path": "system.security.cryptography.algorithms/4.3.1",
  8260. "files": [
  8261. ".nupkg.metadata",
  8262. ".signature.p7s",
  8263. "ThirdPartyNotices.txt",
  8264. "dotnet_library_license.txt",
  8265. "lib/MonoAndroid10/_._",
  8266. "lib/MonoTouch10/_._",
  8267. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8268. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8269. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8270. "lib/xamarinios10/_._",
  8271. "lib/xamarinmac20/_._",
  8272. "lib/xamarintvos10/_._",
  8273. "lib/xamarinwatchos10/_._",
  8274. "ref/MonoAndroid10/_._",
  8275. "ref/MonoTouch10/_._",
  8276. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8277. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8278. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8279. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8280. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8281. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8282. "ref/xamarinios10/_._",
  8283. "ref/xamarinmac20/_._",
  8284. "ref/xamarintvos10/_._",
  8285. "ref/xamarinwatchos10/_._",
  8286. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8287. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8288. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8289. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8290. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8291. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8292. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8293. "system.security.cryptography.algorithms.4.3.1.nupkg.sha512",
  8294. "system.security.cryptography.algorithms.nuspec"
  8295. ]
  8296. },
  8297. "System.Security.Cryptography.Cng/4.5.0": {
  8298. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  8299. "type": "package",
  8300. "path": "system.security.cryptography.cng/4.5.0",
  8301. "files": [
  8302. ".nupkg.metadata",
  8303. ".signature.p7s",
  8304. "LICENSE.TXT",
  8305. "THIRD-PARTY-NOTICES.TXT",
  8306. "lib/MonoAndroid10/_._",
  8307. "lib/MonoTouch10/_._",
  8308. "lib/net46/System.Security.Cryptography.Cng.dll",
  8309. "lib/net461/System.Security.Cryptography.Cng.dll",
  8310. "lib/net462/System.Security.Cryptography.Cng.dll",
  8311. "lib/net47/System.Security.Cryptography.Cng.dll",
  8312. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8313. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8314. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8315. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8316. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8317. "lib/uap10.0.16299/_._",
  8318. "lib/xamarinios10/_._",
  8319. "lib/xamarinmac20/_._",
  8320. "lib/xamarintvos10/_._",
  8321. "lib/xamarinwatchos10/_._",
  8322. "ref/MonoAndroid10/_._",
  8323. "ref/MonoTouch10/_._",
  8324. "ref/net46/System.Security.Cryptography.Cng.dll",
  8325. "ref/net461/System.Security.Cryptography.Cng.dll",
  8326. "ref/net461/System.Security.Cryptography.Cng.xml",
  8327. "ref/net462/System.Security.Cryptography.Cng.dll",
  8328. "ref/net462/System.Security.Cryptography.Cng.xml",
  8329. "ref/net47/System.Security.Cryptography.Cng.dll",
  8330. "ref/net47/System.Security.Cryptography.Cng.xml",
  8331. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8332. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8333. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8334. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8335. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8336. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8337. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8338. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8339. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8340. "ref/uap10.0.16299/_._",
  8341. "ref/xamarinios10/_._",
  8342. "ref/xamarinmac20/_._",
  8343. "ref/xamarintvos10/_._",
  8344. "ref/xamarinwatchos10/_._",
  8345. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8346. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8347. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8348. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8349. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8350. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8351. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8352. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8353. "runtimes/win/lib/uap10.0.16299/_._",
  8354. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  8355. "system.security.cryptography.cng.nuspec",
  8356. "useSharedDesignerContext.txt",
  8357. "version.txt"
  8358. ]
  8359. },
  8360. "System.Security.Cryptography.Csp/4.3.0": {
  8361. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8362. "type": "package",
  8363. "path": "system.security.cryptography.csp/4.3.0",
  8364. "files": [
  8365. ".nupkg.metadata",
  8366. ".signature.p7s",
  8367. "ThirdPartyNotices.txt",
  8368. "dotnet_library_license.txt",
  8369. "lib/MonoAndroid10/_._",
  8370. "lib/MonoTouch10/_._",
  8371. "lib/net46/System.Security.Cryptography.Csp.dll",
  8372. "lib/xamarinios10/_._",
  8373. "lib/xamarinmac20/_._",
  8374. "lib/xamarintvos10/_._",
  8375. "lib/xamarinwatchos10/_._",
  8376. "ref/MonoAndroid10/_._",
  8377. "ref/MonoTouch10/_._",
  8378. "ref/net46/System.Security.Cryptography.Csp.dll",
  8379. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8380. "ref/xamarinios10/_._",
  8381. "ref/xamarinmac20/_._",
  8382. "ref/xamarintvos10/_._",
  8383. "ref/xamarinwatchos10/_._",
  8384. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8385. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8386. "runtimes/win/lib/netcore50/_._",
  8387. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8388. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8389. "system.security.cryptography.csp.nuspec"
  8390. ]
  8391. },
  8392. "System.Security.Cryptography.Encoding/4.3.0": {
  8393. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8394. "type": "package",
  8395. "path": "system.security.cryptography.encoding/4.3.0",
  8396. "files": [
  8397. ".nupkg.metadata",
  8398. ".signature.p7s",
  8399. "ThirdPartyNotices.txt",
  8400. "dotnet_library_license.txt",
  8401. "lib/MonoAndroid10/_._",
  8402. "lib/MonoTouch10/_._",
  8403. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8404. "lib/xamarinios10/_._",
  8405. "lib/xamarinmac20/_._",
  8406. "lib/xamarintvos10/_._",
  8407. "lib/xamarinwatchos10/_._",
  8408. "ref/MonoAndroid10/_._",
  8409. "ref/MonoTouch10/_._",
  8410. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8411. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8412. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8413. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8414. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8415. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8416. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8417. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8418. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8419. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8420. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8421. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8422. "ref/xamarinios10/_._",
  8423. "ref/xamarinmac20/_._",
  8424. "ref/xamarintvos10/_._",
  8425. "ref/xamarinwatchos10/_._",
  8426. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8427. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8428. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8429. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8430. "system.security.cryptography.encoding.nuspec"
  8431. ]
  8432. },
  8433. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8434. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8435. "type": "package",
  8436. "path": "system.security.cryptography.openssl/4.3.0",
  8437. "files": [
  8438. ".nupkg.metadata",
  8439. ".signature.p7s",
  8440. "ThirdPartyNotices.txt",
  8441. "dotnet_library_license.txt",
  8442. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8443. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8444. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8445. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8446. "system.security.cryptography.openssl.nuspec"
  8447. ]
  8448. },
  8449. "System.Security.Cryptography.Primitives/4.3.0": {
  8450. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8451. "type": "package",
  8452. "path": "system.security.cryptography.primitives/4.3.0",
  8453. "files": [
  8454. ".nupkg.metadata",
  8455. ".signature.p7s",
  8456. "ThirdPartyNotices.txt",
  8457. "dotnet_library_license.txt",
  8458. "lib/MonoAndroid10/_._",
  8459. "lib/MonoTouch10/_._",
  8460. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8461. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8462. "lib/xamarinios10/_._",
  8463. "lib/xamarinmac20/_._",
  8464. "lib/xamarintvos10/_._",
  8465. "lib/xamarinwatchos10/_._",
  8466. "ref/MonoAndroid10/_._",
  8467. "ref/MonoTouch10/_._",
  8468. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8469. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8470. "ref/xamarinios10/_._",
  8471. "ref/xamarinmac20/_._",
  8472. "ref/xamarintvos10/_._",
  8473. "ref/xamarinwatchos10/_._",
  8474. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8475. "system.security.cryptography.primitives.nuspec"
  8476. ]
  8477. },
  8478. "System.Security.Cryptography.ProtectedData/4.7.0": {
  8479. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  8480. "type": "package",
  8481. "path": "system.security.cryptography.protecteddata/4.7.0",
  8482. "files": [
  8483. ".nupkg.metadata",
  8484. ".signature.p7s",
  8485. "LICENSE.TXT",
  8486. "THIRD-PARTY-NOTICES.TXT",
  8487. "lib/MonoAndroid10/_._",
  8488. "lib/MonoTouch10/_._",
  8489. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8490. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8491. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8492. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8493. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8494. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8495. "lib/xamarinios10/_._",
  8496. "lib/xamarinmac20/_._",
  8497. "lib/xamarintvos10/_._",
  8498. "lib/xamarinwatchos10/_._",
  8499. "ref/MonoAndroid10/_._",
  8500. "ref/MonoTouch10/_._",
  8501. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8502. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8503. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8504. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8505. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8506. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8507. "ref/xamarinios10/_._",
  8508. "ref/xamarinmac20/_._",
  8509. "ref/xamarintvos10/_._",
  8510. "ref/xamarinwatchos10/_._",
  8511. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8512. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8513. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8514. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8515. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8516. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8517. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  8518. "system.security.cryptography.protecteddata.nuspec",
  8519. "useSharedDesignerContext.txt",
  8520. "version.txt"
  8521. ]
  8522. },
  8523. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8524. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8525. "type": "package",
  8526. "path": "system.security.cryptography.x509certificates/4.3.0",
  8527. "files": [
  8528. ".nupkg.metadata",
  8529. ".signature.p7s",
  8530. "ThirdPartyNotices.txt",
  8531. "dotnet_library_license.txt",
  8532. "lib/MonoAndroid10/_._",
  8533. "lib/MonoTouch10/_._",
  8534. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8535. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8536. "lib/xamarinios10/_._",
  8537. "lib/xamarinmac20/_._",
  8538. "lib/xamarintvos10/_._",
  8539. "lib/xamarinwatchos10/_._",
  8540. "ref/MonoAndroid10/_._",
  8541. "ref/MonoTouch10/_._",
  8542. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8543. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8544. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8545. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8546. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8547. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8548. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8549. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8550. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8551. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8552. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8553. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8554. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8555. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8556. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8557. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8558. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8559. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8560. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8561. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8562. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8563. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8564. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8565. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8566. "ref/xamarinios10/_._",
  8567. "ref/xamarinmac20/_._",
  8568. "ref/xamarintvos10/_._",
  8569. "ref/xamarinwatchos10/_._",
  8570. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8571. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8572. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8573. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8574. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8575. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8576. "system.security.cryptography.x509certificates.nuspec"
  8577. ]
  8578. },
  8579. "System.Security.Permissions/4.7.0": {
  8580. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8581. "type": "package",
  8582. "path": "system.security.permissions/4.7.0",
  8583. "files": [
  8584. ".nupkg.metadata",
  8585. ".signature.p7s",
  8586. "LICENSE.TXT",
  8587. "THIRD-PARTY-NOTICES.TXT",
  8588. "lib/net461/System.Security.Permissions.dll",
  8589. "lib/net461/System.Security.Permissions.xml",
  8590. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8591. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8592. "lib/netstandard2.0/System.Security.Permissions.dll",
  8593. "lib/netstandard2.0/System.Security.Permissions.xml",
  8594. "ref/net461/System.Security.Permissions.dll",
  8595. "ref/net461/System.Security.Permissions.xml",
  8596. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8597. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8598. "ref/netstandard2.0/System.Security.Permissions.dll",
  8599. "ref/netstandard2.0/System.Security.Permissions.xml",
  8600. "system.security.permissions.4.7.0.nupkg.sha512",
  8601. "system.security.permissions.nuspec",
  8602. "useSharedDesignerContext.txt",
  8603. "version.txt"
  8604. ]
  8605. },
  8606. "System.Security.Principal.Windows/4.7.0": {
  8607. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8608. "type": "package",
  8609. "path": "system.security.principal.windows/4.7.0",
  8610. "files": [
  8611. ".nupkg.metadata",
  8612. ".signature.p7s",
  8613. "LICENSE.TXT",
  8614. "THIRD-PARTY-NOTICES.TXT",
  8615. "lib/net46/System.Security.Principal.Windows.dll",
  8616. "lib/net461/System.Security.Principal.Windows.dll",
  8617. "lib/net461/System.Security.Principal.Windows.xml",
  8618. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8619. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8620. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8621. "lib/uap10.0.16299/_._",
  8622. "ref/net46/System.Security.Principal.Windows.dll",
  8623. "ref/net461/System.Security.Principal.Windows.dll",
  8624. "ref/net461/System.Security.Principal.Windows.xml",
  8625. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8626. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8627. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8628. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8629. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8630. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8631. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8632. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8633. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8634. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8635. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8636. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8637. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8638. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8639. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8640. "ref/uap10.0.16299/_._",
  8641. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8642. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8643. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8644. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8645. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8646. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8647. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8648. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8649. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8650. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8651. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8652. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8653. "runtimes/win/lib/uap10.0.16299/_._",
  8654. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8655. "system.security.principal.windows.nuspec",
  8656. "useSharedDesignerContext.txt",
  8657. "version.txt"
  8658. ]
  8659. },
  8660. "System.ServiceModel.Duplex/4.4.4": {
  8661. "sha512": "y/XLnKJ+xnuEUjrgJkXeLKCH4A+EwkX2TdOcTdgsEtxWmWq1+RbCjMd0zIlyNrbGD+nM9BxNg9rLVWVAPq81RA==",
  8662. "type": "package",
  8663. "path": "system.servicemodel.duplex/4.4.4",
  8664. "files": [
  8665. ".nupkg.metadata",
  8666. ".signature.p7s",
  8667. "LICENSE.TXT",
  8668. "THIRD-PARTY-NOTICES.TXT",
  8669. "lib/MonoAndroid10/_._",
  8670. "lib/MonoTouch10/_._",
  8671. "lib/net45/_._",
  8672. "lib/net461/System.ServiceModel.Duplex.dll",
  8673. "lib/netcore50/System.ServiceModel.Duplex.dll",
  8674. "lib/netstandard1.3/System.ServiceModel.Duplex.dll",
  8675. "lib/netstandard2.0/System.ServiceModel.Duplex.dll",
  8676. "lib/portable-net45+win8/_._",
  8677. "lib/win8/_._",
  8678. "lib/xamarinios10/_._",
  8679. "lib/xamarinmac20/_._",
  8680. "lib/xamarintvos10/_._",
  8681. "lib/xamarinwatchos10/_._",
  8682. "ref/MonoAndroid10/_._",
  8683. "ref/MonoTouch10/_._",
  8684. "ref/net45/_._",
  8685. "ref/net461/System.ServiceModel.Duplex.dll",
  8686. "ref/netcore50/System.ServiceModel.Duplex.dll",
  8687. "ref/netstandard1.1/System.ServiceModel.Duplex.dll",
  8688. "ref/netstandard2.0/System.ServiceModel.Duplex.dll",
  8689. "ref/portable-net45+win8/_._",
  8690. "ref/win8/_._",
  8691. "ref/xamarinios10/_._",
  8692. "ref/xamarinmac20/_._",
  8693. "ref/xamarintvos10/_._",
  8694. "ref/xamarinwatchos10/_._",
  8695. "system.servicemodel.duplex.4.4.4.nupkg.sha512",
  8696. "system.servicemodel.duplex.nuspec",
  8697. "version.txt"
  8698. ]
  8699. },
  8700. "System.ServiceModel.Http/4.4.4": {
  8701. "sha512": "f7OWPKqfTaCzjpc6n+/xqNwv7YAHKMiBCPIgwxIXVnf0Vu9+yzfX6tXV9pSSCEFuqJ5tXGLz9MRRExrQEqVUkA==",
  8702. "type": "package",
  8703. "path": "system.servicemodel.http/4.4.4",
  8704. "files": [
  8705. ".nupkg.metadata",
  8706. ".signature.p7s",
  8707. "LICENSE.TXT",
  8708. "THIRD-PARTY-NOTICES.TXT",
  8709. "lib/MonoAndroid10/_._",
  8710. "lib/MonoTouch10/_._",
  8711. "lib/net45/_._",
  8712. "lib/net46/System.ServiceModel.Http.dll",
  8713. "lib/net461/System.ServiceModel.Http.dll",
  8714. "lib/netcore50/System.ServiceModel.Http.dll",
  8715. "lib/netstandard1.3/System.ServiceModel.Http.dll",
  8716. "lib/netstandard2.0/System.ServiceModel.Http.dll",
  8717. "lib/portable-net45+win8+wp8/_._",
  8718. "lib/win8/_._",
  8719. "lib/wp8/_._",
  8720. "lib/xamarinios10/_._",
  8721. "lib/xamarinmac20/_._",
  8722. "lib/xamarintvos10/_._",
  8723. "lib/xamarinwatchos10/_._",
  8724. "ref/MonoAndroid10/_._",
  8725. "ref/MonoTouch10/_._",
  8726. "ref/net45/_._",
  8727. "ref/net46/System.ServiceModel.Http.dll",
  8728. "ref/net461/System.ServiceModel.Http.dll",
  8729. "ref/netcore50/System.ServiceModel.Http.dll",
  8730. "ref/netstandard1.0/System.ServiceModel.Http.dll",
  8731. "ref/netstandard1.1/System.ServiceModel.Http.dll",
  8732. "ref/netstandard1.3/System.ServiceModel.Http.dll",
  8733. "ref/netstandard2.0/System.ServiceModel.Http.dll",
  8734. "ref/portable-net45+win8+wp8/_._",
  8735. "ref/win8/_._",
  8736. "ref/wp8/_._",
  8737. "ref/xamarinios10/_._",
  8738. "ref/xamarinmac20/_._",
  8739. "ref/xamarintvos10/_._",
  8740. "ref/xamarinwatchos10/_._",
  8741. "system.servicemodel.http.4.4.4.nupkg.sha512",
  8742. "system.servicemodel.http.nuspec",
  8743. "version.txt"
  8744. ]
  8745. },
  8746. "System.ServiceModel.NetTcp/4.4.4": {
  8747. "sha512": "TZUwkBUHK+HgPVpypcnCEzenn+Hly3mQ+QDqDtHKyqVBP2Yt+DAMp3NwuW35mTSMRqna5p9hd0U0vVq5azovOQ==",
  8748. "type": "package",
  8749. "path": "system.servicemodel.nettcp/4.4.4",
  8750. "files": [
  8751. ".nupkg.metadata",
  8752. ".signature.p7s",
  8753. "LICENSE.TXT",
  8754. "THIRD-PARTY-NOTICES.TXT",
  8755. "lib/MonoAndroid10/_._",
  8756. "lib/MonoTouch10/_._",
  8757. "lib/net45/_._",
  8758. "lib/net46/System.ServiceModel.NetTcp.dll",
  8759. "lib/net461/System.ServiceModel.NetTcp.dll",
  8760. "lib/netcore50/System.ServiceModel.NetTcp.dll",
  8761. "lib/netstandard1.3/System.ServiceModel.NetTcp.dll",
  8762. "lib/netstandard2.0/System.ServiceModel.NetTcp.dll",
  8763. "lib/portable-net45+win8/_._",
  8764. "lib/win8/_._",
  8765. "lib/xamarinios10/_._",
  8766. "lib/xamarinmac20/_._",
  8767. "lib/xamarintvos10/_._",
  8768. "lib/xamarinwatchos10/_._",
  8769. "ref/MonoAndroid10/_._",
  8770. "ref/MonoTouch10/_._",
  8771. "ref/net45/_._",
  8772. "ref/net46/System.ServiceModel.NetTcp.dll",
  8773. "ref/net461/System.ServiceModel.NetTcp.dll",
  8774. "ref/netcore50/System.ServiceModel.NetTcp.dll",
  8775. "ref/netstandard1.1/System.ServiceModel.NetTcp.dll",
  8776. "ref/netstandard1.3/System.ServiceModel.NetTcp.dll",
  8777. "ref/netstandard2.0/System.ServiceModel.NetTcp.dll",
  8778. "ref/portable-net45+win8/_._",
  8779. "ref/win8/_._",
  8780. "ref/xamarinios10/_._",
  8781. "ref/xamarinmac20/_._",
  8782. "ref/xamarintvos10/_._",
  8783. "ref/xamarinwatchos10/_._",
  8784. "system.servicemodel.nettcp.4.4.4.nupkg.sha512",
  8785. "system.servicemodel.nettcp.nuspec",
  8786. "version.txt"
  8787. ]
  8788. },
  8789. "System.ServiceModel.Primitives/4.4.4": {
  8790. "sha512": "Jv882Qt+tSJ2KnLGGMSGPwBvOxfXRncXW0YV/beBKRQ2c6bDbXVXwqaS2U9h+/cK1uL7C4zc66lnC7qvSBqPHw==",
  8791. "type": "package",
  8792. "path": "system.servicemodel.primitives/4.4.4",
  8793. "files": [
  8794. ".nupkg.metadata",
  8795. ".signature.p7s",
  8796. "LICENSE.TXT",
  8797. "THIRD-PARTY-NOTICES.TXT",
  8798. "lib/MonoAndroid10/_._",
  8799. "lib/MonoTouch10/_._",
  8800. "lib/net45/_._",
  8801. "lib/net46/System.ServiceModel.Primitives.dll",
  8802. "lib/net461/System.ServiceModel.Primitives.dll",
  8803. "lib/netcore50/System.ServiceModel.Primitives.dll",
  8804. "lib/netstandard1.3/System.ServiceModel.Primitives.dll",
  8805. "lib/netstandard2.0/System.ServiceModel.Primitives.dll",
  8806. "lib/netstandard2.0/System.ServiceModel.dll",
  8807. "lib/portable-net45+win8+wp8/_._",
  8808. "lib/win8/_._",
  8809. "lib/wp8/_._",
  8810. "lib/xamarinios10/_._",
  8811. "lib/xamarinmac20/_._",
  8812. "lib/xamarintvos10/_._",
  8813. "lib/xamarinwatchos10/_._",
  8814. "ref/MonoAndroid10/_._",
  8815. "ref/MonoTouch10/_._",
  8816. "ref/net45/_._",
  8817. "ref/net46/System.ServiceModel.Primitives.dll",
  8818. "ref/net461/System.ServiceModel.Primitives.dll",
  8819. "ref/netcore50/System.ServiceModel.Primitives.dll",
  8820. "ref/netstandard1.0/System.ServiceModel.Primitives.dll",
  8821. "ref/netstandard1.1/System.ServiceModel.Primitives.dll",
  8822. "ref/netstandard1.3/System.ServiceModel.Primitives.dll",
  8823. "ref/netstandard2.0/System.ServiceModel.Primitives.dll",
  8824. "ref/netstandard2.0/System.ServiceModel.dll",
  8825. "ref/portable-net45+win8+wp8/_._",
  8826. "ref/win8/_._",
  8827. "ref/wp8/_._",
  8828. "ref/xamarinios10/_._",
  8829. "ref/xamarinmac20/_._",
  8830. "ref/xamarintvos10/_._",
  8831. "ref/xamarinwatchos10/_._",
  8832. "system.servicemodel.primitives.4.4.4.nupkg.sha512",
  8833. "system.servicemodel.primitives.nuspec",
  8834. "version.txt"
  8835. ]
  8836. },
  8837. "System.ServiceModel.Security/4.4.4": {
  8838. "sha512": "8mJj3lUNbBkntouQ3Eg3IF04GxiDrDK2X79+kcfq8V+W7NoYBREgWczaD60ZmW4KKRKnL0q3OnUNJlkzJJfe5w==",
  8839. "type": "package",
  8840. "path": "system.servicemodel.security/4.4.4",
  8841. "files": [
  8842. ".nupkg.metadata",
  8843. ".signature.p7s",
  8844. "LICENSE.TXT",
  8845. "THIRD-PARTY-NOTICES.TXT",
  8846. "lib/MonoAndroid10/_._",
  8847. "lib/MonoTouch10/_._",
  8848. "lib/net45/_._",
  8849. "lib/netcore50/System.ServiceModel.Security.dll",
  8850. "lib/netstandard1.3/System.ServiceModel.Security.dll",
  8851. "lib/netstandard2.0/System.ServiceModel.Security.dll",
  8852. "lib/portable-net45+win8+wp8/_._",
  8853. "lib/win8/_._",
  8854. "lib/wp8/_._",
  8855. "lib/xamarinios10/_._",
  8856. "lib/xamarinmac20/_._",
  8857. "lib/xamarintvos10/_._",
  8858. "lib/xamarinwatchos10/_._",
  8859. "ref/MonoAndroid10/_._",
  8860. "ref/MonoTouch10/_._",
  8861. "ref/net45/_._",
  8862. "ref/netcore50/System.ServiceModel.Security.dll",
  8863. "ref/netstandard1.0/System.ServiceModel.Security.dll",
  8864. "ref/netstandard1.1/System.ServiceModel.Security.dll",
  8865. "ref/netstandard2.0/System.ServiceModel.Security.dll",
  8866. "ref/portable-net45+win8+wp8/_._",
  8867. "ref/win8/_._",
  8868. "ref/wp8/_._",
  8869. "ref/xamarinios10/_._",
  8870. "ref/xamarinmac20/_._",
  8871. "ref/xamarintvos10/_._",
  8872. "ref/xamarinwatchos10/_._",
  8873. "system.servicemodel.security.4.4.4.nupkg.sha512",
  8874. "system.servicemodel.security.nuspec",
  8875. "version.txt"
  8876. ]
  8877. },
  8878. "System.Text.Encoding/4.3.0": {
  8879. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8880. "type": "package",
  8881. "path": "system.text.encoding/4.3.0",
  8882. "files": [
  8883. ".nupkg.metadata",
  8884. ".signature.p7s",
  8885. "ThirdPartyNotices.txt",
  8886. "dotnet_library_license.txt",
  8887. "lib/MonoAndroid10/_._",
  8888. "lib/MonoTouch10/_._",
  8889. "lib/net45/_._",
  8890. "lib/portable-net45+win8+wp8+wpa81/_._",
  8891. "lib/win8/_._",
  8892. "lib/wp80/_._",
  8893. "lib/wpa81/_._",
  8894. "lib/xamarinios10/_._",
  8895. "lib/xamarinmac20/_._",
  8896. "lib/xamarintvos10/_._",
  8897. "lib/xamarinwatchos10/_._",
  8898. "ref/MonoAndroid10/_._",
  8899. "ref/MonoTouch10/_._",
  8900. "ref/net45/_._",
  8901. "ref/netcore50/System.Text.Encoding.dll",
  8902. "ref/netcore50/System.Text.Encoding.xml",
  8903. "ref/netcore50/de/System.Text.Encoding.xml",
  8904. "ref/netcore50/es/System.Text.Encoding.xml",
  8905. "ref/netcore50/fr/System.Text.Encoding.xml",
  8906. "ref/netcore50/it/System.Text.Encoding.xml",
  8907. "ref/netcore50/ja/System.Text.Encoding.xml",
  8908. "ref/netcore50/ko/System.Text.Encoding.xml",
  8909. "ref/netcore50/ru/System.Text.Encoding.xml",
  8910. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8911. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8912. "ref/netstandard1.0/System.Text.Encoding.dll",
  8913. "ref/netstandard1.0/System.Text.Encoding.xml",
  8914. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8915. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8916. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8917. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8918. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8919. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8920. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8921. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8922. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8923. "ref/netstandard1.3/System.Text.Encoding.dll",
  8924. "ref/netstandard1.3/System.Text.Encoding.xml",
  8925. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8926. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8927. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8928. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8929. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8930. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8931. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8932. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8933. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8934. "ref/portable-net45+win8+wp8+wpa81/_._",
  8935. "ref/win8/_._",
  8936. "ref/wp80/_._",
  8937. "ref/wpa81/_._",
  8938. "ref/xamarinios10/_._",
  8939. "ref/xamarinmac20/_._",
  8940. "ref/xamarintvos10/_._",
  8941. "ref/xamarinwatchos10/_._",
  8942. "system.text.encoding.4.3.0.nupkg.sha512",
  8943. "system.text.encoding.nuspec"
  8944. ]
  8945. },
  8946. "System.Text.Encoding.CodePages/4.7.1": {
  8947. "sha512": "i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
  8948. "type": "package",
  8949. "path": "system.text.encoding.codepages/4.7.1",
  8950. "files": [
  8951. ".nupkg.metadata",
  8952. ".signature.p7s",
  8953. "Icon.png",
  8954. "LICENSE.TXT",
  8955. "THIRD-PARTY-NOTICES.TXT",
  8956. "lib/MonoAndroid10/_._",
  8957. "lib/MonoTouch10/_._",
  8958. "lib/net46/System.Text.Encoding.CodePages.dll",
  8959. "lib/net461/System.Text.Encoding.CodePages.dll",
  8960. "lib/net461/System.Text.Encoding.CodePages.xml",
  8961. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8962. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8963. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8964. "lib/xamarinios10/_._",
  8965. "lib/xamarinmac20/_._",
  8966. "lib/xamarintvos10/_._",
  8967. "lib/xamarinwatchos10/_._",
  8968. "ref/MonoAndroid10/_._",
  8969. "ref/MonoTouch10/_._",
  8970. "ref/xamarinios10/_._",
  8971. "ref/xamarinmac20/_._",
  8972. "ref/xamarintvos10/_._",
  8973. "ref/xamarinwatchos10/_._",
  8974. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8975. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8976. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8977. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  8978. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8979. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8980. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8981. "system.text.encoding.codepages.4.7.1.nupkg.sha512",
  8982. "system.text.encoding.codepages.nuspec",
  8983. "useSharedDesignerContext.txt",
  8984. "version.txt"
  8985. ]
  8986. },
  8987. "System.Text.Encoding.Extensions/4.3.0": {
  8988. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8989. "type": "package",
  8990. "path": "system.text.encoding.extensions/4.3.0",
  8991. "files": [
  8992. ".nupkg.metadata",
  8993. ".signature.p7s",
  8994. "ThirdPartyNotices.txt",
  8995. "dotnet_library_license.txt",
  8996. "lib/MonoAndroid10/_._",
  8997. "lib/MonoTouch10/_._",
  8998. "lib/net45/_._",
  8999. "lib/portable-net45+win8+wp8+wpa81/_._",
  9000. "lib/win8/_._",
  9001. "lib/wp80/_._",
  9002. "lib/wpa81/_._",
  9003. "lib/xamarinios10/_._",
  9004. "lib/xamarinmac20/_._",
  9005. "lib/xamarintvos10/_._",
  9006. "lib/xamarinwatchos10/_._",
  9007. "ref/MonoAndroid10/_._",
  9008. "ref/MonoTouch10/_._",
  9009. "ref/net45/_._",
  9010. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9011. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9012. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9013. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9014. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9015. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9016. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9017. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9018. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9019. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9020. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9021. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9022. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9023. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9024. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9025. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9026. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9027. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9028. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9029. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9030. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9031. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9032. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9033. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9034. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9035. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9036. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9037. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9038. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9039. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9040. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9041. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9042. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9043. "ref/portable-net45+win8+wp8+wpa81/_._",
  9044. "ref/win8/_._",
  9045. "ref/wp80/_._",
  9046. "ref/wpa81/_._",
  9047. "ref/xamarinios10/_._",
  9048. "ref/xamarinmac20/_._",
  9049. "ref/xamarintvos10/_._",
  9050. "ref/xamarinwatchos10/_._",
  9051. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9052. "system.text.encoding.extensions.nuspec"
  9053. ]
  9054. },
  9055. "System.Text.Encodings.Web/4.5.0": {
  9056. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  9057. "type": "package",
  9058. "path": "system.text.encodings.web/4.5.0",
  9059. "files": [
  9060. ".nupkg.metadata",
  9061. ".signature.p7s",
  9062. "LICENSE.TXT",
  9063. "THIRD-PARTY-NOTICES.TXT",
  9064. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  9065. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  9066. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9067. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9068. "system.text.encodings.web.4.5.0.nupkg.sha512",
  9069. "system.text.encodings.web.nuspec",
  9070. "useSharedDesignerContext.txt",
  9071. "version.txt"
  9072. ]
  9073. },
  9074. "System.Text.RegularExpressions/4.3.0": {
  9075. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9076. "type": "package",
  9077. "path": "system.text.regularexpressions/4.3.0",
  9078. "files": [
  9079. ".nupkg.metadata",
  9080. ".signature.p7s",
  9081. "ThirdPartyNotices.txt",
  9082. "dotnet_library_license.txt",
  9083. "lib/MonoAndroid10/_._",
  9084. "lib/MonoTouch10/_._",
  9085. "lib/net45/_._",
  9086. "lib/net463/System.Text.RegularExpressions.dll",
  9087. "lib/netcore50/System.Text.RegularExpressions.dll",
  9088. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9089. "lib/portable-net45+win8+wp8+wpa81/_._",
  9090. "lib/win8/_._",
  9091. "lib/wp80/_._",
  9092. "lib/wpa81/_._",
  9093. "lib/xamarinios10/_._",
  9094. "lib/xamarinmac20/_._",
  9095. "lib/xamarintvos10/_._",
  9096. "lib/xamarinwatchos10/_._",
  9097. "ref/MonoAndroid10/_._",
  9098. "ref/MonoTouch10/_._",
  9099. "ref/net45/_._",
  9100. "ref/net463/System.Text.RegularExpressions.dll",
  9101. "ref/netcore50/System.Text.RegularExpressions.dll",
  9102. "ref/netcore50/System.Text.RegularExpressions.xml",
  9103. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9104. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9105. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9106. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9107. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9108. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9109. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9110. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9111. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9112. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9113. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9114. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9115. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9116. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9117. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9118. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9119. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9120. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9121. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9122. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9123. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9124. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9125. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9126. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9127. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9128. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9129. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9130. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9131. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9132. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9133. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9134. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9135. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9136. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9137. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9138. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9139. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9140. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9141. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9142. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9143. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9144. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9145. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9146. "ref/portable-net45+win8+wp8+wpa81/_._",
  9147. "ref/win8/_._",
  9148. "ref/wp80/_._",
  9149. "ref/wpa81/_._",
  9150. "ref/xamarinios10/_._",
  9151. "ref/xamarinmac20/_._",
  9152. "ref/xamarintvos10/_._",
  9153. "ref/xamarinwatchos10/_._",
  9154. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9155. "system.text.regularexpressions.nuspec"
  9156. ]
  9157. },
  9158. "System.Threading/4.3.0": {
  9159. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9160. "type": "package",
  9161. "path": "system.threading/4.3.0",
  9162. "files": [
  9163. ".nupkg.metadata",
  9164. ".signature.p7s",
  9165. "ThirdPartyNotices.txt",
  9166. "dotnet_library_license.txt",
  9167. "lib/MonoAndroid10/_._",
  9168. "lib/MonoTouch10/_._",
  9169. "lib/net45/_._",
  9170. "lib/netcore50/System.Threading.dll",
  9171. "lib/netstandard1.3/System.Threading.dll",
  9172. "lib/portable-net45+win8+wp8+wpa81/_._",
  9173. "lib/win8/_._",
  9174. "lib/wp80/_._",
  9175. "lib/wpa81/_._",
  9176. "lib/xamarinios10/_._",
  9177. "lib/xamarinmac20/_._",
  9178. "lib/xamarintvos10/_._",
  9179. "lib/xamarinwatchos10/_._",
  9180. "ref/MonoAndroid10/_._",
  9181. "ref/MonoTouch10/_._",
  9182. "ref/net45/_._",
  9183. "ref/netcore50/System.Threading.dll",
  9184. "ref/netcore50/System.Threading.xml",
  9185. "ref/netcore50/de/System.Threading.xml",
  9186. "ref/netcore50/es/System.Threading.xml",
  9187. "ref/netcore50/fr/System.Threading.xml",
  9188. "ref/netcore50/it/System.Threading.xml",
  9189. "ref/netcore50/ja/System.Threading.xml",
  9190. "ref/netcore50/ko/System.Threading.xml",
  9191. "ref/netcore50/ru/System.Threading.xml",
  9192. "ref/netcore50/zh-hans/System.Threading.xml",
  9193. "ref/netcore50/zh-hant/System.Threading.xml",
  9194. "ref/netstandard1.0/System.Threading.dll",
  9195. "ref/netstandard1.0/System.Threading.xml",
  9196. "ref/netstandard1.0/de/System.Threading.xml",
  9197. "ref/netstandard1.0/es/System.Threading.xml",
  9198. "ref/netstandard1.0/fr/System.Threading.xml",
  9199. "ref/netstandard1.0/it/System.Threading.xml",
  9200. "ref/netstandard1.0/ja/System.Threading.xml",
  9201. "ref/netstandard1.0/ko/System.Threading.xml",
  9202. "ref/netstandard1.0/ru/System.Threading.xml",
  9203. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9204. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9205. "ref/netstandard1.3/System.Threading.dll",
  9206. "ref/netstandard1.3/System.Threading.xml",
  9207. "ref/netstandard1.3/de/System.Threading.xml",
  9208. "ref/netstandard1.3/es/System.Threading.xml",
  9209. "ref/netstandard1.3/fr/System.Threading.xml",
  9210. "ref/netstandard1.3/it/System.Threading.xml",
  9211. "ref/netstandard1.3/ja/System.Threading.xml",
  9212. "ref/netstandard1.3/ko/System.Threading.xml",
  9213. "ref/netstandard1.3/ru/System.Threading.xml",
  9214. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9215. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9216. "ref/portable-net45+win8+wp8+wpa81/_._",
  9217. "ref/win8/_._",
  9218. "ref/wp80/_._",
  9219. "ref/wpa81/_._",
  9220. "ref/xamarinios10/_._",
  9221. "ref/xamarinmac20/_._",
  9222. "ref/xamarintvos10/_._",
  9223. "ref/xamarinwatchos10/_._",
  9224. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9225. "system.threading.4.3.0.nupkg.sha512",
  9226. "system.threading.nuspec"
  9227. ]
  9228. },
  9229. "System.Threading.Tasks/4.3.0": {
  9230. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9231. "type": "package",
  9232. "path": "system.threading.tasks/4.3.0",
  9233. "files": [
  9234. ".nupkg.metadata",
  9235. ".signature.p7s",
  9236. "ThirdPartyNotices.txt",
  9237. "dotnet_library_license.txt",
  9238. "lib/MonoAndroid10/_._",
  9239. "lib/MonoTouch10/_._",
  9240. "lib/net45/_._",
  9241. "lib/portable-net45+win8+wp8+wpa81/_._",
  9242. "lib/win8/_._",
  9243. "lib/wp80/_._",
  9244. "lib/wpa81/_._",
  9245. "lib/xamarinios10/_._",
  9246. "lib/xamarinmac20/_._",
  9247. "lib/xamarintvos10/_._",
  9248. "lib/xamarinwatchos10/_._",
  9249. "ref/MonoAndroid10/_._",
  9250. "ref/MonoTouch10/_._",
  9251. "ref/net45/_._",
  9252. "ref/netcore50/System.Threading.Tasks.dll",
  9253. "ref/netcore50/System.Threading.Tasks.xml",
  9254. "ref/netcore50/de/System.Threading.Tasks.xml",
  9255. "ref/netcore50/es/System.Threading.Tasks.xml",
  9256. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9257. "ref/netcore50/it/System.Threading.Tasks.xml",
  9258. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9259. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9260. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9261. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9262. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9263. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9264. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9265. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9266. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9267. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9268. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9269. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9270. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9271. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9272. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9273. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9274. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9275. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9276. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9277. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9278. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9279. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9280. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9281. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9282. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9283. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9284. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9285. "ref/portable-net45+win8+wp8+wpa81/_._",
  9286. "ref/win8/_._",
  9287. "ref/wp80/_._",
  9288. "ref/wpa81/_._",
  9289. "ref/xamarinios10/_._",
  9290. "ref/xamarinmac20/_._",
  9291. "ref/xamarintvos10/_._",
  9292. "ref/xamarinwatchos10/_._",
  9293. "system.threading.tasks.4.3.0.nupkg.sha512",
  9294. "system.threading.tasks.nuspec"
  9295. ]
  9296. },
  9297. "System.Threading.Tasks.Extensions/4.3.0": {
  9298. "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  9299. "type": "package",
  9300. "path": "system.threading.tasks.extensions/4.3.0",
  9301. "files": [
  9302. ".nupkg.metadata",
  9303. ".signature.p7s",
  9304. "ThirdPartyNotices.txt",
  9305. "dotnet_library_license.txt",
  9306. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9307. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9308. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9309. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9310. "system.threading.tasks.extensions.4.3.0.nupkg.sha512",
  9311. "system.threading.tasks.extensions.nuspec"
  9312. ]
  9313. },
  9314. "System.Threading.Timer/4.3.0": {
  9315. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9316. "type": "package",
  9317. "path": "system.threading.timer/4.3.0",
  9318. "files": [
  9319. ".nupkg.metadata",
  9320. ".signature.p7s",
  9321. "ThirdPartyNotices.txt",
  9322. "dotnet_library_license.txt",
  9323. "lib/MonoAndroid10/_._",
  9324. "lib/MonoTouch10/_._",
  9325. "lib/net451/_._",
  9326. "lib/portable-net451+win81+wpa81/_._",
  9327. "lib/win81/_._",
  9328. "lib/wpa81/_._",
  9329. "lib/xamarinios10/_._",
  9330. "lib/xamarinmac20/_._",
  9331. "lib/xamarintvos10/_._",
  9332. "lib/xamarinwatchos10/_._",
  9333. "ref/MonoAndroid10/_._",
  9334. "ref/MonoTouch10/_._",
  9335. "ref/net451/_._",
  9336. "ref/netcore50/System.Threading.Timer.dll",
  9337. "ref/netcore50/System.Threading.Timer.xml",
  9338. "ref/netcore50/de/System.Threading.Timer.xml",
  9339. "ref/netcore50/es/System.Threading.Timer.xml",
  9340. "ref/netcore50/fr/System.Threading.Timer.xml",
  9341. "ref/netcore50/it/System.Threading.Timer.xml",
  9342. "ref/netcore50/ja/System.Threading.Timer.xml",
  9343. "ref/netcore50/ko/System.Threading.Timer.xml",
  9344. "ref/netcore50/ru/System.Threading.Timer.xml",
  9345. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9346. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9347. "ref/netstandard1.2/System.Threading.Timer.dll",
  9348. "ref/netstandard1.2/System.Threading.Timer.xml",
  9349. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9350. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9351. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9352. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9353. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9354. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9355. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9356. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9357. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9358. "ref/portable-net451+win81+wpa81/_._",
  9359. "ref/win81/_._",
  9360. "ref/wpa81/_._",
  9361. "ref/xamarinios10/_._",
  9362. "ref/xamarinmac20/_._",
  9363. "ref/xamarintvos10/_._",
  9364. "ref/xamarinwatchos10/_._",
  9365. "system.threading.timer.4.3.0.nupkg.sha512",
  9366. "system.threading.timer.nuspec"
  9367. ]
  9368. },
  9369. "System.Windows.Extensions/4.7.0": {
  9370. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  9371. "type": "package",
  9372. "path": "system.windows.extensions/4.7.0",
  9373. "files": [
  9374. ".nupkg.metadata",
  9375. ".signature.p7s",
  9376. "LICENSE.TXT",
  9377. "THIRD-PARTY-NOTICES.TXT",
  9378. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9379. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9380. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9381. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9382. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9383. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9384. "system.windows.extensions.4.7.0.nupkg.sha512",
  9385. "system.windows.extensions.nuspec",
  9386. "useSharedDesignerContext.txt",
  9387. "version.txt"
  9388. ]
  9389. },
  9390. "System.Xml.ReaderWriter/4.3.1": {
  9391. "sha512": "fVU1Xp9TEOHv1neQDtcJ4hNfYJ1pjfXzKY3VFeiRZK6HTV4Af2Ihyvq1FkPLrL1hzZhXv7NTmowQnL5DgTzIKA==",
  9392. "type": "package",
  9393. "path": "system.xml.readerwriter/4.3.1",
  9394. "files": [
  9395. ".nupkg.metadata",
  9396. ".signature.p7s",
  9397. "ThirdPartyNotices.txt",
  9398. "dotnet_library_license.txt",
  9399. "lib/MonoAndroid10/_._",
  9400. "lib/MonoTouch10/_._",
  9401. "lib/net45/_._",
  9402. "lib/net46/System.Xml.ReaderWriter.dll",
  9403. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9404. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9405. "lib/portable-net45+win8+wp8+wpa81/_._",
  9406. "lib/win8/_._",
  9407. "lib/wp80/_._",
  9408. "lib/wpa81/_._",
  9409. "lib/xamarinios10/_._",
  9410. "lib/xamarinmac20/_._",
  9411. "lib/xamarintvos10/_._",
  9412. "lib/xamarinwatchos10/_._",
  9413. "ref/MonoAndroid10/_._",
  9414. "ref/MonoTouch10/_._",
  9415. "ref/net45/_._",
  9416. "ref/net46/System.Xml.ReaderWriter.dll",
  9417. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9418. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9419. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9420. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9421. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9422. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9423. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9424. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9425. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9426. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9427. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9428. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9429. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9430. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9431. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9432. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9433. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9434. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9435. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9436. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9437. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9438. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9439. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9440. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9441. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9442. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9443. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9444. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9445. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9446. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9447. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9448. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9449. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9450. "ref/portable-net45+win8+wp8+wpa81/_._",
  9451. "ref/win8/_._",
  9452. "ref/wp80/_._",
  9453. "ref/wpa81/_._",
  9454. "ref/xamarinios10/_._",
  9455. "ref/xamarinmac20/_._",
  9456. "ref/xamarintvos10/_._",
  9457. "ref/xamarinwatchos10/_._",
  9458. "system.xml.readerwriter.4.3.1.nupkg.sha512",
  9459. "system.xml.readerwriter.nuspec"
  9460. ]
  9461. },
  9462. "System.Xml.XDocument/4.3.0": {
  9463. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9464. "type": "package",
  9465. "path": "system.xml.xdocument/4.3.0",
  9466. "files": [
  9467. ".nupkg.metadata",
  9468. ".signature.p7s",
  9469. "ThirdPartyNotices.txt",
  9470. "dotnet_library_license.txt",
  9471. "lib/MonoAndroid10/_._",
  9472. "lib/MonoTouch10/_._",
  9473. "lib/net45/_._",
  9474. "lib/netcore50/System.Xml.XDocument.dll",
  9475. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9476. "lib/portable-net45+win8+wp8+wpa81/_._",
  9477. "lib/win8/_._",
  9478. "lib/wp80/_._",
  9479. "lib/wpa81/_._",
  9480. "lib/xamarinios10/_._",
  9481. "lib/xamarinmac20/_._",
  9482. "lib/xamarintvos10/_._",
  9483. "lib/xamarinwatchos10/_._",
  9484. "ref/MonoAndroid10/_._",
  9485. "ref/MonoTouch10/_._",
  9486. "ref/net45/_._",
  9487. "ref/netcore50/System.Xml.XDocument.dll",
  9488. "ref/netcore50/System.Xml.XDocument.xml",
  9489. "ref/netcore50/de/System.Xml.XDocument.xml",
  9490. "ref/netcore50/es/System.Xml.XDocument.xml",
  9491. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9492. "ref/netcore50/it/System.Xml.XDocument.xml",
  9493. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9494. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9495. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9496. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9497. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9498. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9499. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9500. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9501. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9502. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9503. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9504. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9505. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9506. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9507. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9508. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9509. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9510. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9511. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9512. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9513. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9514. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9515. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9516. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9517. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9518. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9519. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9520. "ref/portable-net45+win8+wp8+wpa81/_._",
  9521. "ref/win8/_._",
  9522. "ref/wp80/_._",
  9523. "ref/wpa81/_._",
  9524. "ref/xamarinios10/_._",
  9525. "ref/xamarinmac20/_._",
  9526. "ref/xamarintvos10/_._",
  9527. "ref/xamarinwatchos10/_._",
  9528. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9529. "system.xml.xdocument.nuspec"
  9530. ]
  9531. },
  9532. "System.Xml.XmlDocument/4.3.0": {
  9533. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  9534. "type": "package",
  9535. "path": "system.xml.xmldocument/4.3.0",
  9536. "files": [
  9537. ".nupkg.metadata",
  9538. ".signature.p7s",
  9539. "ThirdPartyNotices.txt",
  9540. "dotnet_library_license.txt",
  9541. "lib/MonoAndroid10/_._",
  9542. "lib/MonoTouch10/_._",
  9543. "lib/net46/System.Xml.XmlDocument.dll",
  9544. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  9545. "lib/xamarinios10/_._",
  9546. "lib/xamarinmac20/_._",
  9547. "lib/xamarintvos10/_._",
  9548. "lib/xamarinwatchos10/_._",
  9549. "ref/MonoAndroid10/_._",
  9550. "ref/MonoTouch10/_._",
  9551. "ref/net46/System.Xml.XmlDocument.dll",
  9552. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  9553. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  9554. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  9555. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  9556. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  9557. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  9558. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  9559. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  9560. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  9561. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  9562. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  9563. "ref/xamarinios10/_._",
  9564. "ref/xamarinmac20/_._",
  9565. "ref/xamarintvos10/_._",
  9566. "ref/xamarinwatchos10/_._",
  9567. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  9568. "system.xml.xmldocument.nuspec"
  9569. ]
  9570. },
  9571. "WebAPIBase.NetCore.BusinessCore/1.0.0": {
  9572. "type": "project",
  9573. "path": "../WebAPIBase.NetCore.BusinessCore/WebAPIBase.NetCore.BusinessCore.csproj",
  9574. "msbuildProject": "../WebAPIBase.NetCore.BusinessCore/WebAPIBase.NetCore.BusinessCore.csproj"
  9575. },
  9576. "WebAPIBase.NetCore.Enties/1.0.0": {
  9577. "type": "project",
  9578. "path": "../WebAPIBase.NetCore.Enties/WebAPIBase.NetCore.Enties.csproj",
  9579. "msbuildProject": "../WebAPIBase.NetCore.Enties/WebAPIBase.NetCore.Enties.csproj"
  9580. },
  9581. "WebAPIBase.Utils/1.0.0": {
  9582. "type": "project",
  9583. "path": "../Utils/WebAPIBase.Utils.csproj",
  9584. "msbuildProject": "../Utils/WebAPIBase.Utils.csproj"
  9585. }
  9586. },
  9587. "projectFileDependencyGroups": {
  9588. ".NETCoreApp,Version=v3.1": [
  9589. "MSTest.TestAdapter >= 2.1.0",
  9590. "MSTest.TestFramework >= 2.1.0",
  9591. "Microsoft.NET.Test.Sdk >= 16.5.0",
  9592. "WebAPIBase.NetCore.BusinessCore >= 1.0.0",
  9593. "coverlet.collector >= 1.2.0"
  9594. ]
  9595. },
  9596. "packageFolders": {
  9597. "C:\\Users\\1\\.nuget\\packages\\": {},
  9598. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9599. },
  9600. "project": {
  9601. "version": "1.0.0",
  9602. "restore": {
  9603. "projectUniqueName": "D:\\路涛科技\\源代码\\dccloud\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\WebAPIBase.NetCore.BusinessCoreTests.csproj",
  9604. "projectName": "WebAPIBase.NetCore.BusinessCoreTests",
  9605. "projectPath": "D:\\路涛科技\\源代码\\dccloud\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\WebAPIBase.NetCore.BusinessCoreTests.csproj",
  9606. "packagesPath": "C:\\Users\\1\\.nuget\\packages\\",
  9607. "outputPath": "D:\\路涛科技\\源代码\\dccloud\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCoreTests\\obj\\",
  9608. "projectStyle": "PackageReference",
  9609. "fallbackFolders": [
  9610. "D:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9611. ],
  9612. "configFilePaths": [
  9613. "C:\\Users\\1\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9614. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9615. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9616. ],
  9617. "originalTargetFrameworks": [
  9618. "netcoreapp3.1"
  9619. ],
  9620. "sources": {
  9621. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9622. "https://api.nuget.org/v3/index.json": {}
  9623. },
  9624. "frameworks": {
  9625. "netcoreapp3.1": {
  9626. "targetAlias": "netcoreapp3.1",
  9627. "projectReferences": {
  9628. "D:\\路涛科技\\源代码\\dccloud\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCore\\WebAPIBase.NetCore.BusinessCore.csproj": {
  9629. "projectPath": "D:\\路涛科技\\源代码\\dccloud\\WebAPIBase.NetCore\\WebAPIBase.NetCore.BusinessCore\\WebAPIBase.NetCore.BusinessCore.csproj"
  9630. }
  9631. }
  9632. }
  9633. },
  9634. "warningProperties": {
  9635. "warnAsError": [
  9636. "NU1605"
  9637. ]
  9638. }
  9639. },
  9640. "frameworks": {
  9641. "netcoreapp3.1": {
  9642. "targetAlias": "netcoreapp3.1",
  9643. "dependencies": {
  9644. "MSTest.TestAdapter": {
  9645. "target": "Package",
  9646. "version": "[2.1.0, )"
  9647. },
  9648. "MSTest.TestFramework": {
  9649. "target": "Package",
  9650. "version": "[2.1.0, )"
  9651. },
  9652. "Microsoft.NET.Test.Sdk": {
  9653. "target": "Package",
  9654. "version": "[16.5.0, )"
  9655. },
  9656. "coverlet.collector": {
  9657. "target": "Package",
  9658. "version": "[1.2.0, )"
  9659. }
  9660. },
  9661. "imports": [
  9662. "net461",
  9663. "net462",
  9664. "net47",
  9665. "net471",
  9666. "net472",
  9667. "net48"
  9668. ],
  9669. "assetTargetFallback": true,
  9670. "warn": true,
  9671. "frameworkReferences": {
  9672. "Microsoft.NETCore.App": {
  9673. "privateAssets": "all"
  9674. }
  9675. },
  9676. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
  9677. }
  9678. }
  9679. }
  9680. }