project.assets.json 522 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v2.1": {
  5. "CSRedisCore/3.1.5": {
  6. "type": "package",
  7. "dependencies": {
  8. "Newtonsoft.Json": "12.0.2",
  9. "SafeObjectPool": "2.1.1",
  10. "System.ValueTuple": "4.5.0"
  11. },
  12. "compile": {
  13. "lib/netstandard2.0/CSRedisCore.dll": {}
  14. },
  15. "runtime": {
  16. "lib/netstandard2.0/CSRedisCore.dll": {}
  17. }
  18. },
  19. "Microsoft.AspNet.WebApi.Client/5.2.6": {
  20. "type": "package",
  21. "dependencies": {
  22. "Newtonsoft.Json": "10.0.1",
  23. "Newtonsoft.Json.Bson": "1.0.1"
  24. },
  25. "compile": {
  26. "lib/netstandard2.0/System.Net.Http.Formatting.dll": {}
  27. },
  28. "runtime": {
  29. "lib/netstandard2.0/System.Net.Http.Formatting.dll": {}
  30. }
  31. },
  32. "Microsoft.AspNetCore/2.1.1": {
  33. "type": "package",
  34. "dependencies": {
  35. "Microsoft.AspNetCore.Diagnostics": "2.1.1",
  36. "Microsoft.AspNetCore.HostFiltering": "2.1.1",
  37. "Microsoft.AspNetCore.Hosting": "2.1.1",
  38. "Microsoft.AspNetCore.Routing": "2.1.1",
  39. "Microsoft.AspNetCore.Server.IISIntegration": "2.1.1",
  40. "Microsoft.AspNetCore.Server.Kestrel": "2.1.1",
  41. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.1.1",
  42. "Microsoft.Extensions.Configuration.CommandLine": "2.1.1",
  43. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.1.1",
  44. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  45. "Microsoft.Extensions.Configuration.Json": "2.1.1",
  46. "Microsoft.Extensions.Configuration.UserSecrets": "2.1.1",
  47. "Microsoft.Extensions.Logging": "2.1.1",
  48. "Microsoft.Extensions.Logging.Configuration": "2.1.1",
  49. "Microsoft.Extensions.Logging.Console": "2.1.1",
  50. "Microsoft.Extensions.Logging.Debug": "2.1.1"
  51. },
  52. "compile": {
  53. "lib/netstandard2.0/Microsoft.AspNetCore.dll": {}
  54. },
  55. "runtime": {
  56. "lib/netstandard2.0/Microsoft.AspNetCore.dll": {}
  57. }
  58. },
  59. "Microsoft.AspNetCore.Antiforgery/2.1.1": {
  60. "type": "package",
  61. "dependencies": {
  62. "Microsoft.AspNetCore.DataProtection": "2.1.1",
  63. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  64. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  65. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  66. "Microsoft.Extensions.ObjectPool": "2.1.1"
  67. },
  68. "compile": {
  69. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {}
  70. },
  71. "runtime": {
  72. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {}
  73. }
  74. },
  75. "Microsoft.AspNetCore.App/2.1.1": {
  76. "type": "package",
  77. "dependencies": {
  78. "Microsoft.AspNet.WebApi.Client": "[5.2.6, 5.3.0)",
  79. "Microsoft.AspNetCore": "[2.1.1, 2.2.0)",
  80. "Microsoft.AspNetCore.Antiforgery": "[2.1.1, 2.2.0)",
  81. "Microsoft.AspNetCore.Authentication": "[2.1.1, 2.2.0)",
  82. "Microsoft.AspNetCore.Authentication.Abstractions": "[2.1.1, 2.2.0)",
  83. "Microsoft.AspNetCore.Authentication.Cookies": "[2.1.1, 2.2.0)",
  84. "Microsoft.AspNetCore.Authentication.Core": "[2.1.1, 2.2.0)",
  85. "Microsoft.AspNetCore.Authentication.Facebook": "[2.1.1, 2.2.0)",
  86. "Microsoft.AspNetCore.Authentication.Google": "[2.1.1, 2.2.0)",
  87. "Microsoft.AspNetCore.Authentication.JwtBearer": "[2.1.1, 2.2.0)",
  88. "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "[2.1.1, 2.2.0)",
  89. "Microsoft.AspNetCore.Authentication.OAuth": "[2.1.1, 2.2.0)",
  90. "Microsoft.AspNetCore.Authentication.OpenIdConnect": "[2.1.1, 2.2.0)",
  91. "Microsoft.AspNetCore.Authentication.Twitter": "[2.1.1, 2.2.0)",
  92. "Microsoft.AspNetCore.Authentication.WsFederation": "[2.1.1, 2.2.0)",
  93. "Microsoft.AspNetCore.Authorization": "[2.1.1, 2.2.0)",
  94. "Microsoft.AspNetCore.Authorization.Policy": "[2.1.1, 2.2.0)",
  95. "Microsoft.AspNetCore.Connections.Abstractions": "[2.1.1, 2.2.0)",
  96. "Microsoft.AspNetCore.CookiePolicy": "[2.1.1, 2.2.0)",
  97. "Microsoft.AspNetCore.Cors": "[2.1.1, 2.2.0)",
  98. "Microsoft.AspNetCore.Cryptography.Internal": "[2.1.1, 2.2.0)",
  99. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "[2.1.1, 2.2.0)",
  100. "Microsoft.AspNetCore.DataProtection": "[2.1.1, 2.2.0)",
  101. "Microsoft.AspNetCore.DataProtection.Abstractions": "[2.1.1, 2.2.0)",
  102. "Microsoft.AspNetCore.DataProtection.Extensions": "[2.1.1, 2.2.0)",
  103. "Microsoft.AspNetCore.Diagnostics": "[2.1.1, 2.2.0)",
  104. "Microsoft.AspNetCore.Diagnostics.Abstractions": "[2.1.1, 2.2.0)",
  105. "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "[2.1.1, 2.2.0)",
  106. "Microsoft.AspNetCore.HostFiltering": "[2.1.1, 2.2.0)",
  107. "Microsoft.AspNetCore.Hosting": "[2.1.1, 2.2.0)",
  108. "Microsoft.AspNetCore.Hosting.Abstractions": "[2.1.1, 2.2.0)",
  109. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "[2.1.1, 2.2.0)",
  110. "Microsoft.AspNetCore.Html.Abstractions": "[2.1.1, 2.2.0)",
  111. "Microsoft.AspNetCore.Http": "[2.1.1, 2.2.0)",
  112. "Microsoft.AspNetCore.Http.Abstractions": "[2.1.1, 2.2.0)",
  113. "Microsoft.AspNetCore.Http.Connections": "[1.0.1, 1.1.0)",
  114. "Microsoft.AspNetCore.Http.Connections.Common": "[1.0.1, 1.1.0)",
  115. "Microsoft.AspNetCore.Http.Extensions": "[2.1.1, 2.2.0)",
  116. "Microsoft.AspNetCore.Http.Features": "[2.1.1, 2.2.0)",
  117. "Microsoft.AspNetCore.HttpOverrides": "[2.1.1, 2.2.0)",
  118. "Microsoft.AspNetCore.HttpsPolicy": "[2.1.1, 2.2.0)",
  119. "Microsoft.AspNetCore.Identity": "[2.1.1, 2.2.0)",
  120. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "[2.1.1, 2.2.0)",
  121. "Microsoft.AspNetCore.Identity.UI": "[2.1.1, 2.2.0)",
  122. "Microsoft.AspNetCore.JsonPatch": "[2.1.1, 2.2.0)",
  123. "Microsoft.AspNetCore.Localization": "[2.1.1, 2.2.0)",
  124. "Microsoft.AspNetCore.Localization.Routing": "[2.1.1, 2.2.0)",
  125. "Microsoft.AspNetCore.MiddlewareAnalysis": "[2.1.1, 2.2.0)",
  126. "Microsoft.AspNetCore.Mvc": "[2.1.1, 2.2.0)",
  127. "Microsoft.AspNetCore.Mvc.Abstractions": "[2.1.1, 2.2.0)",
  128. "Microsoft.AspNetCore.Mvc.Analyzers": "[2.1.1, 2.2.0)",
  129. "Microsoft.AspNetCore.Mvc.ApiExplorer": "[2.1.1, 2.2.0)",
  130. "Microsoft.AspNetCore.Mvc.Core": "[2.1.1, 2.2.0)",
  131. "Microsoft.AspNetCore.Mvc.Cors": "[2.1.1, 2.2.0)",
  132. "Microsoft.AspNetCore.Mvc.DataAnnotations": "[2.1.1, 2.2.0)",
  133. "Microsoft.AspNetCore.Mvc.Formatters.Json": "[2.1.1, 2.2.0)",
  134. "Microsoft.AspNetCore.Mvc.Formatters.Xml": "[2.1.1, 2.2.0)",
  135. "Microsoft.AspNetCore.Mvc.Localization": "[2.1.1, 2.2.0)",
  136. "Microsoft.AspNetCore.Mvc.Razor": "[2.1.1, 2.2.0)",
  137. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "[2.1.1, 2.2.0)",
  138. "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation": "[2.1.1, 2.2.0)",
  139. "Microsoft.AspNetCore.Mvc.RazorPages": "[2.1.1, 2.2.0)",
  140. "Microsoft.AspNetCore.Mvc.TagHelpers": "[2.1.1, 2.2.0)",
  141. "Microsoft.AspNetCore.Mvc.ViewFeatures": "[2.1.1, 2.2.0)",
  142. "Microsoft.AspNetCore.NodeServices": "[2.1.1, 2.2.0)",
  143. "Microsoft.AspNetCore.Owin": "[2.1.1, 2.2.0)",
  144. "Microsoft.AspNetCore.Razor": "[2.1.1, 2.2.0)",
  145. "Microsoft.AspNetCore.Razor.Design": "[2.1.1, 2.2.0)",
  146. "Microsoft.AspNetCore.Razor.Language": "[2.1.1, 2.2.0)",
  147. "Microsoft.AspNetCore.Razor.Runtime": "[2.1.1, 2.2.0)",
  148. "Microsoft.AspNetCore.ResponseCaching": "[2.1.1, 2.2.0)",
  149. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "[2.1.1, 2.2.0)",
  150. "Microsoft.AspNetCore.ResponseCompression": "[2.1.1, 2.2.0)",
  151. "Microsoft.AspNetCore.Rewrite": "[2.1.1, 2.2.0)",
  152. "Microsoft.AspNetCore.Routing": "[2.1.1, 2.2.0)",
  153. "Microsoft.AspNetCore.Routing.Abstractions": "[2.1.1, 2.2.0)",
  154. "Microsoft.AspNetCore.Server.HttpSys": "[2.1.1, 2.2.0)",
  155. "Microsoft.AspNetCore.Server.IISIntegration": "[2.1.1, 2.2.0)",
  156. "Microsoft.AspNetCore.Server.Kestrel": "[2.1.1, 2.2.0)",
  157. "Microsoft.AspNetCore.Server.Kestrel.Core": "[2.1.1, 2.2.0)",
  158. "Microsoft.AspNetCore.Server.Kestrel.Https": "[2.1.1, 2.2.0)",
  159. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "[2.1.1, 2.2.0)",
  160. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "[2.1.1, 2.2.0)",
  161. "Microsoft.AspNetCore.Session": "[2.1.1, 2.2.0)",
  162. "Microsoft.AspNetCore.SignalR": "[1.0.1, 1.1.0)",
  163. "Microsoft.AspNetCore.SignalR.Common": "[1.0.1, 1.1.0)",
  164. "Microsoft.AspNetCore.SignalR.Core": "[1.0.1, 1.1.0)",
  165. "Microsoft.AspNetCore.SignalR.Protocols.Json": "[1.0.1, 1.1.0)",
  166. "Microsoft.AspNetCore.SpaServices": "[2.1.1, 2.2.0)",
  167. "Microsoft.AspNetCore.SpaServices.Extensions": "[2.1.1, 2.2.0)",
  168. "Microsoft.AspNetCore.StaticFiles": "[2.1.1, 2.2.0)",
  169. "Microsoft.AspNetCore.WebSockets": "[2.1.1, 2.2.0)",
  170. "Microsoft.AspNetCore.WebUtilities": "[2.1.1, 2.2.0)",
  171. "Microsoft.CodeAnalysis.Razor": "[2.1.1, 2.2.0)",
  172. "Microsoft.EntityFrameworkCore": "[2.1.1, 2.2.0)",
  173. "Microsoft.EntityFrameworkCore.Abstractions": "[2.1.1, 2.2.0)",
  174. "Microsoft.EntityFrameworkCore.Analyzers": "[2.1.1, 2.2.0)",
  175. "Microsoft.EntityFrameworkCore.Design": "[2.1.1, 2.2.0)",
  176. "Microsoft.EntityFrameworkCore.InMemory": "[2.1.1, 2.2.0)",
  177. "Microsoft.EntityFrameworkCore.Relational": "[2.1.1, 2.2.0)",
  178. "Microsoft.EntityFrameworkCore.SqlServer": "[2.1.1, 2.2.0)",
  179. "Microsoft.EntityFrameworkCore.Tools": "[2.1.1, 2.2.0)",
  180. "Microsoft.Extensions.Caching.Abstractions": "[2.1.1, 2.2.0)",
  181. "Microsoft.Extensions.Caching.Memory": "[2.1.1, 2.2.0)",
  182. "Microsoft.Extensions.Caching.SqlServer": "[2.1.1, 2.2.0)",
  183. "Microsoft.Extensions.Configuration": "[2.1.1, 2.2.0)",
  184. "Microsoft.Extensions.Configuration.Abstractions": "[2.1.1, 2.2.0)",
  185. "Microsoft.Extensions.Configuration.Binder": "[2.1.1, 2.2.0)",
  186. "Microsoft.Extensions.Configuration.CommandLine": "[2.1.1, 2.2.0)",
  187. "Microsoft.Extensions.Configuration.EnvironmentVariables": "[2.1.1, 2.2.0)",
  188. "Microsoft.Extensions.Configuration.FileExtensions": "[2.1.1, 2.2.0)",
  189. "Microsoft.Extensions.Configuration.Ini": "[2.1.1, 2.2.0)",
  190. "Microsoft.Extensions.Configuration.Json": "[2.1.1, 2.2.0)",
  191. "Microsoft.Extensions.Configuration.KeyPerFile": "[2.1.1, 2.2.0)",
  192. "Microsoft.Extensions.Configuration.UserSecrets": "[2.1.1, 2.2.0)",
  193. "Microsoft.Extensions.Configuration.Xml": "[2.1.1, 2.2.0)",
  194. "Microsoft.Extensions.DependencyInjection": "[2.1.1, 2.2.0)",
  195. "Microsoft.Extensions.DependencyInjection.Abstractions": "[2.1.1, 2.2.0)",
  196. "Microsoft.Extensions.DiagnosticAdapter": "[2.1.0, 2.2.0)",
  197. "Microsoft.Extensions.FileProviders.Abstractions": "[2.1.1, 2.2.0)",
  198. "Microsoft.Extensions.FileProviders.Composite": "[2.1.1, 2.2.0)",
  199. "Microsoft.Extensions.FileProviders.Embedded": "[2.1.1, 2.2.0)",
  200. "Microsoft.Extensions.FileProviders.Physical": "[2.1.1, 2.2.0)",
  201. "Microsoft.Extensions.FileSystemGlobbing": "[2.1.1, 2.2.0)",
  202. "Microsoft.Extensions.Hosting": "[2.1.1, 2.2.0)",
  203. "Microsoft.Extensions.Hosting.Abstractions": "[2.1.1, 2.2.0)",
  204. "Microsoft.Extensions.Http": "[2.1.1, 2.2.0)",
  205. "Microsoft.Extensions.Identity.Core": "[2.1.1, 2.2.0)",
  206. "Microsoft.Extensions.Identity.Stores": "[2.1.1, 2.2.0)",
  207. "Microsoft.Extensions.Localization": "[2.1.1, 2.2.0)",
  208. "Microsoft.Extensions.Localization.Abstractions": "[2.1.1, 2.2.0)",
  209. "Microsoft.Extensions.Logging": "[2.1.1, 2.2.0)",
  210. "Microsoft.Extensions.Logging.Abstractions": "[2.1.1, 2.2.0)",
  211. "Microsoft.Extensions.Logging.Configuration": "[2.1.1, 2.2.0)",
  212. "Microsoft.Extensions.Logging.Console": "[2.1.1, 2.2.0)",
  213. "Microsoft.Extensions.Logging.Debug": "[2.1.1, 2.2.0)",
  214. "Microsoft.Extensions.Logging.EventSource": "[2.1.1, 2.2.0)",
  215. "Microsoft.Extensions.Logging.TraceSource": "[2.1.1, 2.2.0)",
  216. "Microsoft.Extensions.ObjectPool": "[2.1.1, 2.2.0)",
  217. "Microsoft.Extensions.Options": "[2.1.1, 2.2.0)",
  218. "Microsoft.Extensions.Options.ConfigurationExtensions": "[2.1.1, 2.2.0)",
  219. "Microsoft.Extensions.Primitives": "[2.1.1, 2.2.0)",
  220. "Microsoft.Extensions.WebEncoders": "[2.1.1, 2.2.0)",
  221. "Microsoft.Net.Http.Headers": "[2.1.1, 2.2.0)"
  222. },
  223. "compile": {
  224. "lib/netcoreapp2.1/_._": {}
  225. },
  226. "runtime": {
  227. "lib/netcoreapp2.1/_._": {}
  228. },
  229. "build": {
  230. "build/netcoreapp2.1/Microsoft.AspNetCore.App.props": {},
  231. "build/netcoreapp2.1/Microsoft.AspNetCore.App.targets": {}
  232. }
  233. },
  234. "Microsoft.AspNetCore.Authentication/2.1.1": {
  235. "type": "package",
  236. "dependencies": {
  237. "Microsoft.AspNetCore.Authentication.Core": "2.1.1",
  238. "Microsoft.AspNetCore.DataProtection": "2.1.1",
  239. "Microsoft.AspNetCore.Http": "2.1.1",
  240. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  241. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  242. "Microsoft.Extensions.Options": "2.1.1",
  243. "Microsoft.Extensions.WebEncoders": "2.1.1"
  244. },
  245. "compile": {
  246. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll": {}
  247. },
  248. "runtime": {
  249. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll": {}
  250. }
  251. },
  252. "Microsoft.AspNetCore.Authentication.Abstractions/2.1.1": {
  253. "type": "package",
  254. "dependencies": {
  255. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  256. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  257. "Microsoft.Extensions.Options": "2.1.1"
  258. },
  259. "compile": {
  260. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
  261. },
  262. "runtime": {
  263. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {}
  264. }
  265. },
  266. "Microsoft.AspNetCore.Authentication.Cookies/2.1.1": {
  267. "type": "package",
  268. "dependencies": {
  269. "Microsoft.AspNetCore.Authentication": "2.1.1"
  270. },
  271. "compile": {
  272. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
  273. },
  274. "runtime": {
  275. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll": {}
  276. }
  277. },
  278. "Microsoft.AspNetCore.Authentication.Core/2.1.1": {
  279. "type": "package",
  280. "dependencies": {
  281. "Microsoft.AspNetCore.Authentication.Abstractions": "2.1.1",
  282. "Microsoft.AspNetCore.Http": "2.1.1",
  283. "Microsoft.AspNetCore.Http.Extensions": "2.1.1"
  284. },
  285. "compile": {
  286. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {}
  287. },
  288. "runtime": {
  289. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {}
  290. }
  291. },
  292. "Microsoft.AspNetCore.Authentication.Facebook/2.1.1": {
  293. "type": "package",
  294. "dependencies": {
  295. "Microsoft.AspNetCore.Authentication.OAuth": "2.1.1"
  296. },
  297. "compile": {
  298. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll": {}
  299. },
  300. "runtime": {
  301. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll": {}
  302. }
  303. },
  304. "Microsoft.AspNetCore.Authentication.Google/2.1.1": {
  305. "type": "package",
  306. "dependencies": {
  307. "Microsoft.AspNetCore.Authentication.OAuth": "2.1.1"
  308. },
  309. "compile": {
  310. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll": {}
  311. },
  312. "runtime": {
  313. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll": {}
  314. }
  315. },
  316. "Microsoft.AspNetCore.Authentication.JwtBearer/2.1.1": {
  317. "type": "package",
  318. "dependencies": {
  319. "Microsoft.AspNetCore.Authentication": "2.1.1",
  320. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.2.0"
  321. },
  322. "compile": {
  323. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {}
  324. },
  325. "runtime": {
  326. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {}
  327. }
  328. },
  329. "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.1.1": {
  330. "type": "package",
  331. "dependencies": {
  332. "Microsoft.AspNetCore.Authentication.OAuth": "2.1.1"
  333. },
  334. "compile": {
  335. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {}
  336. },
  337. "runtime": {
  338. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {}
  339. }
  340. },
  341. "Microsoft.AspNetCore.Authentication.OAuth/2.1.1": {
  342. "type": "package",
  343. "dependencies": {
  344. "Microsoft.AspNetCore.Authentication": "2.1.1",
  345. "Newtonsoft.Json": "11.0.2"
  346. },
  347. "compile": {
  348. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll": {}
  349. },
  350. "runtime": {
  351. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll": {}
  352. }
  353. },
  354. "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.1.1": {
  355. "type": "package",
  356. "dependencies": {
  357. "Microsoft.AspNetCore.Authentication.OAuth": "2.1.1",
  358. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.2.0"
  359. },
  360. "compile": {
  361. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {}
  362. },
  363. "runtime": {
  364. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {}
  365. }
  366. },
  367. "Microsoft.AspNetCore.Authentication.Twitter/2.1.1": {
  368. "type": "package",
  369. "dependencies": {
  370. "Microsoft.AspNetCore.Authentication.OAuth": "2.1.1"
  371. },
  372. "compile": {
  373. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll": {}
  374. },
  375. "runtime": {
  376. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll": {}
  377. }
  378. },
  379. "Microsoft.AspNetCore.Authentication.WsFederation/2.1.1": {
  380. "type": "package",
  381. "dependencies": {
  382. "Microsoft.AspNetCore.Authentication": "2.1.1",
  383. "Microsoft.IdentityModel.Protocols.WsFederation": "5.2.0",
  384. "System.IdentityModel.Tokens.Jwt": "5.2.0"
  385. },
  386. "compile": {
  387. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.WsFederation.dll": {}
  388. },
  389. "runtime": {
  390. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.WsFederation.dll": {}
  391. }
  392. },
  393. "Microsoft.AspNetCore.Authorization/2.1.1": {
  394. "type": "package",
  395. "dependencies": {
  396. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  397. "Microsoft.Extensions.Options": "2.1.1"
  398. },
  399. "compile": {
  400. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {}
  401. },
  402. "runtime": {
  403. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {}
  404. }
  405. },
  406. "Microsoft.AspNetCore.Authorization.Policy/2.1.1": {
  407. "type": "package",
  408. "dependencies": {
  409. "Microsoft.AspNetCore.Authentication.Abstractions": "2.1.1",
  410. "Microsoft.AspNetCore.Authorization": "2.1.1"
  411. },
  412. "compile": {
  413. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {}
  414. },
  415. "runtime": {
  416. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {}
  417. }
  418. },
  419. "Microsoft.AspNetCore.Connections.Abstractions/2.1.1": {
  420. "type": "package",
  421. "dependencies": {
  422. "Microsoft.AspNetCore.Http.Features": "2.1.1",
  423. "System.IO.Pipelines": "4.5.0"
  424. },
  425. "compile": {
  426. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {}
  427. },
  428. "runtime": {
  429. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {}
  430. }
  431. },
  432. "Microsoft.AspNetCore.CookiePolicy/2.1.1": {
  433. "type": "package",
  434. "dependencies": {
  435. "Microsoft.AspNetCore.Http": "2.1.1",
  436. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  437. "Microsoft.Extensions.Options": "2.1.1"
  438. },
  439. "compile": {
  440. "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll": {}
  441. },
  442. "runtime": {
  443. "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll": {}
  444. }
  445. },
  446. "Microsoft.AspNetCore.Cors/2.1.1": {
  447. "type": "package",
  448. "dependencies": {
  449. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  450. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
  451. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  452. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  453. "Microsoft.Extensions.Options": "2.1.1"
  454. },
  455. "compile": {
  456. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {}
  457. },
  458. "runtime": {
  459. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {}
  460. }
  461. },
  462. "Microsoft.AspNetCore.Cryptography.Internal/2.1.1": {
  463. "type": "package",
  464. "compile": {
  465. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  466. },
  467. "runtime": {
  468. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  469. }
  470. },
  471. "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.1.1": {
  472. "type": "package",
  473. "dependencies": {
  474. "Microsoft.AspNetCore.Cryptography.Internal": "2.1.1"
  475. },
  476. "compile": {
  477. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  478. },
  479. "runtime": {
  480. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {}
  481. }
  482. },
  483. "Microsoft.AspNetCore.DataProtection/2.1.1": {
  484. "type": "package",
  485. "dependencies": {
  486. "Microsoft.AspNetCore.Cryptography.Internal": "2.1.1",
  487. "Microsoft.AspNetCore.DataProtection.Abstractions": "2.1.1",
  488. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  489. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  490. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  491. "Microsoft.Extensions.Options": "2.1.1",
  492. "Microsoft.Win32.Registry": "4.5.0",
  493. "System.Security.Cryptography.Xml": "4.5.0",
  494. "System.Security.Principal.Windows": "4.5.0"
  495. },
  496. "compile": {
  497. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {}
  498. },
  499. "runtime": {
  500. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {}
  501. }
  502. },
  503. "Microsoft.AspNetCore.DataProtection.Abstractions/2.1.1": {
  504. "type": "package",
  505. "compile": {
  506. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  507. },
  508. "runtime": {
  509. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  510. }
  511. },
  512. "Microsoft.AspNetCore.DataProtection.Extensions/2.1.1": {
  513. "type": "package",
  514. "dependencies": {
  515. "Microsoft.AspNetCore.DataProtection": "2.1.1",
  516. "Microsoft.Extensions.DependencyInjection": "2.1.1"
  517. },
  518. "compile": {
  519. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll": {}
  520. },
  521. "runtime": {
  522. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll": {}
  523. }
  524. },
  525. "Microsoft.AspNetCore.Diagnostics/2.1.1": {
  526. "type": "package",
  527. "dependencies": {
  528. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.1.1",
  529. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  530. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  531. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  532. "Microsoft.Extensions.FileProviders.Physical": "2.1.1",
  533. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  534. "Microsoft.Extensions.Options": "2.1.1",
  535. "System.Diagnostics.DiagnosticSource": "4.5.0",
  536. "System.Reflection.Metadata": "1.6.0"
  537. },
  538. "compile": {
  539. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {}
  540. },
  541. "runtime": {
  542. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {}
  543. }
  544. },
  545. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.1.1": {
  546. "type": "package",
  547. "compile": {
  548. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  549. },
  550. "runtime": {
  551. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  552. }
  553. },
  554. "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.1.1": {
  555. "type": "package",
  556. "dependencies": {
  557. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  558. "Microsoft.EntityFrameworkCore.Relational": "2.1.1"
  559. },
  560. "compile": {
  561. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {}
  562. },
  563. "runtime": {
  564. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {}
  565. }
  566. },
  567. "Microsoft.AspNetCore.HostFiltering/2.1.1": {
  568. "type": "package",
  569. "dependencies": {
  570. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  571. "Microsoft.AspNetCore.Http": "2.1.1",
  572. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  573. "Microsoft.Extensions.Options": "2.1.1"
  574. },
  575. "compile": {
  576. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll": {}
  577. },
  578. "runtime": {
  579. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll": {}
  580. }
  581. },
  582. "Microsoft.AspNetCore.Hosting/2.1.1": {
  583. "type": "package",
  584. "dependencies": {
  585. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  586. "Microsoft.AspNetCore.Http": "2.1.1",
  587. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  588. "Microsoft.Extensions.Configuration": "2.1.1",
  589. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.1.1",
  590. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  591. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  592. "Microsoft.Extensions.FileProviders.Physical": "2.1.1",
  593. "Microsoft.Extensions.Hosting.Abstractions": "2.1.1",
  594. "Microsoft.Extensions.Logging": "2.1.1",
  595. "Microsoft.Extensions.Options": "2.1.1",
  596. "System.Diagnostics.DiagnosticSource": "4.5.0",
  597. "System.Reflection.Metadata": "1.6.0"
  598. },
  599. "compile": {
  600. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {}
  601. },
  602. "runtime": {
  603. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {}
  604. }
  605. },
  606. "Microsoft.AspNetCore.Hosting.Abstractions/2.1.1": {
  607. "type": "package",
  608. "dependencies": {
  609. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.1.1",
  610. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  611. "Microsoft.Extensions.Hosting.Abstractions": "2.1.1"
  612. },
  613. "compile": {
  614. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  615. },
  616. "runtime": {
  617. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  618. }
  619. },
  620. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.1": {
  621. "type": "package",
  622. "dependencies": {
  623. "Microsoft.AspNetCore.Http.Features": "2.1.1",
  624. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
  625. },
  626. "compile": {
  627. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  628. },
  629. "runtime": {
  630. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  631. }
  632. },
  633. "Microsoft.AspNetCore.Html.Abstractions/2.1.1": {
  634. "type": "package",
  635. "dependencies": {
  636. "System.Text.Encodings.Web": "4.5.0"
  637. },
  638. "compile": {
  639. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  640. },
  641. "runtime": {
  642. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  643. }
  644. },
  645. "Microsoft.AspNetCore.Http/2.1.1": {
  646. "type": "package",
  647. "dependencies": {
  648. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  649. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  650. "Microsoft.Extensions.ObjectPool": "2.1.1",
  651. "Microsoft.Extensions.Options": "2.1.1",
  652. "Microsoft.Net.Http.Headers": "2.1.1"
  653. },
  654. "compile": {
  655. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {}
  656. },
  657. "runtime": {
  658. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {}
  659. }
  660. },
  661. "Microsoft.AspNetCore.Http.Abstractions/2.1.1": {
  662. "type": "package",
  663. "dependencies": {
  664. "Microsoft.AspNetCore.Http.Features": "2.1.1",
  665. "System.Text.Encodings.Web": "4.5.0"
  666. },
  667. "compile": {
  668. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  669. },
  670. "runtime": {
  671. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  672. }
  673. },
  674. "Microsoft.AspNetCore.Http.Connections/1.0.1": {
  675. "type": "package",
  676. "dependencies": {
  677. "Microsoft.AspNetCore.Authorization.Policy": "2.1.1",
  678. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  679. "Microsoft.AspNetCore.Http": "2.1.1",
  680. "Microsoft.AspNetCore.Http.Connections.Common": "1.0.1",
  681. "Microsoft.AspNetCore.Routing": "2.1.1",
  682. "Microsoft.AspNetCore.WebSockets": "2.1.1",
  683. "Newtonsoft.Json": "11.0.2"
  684. },
  685. "compile": {
  686. "lib/netcoreapp2.1/Microsoft.AspNetCore.Http.Connections.dll": {}
  687. },
  688. "runtime": {
  689. "lib/netcoreapp2.1/Microsoft.AspNetCore.Http.Connections.dll": {}
  690. }
  691. },
  692. "Microsoft.AspNetCore.Http.Connections.Common/1.0.1": {
  693. "type": "package",
  694. "dependencies": {
  695. "Microsoft.AspNetCore.Connections.Abstractions": "2.1.1",
  696. "Newtonsoft.Json": "11.0.2",
  697. "System.Buffers": "4.5.0"
  698. },
  699. "compile": {
  700. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": {}
  701. },
  702. "runtime": {
  703. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll": {}
  704. }
  705. },
  706. "Microsoft.AspNetCore.Http.Extensions/2.1.1": {
  707. "type": "package",
  708. "dependencies": {
  709. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  710. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  711. "Microsoft.Net.Http.Headers": "2.1.1",
  712. "System.Buffers": "4.5.0"
  713. },
  714. "compile": {
  715. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {}
  716. },
  717. "runtime": {
  718. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {}
  719. }
  720. },
  721. "Microsoft.AspNetCore.Http.Features/2.1.1": {
  722. "type": "package",
  723. "dependencies": {
  724. "Microsoft.Extensions.Primitives": "2.1.1"
  725. },
  726. "compile": {
  727. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  728. },
  729. "runtime": {
  730. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {}
  731. }
  732. },
  733. "Microsoft.AspNetCore.HttpOverrides/2.1.1": {
  734. "type": "package",
  735. "dependencies": {
  736. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  737. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  738. "Microsoft.Extensions.Options": "2.1.1"
  739. },
  740. "compile": {
  741. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {}
  742. },
  743. "runtime": {
  744. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {}
  745. }
  746. },
  747. "Microsoft.AspNetCore.HttpsPolicy/2.1.1": {
  748. "type": "package",
  749. "dependencies": {
  750. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  751. "Microsoft.AspNetCore.Http": "2.1.1",
  752. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  753. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  754. "Microsoft.Extensions.Options": "2.1.1"
  755. },
  756. "compile": {
  757. "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll": {}
  758. },
  759. "runtime": {
  760. "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll": {}
  761. }
  762. },
  763. "Microsoft.AspNetCore.Identity/2.1.1": {
  764. "type": "package",
  765. "dependencies": {
  766. "Microsoft.AspNetCore.Authentication.Cookies": "2.1.1",
  767. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.1.1",
  768. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  769. "Microsoft.Extensions.Identity.Core": "2.1.1"
  770. },
  771. "compile": {
  772. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll": {}
  773. },
  774. "runtime": {
  775. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll": {}
  776. }
  777. },
  778. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.1.1": {
  779. "type": "package",
  780. "dependencies": {
  781. "Microsoft.AspNetCore.Identity": "2.1.1",
  782. "Microsoft.EntityFrameworkCore.Relational": "2.1.1",
  783. "Microsoft.Extensions.Identity.Stores": "2.1.1"
  784. },
  785. "compile": {
  786. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  787. },
  788. "runtime": {
  789. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {}
  790. }
  791. },
  792. "Microsoft.AspNetCore.Identity.UI/2.1.1": {
  793. "type": "package",
  794. "dependencies": {
  795. "Microsoft.AspNetCore.Identity": "2.1.1",
  796. "Microsoft.AspNetCore.Mvc": "2.1.1",
  797. "Microsoft.AspNetCore.StaticFiles": "2.1.1",
  798. "Microsoft.Extensions.FileProviders.Embedded": "2.1.1",
  799. "Microsoft.Extensions.Identity.Stores": "2.1.1"
  800. },
  801. "compile": {
  802. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.dll": {},
  803. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.dll": {}
  804. },
  805. "runtime": {
  806. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.dll": {},
  807. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.dll": {}
  808. }
  809. },
  810. "Microsoft.AspNetCore.JsonPatch/2.1.1": {
  811. "type": "package",
  812. "dependencies": {
  813. "Microsoft.CSharp": "4.5.0",
  814. "Newtonsoft.Json": "11.0.2"
  815. },
  816. "compile": {
  817. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {}
  818. },
  819. "runtime": {
  820. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {}
  821. }
  822. },
  823. "Microsoft.AspNetCore.Localization/2.1.1": {
  824. "type": "package",
  825. "dependencies": {
  826. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  827. "Microsoft.Extensions.Localization.Abstractions": "2.1.1",
  828. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  829. "Microsoft.Extensions.Options": "2.1.1"
  830. },
  831. "compile": {
  832. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {}
  833. },
  834. "runtime": {
  835. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {}
  836. }
  837. },
  838. "Microsoft.AspNetCore.Localization.Routing/2.1.1": {
  839. "type": "package",
  840. "dependencies": {
  841. "Microsoft.AspNetCore.Localization": "2.1.1",
  842. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1"
  843. },
  844. "compile": {
  845. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll": {}
  846. },
  847. "runtime": {
  848. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll": {}
  849. }
  850. },
  851. "Microsoft.AspNetCore.MiddlewareAnalysis/2.1.1": {
  852. "type": "package",
  853. "dependencies": {
  854. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  855. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  856. "System.Diagnostics.DiagnosticSource": "4.5.0"
  857. },
  858. "compile": {
  859. "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll": {}
  860. },
  861. "runtime": {
  862. "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll": {}
  863. }
  864. },
  865. "Microsoft.AspNetCore.Mvc/2.1.1": {
  866. "type": "package",
  867. "dependencies": {
  868. "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.1.1",
  869. "Microsoft.AspNetCore.Mvc.Cors": "2.1.1",
  870. "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.1.1",
  871. "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.1.1",
  872. "Microsoft.AspNetCore.Mvc.Localization": "2.1.1",
  873. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.1.1",
  874. "Microsoft.AspNetCore.Mvc.RazorPages": "2.1.1",
  875. "Microsoft.AspNetCore.Mvc.TagHelpers": "2.1.1",
  876. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.1.1",
  877. "Microsoft.AspNetCore.Razor.Design": "2.1.1",
  878. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  879. "Microsoft.Extensions.DependencyInjection": "2.1.1"
  880. },
  881. "compile": {
  882. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {}
  883. },
  884. "runtime": {
  885. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {}
  886. }
  887. },
  888. "Microsoft.AspNetCore.Mvc.Abstractions/2.1.1": {
  889. "type": "package",
  890. "dependencies": {
  891. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1",
  892. "Microsoft.Net.Http.Headers": "2.1.1"
  893. },
  894. "compile": {
  895. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  896. },
  897. "runtime": {
  898. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  899. }
  900. },
  901. "Microsoft.AspNetCore.Mvc.Analyzers/2.1.1": {
  902. "type": "package"
  903. },
  904. "Microsoft.AspNetCore.Mvc.ApiExplorer/2.1.1": {
  905. "type": "package",
  906. "dependencies": {
  907. "Microsoft.AspNetCore.Mvc.Core": "2.1.1"
  908. },
  909. "compile": {
  910. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
  911. },
  912. "runtime": {
  913. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {}
  914. }
  915. },
  916. "Microsoft.AspNetCore.Mvc.Core/2.1.1": {
  917. "type": "package",
  918. "dependencies": {
  919. "Microsoft.AspNetCore.Authentication.Core": "2.1.1",
  920. "Microsoft.AspNetCore.Authorization.Policy": "2.1.1",
  921. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  922. "Microsoft.AspNetCore.Http": "2.1.1",
  923. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  924. "Microsoft.AspNetCore.Mvc.Abstractions": "2.1.1",
  925. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.1.1",
  926. "Microsoft.AspNetCore.Routing": "2.1.1",
  927. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  928. "Microsoft.Extensions.DependencyModel": "2.1.0",
  929. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  930. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  931. "System.Diagnostics.DiagnosticSource": "4.5.0",
  932. "System.Threading.Tasks.Extensions": "4.5.1"
  933. },
  934. "compile": {
  935. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {}
  936. },
  937. "runtime": {
  938. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {}
  939. }
  940. },
  941. "Microsoft.AspNetCore.Mvc.Cors/2.1.1": {
  942. "type": "package",
  943. "dependencies": {
  944. "Microsoft.AspNetCore.Cors": "2.1.1",
  945. "Microsoft.AspNetCore.Mvc.Core": "2.1.1"
  946. },
  947. "compile": {
  948. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {}
  949. },
  950. "runtime": {
  951. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {}
  952. }
  953. },
  954. "Microsoft.AspNetCore.Mvc.DataAnnotations/2.1.1": {
  955. "type": "package",
  956. "dependencies": {
  957. "Microsoft.AspNetCore.Mvc.Core": "2.1.1",
  958. "Microsoft.Extensions.Localization": "2.1.1",
  959. "System.ComponentModel.Annotations": "4.5.0"
  960. },
  961. "compile": {
  962. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  963. },
  964. "runtime": {
  965. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  966. }
  967. },
  968. "Microsoft.AspNetCore.Mvc.Formatters.Json/2.1.1": {
  969. "type": "package",
  970. "dependencies": {
  971. "Microsoft.AspNetCore.JsonPatch": "2.1.1",
  972. "Microsoft.AspNetCore.Mvc.Core": "2.1.1"
  973. },
  974. "compile": {
  975. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  976. },
  977. "runtime": {
  978. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  979. }
  980. },
  981. "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.1.1": {
  982. "type": "package",
  983. "dependencies": {
  984. "Microsoft.AspNetCore.Mvc.Core": "2.1.1"
  985. },
  986. "compile": {
  987. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {}
  988. },
  989. "runtime": {
  990. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {}
  991. }
  992. },
  993. "Microsoft.AspNetCore.Mvc.Localization/2.1.1": {
  994. "type": "package",
  995. "dependencies": {
  996. "Microsoft.AspNetCore.Localization": "2.1.1",
  997. "Microsoft.AspNetCore.Mvc.Razor": "2.1.1",
  998. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  999. "Microsoft.Extensions.Localization": "2.1.1"
  1000. },
  1001. "compile": {
  1002. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {}
  1003. },
  1004. "runtime": {
  1005. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {}
  1006. }
  1007. },
  1008. "Microsoft.AspNetCore.Mvc.Razor/2.1.1": {
  1009. "type": "package",
  1010. "dependencies": {
  1011. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.1.1",
  1012. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.1.1",
  1013. "Microsoft.AspNetCore.Razor.Runtime": "2.1.1",
  1014. "Microsoft.CodeAnalysis.CSharp": "2.8.0",
  1015. "Microsoft.CodeAnalysis.Razor": "2.1.1",
  1016. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  1017. "Microsoft.Extensions.FileProviders.Composite": "2.1.1"
  1018. },
  1019. "compile": {
  1020. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {}
  1021. },
  1022. "runtime": {
  1023. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {}
  1024. }
  1025. },
  1026. "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.1.1": {
  1027. "type": "package",
  1028. "dependencies": {
  1029. "Microsoft.AspNetCore.Razor.Language": "2.1.1",
  1030. "Microsoft.CodeAnalysis.Razor": "2.1.1"
  1031. },
  1032. "compile": {
  1033. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {}
  1034. },
  1035. "runtime": {
  1036. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {}
  1037. },
  1038. "build": {
  1039. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.props": {},
  1040. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.targets": {}
  1041. }
  1042. },
  1043. "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.1.1": {
  1044. "type": "package",
  1045. "dependencies": {
  1046. "Microsoft.AspNetCore.Hosting": "2.1.1",
  1047. "Microsoft.AspNetCore.Mvc.RazorPages": "2.1.1"
  1048. },
  1049. "build": {
  1050. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets": {}
  1051. }
  1052. },
  1053. "Microsoft.AspNetCore.Mvc.RazorPages/2.1.1": {
  1054. "type": "package",
  1055. "dependencies": {
  1056. "Microsoft.AspNetCore.Mvc.Razor": "2.1.1"
  1057. },
  1058. "compile": {
  1059. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {}
  1060. },
  1061. "runtime": {
  1062. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {}
  1063. }
  1064. },
  1065. "Microsoft.AspNetCore.Mvc.TagHelpers/2.1.1": {
  1066. "type": "package",
  1067. "dependencies": {
  1068. "Microsoft.AspNetCore.Mvc.Razor": "2.1.1",
  1069. "Microsoft.AspNetCore.Razor.Runtime": "2.1.1",
  1070. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1",
  1071. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  1072. "Microsoft.Extensions.FileSystemGlobbing": "2.1.1",
  1073. "Microsoft.Extensions.Primitives": "2.1.1"
  1074. },
  1075. "compile": {
  1076. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
  1077. },
  1078. "runtime": {
  1079. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {}
  1080. }
  1081. },
  1082. "Microsoft.AspNetCore.Mvc.ViewFeatures/2.1.1": {
  1083. "type": "package",
  1084. "dependencies": {
  1085. "Microsoft.AspNetCore.Antiforgery": "2.1.1",
  1086. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.1.1",
  1087. "Microsoft.AspNetCore.Html.Abstractions": "2.1.1",
  1088. "Microsoft.AspNetCore.Mvc.Core": "2.1.1",
  1089. "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.1.1",
  1090. "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.1.1",
  1091. "Microsoft.Extensions.WebEncoders": "2.1.1",
  1092. "Newtonsoft.Json.Bson": "1.0.1"
  1093. },
  1094. "compile": {
  1095. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  1096. },
  1097. "runtime": {
  1098. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  1099. }
  1100. },
  1101. "Microsoft.AspNetCore.NodeServices/2.1.1": {
  1102. "type": "package",
  1103. "dependencies": {
  1104. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  1105. "Microsoft.Extensions.Logging.Console": "2.1.1",
  1106. "Newtonsoft.Json": "11.0.2"
  1107. },
  1108. "compile": {
  1109. "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll": {}
  1110. },
  1111. "runtime": {
  1112. "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll": {}
  1113. }
  1114. },
  1115. "Microsoft.AspNetCore.Owin/2.1.1": {
  1116. "type": "package",
  1117. "dependencies": {
  1118. "Microsoft.AspNetCore.Http": "2.1.1"
  1119. },
  1120. "compile": {
  1121. "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll": {}
  1122. },
  1123. "runtime": {
  1124. "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll": {}
  1125. }
  1126. },
  1127. "Microsoft.AspNetCore.Razor/2.1.1": {
  1128. "type": "package",
  1129. "dependencies": {
  1130. "Microsoft.AspNetCore.Html.Abstractions": "2.1.1"
  1131. },
  1132. "compile": {
  1133. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {}
  1134. },
  1135. "runtime": {
  1136. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {}
  1137. }
  1138. },
  1139. "Microsoft.AspNetCore.Razor.Design/2.1.2": {
  1140. "type": "package",
  1141. "build": {
  1142. "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.props": {}
  1143. },
  1144. "buildMultiTargeting": {
  1145. "buildMultiTargeting/Microsoft.AspNetCore.Razor.Design.props": {}
  1146. }
  1147. },
  1148. "Microsoft.AspNetCore.Razor.Language/2.1.1": {
  1149. "type": "package",
  1150. "compile": {
  1151. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  1152. },
  1153. "runtime": {
  1154. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  1155. }
  1156. },
  1157. "Microsoft.AspNetCore.Razor.Runtime/2.1.1": {
  1158. "type": "package",
  1159. "dependencies": {
  1160. "Microsoft.AspNetCore.Html.Abstractions": "2.1.1",
  1161. "Microsoft.AspNetCore.Razor": "2.1.1"
  1162. },
  1163. "compile": {
  1164. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {}
  1165. },
  1166. "runtime": {
  1167. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {}
  1168. }
  1169. },
  1170. "Microsoft.AspNetCore.ResponseCaching/2.1.1": {
  1171. "type": "package",
  1172. "dependencies": {
  1173. "Microsoft.AspNetCore.Http": "2.1.1",
  1174. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  1175. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.1.1",
  1176. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  1177. "Microsoft.Extensions.Logging.Abstractions": "2.1.1"
  1178. },
  1179. "compile": {
  1180. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll": {}
  1181. },
  1182. "runtime": {
  1183. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll": {}
  1184. }
  1185. },
  1186. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.1.1": {
  1187. "type": "package",
  1188. "dependencies": {
  1189. "Microsoft.Extensions.Primitives": "2.1.1"
  1190. },
  1191. "compile": {
  1192. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
  1193. },
  1194. "runtime": {
  1195. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {}
  1196. }
  1197. },
  1198. "Microsoft.AspNetCore.ResponseCompression/2.1.1": {
  1199. "type": "package",
  1200. "dependencies": {
  1201. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  1202. "Microsoft.Extensions.Options": "2.1.1"
  1203. },
  1204. "compile": {
  1205. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.dll": {}
  1206. },
  1207. "runtime": {
  1208. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.dll": {}
  1209. }
  1210. },
  1211. "Microsoft.AspNetCore.Rewrite/2.1.1": {
  1212. "type": "package",
  1213. "dependencies": {
  1214. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  1215. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  1216. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
  1217. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  1218. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1219. "Microsoft.Extensions.Options": "2.1.1"
  1220. },
  1221. "compile": {
  1222. "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll": {}
  1223. },
  1224. "runtime": {
  1225. "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll": {}
  1226. }
  1227. },
  1228. "Microsoft.AspNetCore.Routing/2.1.1": {
  1229. "type": "package",
  1230. "dependencies": {
  1231. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  1232. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1",
  1233. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1234. "Microsoft.Extensions.ObjectPool": "2.1.1",
  1235. "Microsoft.Extensions.Options": "2.1.1"
  1236. },
  1237. "compile": {
  1238. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll": {}
  1239. },
  1240. "runtime": {
  1241. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll": {}
  1242. }
  1243. },
  1244. "Microsoft.AspNetCore.Routing.Abstractions/2.1.1": {
  1245. "type": "package",
  1246. "dependencies": {
  1247. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1"
  1248. },
  1249. "compile": {
  1250. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  1251. },
  1252. "runtime": {
  1253. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  1254. }
  1255. },
  1256. "Microsoft.AspNetCore.Server.HttpSys/2.1.1": {
  1257. "type": "package",
  1258. "dependencies": {
  1259. "Microsoft.AspNetCore.Authentication.Core": "2.1.1",
  1260. "Microsoft.AspNetCore.Hosting": "2.1.1",
  1261. "Microsoft.Net.Http.Headers": "2.1.1",
  1262. "Microsoft.Win32.Registry": "4.5.0",
  1263. "System.Security.Principal.Windows": "4.5.0"
  1264. },
  1265. "compile": {
  1266. "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll": {}
  1267. },
  1268. "runtime": {
  1269. "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll": {}
  1270. }
  1271. },
  1272. "Microsoft.AspNetCore.Server.IISIntegration/2.1.1": {
  1273. "type": "package",
  1274. "dependencies": {
  1275. "Microsoft.AspNetCore.Authentication.Core": "2.1.1",
  1276. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  1277. "Microsoft.AspNetCore.Http": "2.1.1",
  1278. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  1279. "Microsoft.AspNetCore.HttpOverrides": "2.1.1",
  1280. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1281. "Microsoft.Extensions.Options": "2.1.1",
  1282. "System.Buffers": "4.5.0",
  1283. "System.IO.Pipelines": "4.5.0",
  1284. "System.Memory": "4.5.1",
  1285. "System.Numerics.Vectors": "4.5.0",
  1286. "System.Runtime.CompilerServices.Unsafe": "4.5.1",
  1287. "System.Security.Principal.Windows": "4.5.0"
  1288. },
  1289. "compile": {
  1290. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
  1291. },
  1292. "runtime": {
  1293. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {}
  1294. }
  1295. },
  1296. "Microsoft.AspNetCore.Server.Kestrel/2.1.1": {
  1297. "type": "package",
  1298. "dependencies": {
  1299. "Microsoft.AspNetCore.Hosting": "2.1.1",
  1300. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.1.1",
  1301. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.1.1",
  1302. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.1.1"
  1303. },
  1304. "compile": {
  1305. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {}
  1306. },
  1307. "runtime": {
  1308. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {}
  1309. }
  1310. },
  1311. "Microsoft.AspNetCore.Server.Kestrel.Core/2.1.1": {
  1312. "type": "package",
  1313. "dependencies": {
  1314. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  1315. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.1.1",
  1316. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  1317. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  1318. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1319. "Microsoft.Extensions.Options": "2.1.1",
  1320. "Microsoft.Net.Http.Headers": "2.1.1",
  1321. "System.Memory": "4.5.1",
  1322. "System.Numerics.Vectors": "4.5.0",
  1323. "System.Runtime.CompilerServices.Unsafe": "4.5.1",
  1324. "System.Security.Cryptography.Cng": "4.5.0",
  1325. "System.Threading.Tasks.Extensions": "4.5.1"
  1326. },
  1327. "compile": {
  1328. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
  1329. },
  1330. "runtime": {
  1331. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {}
  1332. }
  1333. },
  1334. "Microsoft.AspNetCore.Server.Kestrel.Https/2.1.1": {
  1335. "type": "package",
  1336. "dependencies": {
  1337. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  1338. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.1.1"
  1339. },
  1340. "compile": {
  1341. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {}
  1342. },
  1343. "runtime": {
  1344. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {}
  1345. }
  1346. },
  1347. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.1.1": {
  1348. "type": "package",
  1349. "dependencies": {
  1350. "Microsoft.AspNetCore.Connections.Abstractions": "2.1.1"
  1351. },
  1352. "compile": {
  1353. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {}
  1354. },
  1355. "runtime": {
  1356. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {}
  1357. }
  1358. },
  1359. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.1.1": {
  1360. "type": "package",
  1361. "dependencies": {
  1362. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  1363. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.1.1",
  1364. "Microsoft.Extensions.Options": "2.1.1"
  1365. },
  1366. "compile": {
  1367. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
  1368. },
  1369. "runtime": {
  1370. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {}
  1371. }
  1372. },
  1373. "Microsoft.AspNetCore.Session/2.1.1": {
  1374. "type": "package",
  1375. "dependencies": {
  1376. "Microsoft.AspNetCore.DataProtection": "2.1.1",
  1377. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  1378. "Microsoft.Extensions.Caching.Abstractions": "2.1.1",
  1379. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1380. "Microsoft.Extensions.Options": "2.1.1"
  1381. },
  1382. "compile": {
  1383. "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll": {}
  1384. },
  1385. "runtime": {
  1386. "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll": {}
  1387. }
  1388. },
  1389. "Microsoft.AspNetCore.SignalR/1.0.1": {
  1390. "type": "package",
  1391. "dependencies": {
  1392. "Microsoft.AspNetCore.Http.Connections": "1.0.1",
  1393. "Microsoft.AspNetCore.SignalR.Core": "1.0.1"
  1394. },
  1395. "compile": {
  1396. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {}
  1397. },
  1398. "runtime": {
  1399. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll": {}
  1400. }
  1401. },
  1402. "Microsoft.AspNetCore.SignalR.Common/1.0.1": {
  1403. "type": "package",
  1404. "dependencies": {
  1405. "Microsoft.AspNetCore.Connections.Abstractions": "2.1.1",
  1406. "Microsoft.Extensions.Options": "2.1.1",
  1407. "Newtonsoft.Json": "11.0.2",
  1408. "System.Buffers": "4.5.0"
  1409. },
  1410. "compile": {
  1411. "lib/netcoreapp2.1/Microsoft.AspNetCore.SignalR.Common.dll": {}
  1412. },
  1413. "runtime": {
  1414. "lib/netcoreapp2.1/Microsoft.AspNetCore.SignalR.Common.dll": {}
  1415. }
  1416. },
  1417. "Microsoft.AspNetCore.SignalR.Core/1.0.1": {
  1418. "type": "package",
  1419. "dependencies": {
  1420. "Microsoft.AspNetCore.Authorization": "2.1.1",
  1421. "Microsoft.AspNetCore.SignalR.Common": "1.0.1",
  1422. "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.0.1",
  1423. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  1424. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1425. "System.Reflection.Emit": "4.3.0",
  1426. "System.Threading.Channels": "4.5.0"
  1427. },
  1428. "compile": {
  1429. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {}
  1430. },
  1431. "runtime": {
  1432. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll": {}
  1433. }
  1434. },
  1435. "Microsoft.AspNetCore.SignalR.Protocols.Json/1.0.1": {
  1436. "type": "package",
  1437. "dependencies": {
  1438. "Microsoft.AspNetCore.SignalR.Common": "1.0.1",
  1439. "Newtonsoft.Json": "11.0.2"
  1440. },
  1441. "compile": {
  1442. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {}
  1443. },
  1444. "runtime": {
  1445. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {}
  1446. }
  1447. },
  1448. "Microsoft.AspNetCore.SpaServices/2.1.1": {
  1449. "type": "package",
  1450. "dependencies": {
  1451. "Microsoft.AspNetCore.Mvc.TagHelpers": "2.1.1",
  1452. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.1.1",
  1453. "Microsoft.AspNetCore.NodeServices": "2.1.1"
  1454. },
  1455. "compile": {
  1456. "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll": {}
  1457. },
  1458. "runtime": {
  1459. "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll": {}
  1460. }
  1461. },
  1462. "Microsoft.AspNetCore.SpaServices.Extensions/2.1.1": {
  1463. "type": "package",
  1464. "dependencies": {
  1465. "Microsoft.AspNetCore.SpaServices": "2.1.1",
  1466. "Microsoft.AspNetCore.StaticFiles": "2.1.1",
  1467. "Microsoft.AspNetCore.WebSockets": "2.1.1",
  1468. "Microsoft.Extensions.FileProviders.Physical": "2.1.1"
  1469. },
  1470. "compile": {
  1471. "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.Extensions.dll": {}
  1472. },
  1473. "runtime": {
  1474. "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.Extensions.dll": {}
  1475. }
  1476. },
  1477. "Microsoft.AspNetCore.StaticFiles/2.1.1": {
  1478. "type": "package",
  1479. "dependencies": {
  1480. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  1481. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  1482. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  1483. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1484. "Microsoft.Extensions.WebEncoders": "2.1.1"
  1485. },
  1486. "compile": {
  1487. "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll": {}
  1488. },
  1489. "runtime": {
  1490. "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll": {}
  1491. }
  1492. },
  1493. "Microsoft.AspNetCore.WebSockets/2.1.1": {
  1494. "type": "package",
  1495. "dependencies": {
  1496. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  1497. "Microsoft.Extensions.Options": "2.1.1",
  1498. "System.Net.WebSockets.WebSocketProtocol": "4.5.1"
  1499. },
  1500. "compile": {
  1501. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {}
  1502. },
  1503. "runtime": {
  1504. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {}
  1505. }
  1506. },
  1507. "Microsoft.AspNetCore.WebUtilities/2.1.1": {
  1508. "type": "package",
  1509. "dependencies": {
  1510. "Microsoft.Net.Http.Headers": "2.1.1",
  1511. "System.Text.Encodings.Web": "4.5.0"
  1512. },
  1513. "compile": {
  1514. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {}
  1515. },
  1516. "runtime": {
  1517. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {}
  1518. }
  1519. },
  1520. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  1521. "type": "package"
  1522. },
  1523. "Microsoft.CodeAnalysis.Common/2.8.0": {
  1524. "type": "package",
  1525. "dependencies": {
  1526. "Microsoft.CodeAnalysis.Analyzers": "1.1.0",
  1527. "System.AppContext": "4.3.0",
  1528. "System.Collections": "4.3.0",
  1529. "System.Collections.Concurrent": "4.3.0",
  1530. "System.Collections.Immutable": "1.3.1",
  1531. "System.Console": "4.3.0",
  1532. "System.Diagnostics.Debug": "4.3.0",
  1533. "System.Diagnostics.FileVersionInfo": "4.3.0",
  1534. "System.Diagnostics.StackTrace": "4.3.0",
  1535. "System.Diagnostics.Tools": "4.3.0",
  1536. "System.Dynamic.Runtime": "4.3.0",
  1537. "System.Globalization": "4.3.0",
  1538. "System.IO.Compression": "4.3.0",
  1539. "System.IO.FileSystem": "4.3.0",
  1540. "System.IO.FileSystem.Primitives": "4.3.0",
  1541. "System.Linq": "4.3.0",
  1542. "System.Linq.Expressions": "4.3.0",
  1543. "System.Reflection": "4.3.0",
  1544. "System.Reflection.Metadata": "1.4.2",
  1545. "System.Resources.ResourceManager": "4.3.0",
  1546. "System.Runtime": "4.3.0",
  1547. "System.Runtime.Extensions": "4.3.0",
  1548. "System.Runtime.InteropServices": "4.3.0",
  1549. "System.Runtime.Numerics": "4.3.0",
  1550. "System.Security.Cryptography.Algorithms": "4.3.0",
  1551. "System.Security.Cryptography.Encoding": "4.3.0",
  1552. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1553. "System.Text.Encoding": "4.3.0",
  1554. "System.Text.Encoding.CodePages": "4.3.0",
  1555. "System.Text.Encoding.Extensions": "4.3.0",
  1556. "System.Threading": "4.3.0",
  1557. "System.Threading.Tasks": "4.3.0",
  1558. "System.Threading.Tasks.Parallel": "4.3.0",
  1559. "System.Threading.Thread": "4.3.0",
  1560. "System.ValueTuple": "4.3.0",
  1561. "System.Xml.ReaderWriter": "4.3.0",
  1562. "System.Xml.XDocument": "4.3.0",
  1563. "System.Xml.XPath.XDocument": "4.3.0",
  1564. "System.Xml.XmlDocument": "4.3.0"
  1565. },
  1566. "compile": {
  1567. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {}
  1568. },
  1569. "runtime": {
  1570. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {}
  1571. }
  1572. },
  1573. "Microsoft.CodeAnalysis.CSharp/2.8.0": {
  1574. "type": "package",
  1575. "dependencies": {
  1576. "Microsoft.CodeAnalysis.Common": "[2.8.0]"
  1577. },
  1578. "compile": {
  1579. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {}
  1580. },
  1581. "runtime": {
  1582. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {}
  1583. }
  1584. },
  1585. "Microsoft.CodeAnalysis.Razor/2.1.1": {
  1586. "type": "package",
  1587. "dependencies": {
  1588. "Microsoft.AspNetCore.Razor.Language": "2.1.1",
  1589. "Microsoft.CodeAnalysis.CSharp": "2.8.0",
  1590. "Microsoft.CodeAnalysis.Common": "2.8.0"
  1591. },
  1592. "compile": {
  1593. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  1594. },
  1595. "runtime": {
  1596. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  1597. }
  1598. },
  1599. "Microsoft.CSharp/4.5.0": {
  1600. "type": "package",
  1601. "compile": {
  1602. "ref/netcoreapp2.0/_._": {}
  1603. },
  1604. "runtime": {
  1605. "lib/netcoreapp2.0/_._": {}
  1606. }
  1607. },
  1608. "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
  1609. "type": "package",
  1610. "dependencies": {
  1611. "System.AppContext": "4.1.0",
  1612. "System.Collections": "4.0.11",
  1613. "System.IO": "4.1.0",
  1614. "System.IO.FileSystem": "4.0.1",
  1615. "System.Reflection.TypeExtensions": "4.1.0",
  1616. "System.Runtime.Extensions": "4.1.0",
  1617. "System.Runtime.InteropServices": "4.1.0",
  1618. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
  1619. },
  1620. "compile": {
  1621. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  1622. },
  1623. "runtime": {
  1624. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  1625. }
  1626. },
  1627. "Microsoft.EntityFrameworkCore/2.1.1": {
  1628. "type": "package",
  1629. "dependencies": {
  1630. "Microsoft.EntityFrameworkCore.Abstractions": "2.1.1",
  1631. "Microsoft.EntityFrameworkCore.Analyzers": "2.1.1",
  1632. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  1633. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  1634. "Microsoft.Extensions.Logging": "2.1.1",
  1635. "Remotion.Linq": "2.2.0",
  1636. "System.Collections.Immutable": "1.5.0",
  1637. "System.ComponentModel.Annotations": "4.5.0",
  1638. "System.Diagnostics.DiagnosticSource": "4.5.0",
  1639. "System.Interactive.Async": "3.1.1"
  1640. },
  1641. "compile": {
  1642. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  1643. },
  1644. "runtime": {
  1645. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  1646. }
  1647. },
  1648. "Microsoft.EntityFrameworkCore.Abstractions/2.1.1": {
  1649. "type": "package",
  1650. "compile": {
  1651. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  1652. },
  1653. "runtime": {
  1654. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  1655. }
  1656. },
  1657. "Microsoft.EntityFrameworkCore.Analyzers/2.1.1": {
  1658. "type": "package"
  1659. },
  1660. "Microsoft.EntityFrameworkCore.Design/2.1.1": {
  1661. "type": "package",
  1662. "dependencies": {
  1663. "Microsoft.CSharp": "4.5.0",
  1664. "Microsoft.EntityFrameworkCore.Relational": "2.1.1"
  1665. },
  1666. "compile": {
  1667. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {}
  1668. },
  1669. "runtime": {
  1670. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {}
  1671. },
  1672. "build": {
  1673. "build/netcoreapp2.0/Microsoft.EntityFrameworkCore.Design.props": {}
  1674. }
  1675. },
  1676. "Microsoft.EntityFrameworkCore.InMemory/2.1.1": {
  1677. "type": "package",
  1678. "dependencies": {
  1679. "Microsoft.EntityFrameworkCore": "2.1.1"
  1680. },
  1681. "compile": {
  1682. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll": {}
  1683. },
  1684. "runtime": {
  1685. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll": {}
  1686. }
  1687. },
  1688. "Microsoft.EntityFrameworkCore.Relational/2.1.1": {
  1689. "type": "package",
  1690. "dependencies": {
  1691. "Microsoft.EntityFrameworkCore": "2.1.1"
  1692. },
  1693. "compile": {
  1694. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  1695. },
  1696. "runtime": {
  1697. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  1698. }
  1699. },
  1700. "Microsoft.EntityFrameworkCore.SqlServer/2.1.1": {
  1701. "type": "package",
  1702. "dependencies": {
  1703. "Microsoft.EntityFrameworkCore.Relational": "2.1.1",
  1704. "System.Data.SqlClient": "4.5.1"
  1705. },
  1706. "compile": {
  1707. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
  1708. },
  1709. "runtime": {
  1710. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
  1711. }
  1712. },
  1713. "Microsoft.EntityFrameworkCore.Tools/2.1.1": {
  1714. "type": "package",
  1715. "dependencies": {
  1716. "Microsoft.EntityFrameworkCore.Design": "2.1.1"
  1717. },
  1718. "compile": {
  1719. "lib/netstandard2.0/_._": {}
  1720. },
  1721. "runtime": {
  1722. "lib/netstandard2.0/_._": {}
  1723. }
  1724. },
  1725. "Microsoft.Extensions.Caching.Abstractions/2.1.1": {
  1726. "type": "package",
  1727. "dependencies": {
  1728. "Microsoft.Extensions.Primitives": "2.1.1"
  1729. },
  1730. "compile": {
  1731. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  1732. },
  1733. "runtime": {
  1734. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  1735. }
  1736. },
  1737. "Microsoft.Extensions.Caching.Memory/2.1.1": {
  1738. "type": "package",
  1739. "dependencies": {
  1740. "Microsoft.Extensions.Caching.Abstractions": "2.1.1",
  1741. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  1742. "Microsoft.Extensions.Options": "2.1.1"
  1743. },
  1744. "compile": {
  1745. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  1746. },
  1747. "runtime": {
  1748. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  1749. }
  1750. },
  1751. "Microsoft.Extensions.Caching.SqlServer/2.1.1": {
  1752. "type": "package",
  1753. "dependencies": {
  1754. "Microsoft.Extensions.Caching.Abstractions": "2.1.1",
  1755. "Microsoft.Extensions.Options": "2.1.1",
  1756. "System.Data.SqlClient": "4.5.1"
  1757. },
  1758. "compile": {
  1759. "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll": {}
  1760. },
  1761. "runtime": {
  1762. "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll": {}
  1763. }
  1764. },
  1765. "Microsoft.Extensions.Configuration/2.1.1": {
  1766. "type": "package",
  1767. "dependencies": {
  1768. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
  1769. },
  1770. "compile": {
  1771. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  1772. },
  1773. "runtime": {
  1774. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
  1775. }
  1776. },
  1777. "Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
  1778. "type": "package",
  1779. "dependencies": {
  1780. "Microsoft.Extensions.Primitives": "2.1.1"
  1781. },
  1782. "compile": {
  1783. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  1784. },
  1785. "runtime": {
  1786. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  1787. }
  1788. },
  1789. "Microsoft.Extensions.Configuration.Binder/2.1.1": {
  1790. "type": "package",
  1791. "dependencies": {
  1792. "Microsoft.Extensions.Configuration": "2.1.1"
  1793. },
  1794. "compile": {
  1795. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  1796. },
  1797. "runtime": {
  1798. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
  1799. }
  1800. },
  1801. "Microsoft.Extensions.Configuration.CommandLine/2.1.1": {
  1802. "type": "package",
  1803. "dependencies": {
  1804. "Microsoft.Extensions.Configuration": "2.1.1"
  1805. },
  1806. "compile": {
  1807. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
  1808. },
  1809. "runtime": {
  1810. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {}
  1811. }
  1812. },
  1813. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.1.1": {
  1814. "type": "package",
  1815. "dependencies": {
  1816. "Microsoft.Extensions.Configuration": "2.1.1"
  1817. },
  1818. "compile": {
  1819. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  1820. },
  1821. "runtime": {
  1822. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {}
  1823. }
  1824. },
  1825. "Microsoft.Extensions.Configuration.FileExtensions/2.1.1": {
  1826. "type": "package",
  1827. "dependencies": {
  1828. "Microsoft.Extensions.Configuration": "2.1.1",
  1829. "Microsoft.Extensions.FileProviders.Physical": "2.1.1"
  1830. },
  1831. "compile": {
  1832. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  1833. },
  1834. "runtime": {
  1835. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {}
  1836. }
  1837. },
  1838. "Microsoft.Extensions.Configuration.Ini/2.1.1": {
  1839. "type": "package",
  1840. "dependencies": {
  1841. "Microsoft.Extensions.Configuration": "2.1.1",
  1842. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1"
  1843. },
  1844. "compile": {
  1845. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll": {}
  1846. },
  1847. "runtime": {
  1848. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll": {}
  1849. }
  1850. },
  1851. "Microsoft.Extensions.Configuration.Json/2.1.1": {
  1852. "type": "package",
  1853. "dependencies": {
  1854. "Microsoft.Extensions.Configuration": "2.1.1",
  1855. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  1856. "Newtonsoft.Json": "11.0.2"
  1857. },
  1858. "compile": {
  1859. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
  1860. },
  1861. "runtime": {
  1862. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {}
  1863. }
  1864. },
  1865. "Microsoft.Extensions.Configuration.KeyPerFile/2.1.1": {
  1866. "type": "package",
  1867. "dependencies": {
  1868. "Microsoft.Extensions.Configuration": "2.1.1",
  1869. "Microsoft.Extensions.FileProviders.Physical": "2.1.1"
  1870. },
  1871. "compile": {
  1872. "lib/netstandard2.0/Microsoft.Extensions.Configuration.KeyPerFile.dll": {}
  1873. },
  1874. "runtime": {
  1875. "lib/netstandard2.0/Microsoft.Extensions.Configuration.KeyPerFile.dll": {}
  1876. }
  1877. },
  1878. "Microsoft.Extensions.Configuration.UserSecrets/2.1.1": {
  1879. "type": "package",
  1880. "dependencies": {
  1881. "Microsoft.Extensions.Configuration.Json": "2.1.1"
  1882. },
  1883. "compile": {
  1884. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  1885. },
  1886. "runtime": {
  1887. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {}
  1888. },
  1889. "build": {
  1890. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props": {},
  1891. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  1892. }
  1893. },
  1894. "Microsoft.Extensions.Configuration.Xml/2.1.1": {
  1895. "type": "package",
  1896. "dependencies": {
  1897. "Microsoft.Extensions.Configuration": "2.1.1",
  1898. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  1899. "System.Security.Cryptography.Xml": "4.5.0"
  1900. },
  1901. "compile": {
  1902. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll": {}
  1903. },
  1904. "runtime": {
  1905. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll": {}
  1906. }
  1907. },
  1908. "Microsoft.Extensions.DependencyInjection/2.1.1": {
  1909. "type": "package",
  1910. "dependencies": {
  1911. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1"
  1912. },
  1913. "compile": {
  1914. "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {}
  1915. },
  1916. "runtime": {
  1917. "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {}
  1918. }
  1919. },
  1920. "Microsoft.Extensions.DependencyInjection.Abstractions/2.1.1": {
  1921. "type": "package",
  1922. "compile": {
  1923. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  1924. },
  1925. "runtime": {
  1926. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  1927. }
  1928. },
  1929. "Microsoft.Extensions.DependencyModel/2.1.0": {
  1930. "type": "package",
  1931. "dependencies": {
  1932. "Microsoft.DotNet.PlatformAbstractions": "2.1.0",
  1933. "Newtonsoft.Json": "9.0.1",
  1934. "System.Diagnostics.Debug": "4.0.11",
  1935. "System.Dynamic.Runtime": "4.0.11",
  1936. "System.Linq": "4.1.0"
  1937. },
  1938. "compile": {
  1939. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  1940. },
  1941. "runtime": {
  1942. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  1943. }
  1944. },
  1945. "Microsoft.Extensions.DiagnosticAdapter/2.1.0": {
  1946. "type": "package",
  1947. "dependencies": {
  1948. "System.Diagnostics.DiagnosticSource": "4.5.0"
  1949. },
  1950. "compile": {
  1951. "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll": {}
  1952. },
  1953. "runtime": {
  1954. "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll": {}
  1955. }
  1956. },
  1957. "Microsoft.Extensions.FileProviders.Abstractions/2.1.1": {
  1958. "type": "package",
  1959. "dependencies": {
  1960. "Microsoft.Extensions.Primitives": "2.1.1"
  1961. },
  1962. "compile": {
  1963. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  1964. },
  1965. "runtime": {
  1966. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  1967. }
  1968. },
  1969. "Microsoft.Extensions.FileProviders.Composite/2.1.1": {
  1970. "type": "package",
  1971. "dependencies": {
  1972. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1"
  1973. },
  1974. "compile": {
  1975. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
  1976. },
  1977. "runtime": {
  1978. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {}
  1979. }
  1980. },
  1981. "Microsoft.Extensions.FileProviders.Embedded/2.1.1": {
  1982. "type": "package",
  1983. "dependencies": {
  1984. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1"
  1985. },
  1986. "compile": {
  1987. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll": {}
  1988. },
  1989. "runtime": {
  1990. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll": {}
  1991. },
  1992. "build": {
  1993. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props": {},
  1994. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets": {}
  1995. },
  1996. "buildMultiTargeting": {
  1997. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props": {},
  1998. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets": {}
  1999. }
  2000. },
  2001. "Microsoft.Extensions.FileProviders.Physical/2.1.1": {
  2002. "type": "package",
  2003. "dependencies": {
  2004. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  2005. "Microsoft.Extensions.FileSystemGlobbing": "2.1.1"
  2006. },
  2007. "compile": {
  2008. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  2009. },
  2010. "runtime": {
  2011. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {}
  2012. }
  2013. },
  2014. "Microsoft.Extensions.FileSystemGlobbing/2.1.1": {
  2015. "type": "package",
  2016. "compile": {
  2017. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  2018. },
  2019. "runtime": {
  2020. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
  2021. }
  2022. },
  2023. "Microsoft.Extensions.Hosting/2.1.1": {
  2024. "type": "package",
  2025. "dependencies": {
  2026. "Microsoft.Extensions.Configuration": "2.1.1",
  2027. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  2028. "Microsoft.Extensions.FileProviders.Physical": "2.1.1",
  2029. "Microsoft.Extensions.Hosting.Abstractions": "2.1.1",
  2030. "Microsoft.Extensions.Logging": "2.1.1"
  2031. },
  2032. "compile": {
  2033. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {}
  2034. },
  2035. "runtime": {
  2036. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll": {}
  2037. }
  2038. },
  2039. "Microsoft.Extensions.Hosting.Abstractions/2.1.1": {
  2040. "type": "package",
  2041. "dependencies": {
  2042. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
  2043. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  2044. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  2045. "Microsoft.Extensions.Logging.Abstractions": "2.1.1"
  2046. },
  2047. "compile": {
  2048. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  2049. },
  2050. "runtime": {
  2051. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {}
  2052. }
  2053. },
  2054. "Microsoft.Extensions.Http/2.1.1": {
  2055. "type": "package",
  2056. "dependencies": {
  2057. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  2058. "Microsoft.Extensions.Logging": "2.1.1",
  2059. "Microsoft.Extensions.Options": "2.1.1"
  2060. },
  2061. "compile": {
  2062. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {}
  2063. },
  2064. "runtime": {
  2065. "lib/netstandard2.0/Microsoft.Extensions.Http.dll": {}
  2066. }
  2067. },
  2068. "Microsoft.Extensions.Identity.Core/2.1.1": {
  2069. "type": "package",
  2070. "dependencies": {
  2071. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.1.1",
  2072. "Microsoft.Extensions.Logging": "2.1.1",
  2073. "Microsoft.Extensions.Options": "2.1.1",
  2074. "System.ComponentModel.Annotations": "4.5.0"
  2075. },
  2076. "compile": {
  2077. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {}
  2078. },
  2079. "runtime": {
  2080. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {}
  2081. }
  2082. },
  2083. "Microsoft.Extensions.Identity.Stores/2.1.1": {
  2084. "type": "package",
  2085. "dependencies": {
  2086. "Microsoft.Extensions.Identity.Core": "2.1.1",
  2087. "Microsoft.Extensions.Logging": "2.1.1",
  2088. "System.ComponentModel.Annotations": "4.5.0"
  2089. },
  2090. "compile": {
  2091. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {}
  2092. },
  2093. "runtime": {
  2094. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {}
  2095. }
  2096. },
  2097. "Microsoft.Extensions.Localization/2.1.1": {
  2098. "type": "package",
  2099. "dependencies": {
  2100. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  2101. "Microsoft.Extensions.Localization.Abstractions": "2.1.1",
  2102. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  2103. "Microsoft.Extensions.Options": "2.1.1"
  2104. },
  2105. "compile": {
  2106. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {}
  2107. },
  2108. "runtime": {
  2109. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {}
  2110. }
  2111. },
  2112. "Microsoft.Extensions.Localization.Abstractions/2.1.1": {
  2113. "type": "package",
  2114. "compile": {
  2115. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
  2116. },
  2117. "runtime": {
  2118. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
  2119. }
  2120. },
  2121. "Microsoft.Extensions.Logging/2.1.1": {
  2122. "type": "package",
  2123. "dependencies": {
  2124. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  2125. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  2126. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  2127. "Microsoft.Extensions.Options": "2.1.1"
  2128. },
  2129. "compile": {
  2130. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
  2131. },
  2132. "runtime": {
  2133. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {}
  2134. }
  2135. },
  2136. "Microsoft.Extensions.Logging.Abstractions/2.1.1": {
  2137. "type": "package",
  2138. "compile": {
  2139. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  2140. },
  2141. "runtime": {
  2142. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  2143. }
  2144. },
  2145. "Microsoft.Extensions.Logging.Configuration/2.1.1": {
  2146. "type": "package",
  2147. "dependencies": {
  2148. "Microsoft.Extensions.Logging": "2.1.1",
  2149. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.1.1"
  2150. },
  2151. "compile": {
  2152. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
  2153. },
  2154. "runtime": {
  2155. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
  2156. }
  2157. },
  2158. "Microsoft.Extensions.Logging.Console/2.1.1": {
  2159. "type": "package",
  2160. "dependencies": {
  2161. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
  2162. "Microsoft.Extensions.Logging": "2.1.1",
  2163. "Microsoft.Extensions.Logging.Configuration": "2.1.1"
  2164. },
  2165. "compile": {
  2166. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {}
  2167. },
  2168. "runtime": {
  2169. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {}
  2170. }
  2171. },
  2172. "Microsoft.Extensions.Logging.Debug/2.1.1": {
  2173. "type": "package",
  2174. "dependencies": {
  2175. "Microsoft.Extensions.Logging": "2.1.1"
  2176. },
  2177. "compile": {
  2178. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
  2179. },
  2180. "runtime": {
  2181. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {}
  2182. }
  2183. },
  2184. "Microsoft.Extensions.Logging.EventSource/2.1.1": {
  2185. "type": "package",
  2186. "dependencies": {
  2187. "Microsoft.Extensions.Logging": "2.1.1",
  2188. "Newtonsoft.Json": "11.0.2"
  2189. },
  2190. "compile": {
  2191. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {}
  2192. },
  2193. "runtime": {
  2194. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {}
  2195. }
  2196. },
  2197. "Microsoft.Extensions.Logging.TraceSource/2.1.1": {
  2198. "type": "package",
  2199. "dependencies": {
  2200. "Microsoft.Extensions.Logging": "2.1.1"
  2201. },
  2202. "compile": {
  2203. "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll": {}
  2204. },
  2205. "runtime": {
  2206. "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll": {}
  2207. }
  2208. },
  2209. "Microsoft.Extensions.ObjectPool/2.1.1": {
  2210. "type": "package",
  2211. "compile": {
  2212. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {}
  2213. },
  2214. "runtime": {
  2215. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {}
  2216. }
  2217. },
  2218. "Microsoft.Extensions.Options/2.1.1": {
  2219. "type": "package",
  2220. "dependencies": {
  2221. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  2222. "Microsoft.Extensions.Primitives": "2.1.1"
  2223. },
  2224. "compile": {
  2225. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  2226. },
  2227. "runtime": {
  2228. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {}
  2229. }
  2230. },
  2231. "Microsoft.Extensions.Options.ConfigurationExtensions/2.1.1": {
  2232. "type": "package",
  2233. "dependencies": {
  2234. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
  2235. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  2236. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  2237. "Microsoft.Extensions.Options": "2.1.1"
  2238. },
  2239. "compile": {
  2240. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  2241. },
  2242. "runtime": {
  2243. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
  2244. }
  2245. },
  2246. "Microsoft.Extensions.Primitives/2.1.1": {
  2247. "type": "package",
  2248. "dependencies": {
  2249. "System.Memory": "4.5.1",
  2250. "System.Runtime.CompilerServices.Unsafe": "4.5.1"
  2251. },
  2252. "compile": {
  2253. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
  2254. },
  2255. "runtime": {
  2256. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {}
  2257. }
  2258. },
  2259. "Microsoft.Extensions.WebEncoders/2.1.1": {
  2260. "type": "package",
  2261. "dependencies": {
  2262. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  2263. "Microsoft.Extensions.Options": "2.1.1",
  2264. "System.Text.Encodings.Web": "4.5.0"
  2265. },
  2266. "compile": {
  2267. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {}
  2268. },
  2269. "runtime": {
  2270. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {}
  2271. }
  2272. },
  2273. "Microsoft.IdentityModel.Logging/5.2.0": {
  2274. "type": "package",
  2275. "dependencies": {
  2276. "NETStandard.Library": "1.6.1",
  2277. "System.Diagnostics.Tracing": "4.3.0",
  2278. "System.Globalization": "4.3.0",
  2279. "System.IO": "4.3.0",
  2280. "System.IO.FileSystem": "4.3.0"
  2281. },
  2282. "compile": {
  2283. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll": {}
  2284. },
  2285. "runtime": {
  2286. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll": {}
  2287. }
  2288. },
  2289. "Microsoft.IdentityModel.Protocols/5.2.0": {
  2290. "type": "package",
  2291. "dependencies": {
  2292. "Microsoft.IdentityModel.Logging": "5.2.0",
  2293. "Microsoft.IdentityModel.Tokens": "5.2.0",
  2294. "NETStandard.Library": "1.6.1",
  2295. "System.Collections.Specialized": "4.3.0",
  2296. "System.Diagnostics.Contracts": "4.3.0",
  2297. "System.Net.Http": "4.3.0"
  2298. },
  2299. "compile": {
  2300. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll": {}
  2301. },
  2302. "runtime": {
  2303. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll": {}
  2304. }
  2305. },
  2306. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.2.0": {
  2307. "type": "package",
  2308. "dependencies": {
  2309. "Microsoft.IdentityModel.Protocols": "5.2.0",
  2310. "NETStandard.Library": "1.6.1",
  2311. "Newtonsoft.Json": "10.0.1",
  2312. "System.Dynamic.Runtime": "4.3.0",
  2313. "System.IdentityModel.Tokens.Jwt": "5.2.0"
  2314. },
  2315. "compile": {
  2316. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  2317. },
  2318. "runtime": {
  2319. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  2320. }
  2321. },
  2322. "Microsoft.IdentityModel.Protocols.WsFederation/5.2.0": {
  2323. "type": "package",
  2324. "dependencies": {
  2325. "Microsoft.IdentityModel.Protocols": "5.2.0",
  2326. "Microsoft.IdentityModel.Tokens.Saml": "5.2.0",
  2327. "Microsoft.IdentityModel.Xml": "5.2.0",
  2328. "NETStandard.Library": "1.6.1",
  2329. "System.Xml.XmlDocument": "4.3.0"
  2330. },
  2331. "compile": {
  2332. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.WsFederation.dll": {}
  2333. },
  2334. "runtime": {
  2335. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.WsFederation.dll": {}
  2336. }
  2337. },
  2338. "Microsoft.IdentityModel.Tokens/5.2.0": {
  2339. "type": "package",
  2340. "dependencies": {
  2341. "Microsoft.IdentityModel.Logging": "5.2.0",
  2342. "NETStandard.Library": "1.6.1",
  2343. "Newtonsoft.Json": "10.0.1",
  2344. "System.Collections": "4.3.0",
  2345. "System.Diagnostics.Tools": "4.3.0",
  2346. "System.Runtime": "4.3.0",
  2347. "System.Runtime.Extensions": "4.3.0",
  2348. "System.Runtime.InteropServices": "4.3.0",
  2349. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  2350. "System.Runtime.Serialization.Xml": "4.3.0",
  2351. "System.Security.Claims": "4.3.0",
  2352. "System.Security.Cryptography.Algorithms": "4.3.0",
  2353. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2354. "System.Text.RegularExpressions": "4.3.0",
  2355. "System.Threading": "4.3.0"
  2356. },
  2357. "compile": {
  2358. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll": {}
  2359. },
  2360. "runtime": {
  2361. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll": {}
  2362. }
  2363. },
  2364. "Microsoft.IdentityModel.Tokens.Saml/5.2.0": {
  2365. "type": "package",
  2366. "dependencies": {
  2367. "Microsoft.IdentityModel.Tokens": "5.2.0",
  2368. "Microsoft.IdentityModel.Xml": "5.2.0",
  2369. "NETStandard.Library": "1.6.1"
  2370. },
  2371. "compile": {
  2372. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.Saml.dll": {}
  2373. },
  2374. "runtime": {
  2375. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.Saml.dll": {}
  2376. }
  2377. },
  2378. "Microsoft.IdentityModel.Xml/5.2.0": {
  2379. "type": "package",
  2380. "dependencies": {
  2381. "Microsoft.IdentityModel.Tokens": "5.2.0",
  2382. "NETStandard.Library": "1.6.1"
  2383. },
  2384. "compile": {
  2385. "lib/netstandard1.4/Microsoft.IdentityModel.Xml.dll": {}
  2386. },
  2387. "runtime": {
  2388. "lib/netstandard1.4/Microsoft.IdentityModel.Xml.dll": {}
  2389. }
  2390. },
  2391. "Microsoft.Net.Http.Headers/2.1.1": {
  2392. "type": "package",
  2393. "dependencies": {
  2394. "Microsoft.Extensions.Primitives": "2.1.1",
  2395. "System.Buffers": "4.5.0"
  2396. },
  2397. "compile": {
  2398. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {}
  2399. },
  2400. "runtime": {
  2401. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {}
  2402. }
  2403. },
  2404. "Microsoft.NETCore.App/2.1.0": {
  2405. "type": "package",
  2406. "dependencies": {
  2407. "Microsoft.NETCore.DotNetHostPolicy": "2.1.0",
  2408. "Microsoft.NETCore.Platforms": "2.1.0",
  2409. "Microsoft.NETCore.Targets": "2.1.0",
  2410. "NETStandard.Library": "2.0.3"
  2411. },
  2412. "compile": {
  2413. "ref/netcoreapp2.1/Microsoft.CSharp.dll": {},
  2414. "ref/netcoreapp2.1/Microsoft.VisualBasic.dll": {},
  2415. "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll": {},
  2416. "ref/netcoreapp2.1/System.AppContext.dll": {},
  2417. "ref/netcoreapp2.1/System.Buffers.dll": {},
  2418. "ref/netcoreapp2.1/System.Collections.Concurrent.dll": {},
  2419. "ref/netcoreapp2.1/System.Collections.Immutable.dll": {},
  2420. "ref/netcoreapp2.1/System.Collections.NonGeneric.dll": {},
  2421. "ref/netcoreapp2.1/System.Collections.Specialized.dll": {},
  2422. "ref/netcoreapp2.1/System.Collections.dll": {},
  2423. "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll": {},
  2424. "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll": {},
  2425. "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll": {},
  2426. "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll": {},
  2427. "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll": {},
  2428. "ref/netcoreapp2.1/System.ComponentModel.dll": {},
  2429. "ref/netcoreapp2.1/System.Configuration.dll": {},
  2430. "ref/netcoreapp2.1/System.Console.dll": {},
  2431. "ref/netcoreapp2.1/System.Core.dll": {},
  2432. "ref/netcoreapp2.1/System.Data.Common.dll": {},
  2433. "ref/netcoreapp2.1/System.Data.dll": {},
  2434. "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll": {},
  2435. "ref/netcoreapp2.1/System.Diagnostics.Debug.dll": {},
  2436. "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll": {},
  2437. "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll": {},
  2438. "ref/netcoreapp2.1/System.Diagnostics.Process.dll": {},
  2439. "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll": {},
  2440. "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll": {},
  2441. "ref/netcoreapp2.1/System.Diagnostics.Tools.dll": {},
  2442. "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll": {},
  2443. "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll": {},
  2444. "ref/netcoreapp2.1/System.Drawing.Primitives.dll": {},
  2445. "ref/netcoreapp2.1/System.Drawing.dll": {},
  2446. "ref/netcoreapp2.1/System.Dynamic.Runtime.dll": {},
  2447. "ref/netcoreapp2.1/System.Globalization.Calendars.dll": {},
  2448. "ref/netcoreapp2.1/System.Globalization.Extensions.dll": {},
  2449. "ref/netcoreapp2.1/System.Globalization.dll": {},
  2450. "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll": {},
  2451. "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll": {},
  2452. "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll": {},
  2453. "ref/netcoreapp2.1/System.IO.Compression.dll": {},
  2454. "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll": {},
  2455. "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll": {},
  2456. "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll": {},
  2457. "ref/netcoreapp2.1/System.IO.FileSystem.dll": {},
  2458. "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll": {},
  2459. "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll": {},
  2460. "ref/netcoreapp2.1/System.IO.Pipes.dll": {},
  2461. "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll": {},
  2462. "ref/netcoreapp2.1/System.IO.dll": {},
  2463. "ref/netcoreapp2.1/System.Linq.Expressions.dll": {},
  2464. "ref/netcoreapp2.1/System.Linq.Parallel.dll": {},
  2465. "ref/netcoreapp2.1/System.Linq.Queryable.dll": {},
  2466. "ref/netcoreapp2.1/System.Linq.dll": {},
  2467. "ref/netcoreapp2.1/System.Memory.dll": {},
  2468. "ref/netcoreapp2.1/System.Net.Http.dll": {},
  2469. "ref/netcoreapp2.1/System.Net.HttpListener.dll": {},
  2470. "ref/netcoreapp2.1/System.Net.Mail.dll": {},
  2471. "ref/netcoreapp2.1/System.Net.NameResolution.dll": {},
  2472. "ref/netcoreapp2.1/System.Net.NetworkInformation.dll": {},
  2473. "ref/netcoreapp2.1/System.Net.Ping.dll": {},
  2474. "ref/netcoreapp2.1/System.Net.Primitives.dll": {},
  2475. "ref/netcoreapp2.1/System.Net.Requests.dll": {},
  2476. "ref/netcoreapp2.1/System.Net.Security.dll": {},
  2477. "ref/netcoreapp2.1/System.Net.ServicePoint.dll": {},
  2478. "ref/netcoreapp2.1/System.Net.Sockets.dll": {},
  2479. "ref/netcoreapp2.1/System.Net.WebClient.dll": {},
  2480. "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll": {},
  2481. "ref/netcoreapp2.1/System.Net.WebProxy.dll": {},
  2482. "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll": {},
  2483. "ref/netcoreapp2.1/System.Net.WebSockets.dll": {},
  2484. "ref/netcoreapp2.1/System.Net.dll": {},
  2485. "ref/netcoreapp2.1/System.Numerics.Vectors.dll": {},
  2486. "ref/netcoreapp2.1/System.Numerics.dll": {},
  2487. "ref/netcoreapp2.1/System.ObjectModel.dll": {},
  2488. "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll": {},
  2489. "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll": {},
  2490. "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll": {},
  2491. "ref/netcoreapp2.1/System.Reflection.Emit.dll": {},
  2492. "ref/netcoreapp2.1/System.Reflection.Extensions.dll": {},
  2493. "ref/netcoreapp2.1/System.Reflection.Metadata.dll": {},
  2494. "ref/netcoreapp2.1/System.Reflection.Primitives.dll": {},
  2495. "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll": {},
  2496. "ref/netcoreapp2.1/System.Reflection.dll": {},
  2497. "ref/netcoreapp2.1/System.Resources.Reader.dll": {},
  2498. "ref/netcoreapp2.1/System.Resources.ResourceManager.dll": {},
  2499. "ref/netcoreapp2.1/System.Resources.Writer.dll": {},
  2500. "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll": {},
  2501. "ref/netcoreapp2.1/System.Runtime.Extensions.dll": {},
  2502. "ref/netcoreapp2.1/System.Runtime.Handles.dll": {},
  2503. "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll": {},
  2504. "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll": {},
  2505. "ref/netcoreapp2.1/System.Runtime.InteropServices.dll": {},
  2506. "ref/netcoreapp2.1/System.Runtime.Loader.dll": {},
  2507. "ref/netcoreapp2.1/System.Runtime.Numerics.dll": {},
  2508. "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll": {},
  2509. "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll": {},
  2510. "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll": {},
  2511. "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll": {},
  2512. "ref/netcoreapp2.1/System.Runtime.Serialization.dll": {},
  2513. "ref/netcoreapp2.1/System.Runtime.dll": {},
  2514. "ref/netcoreapp2.1/System.Security.Claims.dll": {},
  2515. "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll": {},
  2516. "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll": {},
  2517. "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll": {},
  2518. "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll": {},
  2519. "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll": {},
  2520. "ref/netcoreapp2.1/System.Security.Principal.dll": {},
  2521. "ref/netcoreapp2.1/System.Security.SecureString.dll": {},
  2522. "ref/netcoreapp2.1/System.Security.dll": {},
  2523. "ref/netcoreapp2.1/System.ServiceModel.Web.dll": {},
  2524. "ref/netcoreapp2.1/System.ServiceProcess.dll": {},
  2525. "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll": {},
  2526. "ref/netcoreapp2.1/System.Text.Encoding.dll": {},
  2527. "ref/netcoreapp2.1/System.Text.RegularExpressions.dll": {},
  2528. "ref/netcoreapp2.1/System.Threading.Overlapped.dll": {},
  2529. "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll": {},
  2530. "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll": {},
  2531. "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll": {},
  2532. "ref/netcoreapp2.1/System.Threading.Tasks.dll": {},
  2533. "ref/netcoreapp2.1/System.Threading.Thread.dll": {},
  2534. "ref/netcoreapp2.1/System.Threading.ThreadPool.dll": {},
  2535. "ref/netcoreapp2.1/System.Threading.Timer.dll": {},
  2536. "ref/netcoreapp2.1/System.Threading.dll": {},
  2537. "ref/netcoreapp2.1/System.Transactions.Local.dll": {},
  2538. "ref/netcoreapp2.1/System.Transactions.dll": {},
  2539. "ref/netcoreapp2.1/System.ValueTuple.dll": {},
  2540. "ref/netcoreapp2.1/System.Web.HttpUtility.dll": {},
  2541. "ref/netcoreapp2.1/System.Web.dll": {},
  2542. "ref/netcoreapp2.1/System.Windows.dll": {},
  2543. "ref/netcoreapp2.1/System.Xml.Linq.dll": {},
  2544. "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll": {},
  2545. "ref/netcoreapp2.1/System.Xml.Serialization.dll": {},
  2546. "ref/netcoreapp2.1/System.Xml.XDocument.dll": {},
  2547. "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll": {},
  2548. "ref/netcoreapp2.1/System.Xml.XPath.dll": {},
  2549. "ref/netcoreapp2.1/System.Xml.XmlDocument.dll": {},
  2550. "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll": {},
  2551. "ref/netcoreapp2.1/System.Xml.dll": {},
  2552. "ref/netcoreapp2.1/System.dll": {},
  2553. "ref/netcoreapp2.1/WindowsBase.dll": {},
  2554. "ref/netcoreapp2.1/mscorlib.dll": {},
  2555. "ref/netcoreapp2.1/netstandard.dll": {}
  2556. },
  2557. "build": {
  2558. "build/netcoreapp2.1/Microsoft.NETCore.App.props": {},
  2559. "build/netcoreapp2.1/Microsoft.NETCore.App.targets": {}
  2560. }
  2561. },
  2562. "Microsoft.NETCore.DotNetAppHost/2.1.0": {
  2563. "type": "package"
  2564. },
  2565. "Microsoft.NETCore.DotNetHostPolicy/2.1.0": {
  2566. "type": "package",
  2567. "dependencies": {
  2568. "Microsoft.NETCore.DotNetHostResolver": "2.1.0"
  2569. }
  2570. },
  2571. "Microsoft.NETCore.DotNetHostResolver/2.1.0": {
  2572. "type": "package",
  2573. "dependencies": {
  2574. "Microsoft.NETCore.DotNetAppHost": "2.1.0"
  2575. }
  2576. },
  2577. "Microsoft.NETCore.Platforms/2.1.0": {
  2578. "type": "package",
  2579. "compile": {
  2580. "lib/netstandard1.0/_._": {}
  2581. },
  2582. "runtime": {
  2583. "lib/netstandard1.0/_._": {}
  2584. }
  2585. },
  2586. "Microsoft.NETCore.Targets/2.1.0": {
  2587. "type": "package",
  2588. "compile": {
  2589. "lib/netstandard1.0/_._": {}
  2590. },
  2591. "runtime": {
  2592. "lib/netstandard1.0/_._": {}
  2593. }
  2594. },
  2595. "Microsoft.Win32.Registry/4.5.0": {
  2596. "type": "package",
  2597. "dependencies": {
  2598. "System.Security.AccessControl": "4.5.0",
  2599. "System.Security.Principal.Windows": "4.5.0"
  2600. },
  2601. "compile": {
  2602. "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  2603. },
  2604. "runtime": {
  2605. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  2606. },
  2607. "runtimeTargets": {
  2608. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  2609. "assetType": "runtime",
  2610. "rid": "unix"
  2611. },
  2612. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  2613. "assetType": "runtime",
  2614. "rid": "win"
  2615. }
  2616. }
  2617. },
  2618. "NETStandard.Library/2.0.3": {
  2619. "type": "package",
  2620. "dependencies": {
  2621. "Microsoft.NETCore.Platforms": "1.1.0"
  2622. },
  2623. "compile": {
  2624. "lib/netstandard1.0/_._": {}
  2625. },
  2626. "runtime": {
  2627. "lib/netstandard1.0/_._": {}
  2628. },
  2629. "build": {
  2630. "build/netstandard2.0/NETStandard.Library.targets": {}
  2631. }
  2632. },
  2633. "Newtonsoft.Json/12.0.2": {
  2634. "type": "package",
  2635. "compile": {
  2636. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  2637. },
  2638. "runtime": {
  2639. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  2640. }
  2641. },
  2642. "Newtonsoft.Json.Bson/1.0.1": {
  2643. "type": "package",
  2644. "dependencies": {
  2645. "NETStandard.Library": "1.6.1",
  2646. "Newtonsoft.Json": "10.0.1"
  2647. },
  2648. "compile": {
  2649. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {}
  2650. },
  2651. "runtime": {
  2652. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {}
  2653. }
  2654. },
  2655. "Pipelines.Sockets.Unofficial/2.0.22": {
  2656. "type": "package",
  2657. "dependencies": {
  2658. "System.Buffers": "4.4.0",
  2659. "System.IO.Pipelines": "4.5.1",
  2660. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2661. },
  2662. "compile": {
  2663. "lib/netcoreapp2.1/Pipelines.Sockets.Unofficial.dll": {}
  2664. },
  2665. "runtime": {
  2666. "lib/netcoreapp2.1/Pipelines.Sockets.Unofficial.dll": {}
  2667. }
  2668. },
  2669. "Remotion.Linq/2.2.0": {
  2670. "type": "package",
  2671. "dependencies": {
  2672. "System.Collections": "4.0.11",
  2673. "System.Diagnostics.Debug": "4.0.11",
  2674. "System.Linq": "4.1.0",
  2675. "System.Linq.Expressions": "4.1.0",
  2676. "System.Linq.Queryable": "4.0.1",
  2677. "System.ObjectModel": "4.0.12",
  2678. "System.Reflection": "4.1.0",
  2679. "System.Reflection.Extensions": "4.0.1",
  2680. "System.Runtime": "4.1.0",
  2681. "System.Runtime.Extensions": "4.1.0",
  2682. "System.Threading": "4.0.11"
  2683. },
  2684. "compile": {
  2685. "lib/netstandard1.0/Remotion.Linq.dll": {}
  2686. },
  2687. "runtime": {
  2688. "lib/netstandard1.0/Remotion.Linq.dll": {}
  2689. }
  2690. },
  2691. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2692. "type": "package",
  2693. "runtimeTargets": {
  2694. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2695. "assetType": "native",
  2696. "rid": "debian.8-x64"
  2697. }
  2698. }
  2699. },
  2700. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2701. "type": "package",
  2702. "runtimeTargets": {
  2703. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2704. "assetType": "native",
  2705. "rid": "fedora.23-x64"
  2706. }
  2707. }
  2708. },
  2709. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2710. "type": "package",
  2711. "runtimeTargets": {
  2712. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2713. "assetType": "native",
  2714. "rid": "fedora.24-x64"
  2715. }
  2716. }
  2717. },
  2718. "runtime.native.System/4.3.0": {
  2719. "type": "package",
  2720. "dependencies": {
  2721. "Microsoft.NETCore.Platforms": "1.1.0",
  2722. "Microsoft.NETCore.Targets": "1.1.0"
  2723. },
  2724. "compile": {
  2725. "lib/netstandard1.0/_._": {}
  2726. },
  2727. "runtime": {
  2728. "lib/netstandard1.0/_._": {}
  2729. }
  2730. },
  2731. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2732. "type": "package",
  2733. "dependencies": {
  2734. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  2735. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  2736. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  2737. }
  2738. },
  2739. "runtime.native.System.IO.Compression/4.3.0": {
  2740. "type": "package",
  2741. "dependencies": {
  2742. "Microsoft.NETCore.Platforms": "1.1.0",
  2743. "Microsoft.NETCore.Targets": "1.1.0"
  2744. },
  2745. "compile": {
  2746. "lib/netstandard1.0/_._": {}
  2747. },
  2748. "runtime": {
  2749. "lib/netstandard1.0/_._": {}
  2750. }
  2751. },
  2752. "runtime.native.System.Net.Http/4.3.0": {
  2753. "type": "package",
  2754. "dependencies": {
  2755. "Microsoft.NETCore.Platforms": "1.1.0",
  2756. "Microsoft.NETCore.Targets": "1.1.0"
  2757. },
  2758. "compile": {
  2759. "lib/netstandard1.0/_._": {}
  2760. },
  2761. "runtime": {
  2762. "lib/netstandard1.0/_._": {}
  2763. }
  2764. },
  2765. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2766. "type": "package",
  2767. "dependencies": {
  2768. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  2769. },
  2770. "compile": {
  2771. "lib/netstandard1.0/_._": {}
  2772. },
  2773. "runtime": {
  2774. "lib/netstandard1.0/_._": {}
  2775. }
  2776. },
  2777. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2778. "type": "package",
  2779. "dependencies": {
  2780. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2781. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2782. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2783. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2784. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2785. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2786. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2787. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2788. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2789. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2790. },
  2791. "compile": {
  2792. "lib/netstandard1.0/_._": {}
  2793. },
  2794. "runtime": {
  2795. "lib/netstandard1.0/_._": {}
  2796. }
  2797. },
  2798. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2799. "type": "package",
  2800. "runtimeTargets": {
  2801. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2802. "assetType": "native",
  2803. "rid": "opensuse.13.2-x64"
  2804. }
  2805. }
  2806. },
  2807. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2808. "type": "package",
  2809. "runtimeTargets": {
  2810. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2811. "assetType": "native",
  2812. "rid": "opensuse.42.1-x64"
  2813. }
  2814. }
  2815. },
  2816. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2817. "type": "package",
  2818. "runtimeTargets": {
  2819. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  2820. "assetType": "native",
  2821. "rid": "osx.10.10-x64"
  2822. }
  2823. }
  2824. },
  2825. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2826. "type": "package",
  2827. "runtimeTargets": {
  2828. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  2829. "assetType": "native",
  2830. "rid": "osx.10.10-x64"
  2831. }
  2832. }
  2833. },
  2834. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2835. "type": "package",
  2836. "runtimeTargets": {
  2837. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2838. "assetType": "native",
  2839. "rid": "rhel.7-x64"
  2840. }
  2841. }
  2842. },
  2843. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2844. "type": "package",
  2845. "runtimeTargets": {
  2846. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2847. "assetType": "native",
  2848. "rid": "ubuntu.14.04-x64"
  2849. }
  2850. }
  2851. },
  2852. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2853. "type": "package",
  2854. "runtimeTargets": {
  2855. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2856. "assetType": "native",
  2857. "rid": "ubuntu.16.04-x64"
  2858. }
  2859. }
  2860. },
  2861. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2862. "type": "package",
  2863. "runtimeTargets": {
  2864. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2865. "assetType": "native",
  2866. "rid": "ubuntu.16.10-x64"
  2867. }
  2868. }
  2869. },
  2870. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2871. "type": "package",
  2872. "runtimeTargets": {
  2873. "runtimes/win-arm64/native/sni.dll": {
  2874. "assetType": "native",
  2875. "rid": "win-arm64"
  2876. }
  2877. }
  2878. },
  2879. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2880. "type": "package",
  2881. "runtimeTargets": {
  2882. "runtimes/win-x64/native/sni.dll": {
  2883. "assetType": "native",
  2884. "rid": "win-x64"
  2885. }
  2886. }
  2887. },
  2888. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  2889. "type": "package",
  2890. "runtimeTargets": {
  2891. "runtimes/win-x86/native/sni.dll": {
  2892. "assetType": "native",
  2893. "rid": "win-x86"
  2894. }
  2895. }
  2896. },
  2897. "SafeObjectPool/2.1.1": {
  2898. "type": "package",
  2899. "compile": {
  2900. "lib/netstandard2.0/SafeObjectPool.dll": {}
  2901. },
  2902. "runtime": {
  2903. "lib/netstandard2.0/SafeObjectPool.dll": {}
  2904. }
  2905. },
  2906. "StackExchange.Redis/2.0.601": {
  2907. "type": "package",
  2908. "dependencies": {
  2909. "Pipelines.Sockets.Unofficial": "2.0.22",
  2910. "System.Diagnostics.PerformanceCounter": "4.5.0",
  2911. "System.IO.Pipelines": "4.5.1",
  2912. "System.Threading.Channels": "4.5.0"
  2913. },
  2914. "compile": {
  2915. "lib/netstandard2.0/StackExchange.Redis.dll": {}
  2916. },
  2917. "runtime": {
  2918. "lib/netstandard2.0/StackExchange.Redis.dll": {}
  2919. }
  2920. },
  2921. "System.AppContext/4.3.0": {
  2922. "type": "package",
  2923. "dependencies": {
  2924. "System.Runtime": "4.3.0"
  2925. },
  2926. "compile": {
  2927. "ref/netstandard1.6/System.AppContext.dll": {}
  2928. },
  2929. "runtime": {
  2930. "lib/netstandard1.6/System.AppContext.dll": {}
  2931. }
  2932. },
  2933. "System.Buffers/4.5.0": {
  2934. "type": "package",
  2935. "compile": {
  2936. "ref/netcoreapp2.0/_._": {}
  2937. },
  2938. "runtime": {
  2939. "lib/netcoreapp2.0/_._": {}
  2940. }
  2941. },
  2942. "System.Collections/4.3.0": {
  2943. "type": "package",
  2944. "dependencies": {
  2945. "Microsoft.NETCore.Platforms": "1.1.0",
  2946. "Microsoft.NETCore.Targets": "1.1.0",
  2947. "System.Runtime": "4.3.0"
  2948. },
  2949. "compile": {
  2950. "ref/netstandard1.3/System.Collections.dll": {}
  2951. }
  2952. },
  2953. "System.Collections.Concurrent/4.3.0": {
  2954. "type": "package",
  2955. "dependencies": {
  2956. "System.Collections": "4.3.0",
  2957. "System.Diagnostics.Debug": "4.3.0",
  2958. "System.Diagnostics.Tracing": "4.3.0",
  2959. "System.Globalization": "4.3.0",
  2960. "System.Reflection": "4.3.0",
  2961. "System.Resources.ResourceManager": "4.3.0",
  2962. "System.Runtime": "4.3.0",
  2963. "System.Runtime.Extensions": "4.3.0",
  2964. "System.Threading": "4.3.0",
  2965. "System.Threading.Tasks": "4.3.0"
  2966. },
  2967. "compile": {
  2968. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  2969. },
  2970. "runtime": {
  2971. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  2972. }
  2973. },
  2974. "System.Collections.Immutable/1.5.0": {
  2975. "type": "package",
  2976. "compile": {
  2977. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  2978. },
  2979. "runtime": {
  2980. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  2981. }
  2982. },
  2983. "System.Collections.NonGeneric/4.3.0": {
  2984. "type": "package",
  2985. "dependencies": {
  2986. "System.Diagnostics.Debug": "4.3.0",
  2987. "System.Globalization": "4.3.0",
  2988. "System.Resources.ResourceManager": "4.3.0",
  2989. "System.Runtime": "4.3.0",
  2990. "System.Runtime.Extensions": "4.3.0",
  2991. "System.Threading": "4.3.0"
  2992. },
  2993. "compile": {
  2994. "ref/netstandard1.3/_._": {}
  2995. },
  2996. "runtime": {
  2997. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  2998. }
  2999. },
  3000. "System.Collections.Specialized/4.3.0": {
  3001. "type": "package",
  3002. "dependencies": {
  3003. "System.Collections.NonGeneric": "4.3.0",
  3004. "System.Globalization": "4.3.0",
  3005. "System.Globalization.Extensions": "4.3.0",
  3006. "System.Resources.ResourceManager": "4.3.0",
  3007. "System.Runtime": "4.3.0",
  3008. "System.Runtime.Extensions": "4.3.0",
  3009. "System.Threading": "4.3.0"
  3010. },
  3011. "compile": {
  3012. "ref/netstandard1.3/System.Collections.Specialized.dll": {}
  3013. },
  3014. "runtime": {
  3015. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  3016. }
  3017. },
  3018. "System.ComponentModel.Annotations/4.5.0": {
  3019. "type": "package",
  3020. "compile": {
  3021. "ref/netcoreapp2.0/_._": {}
  3022. },
  3023. "runtime": {
  3024. "lib/netcoreapp2.0/_._": {}
  3025. }
  3026. },
  3027. "System.Configuration.ConfigurationManager/4.5.0": {
  3028. "type": "package",
  3029. "dependencies": {
  3030. "System.Security.Cryptography.ProtectedData": "4.5.0",
  3031. "System.Security.Permissions": "4.5.0"
  3032. },
  3033. "compile": {
  3034. "ref/netstandard2.0/_._": {}
  3035. },
  3036. "runtime": {
  3037. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  3038. }
  3039. },
  3040. "System.Console/4.3.0": {
  3041. "type": "package",
  3042. "dependencies": {
  3043. "Microsoft.NETCore.Platforms": "1.1.0",
  3044. "Microsoft.NETCore.Targets": "1.1.0",
  3045. "System.IO": "4.3.0",
  3046. "System.Runtime": "4.3.0",
  3047. "System.Text.Encoding": "4.3.0"
  3048. },
  3049. "compile": {
  3050. "ref/netstandard1.3/System.Console.dll": {}
  3051. }
  3052. },
  3053. "System.Data.SqlClient/4.5.1": {
  3054. "type": "package",
  3055. "dependencies": {
  3056. "Microsoft.Win32.Registry": "4.5.0",
  3057. "System.Security.Principal.Windows": "4.5.0",
  3058. "System.Text.Encoding.CodePages": "4.5.0",
  3059. "runtime.native.System.Data.SqlClient.sni": "4.4.0"
  3060. },
  3061. "compile": {
  3062. "ref/netcoreapp2.1/System.Data.SqlClient.dll": {}
  3063. },
  3064. "runtime": {
  3065. "lib/netcoreapp2.1/System.Data.SqlClient.dll": {}
  3066. },
  3067. "runtimeTargets": {
  3068. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  3069. "assetType": "runtime",
  3070. "rid": "unix"
  3071. },
  3072. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  3073. "assetType": "runtime",
  3074. "rid": "win"
  3075. }
  3076. }
  3077. },
  3078. "System.Diagnostics.Contracts/4.3.0": {
  3079. "type": "package",
  3080. "dependencies": {
  3081. "System.Runtime": "4.3.0"
  3082. },
  3083. "compile": {
  3084. "ref/netstandard1.0/System.Diagnostics.Contracts.dll": {}
  3085. },
  3086. "runtime": {
  3087. "lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
  3088. }
  3089. },
  3090. "System.Diagnostics.Debug/4.3.0": {
  3091. "type": "package",
  3092. "dependencies": {
  3093. "Microsoft.NETCore.Platforms": "1.1.0",
  3094. "Microsoft.NETCore.Targets": "1.1.0",
  3095. "System.Runtime": "4.3.0"
  3096. },
  3097. "compile": {
  3098. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  3099. }
  3100. },
  3101. "System.Diagnostics.DiagnosticSource/4.5.0": {
  3102. "type": "package",
  3103. "compile": {
  3104. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  3105. },
  3106. "runtime": {
  3107. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  3108. }
  3109. },
  3110. "System.Diagnostics.FileVersionInfo/4.3.0": {
  3111. "type": "package",
  3112. "dependencies": {
  3113. "Microsoft.NETCore.Platforms": "1.1.0",
  3114. "System.Globalization": "4.3.0",
  3115. "System.IO": "4.3.0",
  3116. "System.IO.FileSystem": "4.3.0",
  3117. "System.IO.FileSystem.Primitives": "4.3.0",
  3118. "System.Reflection.Metadata": "1.4.1",
  3119. "System.Runtime": "4.3.0",
  3120. "System.Runtime.Extensions": "4.3.0",
  3121. "System.Runtime.InteropServices": "4.3.0"
  3122. },
  3123. "compile": {
  3124. "ref/netstandard1.3/_._": {}
  3125. },
  3126. "runtimeTargets": {
  3127. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
  3128. "assetType": "runtime",
  3129. "rid": "unix"
  3130. },
  3131. "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
  3132. "assetType": "runtime",
  3133. "rid": "win"
  3134. }
  3135. }
  3136. },
  3137. "System.Diagnostics.PerformanceCounter/4.5.0": {
  3138. "type": "package",
  3139. "dependencies": {
  3140. "Microsoft.NETCore.Platforms": "2.0.0",
  3141. "Microsoft.Win32.Registry": "4.5.0",
  3142. "System.Configuration.ConfigurationManager": "4.5.0",
  3143. "System.Security.Principal.Windows": "4.5.0"
  3144. },
  3145. "compile": {
  3146. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {}
  3147. },
  3148. "runtime": {
  3149. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {}
  3150. },
  3151. "runtimeTargets": {
  3152. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
  3153. "assetType": "runtime",
  3154. "rid": "win"
  3155. }
  3156. }
  3157. },
  3158. "System.Diagnostics.StackTrace/4.3.0": {
  3159. "type": "package",
  3160. "dependencies": {
  3161. "System.IO.FileSystem": "4.3.0",
  3162. "System.Reflection": "4.3.0",
  3163. "System.Reflection.Metadata": "1.4.1",
  3164. "System.Runtime": "4.3.0"
  3165. },
  3166. "compile": {
  3167. "ref/netstandard1.3/_._": {}
  3168. },
  3169. "runtime": {
  3170. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
  3171. }
  3172. },
  3173. "System.Diagnostics.Tools/4.3.0": {
  3174. "type": "package",
  3175. "dependencies": {
  3176. "Microsoft.NETCore.Platforms": "1.1.0",
  3177. "Microsoft.NETCore.Targets": "1.1.0",
  3178. "System.Runtime": "4.3.0"
  3179. },
  3180. "compile": {
  3181. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  3182. }
  3183. },
  3184. "System.Diagnostics.Tracing/4.3.0": {
  3185. "type": "package",
  3186. "dependencies": {
  3187. "Microsoft.NETCore.Platforms": "1.1.0",
  3188. "Microsoft.NETCore.Targets": "1.1.0",
  3189. "System.Runtime": "4.3.0"
  3190. },
  3191. "compile": {
  3192. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  3193. }
  3194. },
  3195. "System.Dynamic.Runtime/4.3.0": {
  3196. "type": "package",
  3197. "dependencies": {
  3198. "System.Collections": "4.3.0",
  3199. "System.Diagnostics.Debug": "4.3.0",
  3200. "System.Linq": "4.3.0",
  3201. "System.Linq.Expressions": "4.3.0",
  3202. "System.ObjectModel": "4.3.0",
  3203. "System.Reflection": "4.3.0",
  3204. "System.Reflection.Emit": "4.3.0",
  3205. "System.Reflection.Emit.ILGeneration": "4.3.0",
  3206. "System.Reflection.Primitives": "4.3.0",
  3207. "System.Reflection.TypeExtensions": "4.3.0",
  3208. "System.Resources.ResourceManager": "4.3.0",
  3209. "System.Runtime": "4.3.0",
  3210. "System.Runtime.Extensions": "4.3.0",
  3211. "System.Threading": "4.3.0"
  3212. },
  3213. "compile": {
  3214. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  3215. },
  3216. "runtime": {
  3217. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  3218. }
  3219. },
  3220. "System.Globalization/4.3.0": {
  3221. "type": "package",
  3222. "dependencies": {
  3223. "Microsoft.NETCore.Platforms": "1.1.0",
  3224. "Microsoft.NETCore.Targets": "1.1.0",
  3225. "System.Runtime": "4.3.0"
  3226. },
  3227. "compile": {
  3228. "ref/netstandard1.3/System.Globalization.dll": {}
  3229. }
  3230. },
  3231. "System.Globalization.Calendars/4.3.0": {
  3232. "type": "package",
  3233. "dependencies": {
  3234. "Microsoft.NETCore.Platforms": "1.1.0",
  3235. "Microsoft.NETCore.Targets": "1.1.0",
  3236. "System.Globalization": "4.3.0",
  3237. "System.Runtime": "4.3.0"
  3238. },
  3239. "compile": {
  3240. "ref/netstandard1.3/_._": {}
  3241. }
  3242. },
  3243. "System.Globalization.Extensions/4.3.0": {
  3244. "type": "package",
  3245. "dependencies": {
  3246. "Microsoft.NETCore.Platforms": "1.1.0",
  3247. "System.Globalization": "4.3.0",
  3248. "System.Resources.ResourceManager": "4.3.0",
  3249. "System.Runtime": "4.3.0",
  3250. "System.Runtime.Extensions": "4.3.0",
  3251. "System.Runtime.InteropServices": "4.3.0"
  3252. },
  3253. "compile": {
  3254. "ref/netstandard1.3/_._": {}
  3255. },
  3256. "runtimeTargets": {
  3257. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  3258. "assetType": "runtime",
  3259. "rid": "unix"
  3260. },
  3261. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  3262. "assetType": "runtime",
  3263. "rid": "win"
  3264. }
  3265. }
  3266. },
  3267. "System.IdentityModel.Tokens.Jwt/5.2.0": {
  3268. "type": "package",
  3269. "dependencies": {
  3270. "Microsoft.IdentityModel.Tokens": "5.2.0",
  3271. "NETStandard.Library": "1.6.1",
  3272. "Newtonsoft.Json": "10.0.1"
  3273. },
  3274. "compile": {
  3275. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll": {}
  3276. },
  3277. "runtime": {
  3278. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll": {}
  3279. }
  3280. },
  3281. "System.Interactive.Async/3.1.1": {
  3282. "type": "package",
  3283. "dependencies": {
  3284. "NETStandard.Library": "1.6.0"
  3285. },
  3286. "compile": {
  3287. "lib/netstandard1.3/System.Interactive.Async.dll": {}
  3288. },
  3289. "runtime": {
  3290. "lib/netstandard1.3/System.Interactive.Async.dll": {}
  3291. }
  3292. },
  3293. "System.IO/4.3.0": {
  3294. "type": "package",
  3295. "dependencies": {
  3296. "Microsoft.NETCore.Platforms": "1.1.0",
  3297. "Microsoft.NETCore.Targets": "1.1.0",
  3298. "System.Runtime": "4.3.0",
  3299. "System.Text.Encoding": "4.3.0",
  3300. "System.Threading.Tasks": "4.3.0"
  3301. },
  3302. "compile": {
  3303. "ref/netstandard1.5/System.IO.dll": {}
  3304. }
  3305. },
  3306. "System.IO.Compression/4.3.0": {
  3307. "type": "package",
  3308. "dependencies": {
  3309. "Microsoft.NETCore.Platforms": "1.1.0",
  3310. "System.Buffers": "4.3.0",
  3311. "System.Collections": "4.3.0",
  3312. "System.Diagnostics.Debug": "4.3.0",
  3313. "System.IO": "4.3.0",
  3314. "System.Resources.ResourceManager": "4.3.0",
  3315. "System.Runtime": "4.3.0",
  3316. "System.Runtime.Extensions": "4.3.0",
  3317. "System.Runtime.Handles": "4.3.0",
  3318. "System.Runtime.InteropServices": "4.3.0",
  3319. "System.Text.Encoding": "4.3.0",
  3320. "System.Threading": "4.3.0",
  3321. "System.Threading.Tasks": "4.3.0",
  3322. "runtime.native.System": "4.3.0",
  3323. "runtime.native.System.IO.Compression": "4.3.0"
  3324. },
  3325. "compile": {
  3326. "ref/netstandard1.3/System.IO.Compression.dll": {}
  3327. },
  3328. "runtimeTargets": {
  3329. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  3330. "assetType": "runtime",
  3331. "rid": "unix"
  3332. },
  3333. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  3334. "assetType": "runtime",
  3335. "rid": "win"
  3336. }
  3337. }
  3338. },
  3339. "System.IO.FileSystem/4.3.0": {
  3340. "type": "package",
  3341. "dependencies": {
  3342. "Microsoft.NETCore.Platforms": "1.1.0",
  3343. "Microsoft.NETCore.Targets": "1.1.0",
  3344. "System.IO": "4.3.0",
  3345. "System.IO.FileSystem.Primitives": "4.3.0",
  3346. "System.Runtime": "4.3.0",
  3347. "System.Runtime.Handles": "4.3.0",
  3348. "System.Text.Encoding": "4.3.0",
  3349. "System.Threading.Tasks": "4.3.0"
  3350. },
  3351. "compile": {
  3352. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  3353. }
  3354. },
  3355. "System.IO.FileSystem.Primitives/4.3.0": {
  3356. "type": "package",
  3357. "dependencies": {
  3358. "System.Runtime": "4.3.0"
  3359. },
  3360. "compile": {
  3361. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  3362. },
  3363. "runtime": {
  3364. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  3365. }
  3366. },
  3367. "System.IO.Pipelines/4.5.1": {
  3368. "type": "package",
  3369. "compile": {
  3370. "ref/netstandard1.3/System.IO.Pipelines.dll": {}
  3371. },
  3372. "runtime": {
  3373. "lib/netcoreapp2.1/System.IO.Pipelines.dll": {}
  3374. }
  3375. },
  3376. "System.Linq/4.3.0": {
  3377. "type": "package",
  3378. "dependencies": {
  3379. "System.Collections": "4.3.0",
  3380. "System.Diagnostics.Debug": "4.3.0",
  3381. "System.Resources.ResourceManager": "4.3.0",
  3382. "System.Runtime": "4.3.0",
  3383. "System.Runtime.Extensions": "4.3.0"
  3384. },
  3385. "compile": {
  3386. "ref/netstandard1.6/System.Linq.dll": {}
  3387. },
  3388. "runtime": {
  3389. "lib/netstandard1.6/System.Linq.dll": {}
  3390. }
  3391. },
  3392. "System.Linq.Expressions/4.3.0": {
  3393. "type": "package",
  3394. "dependencies": {
  3395. "System.Collections": "4.3.0",
  3396. "System.Diagnostics.Debug": "4.3.0",
  3397. "System.Globalization": "4.3.0",
  3398. "System.IO": "4.3.0",
  3399. "System.Linq": "4.3.0",
  3400. "System.ObjectModel": "4.3.0",
  3401. "System.Reflection": "4.3.0",
  3402. "System.Reflection.Emit": "4.3.0",
  3403. "System.Reflection.Emit.ILGeneration": "4.3.0",
  3404. "System.Reflection.Emit.Lightweight": "4.3.0",
  3405. "System.Reflection.Extensions": "4.3.0",
  3406. "System.Reflection.Primitives": "4.3.0",
  3407. "System.Reflection.TypeExtensions": "4.3.0",
  3408. "System.Resources.ResourceManager": "4.3.0",
  3409. "System.Runtime": "4.3.0",
  3410. "System.Runtime.Extensions": "4.3.0",
  3411. "System.Threading": "4.3.0"
  3412. },
  3413. "compile": {
  3414. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  3415. },
  3416. "runtime": {
  3417. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  3418. }
  3419. },
  3420. "System.Linq.Queryable/4.0.1": {
  3421. "type": "package",
  3422. "dependencies": {
  3423. "System.Collections": "4.0.11",
  3424. "System.Diagnostics.Debug": "4.0.11",
  3425. "System.Linq": "4.1.0",
  3426. "System.Linq.Expressions": "4.1.0",
  3427. "System.Reflection": "4.1.0",
  3428. "System.Reflection.Extensions": "4.0.1",
  3429. "System.Resources.ResourceManager": "4.0.1",
  3430. "System.Runtime": "4.1.0"
  3431. },
  3432. "compile": {
  3433. "ref/netstandard1.0/System.Linq.Queryable.dll": {}
  3434. },
  3435. "runtime": {
  3436. "lib/netstandard1.3/System.Linq.Queryable.dll": {}
  3437. }
  3438. },
  3439. "System.Memory/4.5.1": {
  3440. "type": "package",
  3441. "compile": {
  3442. "ref/netcoreapp2.1/_._": {}
  3443. },
  3444. "runtime": {
  3445. "lib/netcoreapp2.1/_._": {}
  3446. }
  3447. },
  3448. "System.Net.Http/4.3.0": {
  3449. "type": "package",
  3450. "dependencies": {
  3451. "Microsoft.NETCore.Platforms": "1.1.0",
  3452. "System.Collections": "4.3.0",
  3453. "System.Diagnostics.Debug": "4.3.0",
  3454. "System.Diagnostics.DiagnosticSource": "4.3.0",
  3455. "System.Diagnostics.Tracing": "4.3.0",
  3456. "System.Globalization": "4.3.0",
  3457. "System.Globalization.Extensions": "4.3.0",
  3458. "System.IO": "4.3.0",
  3459. "System.IO.FileSystem": "4.3.0",
  3460. "System.Net.Primitives": "4.3.0",
  3461. "System.Resources.ResourceManager": "4.3.0",
  3462. "System.Runtime": "4.3.0",
  3463. "System.Runtime.Extensions": "4.3.0",
  3464. "System.Runtime.Handles": "4.3.0",
  3465. "System.Runtime.InteropServices": "4.3.0",
  3466. "System.Security.Cryptography.Algorithms": "4.3.0",
  3467. "System.Security.Cryptography.Encoding": "4.3.0",
  3468. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3469. "System.Security.Cryptography.Primitives": "4.3.0",
  3470. "System.Security.Cryptography.X509Certificates": "4.3.0",
  3471. "System.Text.Encoding": "4.3.0",
  3472. "System.Threading": "4.3.0",
  3473. "System.Threading.Tasks": "4.3.0",
  3474. "runtime.native.System": "4.3.0",
  3475. "runtime.native.System.Net.Http": "4.3.0",
  3476. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3477. },
  3478. "compile": {
  3479. "ref/netstandard1.3/System.Net.Http.dll": {}
  3480. },
  3481. "runtimeTargets": {
  3482. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  3483. "assetType": "runtime",
  3484. "rid": "unix"
  3485. },
  3486. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  3487. "assetType": "runtime",
  3488. "rid": "win"
  3489. }
  3490. }
  3491. },
  3492. "System.Net.Primitives/4.3.0": {
  3493. "type": "package",
  3494. "dependencies": {
  3495. "Microsoft.NETCore.Platforms": "1.1.0",
  3496. "Microsoft.NETCore.Targets": "1.1.0",
  3497. "System.Runtime": "4.3.0",
  3498. "System.Runtime.Handles": "4.3.0"
  3499. },
  3500. "compile": {
  3501. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  3502. }
  3503. },
  3504. "System.Net.WebSockets.WebSocketProtocol/4.5.1": {
  3505. "type": "package",
  3506. "compile": {
  3507. "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll": {}
  3508. },
  3509. "runtime": {
  3510. "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": {}
  3511. }
  3512. },
  3513. "System.Numerics.Vectors/4.5.0": {
  3514. "type": "package",
  3515. "compile": {
  3516. "ref/netcoreapp2.0/_._": {}
  3517. },
  3518. "runtime": {
  3519. "lib/netcoreapp2.0/_._": {}
  3520. }
  3521. },
  3522. "System.ObjectModel/4.3.0": {
  3523. "type": "package",
  3524. "dependencies": {
  3525. "System.Collections": "4.3.0",
  3526. "System.Diagnostics.Debug": "4.3.0",
  3527. "System.Resources.ResourceManager": "4.3.0",
  3528. "System.Runtime": "4.3.0",
  3529. "System.Threading": "4.3.0"
  3530. },
  3531. "compile": {
  3532. "ref/netstandard1.3/System.ObjectModel.dll": {}
  3533. },
  3534. "runtime": {
  3535. "lib/netstandard1.3/System.ObjectModel.dll": {}
  3536. }
  3537. },
  3538. "System.Private.DataContractSerialization/4.3.0": {
  3539. "type": "package",
  3540. "dependencies": {
  3541. "System.Collections": "4.3.0",
  3542. "System.Collections.Concurrent": "4.3.0",
  3543. "System.Diagnostics.Debug": "4.3.0",
  3544. "System.Globalization": "4.3.0",
  3545. "System.IO": "4.3.0",
  3546. "System.Linq": "4.3.0",
  3547. "System.Reflection": "4.3.0",
  3548. "System.Reflection.Emit.ILGeneration": "4.3.0",
  3549. "System.Reflection.Emit.Lightweight": "4.3.0",
  3550. "System.Reflection.Extensions": "4.3.0",
  3551. "System.Reflection.Primitives": "4.3.0",
  3552. "System.Reflection.TypeExtensions": "4.3.0",
  3553. "System.Resources.ResourceManager": "4.3.0",
  3554. "System.Runtime": "4.3.0",
  3555. "System.Runtime.Extensions": "4.3.0",
  3556. "System.Runtime.Serialization.Primitives": "4.3.0",
  3557. "System.Text.Encoding": "4.3.0",
  3558. "System.Text.Encoding.Extensions": "4.3.0",
  3559. "System.Text.RegularExpressions": "4.3.0",
  3560. "System.Threading": "4.3.0",
  3561. "System.Threading.Tasks": "4.3.0",
  3562. "System.Xml.ReaderWriter": "4.3.0",
  3563. "System.Xml.XDocument": "4.3.0",
  3564. "System.Xml.XmlDocument": "4.3.0",
  3565. "System.Xml.XmlSerializer": "4.3.0"
  3566. },
  3567. "compile": {
  3568. "ref/netstandard/_._": {}
  3569. },
  3570. "runtime": {
  3571. "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
  3572. }
  3573. },
  3574. "System.Reflection/4.3.0": {
  3575. "type": "package",
  3576. "dependencies": {
  3577. "Microsoft.NETCore.Platforms": "1.1.0",
  3578. "Microsoft.NETCore.Targets": "1.1.0",
  3579. "System.IO": "4.3.0",
  3580. "System.Reflection.Primitives": "4.3.0",
  3581. "System.Runtime": "4.3.0"
  3582. },
  3583. "compile": {
  3584. "ref/netstandard1.5/System.Reflection.dll": {}
  3585. }
  3586. },
  3587. "System.Reflection.Emit/4.3.0": {
  3588. "type": "package",
  3589. "dependencies": {
  3590. "System.IO": "4.3.0",
  3591. "System.Reflection": "4.3.0",
  3592. "System.Reflection.Emit.ILGeneration": "4.3.0",
  3593. "System.Reflection.Primitives": "4.3.0",
  3594. "System.Runtime": "4.3.0"
  3595. },
  3596. "compile": {
  3597. "ref/netstandard1.1/System.Reflection.Emit.dll": {}
  3598. },
  3599. "runtime": {
  3600. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  3601. }
  3602. },
  3603. "System.Reflection.Emit.ILGeneration/4.3.0": {
  3604. "type": "package",
  3605. "dependencies": {
  3606. "System.Reflection": "4.3.0",
  3607. "System.Reflection.Primitives": "4.3.0",
  3608. "System.Runtime": "4.3.0"
  3609. },
  3610. "compile": {
  3611. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
  3612. },
  3613. "runtime": {
  3614. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  3615. }
  3616. },
  3617. "System.Reflection.Emit.Lightweight/4.3.0": {
  3618. "type": "package",
  3619. "dependencies": {
  3620. "System.Reflection": "4.3.0",
  3621. "System.Reflection.Emit.ILGeneration": "4.3.0",
  3622. "System.Reflection.Primitives": "4.3.0",
  3623. "System.Runtime": "4.3.0"
  3624. },
  3625. "compile": {
  3626. "ref/netstandard1.0/_._": {}
  3627. },
  3628. "runtime": {
  3629. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  3630. }
  3631. },
  3632. "System.Reflection.Extensions/4.3.0": {
  3633. "type": "package",
  3634. "dependencies": {
  3635. "Microsoft.NETCore.Platforms": "1.1.0",
  3636. "Microsoft.NETCore.Targets": "1.1.0",
  3637. "System.Reflection": "4.3.0",
  3638. "System.Runtime": "4.3.0"
  3639. },
  3640. "compile": {
  3641. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  3642. }
  3643. },
  3644. "System.Reflection.Metadata/1.6.0": {
  3645. "type": "package",
  3646. "compile": {
  3647. "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
  3648. },
  3649. "runtime": {
  3650. "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
  3651. }
  3652. },
  3653. "System.Reflection.Primitives/4.3.0": {
  3654. "type": "package",
  3655. "dependencies": {
  3656. "Microsoft.NETCore.Platforms": "1.1.0",
  3657. "Microsoft.NETCore.Targets": "1.1.0",
  3658. "System.Runtime": "4.3.0"
  3659. },
  3660. "compile": {
  3661. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  3662. }
  3663. },
  3664. "System.Reflection.TypeExtensions/4.3.0": {
  3665. "type": "package",
  3666. "dependencies": {
  3667. "System.Reflection": "4.3.0",
  3668. "System.Runtime": "4.3.0"
  3669. },
  3670. "compile": {
  3671. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  3672. },
  3673. "runtime": {
  3674. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  3675. }
  3676. },
  3677. "System.Resources.ResourceManager/4.3.0": {
  3678. "type": "package",
  3679. "dependencies": {
  3680. "Microsoft.NETCore.Platforms": "1.1.0",
  3681. "Microsoft.NETCore.Targets": "1.1.0",
  3682. "System.Globalization": "4.3.0",
  3683. "System.Reflection": "4.3.0",
  3684. "System.Runtime": "4.3.0"
  3685. },
  3686. "compile": {
  3687. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  3688. }
  3689. },
  3690. "System.Runtime/4.3.0": {
  3691. "type": "package",
  3692. "dependencies": {
  3693. "Microsoft.NETCore.Platforms": "1.1.0",
  3694. "Microsoft.NETCore.Targets": "1.1.0"
  3695. },
  3696. "compile": {
  3697. "ref/netstandard1.5/System.Runtime.dll": {}
  3698. }
  3699. },
  3700. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  3701. "type": "package",
  3702. "compile": {
  3703. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  3704. },
  3705. "runtime": {
  3706. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  3707. }
  3708. },
  3709. "System.Runtime.Extensions/4.3.0": {
  3710. "type": "package",
  3711. "dependencies": {
  3712. "Microsoft.NETCore.Platforms": "1.1.0",
  3713. "Microsoft.NETCore.Targets": "1.1.0",
  3714. "System.Runtime": "4.3.0"
  3715. },
  3716. "compile": {
  3717. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  3718. }
  3719. },
  3720. "System.Runtime.Handles/4.3.0": {
  3721. "type": "package",
  3722. "dependencies": {
  3723. "Microsoft.NETCore.Platforms": "1.1.0",
  3724. "Microsoft.NETCore.Targets": "1.1.0",
  3725. "System.Runtime": "4.3.0"
  3726. },
  3727. "compile": {
  3728. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  3729. }
  3730. },
  3731. "System.Runtime.InteropServices/4.3.0": {
  3732. "type": "package",
  3733. "dependencies": {
  3734. "Microsoft.NETCore.Platforms": "1.1.0",
  3735. "Microsoft.NETCore.Targets": "1.1.0",
  3736. "System.Reflection": "4.3.0",
  3737. "System.Reflection.Primitives": "4.3.0",
  3738. "System.Runtime": "4.3.0",
  3739. "System.Runtime.Handles": "4.3.0"
  3740. },
  3741. "compile": {
  3742. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  3743. }
  3744. },
  3745. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  3746. "type": "package",
  3747. "dependencies": {
  3748. "System.Reflection": "4.3.0",
  3749. "System.Reflection.Extensions": "4.3.0",
  3750. "System.Resources.ResourceManager": "4.3.0",
  3751. "System.Runtime": "4.3.0",
  3752. "System.Runtime.InteropServices": "4.3.0",
  3753. "System.Threading": "4.3.0",
  3754. "runtime.native.System": "4.3.0"
  3755. },
  3756. "compile": {
  3757. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  3758. },
  3759. "runtime": {
  3760. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  3761. },
  3762. "runtimeTargets": {
  3763. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  3764. "assetType": "runtime",
  3765. "rid": "unix"
  3766. },
  3767. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  3768. "assetType": "runtime",
  3769. "rid": "win"
  3770. }
  3771. }
  3772. },
  3773. "System.Runtime.Numerics/4.3.0": {
  3774. "type": "package",
  3775. "dependencies": {
  3776. "System.Globalization": "4.3.0",
  3777. "System.Resources.ResourceManager": "4.3.0",
  3778. "System.Runtime": "4.3.0",
  3779. "System.Runtime.Extensions": "4.3.0"
  3780. },
  3781. "compile": {
  3782. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  3783. },
  3784. "runtime": {
  3785. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  3786. }
  3787. },
  3788. "System.Runtime.Serialization.Primitives/4.3.0": {
  3789. "type": "package",
  3790. "dependencies": {
  3791. "System.Resources.ResourceManager": "4.3.0",
  3792. "System.Runtime": "4.3.0"
  3793. },
  3794. "compile": {
  3795. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  3796. },
  3797. "runtime": {
  3798. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  3799. }
  3800. },
  3801. "System.Runtime.Serialization.Xml/4.3.0": {
  3802. "type": "package",
  3803. "dependencies": {
  3804. "System.IO": "4.3.0",
  3805. "System.Private.DataContractSerialization": "4.3.0",
  3806. "System.Runtime": "4.3.0",
  3807. "System.Runtime.Serialization.Primitives": "4.3.0",
  3808. "System.Text.Encoding": "4.3.0",
  3809. "System.Xml.ReaderWriter": "4.3.0"
  3810. },
  3811. "compile": {
  3812. "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll": {}
  3813. },
  3814. "runtime": {
  3815. "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll": {}
  3816. }
  3817. },
  3818. "System.Security.AccessControl/4.5.0": {
  3819. "type": "package",
  3820. "dependencies": {
  3821. "Microsoft.NETCore.Platforms": "2.0.0",
  3822. "System.Security.Principal.Windows": "4.5.0"
  3823. },
  3824. "compile": {
  3825. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  3826. },
  3827. "runtime": {
  3828. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  3829. },
  3830. "runtimeTargets": {
  3831. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  3832. "assetType": "runtime",
  3833. "rid": "win"
  3834. }
  3835. }
  3836. },
  3837. "System.Security.Claims/4.3.0": {
  3838. "type": "package",
  3839. "dependencies": {
  3840. "System.Collections": "4.3.0",
  3841. "System.Globalization": "4.3.0",
  3842. "System.IO": "4.3.0",
  3843. "System.Resources.ResourceManager": "4.3.0",
  3844. "System.Runtime": "4.3.0",
  3845. "System.Runtime.Extensions": "4.3.0",
  3846. "System.Security.Principal": "4.3.0"
  3847. },
  3848. "compile": {
  3849. "ref/netstandard1.3/System.Security.Claims.dll": {}
  3850. },
  3851. "runtime": {
  3852. "lib/netstandard1.3/System.Security.Claims.dll": {}
  3853. }
  3854. },
  3855. "System.Security.Cryptography.Algorithms/4.3.0": {
  3856. "type": "package",
  3857. "dependencies": {
  3858. "Microsoft.NETCore.Platforms": "1.1.0",
  3859. "System.Collections": "4.3.0",
  3860. "System.IO": "4.3.0",
  3861. "System.Resources.ResourceManager": "4.3.0",
  3862. "System.Runtime": "4.3.0",
  3863. "System.Runtime.Extensions": "4.3.0",
  3864. "System.Runtime.Handles": "4.3.0",
  3865. "System.Runtime.InteropServices": "4.3.0",
  3866. "System.Runtime.Numerics": "4.3.0",
  3867. "System.Security.Cryptography.Encoding": "4.3.0",
  3868. "System.Security.Cryptography.Primitives": "4.3.0",
  3869. "System.Text.Encoding": "4.3.0",
  3870. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  3871. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3872. },
  3873. "compile": {
  3874. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  3875. },
  3876. "runtimeTargets": {
  3877. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3878. "assetType": "runtime",
  3879. "rid": "osx"
  3880. },
  3881. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3882. "assetType": "runtime",
  3883. "rid": "unix"
  3884. },
  3885. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3886. "assetType": "runtime",
  3887. "rid": "win"
  3888. }
  3889. }
  3890. },
  3891. "System.Security.Cryptography.Cng/4.5.0": {
  3892. "type": "package",
  3893. "compile": {
  3894. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  3895. },
  3896. "runtime": {
  3897. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  3898. },
  3899. "runtimeTargets": {
  3900. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  3901. "assetType": "runtime",
  3902. "rid": "win"
  3903. }
  3904. }
  3905. },
  3906. "System.Security.Cryptography.Csp/4.3.0": {
  3907. "type": "package",
  3908. "dependencies": {
  3909. "Microsoft.NETCore.Platforms": "1.1.0",
  3910. "System.IO": "4.3.0",
  3911. "System.Reflection": "4.3.0",
  3912. "System.Resources.ResourceManager": "4.3.0",
  3913. "System.Runtime": "4.3.0",
  3914. "System.Runtime.Extensions": "4.3.0",
  3915. "System.Runtime.Handles": "4.3.0",
  3916. "System.Runtime.InteropServices": "4.3.0",
  3917. "System.Security.Cryptography.Algorithms": "4.3.0",
  3918. "System.Security.Cryptography.Encoding": "4.3.0",
  3919. "System.Security.Cryptography.Primitives": "4.3.0",
  3920. "System.Text.Encoding": "4.3.0",
  3921. "System.Threading": "4.3.0"
  3922. },
  3923. "compile": {
  3924. "ref/netstandard1.3/_._": {}
  3925. },
  3926. "runtimeTargets": {
  3927. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3928. "assetType": "runtime",
  3929. "rid": "unix"
  3930. },
  3931. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3932. "assetType": "runtime",
  3933. "rid": "win"
  3934. }
  3935. }
  3936. },
  3937. "System.Security.Cryptography.Encoding/4.3.0": {
  3938. "type": "package",
  3939. "dependencies": {
  3940. "Microsoft.NETCore.Platforms": "1.1.0",
  3941. "System.Collections": "4.3.0",
  3942. "System.Collections.Concurrent": "4.3.0",
  3943. "System.Linq": "4.3.0",
  3944. "System.Resources.ResourceManager": "4.3.0",
  3945. "System.Runtime": "4.3.0",
  3946. "System.Runtime.Extensions": "4.3.0",
  3947. "System.Runtime.Handles": "4.3.0",
  3948. "System.Runtime.InteropServices": "4.3.0",
  3949. "System.Security.Cryptography.Primitives": "4.3.0",
  3950. "System.Text.Encoding": "4.3.0",
  3951. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3952. },
  3953. "compile": {
  3954. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  3955. },
  3956. "runtimeTargets": {
  3957. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3958. "assetType": "runtime",
  3959. "rid": "unix"
  3960. },
  3961. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3962. "assetType": "runtime",
  3963. "rid": "win"
  3964. }
  3965. }
  3966. },
  3967. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3968. "type": "package",
  3969. "dependencies": {
  3970. "System.Collections": "4.3.0",
  3971. "System.IO": "4.3.0",
  3972. "System.Resources.ResourceManager": "4.3.0",
  3973. "System.Runtime": "4.3.0",
  3974. "System.Runtime.Extensions": "4.3.0",
  3975. "System.Runtime.Handles": "4.3.0",
  3976. "System.Runtime.InteropServices": "4.3.0",
  3977. "System.Runtime.Numerics": "4.3.0",
  3978. "System.Security.Cryptography.Algorithms": "4.3.0",
  3979. "System.Security.Cryptography.Encoding": "4.3.0",
  3980. "System.Security.Cryptography.Primitives": "4.3.0",
  3981. "System.Text.Encoding": "4.3.0",
  3982. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3983. },
  3984. "compile": {
  3985. "ref/netstandard1.6/_._": {}
  3986. },
  3987. "runtime": {
  3988. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  3989. },
  3990. "runtimeTargets": {
  3991. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  3992. "assetType": "runtime",
  3993. "rid": "unix"
  3994. }
  3995. }
  3996. },
  3997. "System.Security.Cryptography.Pkcs/4.5.0": {
  3998. "type": "package",
  3999. "dependencies": {
  4000. "System.Security.Cryptography.Cng": "4.5.0"
  4001. },
  4002. "compile": {
  4003. "ref/netcoreapp2.1/_._": {}
  4004. },
  4005. "runtime": {
  4006. "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {}
  4007. },
  4008. "runtimeTargets": {
  4009. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": {
  4010. "assetType": "runtime",
  4011. "rid": "win"
  4012. }
  4013. }
  4014. },
  4015. "System.Security.Cryptography.Primitives/4.3.0": {
  4016. "type": "package",
  4017. "dependencies": {
  4018. "System.Diagnostics.Debug": "4.3.0",
  4019. "System.Globalization": "4.3.0",
  4020. "System.IO": "4.3.0",
  4021. "System.Resources.ResourceManager": "4.3.0",
  4022. "System.Runtime": "4.3.0",
  4023. "System.Threading": "4.3.0",
  4024. "System.Threading.Tasks": "4.3.0"
  4025. },
  4026. "compile": {
  4027. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  4028. },
  4029. "runtime": {
  4030. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  4031. }
  4032. },
  4033. "System.Security.Cryptography.ProtectedData/4.5.0": {
  4034. "type": "package",
  4035. "compile": {
  4036. "ref/netstandard2.0/_._": {}
  4037. },
  4038. "runtime": {
  4039. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  4040. },
  4041. "runtimeTargets": {
  4042. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  4043. "assetType": "runtime",
  4044. "rid": "win"
  4045. }
  4046. }
  4047. },
  4048. "System.Security.Cryptography.X509Certificates/4.3.0": {
  4049. "type": "package",
  4050. "dependencies": {
  4051. "Microsoft.NETCore.Platforms": "1.1.0",
  4052. "System.Collections": "4.3.0",
  4053. "System.Diagnostics.Debug": "4.3.0",
  4054. "System.Globalization": "4.3.0",
  4055. "System.Globalization.Calendars": "4.3.0",
  4056. "System.IO": "4.3.0",
  4057. "System.IO.FileSystem": "4.3.0",
  4058. "System.IO.FileSystem.Primitives": "4.3.0",
  4059. "System.Resources.ResourceManager": "4.3.0",
  4060. "System.Runtime": "4.3.0",
  4061. "System.Runtime.Extensions": "4.3.0",
  4062. "System.Runtime.Handles": "4.3.0",
  4063. "System.Runtime.InteropServices": "4.3.0",
  4064. "System.Runtime.Numerics": "4.3.0",
  4065. "System.Security.Cryptography.Algorithms": "4.3.0",
  4066. "System.Security.Cryptography.Cng": "4.3.0",
  4067. "System.Security.Cryptography.Csp": "4.3.0",
  4068. "System.Security.Cryptography.Encoding": "4.3.0",
  4069. "System.Security.Cryptography.OpenSsl": "4.3.0",
  4070. "System.Security.Cryptography.Primitives": "4.3.0",
  4071. "System.Text.Encoding": "4.3.0",
  4072. "System.Threading": "4.3.0",
  4073. "runtime.native.System": "4.3.0",
  4074. "runtime.native.System.Net.Http": "4.3.0",
  4075. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  4076. },
  4077. "compile": {
  4078. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  4079. },
  4080. "runtimeTargets": {
  4081. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  4082. "assetType": "runtime",
  4083. "rid": "unix"
  4084. },
  4085. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  4086. "assetType": "runtime",
  4087. "rid": "win"
  4088. }
  4089. }
  4090. },
  4091. "System.Security.Cryptography.Xml/4.5.0": {
  4092. "type": "package",
  4093. "dependencies": {
  4094. "System.Security.Cryptography.Pkcs": "4.5.0",
  4095. "System.Security.Permissions": "4.5.0"
  4096. },
  4097. "compile": {
  4098. "ref/netstandard2.0/System.Security.Cryptography.Xml.dll": {}
  4099. },
  4100. "runtime": {
  4101. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {}
  4102. }
  4103. },
  4104. "System.Security.Permissions/4.5.0": {
  4105. "type": "package",
  4106. "dependencies": {
  4107. "System.Security.AccessControl": "4.5.0"
  4108. },
  4109. "compile": {
  4110. "ref/netstandard2.0/System.Security.Permissions.dll": {}
  4111. },
  4112. "runtime": {
  4113. "lib/netstandard2.0/System.Security.Permissions.dll": {}
  4114. }
  4115. },
  4116. "System.Security.Principal/4.3.0": {
  4117. "type": "package",
  4118. "dependencies": {
  4119. "System.Runtime": "4.3.0"
  4120. },
  4121. "compile": {
  4122. "ref/netstandard1.0/System.Security.Principal.dll": {}
  4123. },
  4124. "runtime": {
  4125. "lib/netstandard1.0/System.Security.Principal.dll": {}
  4126. }
  4127. },
  4128. "System.Security.Principal.Windows/4.5.0": {
  4129. "type": "package",
  4130. "dependencies": {
  4131. "Microsoft.NETCore.Platforms": "2.0.0"
  4132. },
  4133. "compile": {
  4134. "ref/netstandard2.0/System.Security.Principal.Windows.dll": {}
  4135. },
  4136. "runtime": {
  4137. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  4138. },
  4139. "runtimeTargets": {
  4140. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
  4141. "assetType": "runtime",
  4142. "rid": "unix"
  4143. },
  4144. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
  4145. "assetType": "runtime",
  4146. "rid": "win"
  4147. }
  4148. }
  4149. },
  4150. "System.Text.Encoding/4.3.0": {
  4151. "type": "package",
  4152. "dependencies": {
  4153. "Microsoft.NETCore.Platforms": "1.1.0",
  4154. "Microsoft.NETCore.Targets": "1.1.0",
  4155. "System.Runtime": "4.3.0"
  4156. },
  4157. "compile": {
  4158. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  4159. }
  4160. },
  4161. "System.Text.Encoding.CodePages/4.5.0": {
  4162. "type": "package",
  4163. "dependencies": {
  4164. "Microsoft.NETCore.Platforms": "2.0.0",
  4165. "System.Runtime.CompilerServices.Unsafe": "4.5.0"
  4166. },
  4167. "compile": {
  4168. "ref/netstandard2.0/_._": {}
  4169. },
  4170. "runtime": {
  4171. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  4172. },
  4173. "runtimeTargets": {
  4174. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  4175. "assetType": "runtime",
  4176. "rid": "win"
  4177. }
  4178. }
  4179. },
  4180. "System.Text.Encoding.Extensions/4.3.0": {
  4181. "type": "package",
  4182. "dependencies": {
  4183. "Microsoft.NETCore.Platforms": "1.1.0",
  4184. "Microsoft.NETCore.Targets": "1.1.0",
  4185. "System.Runtime": "4.3.0",
  4186. "System.Text.Encoding": "4.3.0"
  4187. },
  4188. "compile": {
  4189. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  4190. }
  4191. },
  4192. "System.Text.Encodings.Web/4.5.0": {
  4193. "type": "package",
  4194. "compile": {
  4195. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  4196. },
  4197. "runtime": {
  4198. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  4199. }
  4200. },
  4201. "System.Text.RegularExpressions/4.3.0": {
  4202. "type": "package",
  4203. "dependencies": {
  4204. "System.Runtime": "4.3.0"
  4205. },
  4206. "compile": {
  4207. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  4208. },
  4209. "runtime": {
  4210. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  4211. }
  4212. },
  4213. "System.Threading/4.3.0": {
  4214. "type": "package",
  4215. "dependencies": {
  4216. "System.Runtime": "4.3.0",
  4217. "System.Threading.Tasks": "4.3.0"
  4218. },
  4219. "compile": {
  4220. "ref/netstandard1.3/System.Threading.dll": {}
  4221. },
  4222. "runtime": {
  4223. "lib/netstandard1.3/System.Threading.dll": {}
  4224. }
  4225. },
  4226. "System.Threading.Channels/4.5.0": {
  4227. "type": "package",
  4228. "compile": {
  4229. "lib/netcoreapp2.1/System.Threading.Channels.dll": {}
  4230. },
  4231. "runtime": {
  4232. "lib/netcoreapp2.1/System.Threading.Channels.dll": {}
  4233. }
  4234. },
  4235. "System.Threading.Tasks/4.3.0": {
  4236. "type": "package",
  4237. "dependencies": {
  4238. "Microsoft.NETCore.Platforms": "1.1.0",
  4239. "Microsoft.NETCore.Targets": "1.1.0",
  4240. "System.Runtime": "4.3.0"
  4241. },
  4242. "compile": {
  4243. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  4244. }
  4245. },
  4246. "System.Threading.Tasks.Extensions/4.5.1": {
  4247. "type": "package",
  4248. "compile": {
  4249. "ref/netcoreapp2.1/_._": {}
  4250. },
  4251. "runtime": {
  4252. "lib/netcoreapp2.1/_._": {}
  4253. }
  4254. },
  4255. "System.Threading.Tasks.Parallel/4.3.0": {
  4256. "type": "package",
  4257. "dependencies": {
  4258. "System.Collections.Concurrent": "4.3.0",
  4259. "System.Diagnostics.Debug": "4.3.0",
  4260. "System.Diagnostics.Tracing": "4.3.0",
  4261. "System.Resources.ResourceManager": "4.3.0",
  4262. "System.Runtime": "4.3.0",
  4263. "System.Runtime.Extensions": "4.3.0",
  4264. "System.Threading": "4.3.0",
  4265. "System.Threading.Tasks": "4.3.0"
  4266. },
  4267. "compile": {
  4268. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {}
  4269. },
  4270. "runtime": {
  4271. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
  4272. }
  4273. },
  4274. "System.Threading.Thread/4.3.0": {
  4275. "type": "package",
  4276. "dependencies": {
  4277. "System.Runtime": "4.3.0"
  4278. },
  4279. "compile": {
  4280. "ref/netstandard1.3/_._": {}
  4281. },
  4282. "runtime": {
  4283. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  4284. }
  4285. },
  4286. "System.ValueTuple/4.5.0": {
  4287. "type": "package",
  4288. "compile": {
  4289. "ref/netcoreapp2.0/_._": {}
  4290. },
  4291. "runtime": {
  4292. "lib/netcoreapp2.0/_._": {}
  4293. }
  4294. },
  4295. "System.Xml.ReaderWriter/4.3.0": {
  4296. "type": "package",
  4297. "dependencies": {
  4298. "System.Collections": "4.3.0",
  4299. "System.Diagnostics.Debug": "4.3.0",
  4300. "System.Globalization": "4.3.0",
  4301. "System.IO": "4.3.0",
  4302. "System.IO.FileSystem": "4.3.0",
  4303. "System.IO.FileSystem.Primitives": "4.3.0",
  4304. "System.Resources.ResourceManager": "4.3.0",
  4305. "System.Runtime": "4.3.0",
  4306. "System.Runtime.Extensions": "4.3.0",
  4307. "System.Runtime.InteropServices": "4.3.0",
  4308. "System.Text.Encoding": "4.3.0",
  4309. "System.Text.Encoding.Extensions": "4.3.0",
  4310. "System.Text.RegularExpressions": "4.3.0",
  4311. "System.Threading.Tasks": "4.3.0",
  4312. "System.Threading.Tasks.Extensions": "4.3.0"
  4313. },
  4314. "compile": {
  4315. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  4316. },
  4317. "runtime": {
  4318. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  4319. }
  4320. },
  4321. "System.Xml.XDocument/4.3.0": {
  4322. "type": "package",
  4323. "dependencies": {
  4324. "System.Collections": "4.3.0",
  4325. "System.Diagnostics.Debug": "4.3.0",
  4326. "System.Diagnostics.Tools": "4.3.0",
  4327. "System.Globalization": "4.3.0",
  4328. "System.IO": "4.3.0",
  4329. "System.Reflection": "4.3.0",
  4330. "System.Resources.ResourceManager": "4.3.0",
  4331. "System.Runtime": "4.3.0",
  4332. "System.Runtime.Extensions": "4.3.0",
  4333. "System.Text.Encoding": "4.3.0",
  4334. "System.Threading": "4.3.0",
  4335. "System.Xml.ReaderWriter": "4.3.0"
  4336. },
  4337. "compile": {
  4338. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  4339. },
  4340. "runtime": {
  4341. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  4342. }
  4343. },
  4344. "System.Xml.XmlDocument/4.3.0": {
  4345. "type": "package",
  4346. "dependencies": {
  4347. "System.Collections": "4.3.0",
  4348. "System.Diagnostics.Debug": "4.3.0",
  4349. "System.Globalization": "4.3.0",
  4350. "System.IO": "4.3.0",
  4351. "System.Resources.ResourceManager": "4.3.0",
  4352. "System.Runtime": "4.3.0",
  4353. "System.Runtime.Extensions": "4.3.0",
  4354. "System.Text.Encoding": "4.3.0",
  4355. "System.Threading": "4.3.0",
  4356. "System.Xml.ReaderWriter": "4.3.0"
  4357. },
  4358. "compile": {
  4359. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  4360. },
  4361. "runtime": {
  4362. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  4363. }
  4364. },
  4365. "System.Xml.XmlSerializer/4.3.0": {
  4366. "type": "package",
  4367. "dependencies": {
  4368. "System.Collections": "4.3.0",
  4369. "System.Globalization": "4.3.0",
  4370. "System.IO": "4.3.0",
  4371. "System.Linq": "4.3.0",
  4372. "System.Reflection": "4.3.0",
  4373. "System.Reflection.Emit": "4.3.0",
  4374. "System.Reflection.Emit.ILGeneration": "4.3.0",
  4375. "System.Reflection.Extensions": "4.3.0",
  4376. "System.Reflection.Primitives": "4.3.0",
  4377. "System.Reflection.TypeExtensions": "4.3.0",
  4378. "System.Resources.ResourceManager": "4.3.0",
  4379. "System.Runtime": "4.3.0",
  4380. "System.Runtime.Extensions": "4.3.0",
  4381. "System.Text.RegularExpressions": "4.3.0",
  4382. "System.Threading": "4.3.0",
  4383. "System.Xml.ReaderWriter": "4.3.0",
  4384. "System.Xml.XmlDocument": "4.3.0"
  4385. },
  4386. "compile": {
  4387. "ref/netstandard1.3/_._": {}
  4388. },
  4389. "runtime": {
  4390. "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {}
  4391. }
  4392. },
  4393. "System.Xml.XPath/4.3.0": {
  4394. "type": "package",
  4395. "dependencies": {
  4396. "System.Collections": "4.3.0",
  4397. "System.Diagnostics.Debug": "4.3.0",
  4398. "System.Globalization": "4.3.0",
  4399. "System.IO": "4.3.0",
  4400. "System.Resources.ResourceManager": "4.3.0",
  4401. "System.Runtime": "4.3.0",
  4402. "System.Runtime.Extensions": "4.3.0",
  4403. "System.Threading": "4.3.0",
  4404. "System.Xml.ReaderWriter": "4.3.0"
  4405. },
  4406. "compile": {
  4407. "ref/netstandard1.3/_._": {}
  4408. },
  4409. "runtime": {
  4410. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  4411. }
  4412. },
  4413. "System.Xml.XPath.XDocument/4.3.0": {
  4414. "type": "package",
  4415. "dependencies": {
  4416. "System.Diagnostics.Debug": "4.3.0",
  4417. "System.Linq": "4.3.0",
  4418. "System.Resources.ResourceManager": "4.3.0",
  4419. "System.Runtime": "4.3.0",
  4420. "System.Runtime.Extensions": "4.3.0",
  4421. "System.Threading": "4.3.0",
  4422. "System.Xml.ReaderWriter": "4.3.0",
  4423. "System.Xml.XDocument": "4.3.0",
  4424. "System.Xml.XPath": "4.3.0"
  4425. },
  4426. "compile": {
  4427. "ref/netstandard1.3/_._": {}
  4428. },
  4429. "runtime": {
  4430. "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {}
  4431. }
  4432. }
  4433. }
  4434. },
  4435. "libraries": {
  4436. "CSRedisCore/3.1.5": {
  4437. "sha512": "GjrJk9OBvMRaqYf8wKIQ+POU1mzDHm+mFGY5Ft3R6TNF57PneFGlnQMB9s12W958rInbgrL3K2MgIg+KMDti+A==",
  4438. "type": "package",
  4439. "path": "csrediscore/3.1.5",
  4440. "files": [
  4441. ".nupkg.metadata",
  4442. ".signature.p7s",
  4443. "csrediscore.3.1.5.nupkg.sha512",
  4444. "csrediscore.nuspec",
  4445. "lib/net45/CSRedisCore.dll",
  4446. "lib/net45/CSRedisCore.xml",
  4447. "lib/netstandard2.0/CSRedisCore.dll",
  4448. "lib/netstandard2.0/CSRedisCore.xml"
  4449. ]
  4450. },
  4451. "Microsoft.AspNet.WebApi.Client/5.2.6": {
  4452. "sha512": "owAlEIUZXWSnkK8Z1c+zR47A0X6ykF4XjbPok4lQKNuciUfHLGPd6QnI+rt/8KlQ17PmF+I4S3f+m+Qe4IvViw==",
  4453. "type": "package",
  4454. "path": "microsoft.aspnet.webapi.client/5.2.6",
  4455. "files": [
  4456. ".nupkg.metadata",
  4457. ".signature.p7s",
  4458. "lib/net45/System.Net.Http.Formatting.dll",
  4459. "lib/net45/System.Net.Http.Formatting.xml",
  4460. "lib/netstandard2.0/System.Net.Http.Formatting.dll",
  4461. "lib/netstandard2.0/System.Net.Http.Formatting.xml",
  4462. "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll",
  4463. "lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.xml",
  4464. "microsoft.aspnet.webapi.client.5.2.6.nupkg.sha512",
  4465. "microsoft.aspnet.webapi.client.nuspec"
  4466. ]
  4467. },
  4468. "Microsoft.AspNetCore/2.1.1": {
  4469. "sha512": "9r1qojnhb9BJYqK+vpyzzHoovfc12VHQ5l61blIn1QHWb8R6946LKoUnteXbtpy3Sn8bn4OAB5ZEPKwwAyeGjQ==",
  4470. "type": "package",
  4471. "path": "microsoft.aspnetcore/2.1.1",
  4472. "files": [
  4473. ".nupkg.metadata",
  4474. ".signature.p7s",
  4475. "lib/netstandard2.0/Microsoft.AspNetCore.dll",
  4476. "lib/netstandard2.0/Microsoft.AspNetCore.xml",
  4477. "microsoft.aspnetcore.2.1.1.nupkg.sha512",
  4478. "microsoft.aspnetcore.nuspec"
  4479. ]
  4480. },
  4481. "Microsoft.AspNetCore.Antiforgery/2.1.1": {
  4482. "sha512": "De4NysQJXeWiyzjCH+zE+hVeB7mgCelz00zsBFqkrFtgLWaint5Xt/4qACxRVLUGHQsUo48V6lG0entMJMwv3Q==",
  4483. "type": "package",
  4484. "path": "microsoft.aspnetcore.antiforgery/2.1.1",
  4485. "files": [
  4486. ".nupkg.metadata",
  4487. ".signature.p7s",
  4488. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll",
  4489. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.xml",
  4490. "microsoft.aspnetcore.antiforgery.2.1.1.nupkg.sha512",
  4491. "microsoft.aspnetcore.antiforgery.nuspec"
  4492. ]
  4493. },
  4494. "Microsoft.AspNetCore.App/2.1.1": {
  4495. "sha512": "NF03d4HUBS9I3XDodBr6kEU5huDv1vtVEMC8L9suvrUamGcpaOokC6wYNPcp0p3Sg6C4Gn0RA1X9xQRwxlBTGA==",
  4496. "type": "package",
  4497. "path": "microsoft.aspnetcore.app/2.1.1",
  4498. "files": [
  4499. ".nupkg.metadata",
  4500. ".signature.p7s",
  4501. "build/netcoreapp2.1/Microsoft.AspNetCore.App.props",
  4502. "build/netcoreapp2.1/Microsoft.AspNetCore.App.targets",
  4503. "lib/netcoreapp2.1/_._",
  4504. "microsoft.aspnetcore.app.2.1.1.nupkg.sha512",
  4505. "microsoft.aspnetcore.app.nuspec"
  4506. ]
  4507. },
  4508. "Microsoft.AspNetCore.Authentication/2.1.1": {
  4509. "sha512": "F9Ewm6Oo5hn1CR7HglsZnKM5pMJekdZoGJoi8fnKEFOoQruxJUQVpHB8dfpB+0ZJmyeapGn+grdrXsoBWilIFg==",
  4510. "type": "package",
  4511. "path": "microsoft.aspnetcore.authentication/2.1.1",
  4512. "files": [
  4513. ".nupkg.metadata",
  4514. ".signature.p7s",
  4515. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll",
  4516. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.xml",
  4517. "microsoft.aspnetcore.authentication.2.1.1.nupkg.sha512",
  4518. "microsoft.aspnetcore.authentication.nuspec"
  4519. ]
  4520. },
  4521. "Microsoft.AspNetCore.Authentication.Abstractions/2.1.1": {
  4522. "sha512": "Smj5TGeE9629+hGHPk/DZUfCMYGvQwCajAsU/OVExRb8JXfeua4uXZFzT9Kh3pJY2MThPSt1lbDnkL2KaDyw/A==",
  4523. "type": "package",
  4524. "path": "microsoft.aspnetcore.authentication.abstractions/2.1.1",
  4525. "files": [
  4526. ".nupkg.metadata",
  4527. ".signature.p7s",
  4528. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll",
  4529. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml",
  4530. "microsoft.aspnetcore.authentication.abstractions.2.1.1.nupkg.sha512",
  4531. "microsoft.aspnetcore.authentication.abstractions.nuspec"
  4532. ]
  4533. },
  4534. "Microsoft.AspNetCore.Authentication.Cookies/2.1.1": {
  4535. "sha512": "jvoFydzEDkijY9UlHIvAMA+xJpQ3+w2FvpOfbSOpcb/6Om8yuh3JHM8lh7zLZNsakaoHW5SkY9q3HvUnWAyZXw==",
  4536. "type": "package",
  4537. "path": "microsoft.aspnetcore.authentication.cookies/2.1.1",
  4538. "files": [
  4539. ".nupkg.metadata",
  4540. ".signature.p7s",
  4541. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll",
  4542. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.xml",
  4543. "microsoft.aspnetcore.authentication.cookies.2.1.1.nupkg.sha512",
  4544. "microsoft.aspnetcore.authentication.cookies.nuspec"
  4545. ]
  4546. },
  4547. "Microsoft.AspNetCore.Authentication.Core/2.1.1": {
  4548. "sha512": "Zo6SLzqxrW0PFg1AB0xSb+Rta4hCuX8hgOY425ldhFq4kKcmw45oJQ2zOIeeW/6EuBtEy+hwDB96baxTmXtfeA==",
  4549. "type": "package",
  4550. "path": "microsoft.aspnetcore.authentication.core/2.1.1",
  4551. "files": [
  4552. ".nupkg.metadata",
  4553. ".signature.p7s",
  4554. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll",
  4555. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml",
  4556. "microsoft.aspnetcore.authentication.core.2.1.1.nupkg.sha512",
  4557. "microsoft.aspnetcore.authentication.core.nuspec"
  4558. ]
  4559. },
  4560. "Microsoft.AspNetCore.Authentication.Facebook/2.1.1": {
  4561. "sha512": "crdvaKV0iAAQEeVyRGipYe43qaz8gnfDF1VQYtHGi4EUbQq+n89hDTK/U+SgKaNACfIvv4UEdHJBGYBNUAtFoQ==",
  4562. "type": "package",
  4563. "path": "microsoft.aspnetcore.authentication.facebook/2.1.1",
  4564. "files": [
  4565. ".nupkg.metadata",
  4566. ".signature.p7s",
  4567. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll",
  4568. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.xml",
  4569. "microsoft.aspnetcore.authentication.facebook.2.1.1.nupkg.sha512",
  4570. "microsoft.aspnetcore.authentication.facebook.nuspec"
  4571. ]
  4572. },
  4573. "Microsoft.AspNetCore.Authentication.Google/2.1.1": {
  4574. "sha512": "yLFEgOl1Uwgnr6yPqJDqiM/jSlyJyo1ZDDktYfDN1kzP5ga4/5vFpTrNkO1Q7MEttdwVc9bICX3icmXBuTjsXg==",
  4575. "type": "package",
  4576. "path": "microsoft.aspnetcore.authentication.google/2.1.1",
  4577. "files": [
  4578. ".nupkg.metadata",
  4579. ".signature.p7s",
  4580. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll",
  4581. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.xml",
  4582. "microsoft.aspnetcore.authentication.google.2.1.1.nupkg.sha512",
  4583. "microsoft.aspnetcore.authentication.google.nuspec"
  4584. ]
  4585. },
  4586. "Microsoft.AspNetCore.Authentication.JwtBearer/2.1.1": {
  4587. "sha512": "lMakzPdMkf4rpwy+YY3cd4VeFqdqM8vwt9pT6Lc1eyKMgOTPgAgesgOwHQf4JUASFBTkG/mTPC+miQwG1WGymg==",
  4588. "type": "package",
  4589. "path": "microsoft.aspnetcore.authentication.jwtbearer/2.1.1",
  4590. "files": [
  4591. ".nupkg.metadata",
  4592. ".signature.p7s",
  4593. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  4594. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  4595. "microsoft.aspnetcore.authentication.jwtbearer.2.1.1.nupkg.sha512",
  4596. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  4597. ]
  4598. },
  4599. "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.1.1": {
  4600. "sha512": "Zc4ix18n3VTZ6rYUKe7Wxk7w5jLqbuWDThNwYykvt0TuF48GeiHV2LSLEdkZCXGL3qaZ/I2rWq3IpSqlEEIgsA==",
  4601. "type": "package",
  4602. "path": "microsoft.aspnetcore.authentication.microsoftaccount/2.1.1",
  4603. "files": [
  4604. ".nupkg.metadata",
  4605. ".signature.p7s",
  4606. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll",
  4607. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.xml",
  4608. "microsoft.aspnetcore.authentication.microsoftaccount.2.1.1.nupkg.sha512",
  4609. "microsoft.aspnetcore.authentication.microsoftaccount.nuspec"
  4610. ]
  4611. },
  4612. "Microsoft.AspNetCore.Authentication.OAuth/2.1.1": {
  4613. "sha512": "vjc/kzkOZqcaH/MHOiZIjoCAuHNNk4ivVPP3/V3sTaR93UZRqgP06f/CmqI59U41nONHb5EuZVqohgdDcMfrcQ==",
  4614. "type": "package",
  4615. "path": "microsoft.aspnetcore.authentication.oauth/2.1.1",
  4616. "files": [
  4617. ".nupkg.metadata",
  4618. ".signature.p7s",
  4619. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll",
  4620. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.xml",
  4621. "microsoft.aspnetcore.authentication.oauth.2.1.1.nupkg.sha512",
  4622. "microsoft.aspnetcore.authentication.oauth.nuspec"
  4623. ]
  4624. },
  4625. "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.1.1": {
  4626. "sha512": "5YgPcDI6zmkfEfUC0phDyR6tY30UamVD18k83PCzJ90/pKKUVDmUSkjMq6IpAJ7Tb6K5zh9+KHgYpj5SvDiHPA==",
  4627. "type": "package",
  4628. "path": "microsoft.aspnetcore.authentication.openidconnect/2.1.1",
  4629. "files": [
  4630. ".nupkg.metadata",
  4631. ".signature.p7s",
  4632. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll",
  4633. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.xml",
  4634. "microsoft.aspnetcore.authentication.openidconnect.2.1.1.nupkg.sha512",
  4635. "microsoft.aspnetcore.authentication.openidconnect.nuspec"
  4636. ]
  4637. },
  4638. "Microsoft.AspNetCore.Authentication.Twitter/2.1.1": {
  4639. "sha512": "0p2o2cAsBIAutJDsloW6HPcxiB1JHHXbmjRQH+7jNO4FM8l8XHVTOLm4i/j8x3E2NH5F2n3ML2VB9faroq7Thg==",
  4640. "type": "package",
  4641. "path": "microsoft.aspnetcore.authentication.twitter/2.1.1",
  4642. "files": [
  4643. ".nupkg.metadata",
  4644. ".signature.p7s",
  4645. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll",
  4646. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.xml",
  4647. "microsoft.aspnetcore.authentication.twitter.2.1.1.nupkg.sha512",
  4648. "microsoft.aspnetcore.authentication.twitter.nuspec"
  4649. ]
  4650. },
  4651. "Microsoft.AspNetCore.Authentication.WsFederation/2.1.1": {
  4652. "sha512": "+lvcbaAnnu6y4nbf3/9uGiaHKhcaEDC8BpE26uX/xLKW8gsZ6xiw8SzoXotd00zI346y8wW24StU1xAoTtGMzQ==",
  4653. "type": "package",
  4654. "path": "microsoft.aspnetcore.authentication.wsfederation/2.1.1",
  4655. "files": [
  4656. ".nupkg.metadata",
  4657. ".signature.p7s",
  4658. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.WsFederation.dll",
  4659. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.WsFederation.xml",
  4660. "microsoft.aspnetcore.authentication.wsfederation.2.1.1.nupkg.sha512",
  4661. "microsoft.aspnetcore.authentication.wsfederation.nuspec"
  4662. ]
  4663. },
  4664. "Microsoft.AspNetCore.Authorization/2.1.1": {
  4665. "sha512": "rsxgcq+BU7VDGOZ0DdyPQOSE+jw5Bb4nk6PQpG70U/ZhgKFaAnnLeEnCfHgnCBUy3kn2ZtH3ZKJL+sh9MYzR4w==",
  4666. "type": "package",
  4667. "path": "microsoft.aspnetcore.authorization/2.1.1",
  4668. "files": [
  4669. ".nupkg.metadata",
  4670. ".signature.p7s",
  4671. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
  4672. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
  4673. "microsoft.aspnetcore.authorization.2.1.1.nupkg.sha512",
  4674. "microsoft.aspnetcore.authorization.nuspec"
  4675. ]
  4676. },
  4677. "Microsoft.AspNetCore.Authorization.Policy/2.1.1": {
  4678. "sha512": "6Gy9rFN1/4pKgjcbb2yaOmwpjV282dGnl7ewcCvcLxQmywpolkwxe5PPI6K/VPC2sovL5BtzhxnRl3OkwJZxwg==",
  4679. "type": "package",
  4680. "path": "microsoft.aspnetcore.authorization.policy/2.1.1",
  4681. "files": [
  4682. ".nupkg.metadata",
  4683. ".signature.p7s",
  4684. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll",
  4685. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml",
  4686. "microsoft.aspnetcore.authorization.policy.2.1.1.nupkg.sha512",
  4687. "microsoft.aspnetcore.authorization.policy.nuspec"
  4688. ]
  4689. },
  4690. "Microsoft.AspNetCore.Connections.Abstractions/2.1.1": {
  4691. "sha512": "cYrlbfJI6NelDmZXmn3z9Gtu7F7l7sk7eq2EExYuD76l5QnGuFr9fC+UUM62sJbeWkiX3+AaKKsjXdDBfgKDRQ==",
  4692. "type": "package",
  4693. "path": "microsoft.aspnetcore.connections.abstractions/2.1.1",
  4694. "files": [
  4695. ".nupkg.metadata",
  4696. ".signature.p7s",
  4697. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll",
  4698. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml",
  4699. "microsoft.aspnetcore.connections.abstractions.2.1.1.nupkg.sha512",
  4700. "microsoft.aspnetcore.connections.abstractions.nuspec"
  4701. ]
  4702. },
  4703. "Microsoft.AspNetCore.CookiePolicy/2.1.1": {
  4704. "sha512": "PlqlRmcFJtGFvIT5t1nXcDXlpIcf4Pl+KQnpAZou1AcnZilJqG/IrSxT9weyEzV8e9vn40E+JunCeam0S5Sg0g==",
  4705. "type": "package",
  4706. "path": "microsoft.aspnetcore.cookiepolicy/2.1.1",
  4707. "files": [
  4708. ".nupkg.metadata",
  4709. ".signature.p7s",
  4710. "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll",
  4711. "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.xml",
  4712. "microsoft.aspnetcore.cookiepolicy.2.1.1.nupkg.sha512",
  4713. "microsoft.aspnetcore.cookiepolicy.nuspec"
  4714. ]
  4715. },
  4716. "Microsoft.AspNetCore.Cors/2.1.1": {
  4717. "sha512": "5b3xfO8ycP9fEm76HGdExptlxURKNbmGnlA2mN+FQMaWPEuFH1te6GReBcKCQp4oeSSWuLfV9xSo+8LpU24u1A==",
  4718. "type": "package",
  4719. "path": "microsoft.aspnetcore.cors/2.1.1",
  4720. "files": [
  4721. ".nupkg.metadata",
  4722. ".signature.p7s",
  4723. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll",
  4724. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.xml",
  4725. "microsoft.aspnetcore.cors.2.1.1.nupkg.sha512",
  4726. "microsoft.aspnetcore.cors.nuspec"
  4727. ]
  4728. },
  4729. "Microsoft.AspNetCore.Cryptography.Internal/2.1.1": {
  4730. "sha512": "guY3jMNkcUi2hrMJ4/vPnUUFwudxTVSJ809gCfpq+xR0UgV6P9ZHZLOI5q/07QHDZY+kKPXxipXGyJXQpq2k0g==",
  4731. "type": "package",
  4732. "path": "microsoft.aspnetcore.cryptography.internal/2.1.1",
  4733. "files": [
  4734. ".nupkg.metadata",
  4735. ".signature.p7s",
  4736. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  4737. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  4738. "microsoft.aspnetcore.cryptography.internal.2.1.1.nupkg.sha512",
  4739. "microsoft.aspnetcore.cryptography.internal.nuspec"
  4740. ]
  4741. },
  4742. "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.1.1": {
  4743. "sha512": "Dgr1YF3+UK8i60n/Ae3gml4WgUxd2YcJEMADToRReOO4Nl4++mz8HjZtxsb3WWeGRtGPkrIgNhJD5MO0bjFkTg==",
  4744. "type": "package",
  4745. "path": "microsoft.aspnetcore.cryptography.keyderivation/2.1.1",
  4746. "files": [
  4747. ".nupkg.metadata",
  4748. ".signature.p7s",
  4749. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  4750. "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  4751. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  4752. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  4753. "microsoft.aspnetcore.cryptography.keyderivation.2.1.1.nupkg.sha512",
  4754. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  4755. ]
  4756. },
  4757. "Microsoft.AspNetCore.DataProtection/2.1.1": {
  4758. "sha512": "OPZDPAAL3OwOCrz870F9goq//NJOmPl4Lv3dz+v0cRQe8EpsbCe0c6IRI8vdlFwM13Qy57D5rLQlysb+tLpENA==",
  4759. "type": "package",
  4760. "path": "microsoft.aspnetcore.dataprotection/2.1.1",
  4761. "files": [
  4762. ".nupkg.metadata",
  4763. ".signature.p7s",
  4764. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll",
  4765. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml",
  4766. "microsoft.aspnetcore.dataprotection.2.1.1.nupkg.sha512",
  4767. "microsoft.aspnetcore.dataprotection.nuspec"
  4768. ]
  4769. },
  4770. "Microsoft.AspNetCore.DataProtection.Abstractions/2.1.1": {
  4771. "sha512": "dcH52SMIIUOwBeDZ2QQEY3hWXJz50Dk2YzC/B2hxDLB78Il75BHGOhClIw6/0H+dKZCwItUytxoMNYtCSmG+aQ==",
  4772. "type": "package",
  4773. "path": "microsoft.aspnetcore.dataprotection.abstractions/2.1.1",
  4774. "files": [
  4775. ".nupkg.metadata",
  4776. ".signature.p7s",
  4777. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  4778. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  4779. "microsoft.aspnetcore.dataprotection.abstractions.2.1.1.nupkg.sha512",
  4780. "microsoft.aspnetcore.dataprotection.abstractions.nuspec"
  4781. ]
  4782. },
  4783. "Microsoft.AspNetCore.DataProtection.Extensions/2.1.1": {
  4784. "sha512": "ceD0XYTCxNACik38XmHEIPgjqMdL66jDOu68pjLm9R+VPT2PWAWww3ihTmGOfLPnQuCnf9gCcQxR33rwRcdR9Q==",
  4785. "type": "package",
  4786. "path": "microsoft.aspnetcore.dataprotection.extensions/2.1.1",
  4787. "files": [
  4788. ".nupkg.metadata",
  4789. ".signature.p7s",
  4790. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll",
  4791. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.xml",
  4792. "microsoft.aspnetcore.dataprotection.extensions.2.1.1.nupkg.sha512",
  4793. "microsoft.aspnetcore.dataprotection.extensions.nuspec"
  4794. ]
  4795. },
  4796. "Microsoft.AspNetCore.Diagnostics/2.1.1": {
  4797. "sha512": "N0s12z4ZOa2Gxj+c23RRjj7MnGrgX3eeBUSenz2yUb4DLY48CBQt+m6ROPv+imY7evhGPRP7HvAtRsJhKJ2UVg==",
  4798. "type": "package",
  4799. "path": "microsoft.aspnetcore.diagnostics/2.1.1",
  4800. "files": [
  4801. ".nupkg.metadata",
  4802. ".signature.p7s",
  4803. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll",
  4804. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.xml",
  4805. "microsoft.aspnetcore.diagnostics.2.1.1.nupkg.sha512",
  4806. "microsoft.aspnetcore.diagnostics.nuspec"
  4807. ]
  4808. },
  4809. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.1.1": {
  4810. "sha512": "W4V3uJY3mIUZbmon6MKOVr16r/NPgn/ey06L+BKf6uzXPua1Tzwlkz5h101b/Ncaown0iEJz5Pm6heYj+Fr/WQ==",
  4811. "type": "package",
  4812. "path": "microsoft.aspnetcore.diagnostics.abstractions/2.1.1",
  4813. "files": [
  4814. ".nupkg.metadata",
  4815. ".signature.p7s",
  4816. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
  4817. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml",
  4818. "microsoft.aspnetcore.diagnostics.abstractions.2.1.1.nupkg.sha512",
  4819. "microsoft.aspnetcore.diagnostics.abstractions.nuspec"
  4820. ]
  4821. },
  4822. "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.1.1": {
  4823. "sha512": "w83RRqB1P8T/SiNV8BXdlTmWouPa0Ev9DjvVdvGZTo0ZTR3pq29ZtwVz/EgKStK6Y0n/TNJUBdOxW7+8Xg7K4A==",
  4824. "type": "package",
  4825. "path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/2.1.1",
  4826. "files": [
  4827. ".nupkg.metadata",
  4828. ".signature.p7s",
  4829. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll",
  4830. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.xml",
  4831. "microsoft.aspnetcore.diagnostics.entityframeworkcore.2.1.1.nupkg.sha512",
  4832. "microsoft.aspnetcore.diagnostics.entityframeworkcore.nuspec"
  4833. ]
  4834. },
  4835. "Microsoft.AspNetCore.HostFiltering/2.1.1": {
  4836. "sha512": "tTlWJ/2Br7W7AtBj5ufWKD0oZBs1rJ5/GIN15PLIHmDPMWCHgxeX+F5tLFgkSoCmQWOJAPy+thltfgpz9Gkp6g==",
  4837. "type": "package",
  4838. "path": "microsoft.aspnetcore.hostfiltering/2.1.1",
  4839. "files": [
  4840. ".nupkg.metadata",
  4841. ".signature.p7s",
  4842. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll",
  4843. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.xml",
  4844. "microsoft.aspnetcore.hostfiltering.2.1.1.nupkg.sha512",
  4845. "microsoft.aspnetcore.hostfiltering.nuspec"
  4846. ]
  4847. },
  4848. "Microsoft.AspNetCore.Hosting/2.1.1": {
  4849. "sha512": "MqYc0DUxrhAPnb5b4HFspxsoJT+gJlLsliSxIgovf4BsbmpaXQId0/pDiVzLuEbmks2w1/lRfY8w0lQOuK1jQQ==",
  4850. "type": "package",
  4851. "path": "microsoft.aspnetcore.hosting/2.1.1",
  4852. "files": [
  4853. ".nupkg.metadata",
  4854. ".signature.p7s",
  4855. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll",
  4856. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.xml",
  4857. "microsoft.aspnetcore.hosting.2.1.1.nupkg.sha512",
  4858. "microsoft.aspnetcore.hosting.nuspec"
  4859. ]
  4860. },
  4861. "Microsoft.AspNetCore.Hosting.Abstractions/2.1.1": {
  4862. "sha512": "76cKcp2pWhvdV2TXTqMg/DyW7N6cDzTEhtL8vVWFShQN+Ylwv3eO/vUQr2BS3Hz4IZHEpL+FOo2T+MtymHDqDQ==",
  4863. "type": "package",
  4864. "path": "microsoft.aspnetcore.hosting.abstractions/2.1.1",
  4865. "files": [
  4866. ".nupkg.metadata",
  4867. ".signature.p7s",
  4868. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  4869. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  4870. "microsoft.aspnetcore.hosting.abstractions.2.1.1.nupkg.sha512",
  4871. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  4872. ]
  4873. },
  4874. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.1": {
  4875. "sha512": "+vD7HJYzAXNq17t+NgRkpS38cxuAyOBu8ixruOiA3nWsybozolUdALWiZ5QFtGRzajSLPFA2YsbO3NPcqoUwcw==",
  4876. "type": "package",
  4877. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.1.1",
  4878. "files": [
  4879. ".nupkg.metadata",
  4880. ".signature.p7s",
  4881. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  4882. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  4883. "microsoft.aspnetcore.hosting.server.abstractions.2.1.1.nupkg.sha512",
  4884. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  4885. ]
  4886. },
  4887. "Microsoft.AspNetCore.Html.Abstractions/2.1.1": {
  4888. "sha512": "CS/2N0d0JUdhYOrnd9Ll6O2Lb++CQaToKem6NyF+9RIgdL3tEZJOJHXcFWSXUSDqML98XQzbtnV+dCT22cBrRw==",
  4889. "type": "package",
  4890. "path": "microsoft.aspnetcore.html.abstractions/2.1.1",
  4891. "files": [
  4892. ".nupkg.metadata",
  4893. ".signature.p7s",
  4894. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll",
  4895. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.xml",
  4896. "microsoft.aspnetcore.html.abstractions.2.1.1.nupkg.sha512",
  4897. "microsoft.aspnetcore.html.abstractions.nuspec"
  4898. ]
  4899. },
  4900. "Microsoft.AspNetCore.Http/2.1.1": {
  4901. "sha512": "pPDcCW8spnyibK3krpxrOpaFHf5fjV6k1Hsl6gfh77N/8gRYlLU7MOQDUnjpEwdlHmtxwJKQJNxZqVQOmJGRUw==",
  4902. "type": "package",
  4903. "path": "microsoft.aspnetcore.http/2.1.1",
  4904. "files": [
  4905. ".nupkg.metadata",
  4906. ".signature.p7s",
  4907. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll",
  4908. "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml",
  4909. "microsoft.aspnetcore.http.2.1.1.nupkg.sha512",
  4910. "microsoft.aspnetcore.http.nuspec"
  4911. ]
  4912. },
  4913. "Microsoft.AspNetCore.Http.Abstractions/2.1.1": {
  4914. "sha512": "kQUEVOU4loc8CPSb2WoHFTESqwIa8Ik7ysCBfTwzHAd0moWovc9JQLmhDIHlYLjHbyexqZAlkq/FPRUZqokebw==",
  4915. "type": "package",
  4916. "path": "microsoft.aspnetcore.http.abstractions/2.1.1",
  4917. "files": [
  4918. ".nupkg.metadata",
  4919. ".signature.p7s",
  4920. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  4921. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  4922. "microsoft.aspnetcore.http.abstractions.2.1.1.nupkg.sha512",
  4923. "microsoft.aspnetcore.http.abstractions.nuspec"
  4924. ]
  4925. },
  4926. "Microsoft.AspNetCore.Http.Connections/1.0.1": {
  4927. "sha512": "dofm8DnT+LWhFV6mMUpeD1SNjbAfUQeicP2ILCM3LuIYaZ9dpmHcutefM4K+GDTlPgQa4xs4gcTxPk8wqHE3zA==",
  4928. "type": "package",
  4929. "path": "microsoft.aspnetcore.http.connections/1.0.1",
  4930. "files": [
  4931. ".nupkg.metadata",
  4932. ".signature.p7s",
  4933. "lib/netcoreapp2.1/Microsoft.AspNetCore.Http.Connections.dll",
  4934. "lib/netcoreapp2.1/Microsoft.AspNetCore.Http.Connections.xml",
  4935. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.dll",
  4936. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.xml",
  4937. "microsoft.aspnetcore.http.connections.1.0.1.nupkg.sha512",
  4938. "microsoft.aspnetcore.http.connections.nuspec"
  4939. ]
  4940. },
  4941. "Microsoft.AspNetCore.Http.Connections.Common/1.0.1": {
  4942. "sha512": "klvQz/ZCeY5b8OdfOHDbNQEWhcKiKu9nBkDjDcBIn5Qval2eEwMpIwZrzLEfNe1m2GeOfOLPJYyXEbDDyhbnyA==",
  4943. "type": "package",
  4944. "path": "microsoft.aspnetcore.http.connections.common/1.0.1",
  4945. "files": [
  4946. ".nupkg.metadata",
  4947. ".signature.p7s",
  4948. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.dll",
  4949. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Connections.Common.xml",
  4950. "microsoft.aspnetcore.http.connections.common.1.0.1.nupkg.sha512",
  4951. "microsoft.aspnetcore.http.connections.common.nuspec"
  4952. ]
  4953. },
  4954. "Microsoft.AspNetCore.Http.Extensions/2.1.1": {
  4955. "sha512": "ncAgV+cqsWSqjLXFUTyObGh4Tr7ShYYs3uW8Q/YpRwZn7eLV7dux5Z6GLY+rsdzmIHiia3Q2NWbLULQi7aziHw==",
  4956. "type": "package",
  4957. "path": "microsoft.aspnetcore.http.extensions/2.1.1",
  4958. "files": [
  4959. ".nupkg.metadata",
  4960. ".signature.p7s",
  4961. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll",
  4962. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml",
  4963. "microsoft.aspnetcore.http.extensions.2.1.1.nupkg.sha512",
  4964. "microsoft.aspnetcore.http.extensions.nuspec"
  4965. ]
  4966. },
  4967. "Microsoft.AspNetCore.Http.Features/2.1.1": {
  4968. "sha512": "VklZ7hWgSvHBcDtwYYkdMdI/adlf7ebxTZ9kdzAhX+gUs5jSHE9mZlTamdgf9miSsxc1QjNazHXTDJdVPZKKTw==",
  4969. "type": "package",
  4970. "path": "microsoft.aspnetcore.http.features/2.1.1",
  4971. "files": [
  4972. ".nupkg.metadata",
  4973. ".signature.p7s",
  4974. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  4975. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  4976. "microsoft.aspnetcore.http.features.2.1.1.nupkg.sha512",
  4977. "microsoft.aspnetcore.http.features.nuspec"
  4978. ]
  4979. },
  4980. "Microsoft.AspNetCore.HttpOverrides/2.1.1": {
  4981. "sha512": "7oPPKBQLOWwcdhjcLO8ItuP7Br0Ytjpdq+x5j65XaTeKiD9JPSVadP8ceLoyzttnf7mhY3PuCsyTPbmsDzcclw==",
  4982. "type": "package",
  4983. "path": "microsoft.aspnetcore.httpoverrides/2.1.1",
  4984. "files": [
  4985. ".nupkg.metadata",
  4986. ".signature.p7s",
  4987. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll",
  4988. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.xml",
  4989. "microsoft.aspnetcore.httpoverrides.2.1.1.nupkg.sha512",
  4990. "microsoft.aspnetcore.httpoverrides.nuspec"
  4991. ]
  4992. },
  4993. "Microsoft.AspNetCore.HttpsPolicy/2.1.1": {
  4994. "sha512": "NpdDAjvK2ElehzeOO8nB3tHj8SOFxbSvTSTsPHA5hfeY782BqSvEl9+o5YMVosIRES0o5jkqgzJDlLdn3kT2OQ==",
  4995. "type": "package",
  4996. "path": "microsoft.aspnetcore.httpspolicy/2.1.1",
  4997. "files": [
  4998. ".nupkg.metadata",
  4999. ".signature.p7s",
  5000. "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll",
  5001. "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.xml",
  5002. "microsoft.aspnetcore.httpspolicy.2.1.1.nupkg.sha512",
  5003. "microsoft.aspnetcore.httpspolicy.nuspec"
  5004. ]
  5005. },
  5006. "Microsoft.AspNetCore.Identity/2.1.1": {
  5007. "sha512": "pcVCJSyg5OkKJUyhsFZa3iovu2dqVVB8y9gn1DeDA+7atQhksjB+UMpM4m+EY9awXHZGwmAn6a5xws8rWFEowA==",
  5008. "type": "package",
  5009. "path": "microsoft.aspnetcore.identity/2.1.1",
  5010. "files": [
  5011. ".nupkg.metadata",
  5012. ".signature.p7s",
  5013. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll",
  5014. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.xml",
  5015. "microsoft.aspnetcore.identity.2.1.1.nupkg.sha512",
  5016. "microsoft.aspnetcore.identity.nuspec"
  5017. ]
  5018. },
  5019. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.1.1": {
  5020. "sha512": "0KM6pAyIsBBgPlqdb3Ah0W/DmF+uxtIgHyY46R2ys2Tmusvgu8eUDIPCJO8P9wsO/o3mpllWlgc5frbJhGnLUQ==",
  5021. "type": "package",
  5022. "path": "microsoft.aspnetcore.identity.entityframeworkcore/2.1.1",
  5023. "files": [
  5024. ".nupkg.metadata",
  5025. ".signature.p7s",
  5026. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  5027. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  5028. "microsoft.aspnetcore.identity.entityframeworkcore.2.1.1.nupkg.sha512",
  5029. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  5030. ]
  5031. },
  5032. "Microsoft.AspNetCore.Identity.UI/2.1.1": {
  5033. "sha512": "yhu4axBWxNC/ROaobQBDJnBcZVUE7KASG32s9fvHSlQbVHamIk3Ottxgsg+18yOk1A3yWT+GNTJSFFGc9/qObw==",
  5034. "type": "package",
  5035. "path": "microsoft.aspnetcore.identity.ui/2.1.1",
  5036. "files": [
  5037. ".nupkg.metadata",
  5038. ".signature.p7s",
  5039. "THIRD-PARTY-NOTICES",
  5040. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.Views.dll",
  5041. "lib/netstandard2.0/Microsoft.AspNetCore.Identity.UI.dll",
  5042. "microsoft.aspnetcore.identity.ui.2.1.1.nupkg.sha512",
  5043. "microsoft.aspnetcore.identity.ui.nuspec"
  5044. ]
  5045. },
  5046. "Microsoft.AspNetCore.JsonPatch/2.1.1": {
  5047. "sha512": "VjTsHQQG5H8Gjw6oi3jLUc6Wnc9Gnj1alQIwVsbfxuoXS5j0rTpzIKcRNyppEf0eQfI5fV/IDPJxgxV0NK5Xgw==",
  5048. "type": "package",
  5049. "path": "microsoft.aspnetcore.jsonpatch/2.1.1",
  5050. "files": [
  5051. ".nupkg.metadata",
  5052. ".signature.p7s",
  5053. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  5054. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  5055. "microsoft.aspnetcore.jsonpatch.2.1.1.nupkg.sha512",
  5056. "microsoft.aspnetcore.jsonpatch.nuspec"
  5057. ]
  5058. },
  5059. "Microsoft.AspNetCore.Localization/2.1.1": {
  5060. "sha512": "vq/zYk4PxqLdhQq269RgmT9Tp44cEMYFm4aFU6B61TMzUyHIjiIYTvNcuAI+5VVBU6n6GfExxeF11J3U4Pzupw==",
  5061. "type": "package",
  5062. "path": "microsoft.aspnetcore.localization/2.1.1",
  5063. "files": [
  5064. ".nupkg.metadata",
  5065. ".signature.p7s",
  5066. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll",
  5067. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.xml",
  5068. "microsoft.aspnetcore.localization.2.1.1.nupkg.sha512",
  5069. "microsoft.aspnetcore.localization.nuspec"
  5070. ]
  5071. },
  5072. "Microsoft.AspNetCore.Localization.Routing/2.1.1": {
  5073. "sha512": "8EvpC+Crv3pkrPioRo+/mzEDYeCQ550oeYYPXjpiP6RWCQ/miUQa6ZdYvMYlcRawDFYGqlCYeeSBZCn0lcwu6Q==",
  5074. "type": "package",
  5075. "path": "microsoft.aspnetcore.localization.routing/2.1.1",
  5076. "files": [
  5077. ".nupkg.metadata",
  5078. ".signature.p7s",
  5079. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll",
  5080. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.xml",
  5081. "microsoft.aspnetcore.localization.routing.2.1.1.nupkg.sha512",
  5082. "microsoft.aspnetcore.localization.routing.nuspec"
  5083. ]
  5084. },
  5085. "Microsoft.AspNetCore.MiddlewareAnalysis/2.1.1": {
  5086. "sha512": "dBj5AUA488Clf+J9eOO/en8FBb0sq9sYS0Ptghw+jm9XLUtSCKte3PKGmKg3dz0sC2OroF60Qf3q4P3RzSr6bQ==",
  5087. "type": "package",
  5088. "path": "microsoft.aspnetcore.middlewareanalysis/2.1.1",
  5089. "files": [
  5090. ".nupkg.metadata",
  5091. ".signature.p7s",
  5092. "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll",
  5093. "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.xml",
  5094. "microsoft.aspnetcore.middlewareanalysis.2.1.1.nupkg.sha512",
  5095. "microsoft.aspnetcore.middlewareanalysis.nuspec"
  5096. ]
  5097. },
  5098. "Microsoft.AspNetCore.Mvc/2.1.1": {
  5099. "sha512": "hFr14TSHMAGWIZuQNUyyKMOv1d2INBEGrdMeiaHIW9ksRn+NoCVSUvAudy12sr33XHmvkYxlFGa+/pMep2Uv5g==",
  5100. "type": "package",
  5101. "path": "microsoft.aspnetcore.mvc/2.1.1",
  5102. "files": [
  5103. ".nupkg.metadata",
  5104. ".signature.p7s",
  5105. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll",
  5106. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.xml",
  5107. "microsoft.aspnetcore.mvc.2.1.1.nupkg.sha512",
  5108. "microsoft.aspnetcore.mvc.nuspec"
  5109. ]
  5110. },
  5111. "Microsoft.AspNetCore.Mvc.Abstractions/2.1.1": {
  5112. "sha512": "yPCcZRo+wzp/B9Su09LHpZ/BpexBwJNqIfWat8spGs0VMHM8LNNkmVaSc5yGgowcK6DCvyRa1B/O0Kf/7codjg==",
  5113. "type": "package",
  5114. "path": "microsoft.aspnetcore.mvc.abstractions/2.1.1",
  5115. "files": [
  5116. ".nupkg.metadata",
  5117. ".signature.p7s",
  5118. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll",
  5119. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml",
  5120. "microsoft.aspnetcore.mvc.abstractions.2.1.1.nupkg.sha512",
  5121. "microsoft.aspnetcore.mvc.abstractions.nuspec"
  5122. ]
  5123. },
  5124. "Microsoft.AspNetCore.Mvc.Analyzers/2.1.1": {
  5125. "sha512": "Svs3QJlDfu7ulKNy2RkJrPtmgwGtZzCBHXuFyMNZL0ceggjBTPzp9nAtGvEXVMNBHdcGPDRy4AIWgrr1Rial/A==",
  5126. "type": "package",
  5127. "path": "microsoft.aspnetcore.mvc.analyzers/2.1.1",
  5128. "files": [
  5129. ".nupkg.metadata",
  5130. ".signature.p7s",
  5131. "analyzers/dotnet/cs/Microsoft.AspNetCore.Mvc.Analyzers.dll",
  5132. "microsoft.aspnetcore.mvc.analyzers.2.1.1.nupkg.sha512",
  5133. "microsoft.aspnetcore.mvc.analyzers.nuspec"
  5134. ]
  5135. },
  5136. "Microsoft.AspNetCore.Mvc.ApiExplorer/2.1.1": {
  5137. "sha512": "B2L5rcuMeY8MAcscXLywgvjMBgta7k4/kRa7SxMwr04ucTKL2yayPSuqRZI54mlTbQXv2XJYLnmwxO/k4/v39A==",
  5138. "type": "package",
  5139. "path": "microsoft.aspnetcore.mvc.apiexplorer/2.1.1",
  5140. "files": [
  5141. ".nupkg.metadata",
  5142. ".signature.p7s",
  5143. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll",
  5144. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.xml",
  5145. "microsoft.aspnetcore.mvc.apiexplorer.2.1.1.nupkg.sha512",
  5146. "microsoft.aspnetcore.mvc.apiexplorer.nuspec"
  5147. ]
  5148. },
  5149. "Microsoft.AspNetCore.Mvc.Core/2.1.1": {
  5150. "sha512": "bUodGAZGxD0IwHRzJxG9DBh/Jewh270SN+q1kjhPqkDPh1WCMKXNkSETMR6oVevkfps63aqx+O04BfXb1aauSg==",
  5151. "type": "package",
  5152. "path": "microsoft.aspnetcore.mvc.core/2.1.1",
  5153. "files": [
  5154. ".nupkg.metadata",
  5155. ".signature.p7s",
  5156. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll",
  5157. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml",
  5158. "microsoft.aspnetcore.mvc.core.2.1.1.nupkg.sha512",
  5159. "microsoft.aspnetcore.mvc.core.nuspec"
  5160. ]
  5161. },
  5162. "Microsoft.AspNetCore.Mvc.Cors/2.1.1": {
  5163. "sha512": "0byu3lj53VSXuUZBlB/9iMFm7wDPuxyCfN4OP7EXzDvWhZfv3ZPdUZ6lEElP67thY+VduVchVoXJFMdZUidUWA==",
  5164. "type": "package",
  5165. "path": "microsoft.aspnetcore.mvc.cors/2.1.1",
  5166. "files": [
  5167. ".nupkg.metadata",
  5168. ".signature.p7s",
  5169. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll",
  5170. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.xml",
  5171. "microsoft.aspnetcore.mvc.cors.2.1.1.nupkg.sha512",
  5172. "microsoft.aspnetcore.mvc.cors.nuspec"
  5173. ]
  5174. },
  5175. "Microsoft.AspNetCore.Mvc.DataAnnotations/2.1.1": {
  5176. "sha512": "dm5vcAuddX8gnzxa69Eej76SzmMN/nE1PHgeVdG7wsAXrTK12XgVXw7o4S+RP7I8bwXx0ySz3kupK7YOd/3T3g==",
  5177. "type": "package",
  5178. "path": "microsoft.aspnetcore.mvc.dataannotations/2.1.1",
  5179. "files": [
  5180. ".nupkg.metadata",
  5181. ".signature.p7s",
  5182. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
  5183. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
  5184. "microsoft.aspnetcore.mvc.dataannotations.2.1.1.nupkg.sha512",
  5185. "microsoft.aspnetcore.mvc.dataannotations.nuspec"
  5186. ]
  5187. },
  5188. "Microsoft.AspNetCore.Mvc.Formatters.Json/2.1.1": {
  5189. "sha512": "c8DTUVcEegNouWXf66J5rnCXxyMEqz6EadMEISSE3ZBvGjVP5Q3BO0U7gIRef6jnUa3EpvCvRjP2Dy5WqSKlCA==",
  5190. "type": "package",
  5191. "path": "microsoft.aspnetcore.mvc.formatters.json/2.1.1",
  5192. "files": [
  5193. ".nupkg.metadata",
  5194. ".signature.p7s",
  5195. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
  5196. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
  5197. "microsoft.aspnetcore.mvc.formatters.json.2.1.1.nupkg.sha512",
  5198. "microsoft.aspnetcore.mvc.formatters.json.nuspec"
  5199. ]
  5200. },
  5201. "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.1.1": {
  5202. "sha512": "4a4Icc8KYqGL92MYgpecndKWYY6o2WC5aJ2XraFlS7Mr0aiiJ48JK5CefAfVG9G19xhd1Jg8AVUcycrgzfLa8Q==",
  5203. "type": "package",
  5204. "path": "microsoft.aspnetcore.mvc.formatters.xml/2.1.1",
  5205. "files": [
  5206. ".nupkg.metadata",
  5207. ".signature.p7s",
  5208. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll",
  5209. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.xml",
  5210. "microsoft.aspnetcore.mvc.formatters.xml.2.1.1.nupkg.sha512",
  5211. "microsoft.aspnetcore.mvc.formatters.xml.nuspec"
  5212. ]
  5213. },
  5214. "Microsoft.AspNetCore.Mvc.Localization/2.1.1": {
  5215. "sha512": "XXZr5faILplGbLcUQKMUA7UkDBKtsUcUJ9xEQSWBJYfJdoMmqUwEWPcg6KKI/w5I2JX0k+HES6wNxOFODN0QeA==",
  5216. "type": "package",
  5217. "path": "microsoft.aspnetcore.mvc.localization/2.1.1",
  5218. "files": [
  5219. ".nupkg.metadata",
  5220. ".signature.p7s",
  5221. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll",
  5222. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.xml",
  5223. "microsoft.aspnetcore.mvc.localization.2.1.1.nupkg.sha512",
  5224. "microsoft.aspnetcore.mvc.localization.nuspec"
  5225. ]
  5226. },
  5227. "Microsoft.AspNetCore.Mvc.Razor/2.1.1": {
  5228. "sha512": "v0ABJp+cQZR0Jv+u1fLUV7dtwBNLAk8rmiimkUvaOuEo0EV7pTXmXkKiq87KWmlbJOT48auPIamozQcXoptzEA==",
  5229. "type": "package",
  5230. "path": "microsoft.aspnetcore.mvc.razor/2.1.1",
  5231. "files": [
  5232. ".nupkg.metadata",
  5233. ".signature.p7s",
  5234. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll",
  5235. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.xml",
  5236. "microsoft.aspnetcore.mvc.razor.2.1.1.nupkg.sha512",
  5237. "microsoft.aspnetcore.mvc.razor.nuspec"
  5238. ]
  5239. },
  5240. "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.1.1": {
  5241. "sha512": "dX6QcZLUbIQj2BC+lkmlAvHPrDzrknmO1YW1AUNh2GKk9iEAhlVraxzsQo10IvYdXOhJGhiqa6gVyq9fledK1g==",
  5242. "type": "package",
  5243. "path": "microsoft.aspnetcore.mvc.razor.extensions/2.1.1",
  5244. "files": [
  5245. ".nupkg.metadata",
  5246. ".signature.p7s",
  5247. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.props",
  5248. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.targets",
  5249. "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  5250. "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml",
  5251. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  5252. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml",
  5253. "microsoft.aspnetcore.mvc.razor.extensions.2.1.1.nupkg.sha512",
  5254. "microsoft.aspnetcore.mvc.razor.extensions.nuspec"
  5255. ]
  5256. },
  5257. "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.1.1": {
  5258. "sha512": "kLys2AJY1GK4aOMJokvLX8U/V7/KF7bhfVwRwZHh4yxY6cgOJaNxWlJvdFFTpfGb0hcoSP4fRjfUFlFBp8L+gQ==",
  5259. "type": "package",
  5260. "path": "microsoft.aspnetcore.mvc.razor.viewcompilation/2.1.1",
  5261. "files": [
  5262. ".nupkg.metadata",
  5263. ".signature.p7s",
  5264. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation-x64.exe",
  5265. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation-x86.exe",
  5266. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks.dll",
  5267. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.dll",
  5268. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets",
  5269. "microsoft.aspnetcore.mvc.razor.viewcompilation.2.1.1.nupkg.sha512",
  5270. "microsoft.aspnetcore.mvc.razor.viewcompilation.nuspec"
  5271. ]
  5272. },
  5273. "Microsoft.AspNetCore.Mvc.RazorPages/2.1.1": {
  5274. "sha512": "6x88e1h83q4sbwb1CmFP0vHZKfWcBuTnNIsG9HrJij86m07B933bK7hsy/35aD9DiET1G9HUMWH14wYKqjglKg==",
  5275. "type": "package",
  5276. "path": "microsoft.aspnetcore.mvc.razorpages/2.1.1",
  5277. "files": [
  5278. ".nupkg.metadata",
  5279. ".signature.p7s",
  5280. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll",
  5281. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml",
  5282. "microsoft.aspnetcore.mvc.razorpages.2.1.1.nupkg.sha512",
  5283. "microsoft.aspnetcore.mvc.razorpages.nuspec"
  5284. ]
  5285. },
  5286. "Microsoft.AspNetCore.Mvc.TagHelpers/2.1.1": {
  5287. "sha512": "sWc6kHa77U/sU99iKd4d3B+uwlWJxGJYJmMGAhm5F1nVarzBaB2vnDlB4gXxuD24clzm/ZGrKJyBOrhwBtcTXw==",
  5288. "type": "package",
  5289. "path": "microsoft.aspnetcore.mvc.taghelpers/2.1.1",
  5290. "files": [
  5291. ".nupkg.metadata",
  5292. ".signature.p7s",
  5293. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
  5294. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.xml",
  5295. "microsoft.aspnetcore.mvc.taghelpers.2.1.1.nupkg.sha512",
  5296. "microsoft.aspnetcore.mvc.taghelpers.nuspec"
  5297. ]
  5298. },
  5299. "Microsoft.AspNetCore.Mvc.ViewFeatures/2.1.1": {
  5300. "sha512": "QL1gD9nqqtvMdrKPA87paWc0Zpk32KXwJgTNvHjtiWmjhSWf+875Vlvj4VT8tTTwEu43kwLk4Wno97U3bKzzmg==",
  5301. "type": "package",
  5302. "path": "microsoft.aspnetcore.mvc.viewfeatures/2.1.1",
  5303. "files": [
  5304. ".nupkg.metadata",
  5305. ".signature.p7s",
  5306. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
  5307. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
  5308. "microsoft.aspnetcore.mvc.viewfeatures.2.1.1.nupkg.sha512",
  5309. "microsoft.aspnetcore.mvc.viewfeatures.nuspec"
  5310. ]
  5311. },
  5312. "Microsoft.AspNetCore.NodeServices/2.1.1": {
  5313. "sha512": "zULLPbtIXzz8KFmDVr3lDwn6WhqtGP2MBbc602ViI9ymXFlPRBL7jrvfUg6+PhBxDnpHmOaZNJLIl+8rJha46w==",
  5314. "type": "package",
  5315. "path": "microsoft.aspnetcore.nodeservices/2.1.1",
  5316. "files": [
  5317. ".nupkg.metadata",
  5318. ".signature.p7s",
  5319. "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll",
  5320. "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.xml",
  5321. "microsoft.aspnetcore.nodeservices.2.1.1.nupkg.sha512",
  5322. "microsoft.aspnetcore.nodeservices.nuspec"
  5323. ]
  5324. },
  5325. "Microsoft.AspNetCore.Owin/2.1.1": {
  5326. "sha512": "OKovgdeKNc2XE31363rCa5ON30FFlcjC4zfsXRokpHZdVUX1A0cllNlXyNggJf1K+5DepBr/fv6BuuX6x/ZZYQ==",
  5327. "type": "package",
  5328. "path": "microsoft.aspnetcore.owin/2.1.1",
  5329. "files": [
  5330. ".nupkg.metadata",
  5331. ".signature.p7s",
  5332. "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll",
  5333. "lib/netstandard2.0/Microsoft.AspNetCore.Owin.xml",
  5334. "microsoft.aspnetcore.owin.2.1.1.nupkg.sha512",
  5335. "microsoft.aspnetcore.owin.nuspec"
  5336. ]
  5337. },
  5338. "Microsoft.AspNetCore.Razor/2.1.1": {
  5339. "sha512": "2yYunEgYC7hOyasvMiiH+a8250l+l1R79jB6VarZ6I8fiXDNCrJ/mEEn9TS0vDidAzesOshFigepa6+qI5Cb0w==",
  5340. "type": "package",
  5341. "path": "microsoft.aspnetcore.razor/2.1.1",
  5342. "files": [
  5343. ".nupkg.metadata",
  5344. ".signature.p7s",
  5345. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll",
  5346. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.xml",
  5347. "microsoft.aspnetcore.razor.2.1.1.nupkg.sha512",
  5348. "microsoft.aspnetcore.razor.nuspec"
  5349. ]
  5350. },
  5351. "Microsoft.AspNetCore.Razor.Design/2.1.2": {
  5352. "sha512": "fe1+dpy+eM4IX1zodsvkihO1Spuj0NecfStWzvkYoMo7/ziOsqSv4vFK36ZpBfHa4gpdCEwaU46EPzdq+ZDYhQ==",
  5353. "type": "package",
  5354. "path": "microsoft.aspnetcore.razor.design/2.1.2",
  5355. "hasTools": true,
  5356. "files": [
  5357. ".nupkg.metadata",
  5358. ".signature.p7s",
  5359. "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets",
  5360. "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.props",
  5361. "buildMultiTargeting/Microsoft.AspNetCore.Razor.Design.props",
  5362. "microsoft.aspnetcore.razor.design.2.1.2.nupkg.sha512",
  5363. "microsoft.aspnetcore.razor.design.nuspec",
  5364. "tasks/net46/Microsoft.AspNetCore.Razor.Tasks.dll",
  5365. "tasks/netstandard2.0/Microsoft.AspNetCore.Razor.Tasks.dll",
  5366. "tools/Microsoft.AspNetCore.Razor.Language.dll",
  5367. "tools/Microsoft.CodeAnalysis.CSharp.dll",
  5368. "tools/Microsoft.CodeAnalysis.Razor.dll",
  5369. "tools/Microsoft.CodeAnalysis.dll",
  5370. "tools/Newtonsoft.Json.dll",
  5371. "tools/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  5372. "tools/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  5373. "tools/rzc.deps.json",
  5374. "tools/rzc.dll",
  5375. "tools/rzc.runtimeconfig.json"
  5376. ]
  5377. },
  5378. "Microsoft.AspNetCore.Razor.Language/2.1.1": {
  5379. "sha512": "NbDH62ez/AZzSAGZuy6dIMBDMV0HmBlbWJqPw/ZX+Ooz8x1oZq6i/LbPbt34CQlAkrm7lnAlWZq+cE7dzkvGiQ==",
  5380. "type": "package",
  5381. "path": "microsoft.aspnetcore.razor.language/2.1.1",
  5382. "files": [
  5383. ".nupkg.metadata",
  5384. ".signature.p7s",
  5385. "lib/net46/Microsoft.AspNetCore.Razor.Language.dll",
  5386. "lib/net46/Microsoft.AspNetCore.Razor.Language.xml",
  5387. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  5388. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.xml",
  5389. "microsoft.aspnetcore.razor.language.2.1.1.nupkg.sha512",
  5390. "microsoft.aspnetcore.razor.language.nuspec"
  5391. ]
  5392. },
  5393. "Microsoft.AspNetCore.Razor.Runtime/2.1.1": {
  5394. "sha512": "m+lFv8BGZiR/1mtuBCwCtwvoQlx0QpjUbH6ixqqm7v8+uhXo6RKGV4CHBDozuJhhI4qb9dxNyyWhVm3S0bY8Zw==",
  5395. "type": "package",
  5396. "path": "microsoft.aspnetcore.razor.runtime/2.1.1",
  5397. "files": [
  5398. ".nupkg.metadata",
  5399. ".signature.p7s",
  5400. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll",
  5401. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.xml",
  5402. "microsoft.aspnetcore.razor.runtime.2.1.1.nupkg.sha512",
  5403. "microsoft.aspnetcore.razor.runtime.nuspec"
  5404. ]
  5405. },
  5406. "Microsoft.AspNetCore.ResponseCaching/2.1.1": {
  5407. "sha512": "cWottukasno+Z711nAMe7Pp0961/PhxquLhzWv5Jlbt/EE6RjYTnggBg3weE7N0oWXPe8SkgQURqUKuqZcrrQQ==",
  5408. "type": "package",
  5409. "path": "microsoft.aspnetcore.responsecaching/2.1.1",
  5410. "files": [
  5411. ".nupkg.metadata",
  5412. ".signature.p7s",
  5413. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll",
  5414. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.xml",
  5415. "microsoft.aspnetcore.responsecaching.2.1.1.nupkg.sha512",
  5416. "microsoft.aspnetcore.responsecaching.nuspec"
  5417. ]
  5418. },
  5419. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.1.1": {
  5420. "sha512": "sTJvhc408h4J8ml66gfhuN/r2WfrasvgERq2ZLIDz3YZYqSXmkpwDjbxSlhzuHQFKMlyx1Tg1uWoF+6eRrKjDA==",
  5421. "type": "package",
  5422. "path": "microsoft.aspnetcore.responsecaching.abstractions/2.1.1",
  5423. "files": [
  5424. ".nupkg.metadata",
  5425. ".signature.p7s",
  5426. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
  5427. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
  5428. "microsoft.aspnetcore.responsecaching.abstractions.2.1.1.nupkg.sha512",
  5429. "microsoft.aspnetcore.responsecaching.abstractions.nuspec"
  5430. ]
  5431. },
  5432. "Microsoft.AspNetCore.ResponseCompression/2.1.1": {
  5433. "sha512": "IsPhTWXqouyu+vionm5ih2ZJnSh/XmOrm8X77Ty/APnzy8mwgWy6VxxjtQQTgb4zCaTWs1aVJvM+fLtWGuoksg==",
  5434. "type": "package",
  5435. "path": "microsoft.aspnetcore.responsecompression/2.1.1",
  5436. "files": [
  5437. ".nupkg.metadata",
  5438. ".signature.p7s",
  5439. "lib/net461/Microsoft.AspNetCore.ResponseCompression.dll",
  5440. "lib/net461/Microsoft.AspNetCore.ResponseCompression.xml",
  5441. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.dll",
  5442. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.xml",
  5443. "microsoft.aspnetcore.responsecompression.2.1.1.nupkg.sha512",
  5444. "microsoft.aspnetcore.responsecompression.nuspec"
  5445. ]
  5446. },
  5447. "Microsoft.AspNetCore.Rewrite/2.1.1": {
  5448. "sha512": "8hFPHYCoy5yeWoOyWKFWy4XH7OxbVIOj48zkH1+pAhLuIDhTKm7A4gMS/ocdomFCy0F5+AOUhksaANwjCWjndg==",
  5449. "type": "package",
  5450. "path": "microsoft.aspnetcore.rewrite/2.1.1",
  5451. "files": [
  5452. ".nupkg.metadata",
  5453. ".signature.p7s",
  5454. "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll",
  5455. "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.xml",
  5456. "microsoft.aspnetcore.rewrite.2.1.1.nupkg.sha512",
  5457. "microsoft.aspnetcore.rewrite.nuspec"
  5458. ]
  5459. },
  5460. "Microsoft.AspNetCore.Routing/2.1.1": {
  5461. "sha512": "U39z3M0oTrquVBohK32Nh20PWQkb9fuO1dbVPTI43Dr3n6qCx6vAFNGWuCzFeINLy152LivmVlLn4rMOzWudug==",
  5462. "type": "package",
  5463. "path": "microsoft.aspnetcore.routing/2.1.1",
  5464. "files": [
  5465. ".nupkg.metadata",
  5466. ".signature.p7s",
  5467. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll",
  5468. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml",
  5469. "microsoft.aspnetcore.routing.2.1.1.nupkg.sha512",
  5470. "microsoft.aspnetcore.routing.nuspec"
  5471. ]
  5472. },
  5473. "Microsoft.AspNetCore.Routing.Abstractions/2.1.1": {
  5474. "sha512": "Aa88Bi0/HI8dPReC0XqByPiVGYDRfj6Xh2eVsNCisnlgFHonDdW9CQsNPhVSK+uWQl3kDMFxFpeJ1ktz/wUHsQ==",
  5475. "type": "package",
  5476. "path": "microsoft.aspnetcore.routing.abstractions/2.1.1",
  5477. "files": [
  5478. ".nupkg.metadata",
  5479. ".signature.p7s",
  5480. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll",
  5481. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml",
  5482. "microsoft.aspnetcore.routing.abstractions.2.1.1.nupkg.sha512",
  5483. "microsoft.aspnetcore.routing.abstractions.nuspec"
  5484. ]
  5485. },
  5486. "Microsoft.AspNetCore.Server.HttpSys/2.1.1": {
  5487. "sha512": "/5UtIMm6I3Y5gVe5nERpbPEmENbsXNekQTx86Juy8zSqj1k6RczkheIsI0/efTF8lku6A+d2MdJD2mz4SqlHAA==",
  5488. "type": "package",
  5489. "path": "microsoft.aspnetcore.server.httpsys/2.1.1",
  5490. "files": [
  5491. ".nupkg.metadata",
  5492. ".signature.p7s",
  5493. "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll",
  5494. "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.xml",
  5495. "microsoft.aspnetcore.server.httpsys.2.1.1.nupkg.sha512",
  5496. "microsoft.aspnetcore.server.httpsys.nuspec"
  5497. ]
  5498. },
  5499. "Microsoft.AspNetCore.Server.IISIntegration/2.1.1": {
  5500. "sha512": "jH9bbzOtAqWZfR2qmsfkv83D5paTfPjZ8Jn6E42ofmfDZWE2XT/RJLwhvsMy9sTAaFuVQ+hTuF26MmlQgEp5zw==",
  5501. "type": "package",
  5502. "path": "microsoft.aspnetcore.server.iisintegration/2.1.1",
  5503. "files": [
  5504. ".nupkg.metadata",
  5505. ".signature.p7s",
  5506. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll",
  5507. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.xml",
  5508. "microsoft.aspnetcore.server.iisintegration.2.1.1.nupkg.sha512",
  5509. "microsoft.aspnetcore.server.iisintegration.nuspec"
  5510. ]
  5511. },
  5512. "Microsoft.AspNetCore.Server.Kestrel/2.1.1": {
  5513. "sha512": "Oq/vPCWwAPCEIIOW7gh4+3jcGLYkQeg3ySg9J2DoRhFs71ThdYwTb2goezrVYlMif6MOp7wnE8nBGLnxRms++A==",
  5514. "type": "package",
  5515. "path": "microsoft.aspnetcore.server.kestrel/2.1.1",
  5516. "files": [
  5517. ".nupkg.metadata",
  5518. ".signature.p7s",
  5519. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll",
  5520. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.xml",
  5521. "microsoft.aspnetcore.server.kestrel.2.1.1.nupkg.sha512",
  5522. "microsoft.aspnetcore.server.kestrel.nuspec"
  5523. ]
  5524. },
  5525. "Microsoft.AspNetCore.Server.Kestrel.Core/2.1.1": {
  5526. "sha512": "MYDf5wGCNYBNfy82FMwA2MhmFlTSK8x8dZPUFHGJH13VbAcCaz+Vr7lmgi5WjhdQ+rAeKJFrh2MCNK76bh5KzQ==",
  5527. "type": "package",
  5528. "path": "microsoft.aspnetcore.server.kestrel.core/2.1.1",
  5529. "files": [
  5530. ".nupkg.metadata",
  5531. ".signature.p7s",
  5532. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll",
  5533. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.xml",
  5534. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll",
  5535. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.xml",
  5536. "microsoft.aspnetcore.server.kestrel.core.2.1.1.nupkg.sha512",
  5537. "microsoft.aspnetcore.server.kestrel.core.nuspec"
  5538. ]
  5539. },
  5540. "Microsoft.AspNetCore.Server.Kestrel.Https/2.1.1": {
  5541. "sha512": "f0xLrCFCLs9lJywFo6HLINbADplDFWA0/yIPTcCSm1W4oJByYcBIz340sIB1mvy0b+/v6yNhXaCvPCtrDPPG7w==",
  5542. "type": "package",
  5543. "path": "microsoft.aspnetcore.server.kestrel.https/2.1.1",
  5544. "files": [
  5545. ".nupkg.metadata",
  5546. ".signature.p7s",
  5547. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll",
  5548. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.xml",
  5549. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll",
  5550. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.xml",
  5551. "microsoft.aspnetcore.server.kestrel.https.2.1.1.nupkg.sha512",
  5552. "microsoft.aspnetcore.server.kestrel.https.nuspec"
  5553. ]
  5554. },
  5555. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.1.1": {
  5556. "sha512": "BSWhxqDqjkwj1uMU4RDPMVUB7YqoohtjxaNSL9XMqoCNEfsZN+Qgr17Z4B+KXlWKlik0niFTzIN1ECJOMrMeGg==",
  5557. "type": "package",
  5558. "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.1.1",
  5559. "files": [
  5560. ".nupkg.metadata",
  5561. ".signature.p7s",
  5562. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll",
  5563. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.xml",
  5564. "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.1.1.nupkg.sha512",
  5565. "microsoft.aspnetcore.server.kestrel.transport.abstractions.nuspec"
  5566. ]
  5567. },
  5568. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.1.1": {
  5569. "sha512": "5AzjCMc9iE9ZACbTEdJeoxsrrr1nf+KZc9j3+q4copOYKajuGZpsPpk/1g4vVEYSYiSWSn/WGWvZ20l3KxV0Og==",
  5570. "type": "package",
  5571. "path": "microsoft.aspnetcore.server.kestrel.transport.sockets/2.1.1",
  5572. "files": [
  5573. ".nupkg.metadata",
  5574. ".signature.p7s",
  5575. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll",
  5576. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml",
  5577. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll",
  5578. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml",
  5579. "microsoft.aspnetcore.server.kestrel.transport.sockets.2.1.1.nupkg.sha512",
  5580. "microsoft.aspnetcore.server.kestrel.transport.sockets.nuspec"
  5581. ]
  5582. },
  5583. "Microsoft.AspNetCore.Session/2.1.1": {
  5584. "sha512": "hQ4PHIHw1RmqoqjZKRfT4eL6msUd7K+GwcLUGtd1WZT7mOzqmt2oXkzL0Q+qudgXsNdWmH+zpe0zzqKM8Hz45w==",
  5585. "type": "package",
  5586. "path": "microsoft.aspnetcore.session/2.1.1",
  5587. "files": [
  5588. ".nupkg.metadata",
  5589. ".signature.p7s",
  5590. "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll",
  5591. "lib/netstandard2.0/Microsoft.AspNetCore.Session.xml",
  5592. "microsoft.aspnetcore.session.2.1.1.nupkg.sha512",
  5593. "microsoft.aspnetcore.session.nuspec"
  5594. ]
  5595. },
  5596. "Microsoft.AspNetCore.SignalR/1.0.1": {
  5597. "sha512": "77o2NL9b6NOKOB7hXIY0Ywio1KOb3dmjAyWdDh291Dfr5IXtCpXRnFGl4yrApfTvkFEcaeZ+D+i70tJfeF3onA==",
  5598. "type": "package",
  5599. "path": "microsoft.aspnetcore.signalr/1.0.1",
  5600. "files": [
  5601. ".nupkg.metadata",
  5602. ".signature.p7s",
  5603. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.dll",
  5604. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.xml",
  5605. "microsoft.aspnetcore.signalr.1.0.1.nupkg.sha512",
  5606. "microsoft.aspnetcore.signalr.nuspec"
  5607. ]
  5608. },
  5609. "Microsoft.AspNetCore.SignalR.Common/1.0.1": {
  5610. "sha512": "AlSfju3hS694KgyrX0bPe9A3/Rr97OOIKm1osEO7H9JCVslNRMQUbJ0YlrZxZ8ZbPggwxq+1YNpqSBl3K1FWvA==",
  5611. "type": "package",
  5612. "path": "microsoft.aspnetcore.signalr.common/1.0.1",
  5613. "files": [
  5614. ".nupkg.metadata",
  5615. ".signature.p7s",
  5616. "lib/netcoreapp2.1/Microsoft.AspNetCore.SignalR.Common.dll",
  5617. "lib/netcoreapp2.1/Microsoft.AspNetCore.SignalR.Common.xml",
  5618. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.dll",
  5619. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Common.xml",
  5620. "microsoft.aspnetcore.signalr.common.1.0.1.nupkg.sha512",
  5621. "microsoft.aspnetcore.signalr.common.nuspec"
  5622. ]
  5623. },
  5624. "Microsoft.AspNetCore.SignalR.Core/1.0.1": {
  5625. "sha512": "xf2mbnVyCRAKzcokJeHBjHf8ofzaOjwSiTsEvokSY7px9eYwiSkfXNvnMHSxLBGMyrnUHTwEQBt01QhsuIDHFg==",
  5626. "type": "package",
  5627. "path": "microsoft.aspnetcore.signalr.core/1.0.1",
  5628. "files": [
  5629. ".nupkg.metadata",
  5630. ".signature.p7s",
  5631. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.dll",
  5632. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Core.xml",
  5633. "microsoft.aspnetcore.signalr.core.1.0.1.nupkg.sha512",
  5634. "microsoft.aspnetcore.signalr.core.nuspec"
  5635. ]
  5636. },
  5637. "Microsoft.AspNetCore.SignalR.Protocols.Json/1.0.1": {
  5638. "sha512": "KFthkIAdDJnctIWRKEV5dWSrIc4viqULehmgl9l1aWqc1ZDlRJbxED9MSnDwyEnQDp6s9YDszbqAkvd3n87DLA==",
  5639. "type": "package",
  5640. "path": "microsoft.aspnetcore.signalr.protocols.json/1.0.1",
  5641. "files": [
  5642. ".nupkg.metadata",
  5643. ".signature.p7s",
  5644. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.dll",
  5645. "lib/netstandard2.0/Microsoft.AspNetCore.SignalR.Protocols.Json.xml",
  5646. "microsoft.aspnetcore.signalr.protocols.json.1.0.1.nupkg.sha512",
  5647. "microsoft.aspnetcore.signalr.protocols.json.nuspec"
  5648. ]
  5649. },
  5650. "Microsoft.AspNetCore.SpaServices/2.1.1": {
  5651. "sha512": "pPQr67lzfZzLEk4UXw4Y3zQZrrh3drsnB223q5citrB9y0QualC7Oqpmq3Vq48nsaTBnwYPM5IoEOlWL5gYmPg==",
  5652. "type": "package",
  5653. "path": "microsoft.aspnetcore.spaservices/2.1.1",
  5654. "files": [
  5655. ".nupkg.metadata",
  5656. ".signature.p7s",
  5657. "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll",
  5658. "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.xml",
  5659. "microsoft.aspnetcore.spaservices.2.1.1.nupkg.sha512",
  5660. "microsoft.aspnetcore.spaservices.nuspec"
  5661. ]
  5662. },
  5663. "Microsoft.AspNetCore.SpaServices.Extensions/2.1.1": {
  5664. "sha512": "zlrjDE0kKN20bZ3ObwtyE5Oj14/OjSn+zyIC2hhYatVP5c6lVnpFqR0Th0ISSl2W1DueinlScmDxbk8Ccr7iCQ==",
  5665. "type": "package",
  5666. "path": "microsoft.aspnetcore.spaservices.extensions/2.1.1",
  5667. "files": [
  5668. ".nupkg.metadata",
  5669. ".signature.p7s",
  5670. "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.Extensions.dll",
  5671. "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.Extensions.xml",
  5672. "microsoft.aspnetcore.spaservices.extensions.2.1.1.nupkg.sha512",
  5673. "microsoft.aspnetcore.spaservices.extensions.nuspec"
  5674. ]
  5675. },
  5676. "Microsoft.AspNetCore.StaticFiles/2.1.1": {
  5677. "sha512": "THLu6XGauf9kdAI0OyjoqvY/11Ap/Ra/ZNHfWQjrsS4b0AhvzUZgyuq5xYrmdA4+3goRxkqbH2xvrIISGGsukA==",
  5678. "type": "package",
  5679. "path": "microsoft.aspnetcore.staticfiles/2.1.1",
  5680. "files": [
  5681. ".nupkg.metadata",
  5682. ".signature.p7s",
  5683. "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll",
  5684. "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.xml",
  5685. "microsoft.aspnetcore.staticfiles.2.1.1.nupkg.sha512",
  5686. "microsoft.aspnetcore.staticfiles.nuspec"
  5687. ]
  5688. },
  5689. "Microsoft.AspNetCore.WebSockets/2.1.1": {
  5690. "sha512": "wvp85LiIDuFAtbn5FiD4dpAXUBI203yBEtKeNE1I1ipSrUugY2lJVpZAP+C5F5AJ1RZtWvBl+AP1mhkuDNWpag==",
  5691. "type": "package",
  5692. "path": "microsoft.aspnetcore.websockets/2.1.1",
  5693. "files": [
  5694. ".nupkg.metadata",
  5695. ".signature.p7s",
  5696. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll",
  5697. "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.xml",
  5698. "microsoft.aspnetcore.websockets.2.1.1.nupkg.sha512",
  5699. "microsoft.aspnetcore.websockets.nuspec"
  5700. ]
  5701. },
  5702. "Microsoft.AspNetCore.WebUtilities/2.1.1": {
  5703. "sha512": "PGKIZt4+412Z/XPoSjvYu/QIbTxcAQuEFNoA1Pw8a9mgmO0ZhNBmfaNyhgXFf7Rq62kP0tT/2WXpxdcQhkFUPA==",
  5704. "type": "package",
  5705. "path": "microsoft.aspnetcore.webutilities/2.1.1",
  5706. "files": [
  5707. ".nupkg.metadata",
  5708. ".signature.p7s",
  5709. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll",
  5710. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml",
  5711. "microsoft.aspnetcore.webutilities.2.1.1.nupkg.sha512",
  5712. "microsoft.aspnetcore.webutilities.nuspec"
  5713. ]
  5714. },
  5715. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  5716. "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
  5717. "type": "package",
  5718. "path": "microsoft.codeanalysis.analyzers/1.1.0",
  5719. "hasTools": true,
  5720. "files": [
  5721. ".nupkg.metadata",
  5722. "ThirdPartyNotices.rtf",
  5723. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  5724. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  5725. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  5726. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  5727. "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512",
  5728. "microsoft.codeanalysis.analyzers.nuspec",
  5729. "tools/install.ps1",
  5730. "tools/uninstall.ps1"
  5731. ]
  5732. },
  5733. "Microsoft.CodeAnalysis.Common/2.8.0": {
  5734. "sha512": "06AzG7oOLKTCN1EnoVYL1bQz+Zwa10LMpUn7Kc+PdpN8CQXRqXTyhfxuKIz6t0qWfoatBNXdHD0OLcEYp5pOvQ==",
  5735. "type": "package",
  5736. "path": "microsoft.codeanalysis.common/2.8.0",
  5737. "files": [
  5738. ".nupkg.metadata",
  5739. ".signature.p7s",
  5740. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll",
  5741. "lib/netstandard1.3/Microsoft.CodeAnalysis.pdb",
  5742. "lib/netstandard1.3/Microsoft.CodeAnalysis.xml",
  5743. "microsoft.codeanalysis.common.2.8.0.nupkg.sha512",
  5744. "microsoft.codeanalysis.common.nuspec"
  5745. ]
  5746. },
  5747. "Microsoft.CodeAnalysis.CSharp/2.8.0": {
  5748. "sha512": "RizcFXuHgGmeuZhxxE1qQdhFA9lGOHlk0MJlCUt6LOnYsevo72gNikPcbANFHY02YK8L/buNrihchY0TroGvXQ==",
  5749. "type": "package",
  5750. "path": "microsoft.codeanalysis.csharp/2.8.0",
  5751. "files": [
  5752. ".nupkg.metadata",
  5753. ".signature.p7s",
  5754. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll",
  5755. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.pdb",
  5756. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml",
  5757. "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512",
  5758. "microsoft.codeanalysis.csharp.nuspec"
  5759. ]
  5760. },
  5761. "Microsoft.CodeAnalysis.Razor/2.1.1": {
  5762. "sha512": "hc29VUVlF2t2TfOR3c5X2mun3h5KkswkarpWBffEG4iHoSdoEueo82dplwoXg9lH2vw0mK7VYPyawcKy6YHv3A==",
  5763. "type": "package",
  5764. "path": "microsoft.codeanalysis.razor/2.1.1",
  5765. "files": [
  5766. ".nupkg.metadata",
  5767. ".signature.p7s",
  5768. "lib/net46/Microsoft.CodeAnalysis.Razor.dll",
  5769. "lib/net46/Microsoft.CodeAnalysis.Razor.xml",
  5770. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  5771. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.xml",
  5772. "microsoft.codeanalysis.razor.2.1.1.nupkg.sha512",
  5773. "microsoft.codeanalysis.razor.nuspec"
  5774. ]
  5775. },
  5776. "Microsoft.CSharp/4.5.0": {
  5777. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  5778. "type": "package",
  5779. "path": "microsoft.csharp/4.5.0",
  5780. "files": [
  5781. ".nupkg.metadata",
  5782. ".signature.p7s",
  5783. "LICENSE.TXT",
  5784. "THIRD-PARTY-NOTICES.TXT",
  5785. "lib/MonoAndroid10/_._",
  5786. "lib/MonoTouch10/_._",
  5787. "lib/net45/_._",
  5788. "lib/netcore50/Microsoft.CSharp.dll",
  5789. "lib/netcoreapp2.0/_._",
  5790. "lib/netstandard1.3/Microsoft.CSharp.dll",
  5791. "lib/netstandard2.0/Microsoft.CSharp.dll",
  5792. "lib/portable-net45+win8+wp8+wpa81/_._",
  5793. "lib/uap10.0.16299/_._",
  5794. "lib/win8/_._",
  5795. "lib/wp80/_._",
  5796. "lib/wpa81/_._",
  5797. "lib/xamarinios10/_._",
  5798. "lib/xamarinmac20/_._",
  5799. "lib/xamarintvos10/_._",
  5800. "lib/xamarinwatchos10/_._",
  5801. "microsoft.csharp.4.5.0.nupkg.sha512",
  5802. "microsoft.csharp.nuspec",
  5803. "ref/MonoAndroid10/_._",
  5804. "ref/MonoTouch10/_._",
  5805. "ref/net45/_._",
  5806. "ref/netcore50/Microsoft.CSharp.dll",
  5807. "ref/netcore50/Microsoft.CSharp.xml",
  5808. "ref/netcore50/de/Microsoft.CSharp.xml",
  5809. "ref/netcore50/es/Microsoft.CSharp.xml",
  5810. "ref/netcore50/fr/Microsoft.CSharp.xml",
  5811. "ref/netcore50/it/Microsoft.CSharp.xml",
  5812. "ref/netcore50/ja/Microsoft.CSharp.xml",
  5813. "ref/netcore50/ko/Microsoft.CSharp.xml",
  5814. "ref/netcore50/ru/Microsoft.CSharp.xml",
  5815. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  5816. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  5817. "ref/netcoreapp2.0/_._",
  5818. "ref/netstandard1.0/Microsoft.CSharp.dll",
  5819. "ref/netstandard1.0/Microsoft.CSharp.xml",
  5820. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  5821. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  5822. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  5823. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  5824. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  5825. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  5826. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  5827. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  5828. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  5829. "ref/netstandard2.0/Microsoft.CSharp.dll",
  5830. "ref/netstandard2.0/Microsoft.CSharp.xml",
  5831. "ref/portable-net45+win8+wp8+wpa81/_._",
  5832. "ref/uap10.0.16299/_._",
  5833. "ref/win8/_._",
  5834. "ref/wp80/_._",
  5835. "ref/wpa81/_._",
  5836. "ref/xamarinios10/_._",
  5837. "ref/xamarinmac20/_._",
  5838. "ref/xamarintvos10/_._",
  5839. "ref/xamarinwatchos10/_._",
  5840. "useSharedDesignerContext.txt",
  5841. "version.txt"
  5842. ]
  5843. },
  5844. "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
  5845. "sha512": "9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==",
  5846. "type": "package",
  5847. "path": "microsoft.dotnet.platformabstractions/2.1.0",
  5848. "files": [
  5849. ".nupkg.metadata",
  5850. ".signature.p7s",
  5851. "LICENSE.TXT",
  5852. "THIRD-PARTY-NOTICES.TXT",
  5853. "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll",
  5854. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll",
  5855. "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512",
  5856. "microsoft.dotnet.platformabstractions.nuspec"
  5857. ]
  5858. },
  5859. "Microsoft.EntityFrameworkCore/2.1.1": {
  5860. "sha512": "JuWdlcEkd6VePS1uaiEfGDCuXNkRHFdNuEEdRhlU5E/ikuhSBDy7j0L4hoLAO4/w5u4YpSy59Xwtsq+cIAo+3w==",
  5861. "type": "package",
  5862. "path": "microsoft.entityframeworkcore/2.1.1",
  5863. "files": [
  5864. ".nupkg.metadata",
  5865. ".signature.p7s",
  5866. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  5867. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  5868. "microsoft.entityframeworkcore.2.1.1.nupkg.sha512",
  5869. "microsoft.entityframeworkcore.nuspec"
  5870. ]
  5871. },
  5872. "Microsoft.EntityFrameworkCore.Abstractions/2.1.1": {
  5873. "sha512": "ZAJuDHQ6y8UMfoEPzASNPKah0PtanxBmygtoFFYBg4mwBwHHIekY7TKZZT8nqKs4pSNC1b7z+gRLbSB5ILGlWQ==",
  5874. "type": "package",
  5875. "path": "microsoft.entityframeworkcore.abstractions/2.1.1",
  5876. "files": [
  5877. ".nupkg.metadata",
  5878. ".signature.p7s",
  5879. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  5880. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  5881. "microsoft.entityframeworkcore.abstractions.2.1.1.nupkg.sha512",
  5882. "microsoft.entityframeworkcore.abstractions.nuspec"
  5883. ]
  5884. },
  5885. "Microsoft.EntityFrameworkCore.Analyzers/2.1.1": {
  5886. "sha512": "DiKQA07lCZLV5yyTj0KHh+wJzWl8sO2b1sdW31afxgV6NTrFq29NBQKnxllGkwZ5xr8KwrppRYdHhN8r0+FYVQ==",
  5887. "type": "package",
  5888. "path": "microsoft.entityframeworkcore.analyzers/2.1.1",
  5889. "files": [
  5890. ".nupkg.metadata",
  5891. ".signature.p7s",
  5892. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  5893. "microsoft.entityframeworkcore.analyzers.2.1.1.nupkg.sha512",
  5894. "microsoft.entityframeworkcore.analyzers.nuspec"
  5895. ]
  5896. },
  5897. "Microsoft.EntityFrameworkCore.Design/2.1.1": {
  5898. "sha512": "Bu5c0Eec+tSW1PA0NxDgxzF0cMQjeGQC5RtBtMm3heow2J7X+2LhdkGFPr4IAL6bFLHJiVcE3csng3i6fB/PtA==",
  5899. "type": "package",
  5900. "path": "microsoft.entityframeworkcore.design/2.1.1",
  5901. "files": [
  5902. ".nupkg.metadata",
  5903. ".signature.p7s",
  5904. "build/net461/Microsoft.EntityFrameworkCore.Design.props",
  5905. "build/netcoreapp2.0/Microsoft.EntityFrameworkCore.Design.props",
  5906. "lib/net461/Microsoft.EntityFrameworkCore.Design.dll",
  5907. "lib/net461/Microsoft.EntityFrameworkCore.Design.xml",
  5908. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll",
  5909. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.xml",
  5910. "microsoft.entityframeworkcore.design.2.1.1.nupkg.sha512",
  5911. "microsoft.entityframeworkcore.design.nuspec"
  5912. ]
  5913. },
  5914. "Microsoft.EntityFrameworkCore.InMemory/2.1.1": {
  5915. "sha512": "rFqDal++1QxSGskca16T40ZIrwCcecCOKlLSJy9ivCE/Z7uXKdvX5rrZcKOjelev439WmErD8d1I8SVVFpWx4A==",
  5916. "type": "package",
  5917. "path": "microsoft.entityframeworkcore.inmemory/2.1.1",
  5918. "files": [
  5919. ".nupkg.metadata",
  5920. ".signature.p7s",
  5921. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll",
  5922. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.xml",
  5923. "microsoft.entityframeworkcore.inmemory.2.1.1.nupkg.sha512",
  5924. "microsoft.entityframeworkcore.inmemory.nuspec"
  5925. ]
  5926. },
  5927. "Microsoft.EntityFrameworkCore.Relational/2.1.1": {
  5928. "sha512": "NqH03e/oh0KEy5mepy0Eb5nx49eZOKnpa2/d8iwy7IJTapmqdNWx03kuUycaJ+haHmE5Ad8KtzDJK/Nz3OfFFA==",
  5929. "type": "package",
  5930. "path": "microsoft.entityframeworkcore.relational/2.1.1",
  5931. "files": [
  5932. ".nupkg.metadata",
  5933. ".signature.p7s",
  5934. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  5935. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  5936. "microsoft.entityframeworkcore.relational.2.1.1.nupkg.sha512",
  5937. "microsoft.entityframeworkcore.relational.nuspec"
  5938. ]
  5939. },
  5940. "Microsoft.EntityFrameworkCore.SqlServer/2.1.1": {
  5941. "sha512": "/J15ItbPu+YWmqCs7yDrXNSY9NooWv5sFKrV1aYvDjCi2Z4Ja8LOCQVNynJTjNxDfDihp+PPLD/HoD0e2iZD8Q==",
  5942. "type": "package",
  5943. "path": "microsoft.entityframeworkcore.sqlserver/2.1.1",
  5944. "files": [
  5945. ".nupkg.metadata",
  5946. ".signature.p7s",
  5947. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
  5948. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
  5949. "microsoft.entityframeworkcore.sqlserver.2.1.1.nupkg.sha512",
  5950. "microsoft.entityframeworkcore.sqlserver.nuspec"
  5951. ]
  5952. },
  5953. "Microsoft.EntityFrameworkCore.Tools/2.1.1": {
  5954. "sha512": "Qfz8Au39cALAgxzvfoz6aPkmTuaFmlDYeUjCecaNlQ5x2jxs1rACtWddA5Yu4D3YSsHuHqttgZA6tzKKNVo9mg==",
  5955. "type": "package",
  5956. "path": "microsoft.entityframeworkcore.tools/2.1.1",
  5957. "hasTools": true,
  5958. "files": [
  5959. ".nupkg.metadata",
  5960. ".signature.p7s",
  5961. "lib/netstandard2.0/_._",
  5962. "microsoft.entityframeworkcore.tools.2.1.1.nupkg.sha512",
  5963. "microsoft.entityframeworkcore.tools.nuspec",
  5964. "tools/EntityFrameworkCore.PowerShell2.psd1",
  5965. "tools/EntityFrameworkCore.PowerShell2.psm1",
  5966. "tools/EntityFrameworkCore.psd1",
  5967. "tools/EntityFrameworkCore.psm1",
  5968. "tools/about_EntityFrameworkCore.help.txt",
  5969. "tools/init.ps1",
  5970. "tools/install.ps1",
  5971. "tools/net461/any/ef.exe",
  5972. "tools/net461/win-x86/ef.exe",
  5973. "tools/netcoreapp2.0/any/ef.dll",
  5974. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  5975. ]
  5976. },
  5977. "Microsoft.Extensions.Caching.Abstractions/2.1.1": {
  5978. "sha512": "LbT7Ry1waNBksnngFNdaNmEglQMJ8g7F6tbSoyoqpEW35W/Cj4YwURDVwoRS+jtyf6YKsTdPHV643jMMuJBi9g==",
  5979. "type": "package",
  5980. "path": "microsoft.extensions.caching.abstractions/2.1.1",
  5981. "files": [
  5982. ".nupkg.metadata",
  5983. ".signature.p7s",
  5984. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  5985. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  5986. "microsoft.extensions.caching.abstractions.2.1.1.nupkg.sha512",
  5987. "microsoft.extensions.caching.abstractions.nuspec"
  5988. ]
  5989. },
  5990. "Microsoft.Extensions.Caching.Memory/2.1.1": {
  5991. "sha512": "jR14GhHGmPzq7QChnYa3Uiu+s/QerwxbMPAlA0Ei0shDJlrRoD6FSb9hP8rmSX6oai9Z64SWbXlwBhi3L/vj9g==",
  5992. "type": "package",
  5993. "path": "microsoft.extensions.caching.memory/2.1.1",
  5994. "files": [
  5995. ".nupkg.metadata",
  5996. ".signature.p7s",
  5997. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  5998. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  5999. "microsoft.extensions.caching.memory.2.1.1.nupkg.sha512",
  6000. "microsoft.extensions.caching.memory.nuspec"
  6001. ]
  6002. },
  6003. "Microsoft.Extensions.Caching.SqlServer/2.1.1": {
  6004. "sha512": "Egd0I37FgmX+BZlt1g9Hr5oeR7WMNSPtam8OOGrPy4IQr4HwBUPsIYVYEWb+oNOxR6l0Kt+OLyE/lXv0A4Be/g==",
  6005. "type": "package",
  6006. "path": "microsoft.extensions.caching.sqlserver/2.1.1",
  6007. "files": [
  6008. ".nupkg.metadata",
  6009. ".signature.p7s",
  6010. "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll",
  6011. "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.xml",
  6012. "microsoft.extensions.caching.sqlserver.2.1.1.nupkg.sha512",
  6013. "microsoft.extensions.caching.sqlserver.nuspec"
  6014. ]
  6015. },
  6016. "Microsoft.Extensions.Configuration/2.1.1": {
  6017. "sha512": "LjVKO6P2y52c5ZhTLX/w8zc5H4Y3J/LJsgqTBj49TtFq/hAtVNue/WA0F6/7GMY90xhD7K0MDZ4qpOeWXbLvzg==",
  6018. "type": "package",
  6019. "path": "microsoft.extensions.configuration/2.1.1",
  6020. "files": [
  6021. ".nupkg.metadata",
  6022. ".signature.p7s",
  6023. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  6024. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  6025. "microsoft.extensions.configuration.2.1.1.nupkg.sha512",
  6026. "microsoft.extensions.configuration.nuspec"
  6027. ]
  6028. },
  6029. "Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
  6030. "sha512": "VfuZJNa0WUshZ/+8BFZAhwFKiKuu/qOUCFntfdLpHj7vcRnsGHqd3G2Hse78DM+pgozczGM63lGPRLmy+uhUOA==",
  6031. "type": "package",
  6032. "path": "microsoft.extensions.configuration.abstractions/2.1.1",
  6033. "files": [
  6034. ".nupkg.metadata",
  6035. ".signature.p7s",
  6036. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  6037. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  6038. "microsoft.extensions.configuration.abstractions.2.1.1.nupkg.sha512",
  6039. "microsoft.extensions.configuration.abstractions.nuspec"
  6040. ]
  6041. },
  6042. "Microsoft.Extensions.Configuration.Binder/2.1.1": {
  6043. "sha512": "fcLCTS03poWE4v9tSNBr3pWn0QwGgAn1vzqHXlXgvqZeOc7LvQNzaWcKRQZTdEc3+YhQKwMsOtm3VKSA2aWQ8w==",
  6044. "type": "package",
  6045. "path": "microsoft.extensions.configuration.binder/2.1.1",
  6046. "files": [
  6047. ".nupkg.metadata",
  6048. ".signature.p7s",
  6049. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  6050. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  6051. "microsoft.extensions.configuration.binder.2.1.1.nupkg.sha512",
  6052. "microsoft.extensions.configuration.binder.nuspec"
  6053. ]
  6054. },
  6055. "Microsoft.Extensions.Configuration.CommandLine/2.1.1": {
  6056. "sha512": "ZFEOXcp9gZdOoINRGg6sUYqEUU6X4HRShPPLbY9tY/r+PTWyVBwucYzuueHLE7k5yxJTNBnIHpxtJ8PMvxjjBQ==",
  6057. "type": "package",
  6058. "path": "microsoft.extensions.configuration.commandline/2.1.1",
  6059. "files": [
  6060. ".nupkg.metadata",
  6061. ".signature.p7s",
  6062. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  6063. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  6064. "microsoft.extensions.configuration.commandline.2.1.1.nupkg.sha512",
  6065. "microsoft.extensions.configuration.commandline.nuspec"
  6066. ]
  6067. },
  6068. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.1.1": {
  6069. "sha512": "6xMxFIfKL+7J/jwlk8zV8I61sF3+DRG19iKQxnSfYQU+iMMjGbcWNCHFF/3MHf3o4sTZPZ8D6Io+GwKFc3TIZA==",
  6070. "type": "package",
  6071. "path": "microsoft.extensions.configuration.environmentvariables/2.1.1",
  6072. "files": [
  6073. ".nupkg.metadata",
  6074. ".signature.p7s",
  6075. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  6076. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  6077. "microsoft.extensions.configuration.environmentvariables.2.1.1.nupkg.sha512",
  6078. "microsoft.extensions.configuration.environmentvariables.nuspec"
  6079. ]
  6080. },
  6081. "Microsoft.Extensions.Configuration.FileExtensions/2.1.1": {
  6082. "sha512": "CDk5CwG0YzlRgvl65J0iK6ahrX12yMRrEat3yVTXjWC+GN9Jg9zHZu2IE4cQIPAMA/IiAI5KjgL08fhP3fPCkw==",
  6083. "type": "package",
  6084. "path": "microsoft.extensions.configuration.fileextensions/2.1.1",
  6085. "files": [
  6086. ".nupkg.metadata",
  6087. ".signature.p7s",
  6088. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  6089. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  6090. "microsoft.extensions.configuration.fileextensions.2.1.1.nupkg.sha512",
  6091. "microsoft.extensions.configuration.fileextensions.nuspec"
  6092. ]
  6093. },
  6094. "Microsoft.Extensions.Configuration.Ini/2.1.1": {
  6095. "sha512": "+/7imv6queNr3UrU7ynXR9ZZ0rz/HW+HcpUnAjwxIxn8KcoBVv44/UlHYzt3AipVJYbswFiB1FjsQ0IQhffBiA==",
  6096. "type": "package",
  6097. "path": "microsoft.extensions.configuration.ini/2.1.1",
  6098. "files": [
  6099. ".nupkg.metadata",
  6100. ".signature.p7s",
  6101. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll",
  6102. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.xml",
  6103. "microsoft.extensions.configuration.ini.2.1.1.nupkg.sha512",
  6104. "microsoft.extensions.configuration.ini.nuspec"
  6105. ]
  6106. },
  6107. "Microsoft.Extensions.Configuration.Json/2.1.1": {
  6108. "sha512": "IFpONpvdhVEE3S3F4fTYkpT/GyIHtumy2m0HniQanJ80Pj/pUF3Z4wjrHEp1G78rPD+WTo5fRlhdJfuU1Tv2GQ==",
  6109. "type": "package",
  6110. "path": "microsoft.extensions.configuration.json/2.1.1",
  6111. "files": [
  6112. ".nupkg.metadata",
  6113. ".signature.p7s",
  6114. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  6115. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  6116. "microsoft.extensions.configuration.json.2.1.1.nupkg.sha512",
  6117. "microsoft.extensions.configuration.json.nuspec"
  6118. ]
  6119. },
  6120. "Microsoft.Extensions.Configuration.KeyPerFile/2.1.1": {
  6121. "sha512": "GzFVvC9RK2e3GM7wrVZqS76XtX8ANzoKtFrFeFr9Qq2T3yPmWtr7E4LO+tXPSidNQsEiA+x3bxNHyuyJA44uRw==",
  6122. "type": "package",
  6123. "path": "microsoft.extensions.configuration.keyperfile/2.1.1",
  6124. "files": [
  6125. ".nupkg.metadata",
  6126. ".signature.p7s",
  6127. "lib/netstandard2.0/Microsoft.Extensions.Configuration.KeyPerFile.dll",
  6128. "lib/netstandard2.0/Microsoft.Extensions.Configuration.KeyPerFile.xml",
  6129. "microsoft.extensions.configuration.keyperfile.2.1.1.nupkg.sha512",
  6130. "microsoft.extensions.configuration.keyperfile.nuspec"
  6131. ]
  6132. },
  6133. "Microsoft.Extensions.Configuration.UserSecrets/2.1.1": {
  6134. "sha512": "/HeMnhc9a6Ou9V+QIdGYHtYuOf0t0RQ//odFUrJ249F6W78pJyVDZY7RnhH4UMF+WLOJpo6hh010DIlW2nqqSA==",
  6135. "type": "package",
  6136. "path": "microsoft.extensions.configuration.usersecrets/2.1.1",
  6137. "files": [
  6138. ".nupkg.metadata",
  6139. ".signature.p7s",
  6140. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  6141. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  6142. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  6143. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  6144. "microsoft.extensions.configuration.usersecrets.2.1.1.nupkg.sha512",
  6145. "microsoft.extensions.configuration.usersecrets.nuspec"
  6146. ]
  6147. },
  6148. "Microsoft.Extensions.Configuration.Xml/2.1.1": {
  6149. "sha512": "DDqm0Lqc8+Be2oB6g/xKtz3n/W9DOXOCz0DAgUXTgwsZ2XnNzy6Areop9SmPKd0ezSZWZ/soOAZbhlu5otoKDg==",
  6150. "type": "package",
  6151. "path": "microsoft.extensions.configuration.xml/2.1.1",
  6152. "files": [
  6153. ".nupkg.metadata",
  6154. ".signature.p7s",
  6155. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll",
  6156. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.xml",
  6157. "microsoft.extensions.configuration.xml.2.1.1.nupkg.sha512",
  6158. "microsoft.extensions.configuration.xml.nuspec"
  6159. ]
  6160. },
  6161. "Microsoft.Extensions.DependencyInjection/2.1.1": {
  6162. "sha512": "RVdgNWT/73M0eCpreGpWv5NmbHFGQzzW+G7nChK8ej84m+d1nzeWrtqcRYnEpKNx3B8V/Uek4tNP0WCaCNjYnQ==",
  6163. "type": "package",
  6164. "path": "microsoft.extensions.dependencyinjection/2.1.1",
  6165. "files": [
  6166. ".nupkg.metadata",
  6167. ".signature.p7s",
  6168. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  6169. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  6170. "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll",
  6171. "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.xml",
  6172. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  6173. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  6174. "microsoft.extensions.dependencyinjection.2.1.1.nupkg.sha512",
  6175. "microsoft.extensions.dependencyinjection.nuspec"
  6176. ]
  6177. },
  6178. "Microsoft.Extensions.DependencyInjection.Abstractions/2.1.1": {
  6179. "sha512": "MgYpU5cwZohUMKKg3sbPhvGG+eAZ/59E9UwPwlrUkyXU+PGzqwZg9yyQNjhxuAWmoNoFReoemeCku50prYSGzA==",
  6180. "type": "package",
  6181. "path": "microsoft.extensions.dependencyinjection.abstractions/2.1.1",
  6182. "files": [
  6183. ".nupkg.metadata",
  6184. ".signature.p7s",
  6185. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  6186. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  6187. "microsoft.extensions.dependencyinjection.abstractions.2.1.1.nupkg.sha512",
  6188. "microsoft.extensions.dependencyinjection.abstractions.nuspec"
  6189. ]
  6190. },
  6191. "Microsoft.Extensions.DependencyModel/2.1.0": {
  6192. "sha512": "nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==",
  6193. "type": "package",
  6194. "path": "microsoft.extensions.dependencymodel/2.1.0",
  6195. "files": [
  6196. ".nupkg.metadata",
  6197. ".signature.p7s",
  6198. "LICENSE.TXT",
  6199. "THIRD-PARTY-NOTICES.TXT",
  6200. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  6201. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  6202. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  6203. "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512",
  6204. "microsoft.extensions.dependencymodel.nuspec"
  6205. ]
  6206. },
  6207. "Microsoft.Extensions.DiagnosticAdapter/2.1.0": {
  6208. "sha512": "pwvvDrlJJTV8NiUgVHrr9WfbACMpy9DkjZtYxxQNedVO5x+Wfxcf5Don2ZybPvygbhl8i8duUTRR5nqpMtCIKQ==",
  6209. "type": "package",
  6210. "path": "microsoft.extensions.diagnosticadapter/2.1.0",
  6211. "files": [
  6212. ".nupkg.metadata",
  6213. ".signature.p7s",
  6214. "lib/net461/Microsoft.Extensions.DiagnosticAdapter.dll",
  6215. "lib/net461/Microsoft.Extensions.DiagnosticAdapter.xml",
  6216. "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll",
  6217. "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.xml",
  6218. "lib/netstandard2.0/Microsoft.Extensions.DiagnosticAdapter.dll",
  6219. "lib/netstandard2.0/Microsoft.Extensions.DiagnosticAdapter.xml",
  6220. "microsoft.extensions.diagnosticadapter.2.1.0.nupkg.sha512",
  6221. "microsoft.extensions.diagnosticadapter.nuspec"
  6222. ]
  6223. },
  6224. "Microsoft.Extensions.FileProviders.Abstractions/2.1.1": {
  6225. "sha512": "UEQB5/QPuLYaCvScZQ9llhcks5xyEUKh41D615FoehRAF9UgGVmXHcCSOH8idHHLRoKm+OJJjEy1oywvuaL33w==",
  6226. "type": "package",
  6227. "path": "microsoft.extensions.fileproviders.abstractions/2.1.1",
  6228. "files": [
  6229. ".nupkg.metadata",
  6230. ".signature.p7s",
  6231. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  6232. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  6233. "microsoft.extensions.fileproviders.abstractions.2.1.1.nupkg.sha512",
  6234. "microsoft.extensions.fileproviders.abstractions.nuspec"
  6235. ]
  6236. },
  6237. "Microsoft.Extensions.FileProviders.Composite/2.1.1": {
  6238. "sha512": "fduNXRROUeV1bvFr7xkeRkTU/gVfqu5hmfqxiJiciOjwH3Q+UOADiXAWoPfnQiwpZEmsCC6z+hIIyBOnO4i5Yw==",
  6239. "type": "package",
  6240. "path": "microsoft.extensions.fileproviders.composite/2.1.1",
  6241. "files": [
  6242. ".nupkg.metadata",
  6243. ".signature.p7s",
  6244. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
  6245. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
  6246. "microsoft.extensions.fileproviders.composite.2.1.1.nupkg.sha512",
  6247. "microsoft.extensions.fileproviders.composite.nuspec"
  6248. ]
  6249. },
  6250. "Microsoft.Extensions.FileProviders.Embedded/2.1.1": {
  6251. "sha512": "TYyZBm9rxNtXvAK81E53VOxWnEbnbDZVzWjwbvgox5oHMUTm3Blm4p6MyK2Rlj2d/tEMK0ofG4ooUEaKYS8Lpg==",
  6252. "type": "package",
  6253. "path": "microsoft.extensions.fileproviders.embedded/2.1.1",
  6254. "files": [
  6255. ".nupkg.metadata",
  6256. ".signature.p7s",
  6257. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props",
  6258. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets",
  6259. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props",
  6260. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets",
  6261. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  6262. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  6263. "microsoft.extensions.fileproviders.embedded.2.1.1.nupkg.sha512",
  6264. "microsoft.extensions.fileproviders.embedded.nuspec",
  6265. "tasks/net461/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll",
  6266. "tasks/netstandard1.5/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll"
  6267. ]
  6268. },
  6269. "Microsoft.Extensions.FileProviders.Physical/2.1.1": {
  6270. "sha512": "kVCvLm1ePchUgRrQZrno07Mn6knDAzR7vl6eRaI/fem0u6ODg+RTwOYLs4XL39Ttuu+BzEwqzHu3DtDgXT8+vQ==",
  6271. "type": "package",
  6272. "path": "microsoft.extensions.fileproviders.physical/2.1.1",
  6273. "files": [
  6274. ".nupkg.metadata",
  6275. ".signature.p7s",
  6276. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  6277. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  6278. "microsoft.extensions.fileproviders.physical.2.1.1.nupkg.sha512",
  6279. "microsoft.extensions.fileproviders.physical.nuspec"
  6280. ]
  6281. },
  6282. "Microsoft.Extensions.FileSystemGlobbing/2.1.1": {
  6283. "sha512": "4QDzyCN8cJnThY6mK9SnzovyCZ8KCG9jmC9KqHfFGtazJvmNZP1gcyBkPmqMjP0qwbmEUUyqyA9LLn3FrYXTGw==",
  6284. "type": "package",
  6285. "path": "microsoft.extensions.filesystemglobbing/2.1.1",
  6286. "files": [
  6287. ".nupkg.metadata",
  6288. ".signature.p7s",
  6289. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  6290. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  6291. "microsoft.extensions.filesystemglobbing.2.1.1.nupkg.sha512",
  6292. "microsoft.extensions.filesystemglobbing.nuspec"
  6293. ]
  6294. },
  6295. "Microsoft.Extensions.Hosting/2.1.1": {
  6296. "sha512": "2LcCTDVNdtJkLlL3w//TaD/gjaVHlH7pW/V22jp0Q8116yJcxX+4WCGvO0RIjRNVFTb+6+gwtMDN6URODxV2hQ==",
  6297. "type": "package",
  6298. "path": "microsoft.extensions.hosting/2.1.1",
  6299. "files": [
  6300. ".nupkg.metadata",
  6301. ".signature.p7s",
  6302. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  6303. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  6304. "microsoft.extensions.hosting.2.1.1.nupkg.sha512",
  6305. "microsoft.extensions.hosting.nuspec"
  6306. ]
  6307. },
  6308. "Microsoft.Extensions.Hosting.Abstractions/2.1.1": {
  6309. "sha512": "kVVdHnOFJbcXxgZzrT6nwkrWZTHL+47LT59S9J2Jp0BNO3EQWNEZHUUZMb/kKFV7LtW+bp+EuAOPNUqEcqI++Q==",
  6310. "type": "package",
  6311. "path": "microsoft.extensions.hosting.abstractions/2.1.1",
  6312. "files": [
  6313. ".nupkg.metadata",
  6314. ".signature.p7s",
  6315. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  6316. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  6317. "microsoft.extensions.hosting.abstractions.2.1.1.nupkg.sha512",
  6318. "microsoft.extensions.hosting.abstractions.nuspec"
  6319. ]
  6320. },
  6321. "Microsoft.Extensions.Http/2.1.1": {
  6322. "sha512": "GOly249seL3HL2+lgfLWHirsggRwK4EmSa6zUb+sPbgXHN+f9w/y/6XV3DPjYjtyt3v38FkPTD6odPcJJKtvlg==",
  6323. "type": "package",
  6324. "path": "microsoft.extensions.http/2.1.1",
  6325. "files": [
  6326. ".nupkg.metadata",
  6327. ".signature.p7s",
  6328. "lib/netstandard2.0/Microsoft.Extensions.Http.dll",
  6329. "lib/netstandard2.0/Microsoft.Extensions.Http.xml",
  6330. "microsoft.extensions.http.2.1.1.nupkg.sha512",
  6331. "microsoft.extensions.http.nuspec"
  6332. ]
  6333. },
  6334. "Microsoft.Extensions.Identity.Core/2.1.1": {
  6335. "sha512": "4dv6des0aRMNLgo+zbGy2Bp6Amy6YbVsSRB9VvSAqdTfhXAcLQ95AQdsLcqDhBI3H4s0sJxCdwmLDKQMbi0Vag==",
  6336. "type": "package",
  6337. "path": "microsoft.extensions.identity.core/2.1.1",
  6338. "files": [
  6339. ".nupkg.metadata",
  6340. ".signature.p7s",
  6341. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  6342. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  6343. "microsoft.extensions.identity.core.2.1.1.nupkg.sha512",
  6344. "microsoft.extensions.identity.core.nuspec"
  6345. ]
  6346. },
  6347. "Microsoft.Extensions.Identity.Stores/2.1.1": {
  6348. "sha512": "ihjvNMbiZI9cs1qbcVFiICA2RrwM8mlSfypDIIPu7taDBa9vOLSmCHqOg5QmlMtVi5jwkMGfNKznEIYPbaHNmQ==",
  6349. "type": "package",
  6350. "path": "microsoft.extensions.identity.stores/2.1.1",
  6351. "files": [
  6352. ".nupkg.metadata",
  6353. ".signature.p7s",
  6354. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  6355. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  6356. "microsoft.extensions.identity.stores.2.1.1.nupkg.sha512",
  6357. "microsoft.extensions.identity.stores.nuspec"
  6358. ]
  6359. },
  6360. "Microsoft.Extensions.Localization/2.1.1": {
  6361. "sha512": "6v66lA0RqutBDseLtX6MAZHUcaTBk2xfhnfHpcBeLtlx7jySHg/CNociGLPW7oHJtrJ+POZ8xDEoAyQp5RbWXw==",
  6362. "type": "package",
  6363. "path": "microsoft.extensions.localization/2.1.1",
  6364. "files": [
  6365. ".nupkg.metadata",
  6366. ".signature.p7s",
  6367. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
  6368. "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
  6369. "microsoft.extensions.localization.2.1.1.nupkg.sha512",
  6370. "microsoft.extensions.localization.nuspec"
  6371. ]
  6372. },
  6373. "Microsoft.Extensions.Localization.Abstractions/2.1.1": {
  6374. "sha512": "bsDw+b5BaiFej/Nei6IiJFhsOtiXdDmJCabkU45WC3DQafHOLUWuArpVar8Vv2VxHrXGkOWRA7gX31LASqcaMA==",
  6375. "type": "package",
  6376. "path": "microsoft.extensions.localization.abstractions/2.1.1",
  6377. "files": [
  6378. ".nupkg.metadata",
  6379. ".signature.p7s",
  6380. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
  6381. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
  6382. "microsoft.extensions.localization.abstractions.2.1.1.nupkg.sha512",
  6383. "microsoft.extensions.localization.abstractions.nuspec"
  6384. ]
  6385. },
  6386. "Microsoft.Extensions.Logging/2.1.1": {
  6387. "sha512": "hh+mkOAQDTp6XH80xJt3+wwYVzkbwYQl9XZRCz4Um0JjP/o7N9vHM3rZ6wwwtr+BBe/L6iBO2sz0px6OWBzqZQ==",
  6388. "type": "package",
  6389. "path": "microsoft.extensions.logging/2.1.1",
  6390. "files": [
  6391. ".nupkg.metadata",
  6392. ".signature.p7s",
  6393. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  6394. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  6395. "microsoft.extensions.logging.2.1.1.nupkg.sha512",
  6396. "microsoft.extensions.logging.nuspec"
  6397. ]
  6398. },
  6399. "Microsoft.Extensions.Logging.Abstractions/2.1.1": {
  6400. "sha512": "XRzK7ZF+O6FzdfWrlFTi1Rgj2080ZDsd46vzOjadHUB0Cz5kOvDG8vI7caa5YFrsHQpcfn0DxtjS4E46N4FZsA==",
  6401. "type": "package",
  6402. "path": "microsoft.extensions.logging.abstractions/2.1.1",
  6403. "files": [
  6404. ".nupkg.metadata",
  6405. ".signature.p7s",
  6406. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  6407. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  6408. "microsoft.extensions.logging.abstractions.2.1.1.nupkg.sha512",
  6409. "microsoft.extensions.logging.abstractions.nuspec"
  6410. ]
  6411. },
  6412. "Microsoft.Extensions.Logging.Configuration/2.1.1": {
  6413. "sha512": "Z3AzFM21fL/ux0kZAbTE+HDPQ46vuh0dqzhlBm6w7/029RxZLvV6bUUsAs70i2r4JfShhCjBYZ+bTjR42diFVA==",
  6414. "type": "package",
  6415. "path": "microsoft.extensions.logging.configuration/2.1.1",
  6416. "files": [
  6417. ".nupkg.metadata",
  6418. ".signature.p7s",
  6419. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  6420. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  6421. "microsoft.extensions.logging.configuration.2.1.1.nupkg.sha512",
  6422. "microsoft.extensions.logging.configuration.nuspec"
  6423. ]
  6424. },
  6425. "Microsoft.Extensions.Logging.Console/2.1.1": {
  6426. "sha512": "6dYephpuOacAiXE6eJcWu0myEub8qglrWSgzsYUdzWXGanAAlTVzpms/Wp5yeLpw4hsP8KFey8ySwt5KvVv/uw==",
  6427. "type": "package",
  6428. "path": "microsoft.extensions.logging.console/2.1.1",
  6429. "files": [
  6430. ".nupkg.metadata",
  6431. ".signature.p7s",
  6432. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  6433. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  6434. "microsoft.extensions.logging.console.2.1.1.nupkg.sha512",
  6435. "microsoft.extensions.logging.console.nuspec"
  6436. ]
  6437. },
  6438. "Microsoft.Extensions.Logging.Debug/2.1.1": {
  6439. "sha512": "72k7rBz2DL3ev59gX+uwOmA/pEegGzi5SRZhysPIi7+2+JoyLlIRBPscJ8OzOI344Bq27cTByGHDoYWOrq73vg==",
  6440. "type": "package",
  6441. "path": "microsoft.extensions.logging.debug/2.1.1",
  6442. "files": [
  6443. ".nupkg.metadata",
  6444. ".signature.p7s",
  6445. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
  6446. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
  6447. "microsoft.extensions.logging.debug.2.1.1.nupkg.sha512",
  6448. "microsoft.extensions.logging.debug.nuspec"
  6449. ]
  6450. },
  6451. "Microsoft.Extensions.Logging.EventSource/2.1.1": {
  6452. "sha512": "PTcuIm3n549z4jUM4S3PK0LkIXHT08hPjBJ2DYxA/IyzL8b8HFroDUWYh2KkxvDEA3d5szK2MQzcatCO90+caQ==",
  6453. "type": "package",
  6454. "path": "microsoft.extensions.logging.eventsource/2.1.1",
  6455. "files": [
  6456. ".nupkg.metadata",
  6457. ".signature.p7s",
  6458. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
  6459. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
  6460. "microsoft.extensions.logging.eventsource.2.1.1.nupkg.sha512",
  6461. "microsoft.extensions.logging.eventsource.nuspec"
  6462. ]
  6463. },
  6464. "Microsoft.Extensions.Logging.TraceSource/2.1.1": {
  6465. "sha512": "a9U6WrHkJk//VQQ6cMfDrHWGxQKVNWXlnoXtA56ItMxyWT5YXU+/KE9aiUvcrbn4kDw/gjlTv95HSXvKGetjKw==",
  6466. "type": "package",
  6467. "path": "microsoft.extensions.logging.tracesource/2.1.1",
  6468. "files": [
  6469. ".nupkg.metadata",
  6470. ".signature.p7s",
  6471. "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll",
  6472. "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.xml",
  6473. "microsoft.extensions.logging.tracesource.2.1.1.nupkg.sha512",
  6474. "microsoft.extensions.logging.tracesource.nuspec"
  6475. ]
  6476. },
  6477. "Microsoft.Extensions.ObjectPool/2.1.1": {
  6478. "sha512": "SErON45qh4ogDp6lr6UvVmFYW0FERihW+IQ+2JyFv1PUyWktcJytFaWH5zarufJvZwhci7Rf1IyGXr9pVEadTw==",
  6479. "type": "package",
  6480. "path": "microsoft.extensions.objectpool/2.1.1",
  6481. "files": [
  6482. ".nupkg.metadata",
  6483. ".signature.p7s",
  6484. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll",
  6485. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml",
  6486. "microsoft.extensions.objectpool.2.1.1.nupkg.sha512",
  6487. "microsoft.extensions.objectpool.nuspec"
  6488. ]
  6489. },
  6490. "Microsoft.Extensions.Options/2.1.1": {
  6491. "sha512": "V7lXCU78lAbzaulCGFKojcCyG8RTJicEbiBkPJjFqiqXwndEBBIehdXRMWEVU3UtzQ1yDvphiWUL9th6/4gJ7w==",
  6492. "type": "package",
  6493. "path": "microsoft.extensions.options/2.1.1",
  6494. "files": [
  6495. ".nupkg.metadata",
  6496. ".signature.p7s",
  6497. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  6498. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  6499. "microsoft.extensions.options.2.1.1.nupkg.sha512",
  6500. "microsoft.extensions.options.nuspec"
  6501. ]
  6502. },
  6503. "Microsoft.Extensions.Options.ConfigurationExtensions/2.1.1": {
  6504. "sha512": "NpGh3Y/VOBs6hvjKHMsdbtrvGvMO+cBqZ7YT/Rc4iFy0C4ogSnl1lBAq69L1LS6gzlwDBZDZ7WcvzSDzk5zfzA==",
  6505. "type": "package",
  6506. "path": "microsoft.extensions.options.configurationextensions/2.1.1",
  6507. "files": [
  6508. ".nupkg.metadata",
  6509. ".signature.p7s",
  6510. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  6511. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  6512. "microsoft.extensions.options.configurationextensions.2.1.1.nupkg.sha512",
  6513. "microsoft.extensions.options.configurationextensions.nuspec"
  6514. ]
  6515. },
  6516. "Microsoft.Extensions.Primitives/2.1.1": {
  6517. "sha512": "scJ1GZNIxMmjpENh0UZ8XCQ6vzr/LzeF9WvEA51Ix2OQGAs9WPgPu8ABVUdvpKPLuor/t05gm6menJK3PwqOXg==",
  6518. "type": "package",
  6519. "path": "microsoft.extensions.primitives/2.1.1",
  6520. "files": [
  6521. ".nupkg.metadata",
  6522. ".signature.p7s",
  6523. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  6524. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  6525. "microsoft.extensions.primitives.2.1.1.nupkg.sha512",
  6526. "microsoft.extensions.primitives.nuspec"
  6527. ]
  6528. },
  6529. "Microsoft.Extensions.WebEncoders/2.1.1": {
  6530. "sha512": "XIuJXPNUAX/ZV/onarixNoq3kO7Q9/RXXOY8hhYydsDwHI9PqPeJH6WE3LmPJJDmB+7y3+MT6ZmW78gZZDApBA==",
  6531. "type": "package",
  6532. "path": "microsoft.extensions.webencoders/2.1.1",
  6533. "files": [
  6534. ".nupkg.metadata",
  6535. ".signature.p7s",
  6536. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll",
  6537. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.xml",
  6538. "microsoft.extensions.webencoders.2.1.1.nupkg.sha512",
  6539. "microsoft.extensions.webencoders.nuspec"
  6540. ]
  6541. },
  6542. "Microsoft.IdentityModel.Logging/5.2.0": {
  6543. "sha512": "OgiaeDGsuTpXrx77a4gyN6Flp4y7jro4La92UtVEEVxnRb+TnRxawVYY3Z5EVme5fSwvE31vo2iNAwI/jBKjPg==",
  6544. "type": "package",
  6545. "path": "microsoft.identitymodel.logging/5.2.0",
  6546. "files": [
  6547. ".nupkg.metadata",
  6548. ".signature.p7s",
  6549. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  6550. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  6551. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  6552. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  6553. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  6554. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  6555. "microsoft.identitymodel.logging.5.2.0.nupkg.sha512",
  6556. "microsoft.identitymodel.logging.nuspec"
  6557. ]
  6558. },
  6559. "Microsoft.IdentityModel.Protocols/5.2.0": {
  6560. "sha512": "pakGqbE3FRort3vb0qqWI0Qfy84IOXs8sG7ygANUpoRT+544svQ62JfvCX4UPnqf5bCUpSxVc3rDh8yCQBtc7w==",
  6561. "type": "package",
  6562. "path": "microsoft.identitymodel.protocols/5.2.0",
  6563. "files": [
  6564. ".nupkg.metadata",
  6565. ".signature.p7s",
  6566. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  6567. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  6568. "lib/net451/Microsoft.IdentityModel.Protocols.dll",
  6569. "lib/net451/Microsoft.IdentityModel.Protocols.xml",
  6570. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll",
  6571. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.xml",
  6572. "microsoft.identitymodel.protocols.5.2.0.nupkg.sha512",
  6573. "microsoft.identitymodel.protocols.nuspec"
  6574. ]
  6575. },
  6576. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.2.0": {
  6577. "sha512": "hMjsfdvgI/Gk/HWPgyVnju6fy3iULralgn1XU6eL17KkkFN2rJ1fDzJX3RKrjr888Y5S+hTSQAUcGzb4Fe3aBA==",
  6578. "type": "package",
  6579. "path": "microsoft.identitymodel.protocols.openidconnect/5.2.0",
  6580. "files": [
  6581. ".nupkg.metadata",
  6582. ".signature.p7s",
  6583. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  6584. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  6585. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  6586. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  6587. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  6588. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  6589. "microsoft.identitymodel.protocols.openidconnect.5.2.0.nupkg.sha512",
  6590. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  6591. ]
  6592. },
  6593. "Microsoft.IdentityModel.Protocols.WsFederation/5.2.0": {
  6594. "sha512": "7yohKgLzTObwy+Yq/WNshe2ar+9MZJischkn+L+IIQhpZCKWixr0QFR0V/1TzvGVeXBR/AJY/luZRLx84RlzJw==",
  6595. "type": "package",
  6596. "path": "microsoft.identitymodel.protocols.wsfederation/5.2.0",
  6597. "files": [
  6598. ".nupkg.metadata",
  6599. ".signature.p7s",
  6600. "lib/net45/Microsoft.IdentityModel.Protocols.WsFederation.dll",
  6601. "lib/net45/Microsoft.IdentityModel.Protocols.WsFederation.xml",
  6602. "lib/net451/Microsoft.IdentityModel.Protocols.WsFederation.dll",
  6603. "lib/net451/Microsoft.IdentityModel.Protocols.WsFederation.xml",
  6604. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.WsFederation.dll",
  6605. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.WsFederation.xml",
  6606. "microsoft.identitymodel.protocols.wsfederation.5.2.0.nupkg.sha512",
  6607. "microsoft.identitymodel.protocols.wsfederation.nuspec"
  6608. ]
  6609. },
  6610. "Microsoft.IdentityModel.Tokens/5.2.0": {
  6611. "sha512": "Uz1Dk5Gw/jgIHEzac9cXhq7pH0Hf5P73vf23hR6QJn0IamLbPG4qoHnGyPMn9qQXc+jDb/j3fWOhvWGrteJXtA==",
  6612. "type": "package",
  6613. "path": "microsoft.identitymodel.tokens/5.2.0",
  6614. "files": [
  6615. ".nupkg.metadata",
  6616. ".signature.p7s",
  6617. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  6618. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  6619. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  6620. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  6621. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  6622. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  6623. "microsoft.identitymodel.tokens.5.2.0.nupkg.sha512",
  6624. "microsoft.identitymodel.tokens.nuspec"
  6625. ]
  6626. },
  6627. "Microsoft.IdentityModel.Tokens.Saml/5.2.0": {
  6628. "sha512": "db9y9zHTxeVwTi91mqBu4u1h5tlseQxhXMlGBd7bousED/FcEuhRiVK1maXjoHyQTnYbFDGPvYKXxznDI5jBGQ==",
  6629. "type": "package",
  6630. "path": "microsoft.identitymodel.tokens.saml/5.2.0",
  6631. "files": [
  6632. ".nupkg.metadata",
  6633. ".signature.p7s",
  6634. "lib/net45/Microsoft.IdentityModel.Tokens.Saml.dll",
  6635. "lib/net45/Microsoft.IdentityModel.Tokens.Saml.xml",
  6636. "lib/net451/Microsoft.IdentityModel.Tokens.Saml.dll",
  6637. "lib/net451/Microsoft.IdentityModel.Tokens.Saml.xml",
  6638. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.Saml.dll",
  6639. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.Saml.xml",
  6640. "microsoft.identitymodel.tokens.saml.5.2.0.nupkg.sha512",
  6641. "microsoft.identitymodel.tokens.saml.nuspec"
  6642. ]
  6643. },
  6644. "Microsoft.IdentityModel.Xml/5.2.0": {
  6645. "sha512": "0WB90AfR16LT0ANCQTb+183yWrusPt4QK1F3f9eL59ZiDKeZLx2AeXgrkDUO+7kG55nCPqmeOUDjHDVK4gsRgA==",
  6646. "type": "package",
  6647. "path": "microsoft.identitymodel.xml/5.2.0",
  6648. "files": [
  6649. ".nupkg.metadata",
  6650. ".signature.p7s",
  6651. "lib/net45/Microsoft.IdentityModel.Xml.dll",
  6652. "lib/net45/Microsoft.IdentityModel.Xml.xml",
  6653. "lib/net451/Microsoft.IdentityModel.Xml.dll",
  6654. "lib/net451/Microsoft.IdentityModel.Xml.xml",
  6655. "lib/netstandard1.4/Microsoft.IdentityModel.Xml.dll",
  6656. "lib/netstandard1.4/Microsoft.IdentityModel.Xml.xml",
  6657. "microsoft.identitymodel.xml.5.2.0.nupkg.sha512",
  6658. "microsoft.identitymodel.xml.nuspec"
  6659. ]
  6660. },
  6661. "Microsoft.Net.Http.Headers/2.1.1": {
  6662. "sha512": "lPNIphl8b2EuhOE9dMH6EZDmu7pS882O+HMi5BJNsigxHaWlBrYxZHFZgE18cyaPp6SSZcTkKkuzfjV/RRQKlA==",
  6663. "type": "package",
  6664. "path": "microsoft.net.http.headers/2.1.1",
  6665. "files": [
  6666. ".nupkg.metadata",
  6667. ".signature.p7s",
  6668. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll",
  6669. "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml",
  6670. "microsoft.net.http.headers.2.1.1.nupkg.sha512",
  6671. "microsoft.net.http.headers.nuspec"
  6672. ]
  6673. },
  6674. "Microsoft.NETCore.App/2.1.0": {
  6675. "sha512": "JNHhG+j5eIhG26+H721IDmwswGUznTwwSuJMFe/08h0X2YarHvA15sVAvUkA/2Sp3W0ENNm48t+J7KTPRqEpfA==",
  6676. "type": "package",
  6677. "path": "microsoft.netcore.app/2.1.0",
  6678. "files": [
  6679. ".nupkg.metadata",
  6680. ".signature.p7s",
  6681. "LICENSE.TXT",
  6682. "Microsoft.NETCore.App.versions.txt",
  6683. "THIRD-PARTY-NOTICES.TXT",
  6684. "build/netcoreapp2.1/Microsoft.NETCore.App.PlatformManifest.txt",
  6685. "build/netcoreapp2.1/Microsoft.NETCore.App.props",
  6686. "build/netcoreapp2.1/Microsoft.NETCore.App.targets",
  6687. "microsoft.netcore.app.2.1.0.nupkg.sha512",
  6688. "microsoft.netcore.app.nuspec",
  6689. "ref/netcoreapp/_._",
  6690. "ref/netcoreapp2.1/Microsoft.CSharp.dll",
  6691. "ref/netcoreapp2.1/Microsoft.CSharp.xml",
  6692. "ref/netcoreapp2.1/Microsoft.VisualBasic.dll",
  6693. "ref/netcoreapp2.1/Microsoft.VisualBasic.xml",
  6694. "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll",
  6695. "ref/netcoreapp2.1/Microsoft.Win32.Primitives.xml",
  6696. "ref/netcoreapp2.1/System.AppContext.dll",
  6697. "ref/netcoreapp2.1/System.Buffers.dll",
  6698. "ref/netcoreapp2.1/System.Buffers.xml",
  6699. "ref/netcoreapp2.1/System.Collections.Concurrent.dll",
  6700. "ref/netcoreapp2.1/System.Collections.Concurrent.xml",
  6701. "ref/netcoreapp2.1/System.Collections.Immutable.dll",
  6702. "ref/netcoreapp2.1/System.Collections.Immutable.xml",
  6703. "ref/netcoreapp2.1/System.Collections.NonGeneric.dll",
  6704. "ref/netcoreapp2.1/System.Collections.NonGeneric.xml",
  6705. "ref/netcoreapp2.1/System.Collections.Specialized.dll",
  6706. "ref/netcoreapp2.1/System.Collections.Specialized.xml",
  6707. "ref/netcoreapp2.1/System.Collections.dll",
  6708. "ref/netcoreapp2.1/System.Collections.xml",
  6709. "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll",
  6710. "ref/netcoreapp2.1/System.ComponentModel.Annotations.xml",
  6711. "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll",
  6712. "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll",
  6713. "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.xml",
  6714. "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll",
  6715. "ref/netcoreapp2.1/System.ComponentModel.Primitives.xml",
  6716. "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll",
  6717. "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.xml",
  6718. "ref/netcoreapp2.1/System.ComponentModel.dll",
  6719. "ref/netcoreapp2.1/System.ComponentModel.xml",
  6720. "ref/netcoreapp2.1/System.Configuration.dll",
  6721. "ref/netcoreapp2.1/System.Console.dll",
  6722. "ref/netcoreapp2.1/System.Console.xml",
  6723. "ref/netcoreapp2.1/System.Core.dll",
  6724. "ref/netcoreapp2.1/System.Data.Common.dll",
  6725. "ref/netcoreapp2.1/System.Data.Common.xml",
  6726. "ref/netcoreapp2.1/System.Data.dll",
  6727. "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll",
  6728. "ref/netcoreapp2.1/System.Diagnostics.Contracts.xml",
  6729. "ref/netcoreapp2.1/System.Diagnostics.Debug.dll",
  6730. "ref/netcoreapp2.1/System.Diagnostics.Debug.xml",
  6731. "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll",
  6732. "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.xml",
  6733. "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll",
  6734. "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.xml",
  6735. "ref/netcoreapp2.1/System.Diagnostics.Process.dll",
  6736. "ref/netcoreapp2.1/System.Diagnostics.Process.xml",
  6737. "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll",
  6738. "ref/netcoreapp2.1/System.Diagnostics.StackTrace.xml",
  6739. "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll",
  6740. "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.xml",
  6741. "ref/netcoreapp2.1/System.Diagnostics.Tools.dll",
  6742. "ref/netcoreapp2.1/System.Diagnostics.Tools.xml",
  6743. "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll",
  6744. "ref/netcoreapp2.1/System.Diagnostics.TraceSource.xml",
  6745. "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll",
  6746. "ref/netcoreapp2.1/System.Diagnostics.Tracing.xml",
  6747. "ref/netcoreapp2.1/System.Drawing.Primitives.dll",
  6748. "ref/netcoreapp2.1/System.Drawing.Primitives.xml",
  6749. "ref/netcoreapp2.1/System.Drawing.dll",
  6750. "ref/netcoreapp2.1/System.Dynamic.Runtime.dll",
  6751. "ref/netcoreapp2.1/System.Globalization.Calendars.dll",
  6752. "ref/netcoreapp2.1/System.Globalization.Extensions.dll",
  6753. "ref/netcoreapp2.1/System.Globalization.dll",
  6754. "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll",
  6755. "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll",
  6756. "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll",
  6757. "ref/netcoreapp2.1/System.IO.Compression.ZipFile.xml",
  6758. "ref/netcoreapp2.1/System.IO.Compression.dll",
  6759. "ref/netcoreapp2.1/System.IO.Compression.xml",
  6760. "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll",
  6761. "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.xml",
  6762. "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll",
  6763. "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll",
  6764. "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.xml",
  6765. "ref/netcoreapp2.1/System.IO.FileSystem.dll",
  6766. "ref/netcoreapp2.1/System.IO.FileSystem.xml",
  6767. "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll",
  6768. "ref/netcoreapp2.1/System.IO.IsolatedStorage.xml",
  6769. "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll",
  6770. "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.xml",
  6771. "ref/netcoreapp2.1/System.IO.Pipes.dll",
  6772. "ref/netcoreapp2.1/System.IO.Pipes.xml",
  6773. "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll",
  6774. "ref/netcoreapp2.1/System.IO.dll",
  6775. "ref/netcoreapp2.1/System.Linq.Expressions.dll",
  6776. "ref/netcoreapp2.1/System.Linq.Expressions.xml",
  6777. "ref/netcoreapp2.1/System.Linq.Parallel.dll",
  6778. "ref/netcoreapp2.1/System.Linq.Parallel.xml",
  6779. "ref/netcoreapp2.1/System.Linq.Queryable.dll",
  6780. "ref/netcoreapp2.1/System.Linq.Queryable.xml",
  6781. "ref/netcoreapp2.1/System.Linq.dll",
  6782. "ref/netcoreapp2.1/System.Linq.xml",
  6783. "ref/netcoreapp2.1/System.Memory.dll",
  6784. "ref/netcoreapp2.1/System.Memory.xml",
  6785. "ref/netcoreapp2.1/System.Net.Http.dll",
  6786. "ref/netcoreapp2.1/System.Net.Http.xml",
  6787. "ref/netcoreapp2.1/System.Net.HttpListener.dll",
  6788. "ref/netcoreapp2.1/System.Net.HttpListener.xml",
  6789. "ref/netcoreapp2.1/System.Net.Mail.dll",
  6790. "ref/netcoreapp2.1/System.Net.Mail.xml",
  6791. "ref/netcoreapp2.1/System.Net.NameResolution.dll",
  6792. "ref/netcoreapp2.1/System.Net.NameResolution.xml",
  6793. "ref/netcoreapp2.1/System.Net.NetworkInformation.dll",
  6794. "ref/netcoreapp2.1/System.Net.NetworkInformation.xml",
  6795. "ref/netcoreapp2.1/System.Net.Ping.dll",
  6796. "ref/netcoreapp2.1/System.Net.Ping.xml",
  6797. "ref/netcoreapp2.1/System.Net.Primitives.dll",
  6798. "ref/netcoreapp2.1/System.Net.Primitives.xml",
  6799. "ref/netcoreapp2.1/System.Net.Requests.dll",
  6800. "ref/netcoreapp2.1/System.Net.Requests.xml",
  6801. "ref/netcoreapp2.1/System.Net.Security.dll",
  6802. "ref/netcoreapp2.1/System.Net.Security.xml",
  6803. "ref/netcoreapp2.1/System.Net.ServicePoint.dll",
  6804. "ref/netcoreapp2.1/System.Net.ServicePoint.xml",
  6805. "ref/netcoreapp2.1/System.Net.Sockets.dll",
  6806. "ref/netcoreapp2.1/System.Net.Sockets.xml",
  6807. "ref/netcoreapp2.1/System.Net.WebClient.dll",
  6808. "ref/netcoreapp2.1/System.Net.WebClient.xml",
  6809. "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll",
  6810. "ref/netcoreapp2.1/System.Net.WebHeaderCollection.xml",
  6811. "ref/netcoreapp2.1/System.Net.WebProxy.dll",
  6812. "ref/netcoreapp2.1/System.Net.WebProxy.xml",
  6813. "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll",
  6814. "ref/netcoreapp2.1/System.Net.WebSockets.Client.xml",
  6815. "ref/netcoreapp2.1/System.Net.WebSockets.dll",
  6816. "ref/netcoreapp2.1/System.Net.WebSockets.xml",
  6817. "ref/netcoreapp2.1/System.Net.dll",
  6818. "ref/netcoreapp2.1/System.Numerics.Vectors.dll",
  6819. "ref/netcoreapp2.1/System.Numerics.Vectors.xml",
  6820. "ref/netcoreapp2.1/System.Numerics.dll",
  6821. "ref/netcoreapp2.1/System.ObjectModel.dll",
  6822. "ref/netcoreapp2.1/System.ObjectModel.xml",
  6823. "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll",
  6824. "ref/netcoreapp2.1/System.Reflection.DispatchProxy.xml",
  6825. "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll",
  6826. "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.xml",
  6827. "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll",
  6828. "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.xml",
  6829. "ref/netcoreapp2.1/System.Reflection.Emit.dll",
  6830. "ref/netcoreapp2.1/System.Reflection.Emit.xml",
  6831. "ref/netcoreapp2.1/System.Reflection.Extensions.dll",
  6832. "ref/netcoreapp2.1/System.Reflection.Metadata.dll",
  6833. "ref/netcoreapp2.1/System.Reflection.Metadata.xml",
  6834. "ref/netcoreapp2.1/System.Reflection.Primitives.dll",
  6835. "ref/netcoreapp2.1/System.Reflection.Primitives.xml",
  6836. "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll",
  6837. "ref/netcoreapp2.1/System.Reflection.TypeExtensions.xml",
  6838. "ref/netcoreapp2.1/System.Reflection.dll",
  6839. "ref/netcoreapp2.1/System.Resources.Reader.dll",
  6840. "ref/netcoreapp2.1/System.Resources.ResourceManager.dll",
  6841. "ref/netcoreapp2.1/System.Resources.ResourceManager.xml",
  6842. "ref/netcoreapp2.1/System.Resources.Writer.dll",
  6843. "ref/netcoreapp2.1/System.Resources.Writer.xml",
  6844. "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll",
  6845. "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.xml",
  6846. "ref/netcoreapp2.1/System.Runtime.Extensions.dll",
  6847. "ref/netcoreapp2.1/System.Runtime.Extensions.xml",
  6848. "ref/netcoreapp2.1/System.Runtime.Handles.dll",
  6849. "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  6850. "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.xml",
  6851. "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll",
  6852. "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.xml",
  6853. "ref/netcoreapp2.1/System.Runtime.InteropServices.dll",
  6854. "ref/netcoreapp2.1/System.Runtime.InteropServices.xml",
  6855. "ref/netcoreapp2.1/System.Runtime.Loader.dll",
  6856. "ref/netcoreapp2.1/System.Runtime.Loader.xml",
  6857. "ref/netcoreapp2.1/System.Runtime.Numerics.dll",
  6858. "ref/netcoreapp2.1/System.Runtime.Numerics.xml",
  6859. "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll",
  6860. "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.xml",
  6861. "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll",
  6862. "ref/netcoreapp2.1/System.Runtime.Serialization.Json.xml",
  6863. "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll",
  6864. "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.xml",
  6865. "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll",
  6866. "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.xml",
  6867. "ref/netcoreapp2.1/System.Runtime.Serialization.dll",
  6868. "ref/netcoreapp2.1/System.Runtime.dll",
  6869. "ref/netcoreapp2.1/System.Runtime.xml",
  6870. "ref/netcoreapp2.1/System.Security.Claims.dll",
  6871. "ref/netcoreapp2.1/System.Security.Claims.xml",
  6872. "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll",
  6873. "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.xml",
  6874. "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll",
  6875. "ref/netcoreapp2.1/System.Security.Cryptography.Csp.xml",
  6876. "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll",
  6877. "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.xml",
  6878. "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll",
  6879. "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.xml",
  6880. "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll",
  6881. "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.xml",
  6882. "ref/netcoreapp2.1/System.Security.Principal.dll",
  6883. "ref/netcoreapp2.1/System.Security.Principal.xml",
  6884. "ref/netcoreapp2.1/System.Security.SecureString.dll",
  6885. "ref/netcoreapp2.1/System.Security.dll",
  6886. "ref/netcoreapp2.1/System.ServiceModel.Web.dll",
  6887. "ref/netcoreapp2.1/System.ServiceProcess.dll",
  6888. "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll",
  6889. "ref/netcoreapp2.1/System.Text.Encoding.Extensions.xml",
  6890. "ref/netcoreapp2.1/System.Text.Encoding.dll",
  6891. "ref/netcoreapp2.1/System.Text.RegularExpressions.dll",
  6892. "ref/netcoreapp2.1/System.Text.RegularExpressions.xml",
  6893. "ref/netcoreapp2.1/System.Threading.Overlapped.dll",
  6894. "ref/netcoreapp2.1/System.Threading.Overlapped.xml",
  6895. "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll",
  6896. "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.xml",
  6897. "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll",
  6898. "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.xml",
  6899. "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll",
  6900. "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.xml",
  6901. "ref/netcoreapp2.1/System.Threading.Tasks.dll",
  6902. "ref/netcoreapp2.1/System.Threading.Tasks.xml",
  6903. "ref/netcoreapp2.1/System.Threading.Thread.dll",
  6904. "ref/netcoreapp2.1/System.Threading.Thread.xml",
  6905. "ref/netcoreapp2.1/System.Threading.ThreadPool.dll",
  6906. "ref/netcoreapp2.1/System.Threading.ThreadPool.xml",
  6907. "ref/netcoreapp2.1/System.Threading.Timer.dll",
  6908. "ref/netcoreapp2.1/System.Threading.Timer.xml",
  6909. "ref/netcoreapp2.1/System.Threading.dll",
  6910. "ref/netcoreapp2.1/System.Threading.xml",
  6911. "ref/netcoreapp2.1/System.Transactions.Local.dll",
  6912. "ref/netcoreapp2.1/System.Transactions.Local.xml",
  6913. "ref/netcoreapp2.1/System.Transactions.dll",
  6914. "ref/netcoreapp2.1/System.ValueTuple.dll",
  6915. "ref/netcoreapp2.1/System.Web.HttpUtility.dll",
  6916. "ref/netcoreapp2.1/System.Web.HttpUtility.xml",
  6917. "ref/netcoreapp2.1/System.Web.dll",
  6918. "ref/netcoreapp2.1/System.Windows.dll",
  6919. "ref/netcoreapp2.1/System.Xml.Linq.dll",
  6920. "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll",
  6921. "ref/netcoreapp2.1/System.Xml.ReaderWriter.xml",
  6922. "ref/netcoreapp2.1/System.Xml.Serialization.dll",
  6923. "ref/netcoreapp2.1/System.Xml.XDocument.dll",
  6924. "ref/netcoreapp2.1/System.Xml.XDocument.xml",
  6925. "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll",
  6926. "ref/netcoreapp2.1/System.Xml.XPath.XDocument.xml",
  6927. "ref/netcoreapp2.1/System.Xml.XPath.dll",
  6928. "ref/netcoreapp2.1/System.Xml.XPath.xml",
  6929. "ref/netcoreapp2.1/System.Xml.XmlDocument.dll",
  6930. "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll",
  6931. "ref/netcoreapp2.1/System.Xml.XmlSerializer.xml",
  6932. "ref/netcoreapp2.1/System.Xml.dll",
  6933. "ref/netcoreapp2.1/System.dll",
  6934. "ref/netcoreapp2.1/WindowsBase.dll",
  6935. "ref/netcoreapp2.1/mscorlib.dll",
  6936. "ref/netcoreapp2.1/netstandard.dll",
  6937. "runtime.json"
  6938. ]
  6939. },
  6940. "Microsoft.NETCore.DotNetAppHost/2.1.0": {
  6941. "sha512": "vMn8V3GOp/SPOG2oE8WxswzAWZ/GZmc8EPiB3vc2EZ6us14ehXhsvUFXndYopGNSjCa9OdqC6L6xStF1KyUZnw==",
  6942. "type": "package",
  6943. "path": "microsoft.netcore.dotnetapphost/2.1.0",
  6944. "files": [
  6945. ".nupkg.metadata",
  6946. ".signature.p7s",
  6947. "LICENSE.TXT",
  6948. "THIRD-PARTY-NOTICES.TXT",
  6949. "microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512",
  6950. "microsoft.netcore.dotnetapphost.nuspec",
  6951. "runtime.json"
  6952. ]
  6953. },
  6954. "Microsoft.NETCore.DotNetHostPolicy/2.1.0": {
  6955. "sha512": "vBUwNihtLUVS2HhO6WocYfAktRmfFihm6JB8/sJ53caVW+AelvbnYpfiGzaZDpkWjN6vA3xzOKPu9Vu8Zz3p8Q==",
  6956. "type": "package",
  6957. "path": "microsoft.netcore.dotnethostpolicy/2.1.0",
  6958. "files": [
  6959. ".nupkg.metadata",
  6960. ".signature.p7s",
  6961. "LICENSE.TXT",
  6962. "THIRD-PARTY-NOTICES.TXT",
  6963. "microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512",
  6964. "microsoft.netcore.dotnethostpolicy.nuspec",
  6965. "runtime.json"
  6966. ]
  6967. },
  6968. "Microsoft.NETCore.DotNetHostResolver/2.1.0": {
  6969. "sha512": "o0PRql5qOHFEY3d1WvzE+T7cMFKtOsWLMg8L1oTeGNnI4u5AzOj8o6AdZT3y2GxFA1DAx7AQ9qZjpCO2/bgZRw==",
  6970. "type": "package",
  6971. "path": "microsoft.netcore.dotnethostresolver/2.1.0",
  6972. "files": [
  6973. ".nupkg.metadata",
  6974. ".signature.p7s",
  6975. "LICENSE.TXT",
  6976. "THIRD-PARTY-NOTICES.TXT",
  6977. "microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512",
  6978. "microsoft.netcore.dotnethostresolver.nuspec",
  6979. "runtime.json"
  6980. ]
  6981. },
  6982. "Microsoft.NETCore.Platforms/2.1.0": {
  6983. "sha512": "ok+RPAtESz/9MUXeIEz6Lv5XAGQsaNmEYXMsgVALj4D7kqC8gveKWXWXbufLySR2fWrwZf8smyN5RmHu0e4BHA==",
  6984. "type": "package",
  6985. "path": "microsoft.netcore.platforms/2.1.0",
  6986. "files": [
  6987. ".nupkg.metadata",
  6988. ".signature.p7s",
  6989. "LICENSE.TXT",
  6990. "THIRD-PARTY-NOTICES.TXT",
  6991. "lib/netstandard1.0/_._",
  6992. "microsoft.netcore.platforms.2.1.0.nupkg.sha512",
  6993. "microsoft.netcore.platforms.nuspec",
  6994. "runtime.json",
  6995. "useSharedDesignerContext.txt",
  6996. "version.txt"
  6997. ]
  6998. },
  6999. "Microsoft.NETCore.Targets/2.1.0": {
  7000. "sha512": "x188gIZXOwFXkPXyGavEcPGcR6RGvjFOES2QzskN4gERZjWPN34qhRsZVMC0CLJfQLGSButarcgWxPPM4vmg0w==",
  7001. "type": "package",
  7002. "path": "microsoft.netcore.targets/2.1.0",
  7003. "files": [
  7004. ".nupkg.metadata",
  7005. ".signature.p7s",
  7006. "LICENSE.TXT",
  7007. "THIRD-PARTY-NOTICES.TXT",
  7008. "lib/netstandard1.0/_._",
  7009. "microsoft.netcore.targets.2.1.0.nupkg.sha512",
  7010. "microsoft.netcore.targets.nuspec",
  7011. "runtime.json",
  7012. "useSharedDesignerContext.txt",
  7013. "version.txt"
  7014. ]
  7015. },
  7016. "Microsoft.Win32.Registry/4.5.0": {
  7017. "sha512": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
  7018. "type": "package",
  7019. "path": "microsoft.win32.registry/4.5.0",
  7020. "files": [
  7021. ".nupkg.metadata",
  7022. ".signature.p7s",
  7023. "LICENSE.TXT",
  7024. "THIRD-PARTY-NOTICES.TXT",
  7025. "lib/net46/Microsoft.Win32.Registry.dll",
  7026. "lib/net461/Microsoft.Win32.Registry.dll",
  7027. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  7028. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  7029. "microsoft.win32.registry.4.5.0.nupkg.sha512",
  7030. "microsoft.win32.registry.nuspec",
  7031. "ref/net46/Microsoft.Win32.Registry.dll",
  7032. "ref/net461/Microsoft.Win32.Registry.dll",
  7033. "ref/net461/Microsoft.Win32.Registry.xml",
  7034. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  7035. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  7036. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  7037. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  7038. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  7039. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  7040. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  7041. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  7042. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  7043. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  7044. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  7045. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  7046. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  7047. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  7048. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  7049. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  7050. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  7051. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  7052. "useSharedDesignerContext.txt",
  7053. "version.txt"
  7054. ]
  7055. },
  7056. "NETStandard.Library/2.0.3": {
  7057. "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
  7058. "type": "package",
  7059. "path": "netstandard.library/2.0.3",
  7060. "files": [
  7061. ".nupkg.metadata",
  7062. "LICENSE.TXT",
  7063. "THIRD-PARTY-NOTICES.TXT",
  7064. "build/netstandard2.0/NETStandard.Library.targets",
  7065. "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
  7066. "build/netstandard2.0/ref/System.AppContext.dll",
  7067. "build/netstandard2.0/ref/System.Collections.Concurrent.dll",
  7068. "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
  7069. "build/netstandard2.0/ref/System.Collections.Specialized.dll",
  7070. "build/netstandard2.0/ref/System.Collections.dll",
  7071. "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
  7072. "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
  7073. "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
  7074. "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
  7075. "build/netstandard2.0/ref/System.ComponentModel.dll",
  7076. "build/netstandard2.0/ref/System.Console.dll",
  7077. "build/netstandard2.0/ref/System.Core.dll",
  7078. "build/netstandard2.0/ref/System.Data.Common.dll",
  7079. "build/netstandard2.0/ref/System.Data.dll",
  7080. "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
  7081. "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
  7082. "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
  7083. "build/netstandard2.0/ref/System.Diagnostics.Process.dll",
  7084. "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
  7085. "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
  7086. "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
  7087. "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
  7088. "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
  7089. "build/netstandard2.0/ref/System.Drawing.Primitives.dll",
  7090. "build/netstandard2.0/ref/System.Drawing.dll",
  7091. "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
  7092. "build/netstandard2.0/ref/System.Globalization.Calendars.dll",
  7093. "build/netstandard2.0/ref/System.Globalization.Extensions.dll",
  7094. "build/netstandard2.0/ref/System.Globalization.dll",
  7095. "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
  7096. "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
  7097. "build/netstandard2.0/ref/System.IO.Compression.dll",
  7098. "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
  7099. "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
  7100. "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
  7101. "build/netstandard2.0/ref/System.IO.FileSystem.dll",
  7102. "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
  7103. "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
  7104. "build/netstandard2.0/ref/System.IO.Pipes.dll",
  7105. "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
  7106. "build/netstandard2.0/ref/System.IO.dll",
  7107. "build/netstandard2.0/ref/System.Linq.Expressions.dll",
  7108. "build/netstandard2.0/ref/System.Linq.Parallel.dll",
  7109. "build/netstandard2.0/ref/System.Linq.Queryable.dll",
  7110. "build/netstandard2.0/ref/System.Linq.dll",
  7111. "build/netstandard2.0/ref/System.Net.Http.dll",
  7112. "build/netstandard2.0/ref/System.Net.NameResolution.dll",
  7113. "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
  7114. "build/netstandard2.0/ref/System.Net.Ping.dll",
  7115. "build/netstandard2.0/ref/System.Net.Primitives.dll",
  7116. "build/netstandard2.0/ref/System.Net.Requests.dll",
  7117. "build/netstandard2.0/ref/System.Net.Security.dll",
  7118. "build/netstandard2.0/ref/System.Net.Sockets.dll",
  7119. "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
  7120. "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
  7121. "build/netstandard2.0/ref/System.Net.WebSockets.dll",
  7122. "build/netstandard2.0/ref/System.Net.dll",
  7123. "build/netstandard2.0/ref/System.Numerics.dll",
  7124. "build/netstandard2.0/ref/System.ObjectModel.dll",
  7125. "build/netstandard2.0/ref/System.Reflection.Extensions.dll",
  7126. "build/netstandard2.0/ref/System.Reflection.Primitives.dll",
  7127. "build/netstandard2.0/ref/System.Reflection.dll",
  7128. "build/netstandard2.0/ref/System.Resources.Reader.dll",
  7129. "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
  7130. "build/netstandard2.0/ref/System.Resources.Writer.dll",
  7131. "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
  7132. "build/netstandard2.0/ref/System.Runtime.Extensions.dll",
  7133. "build/netstandard2.0/ref/System.Runtime.Handles.dll",
  7134. "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
  7135. "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
  7136. "build/netstandard2.0/ref/System.Runtime.Numerics.dll",
  7137. "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
  7138. "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
  7139. "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
  7140. "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
  7141. "build/netstandard2.0/ref/System.Runtime.Serialization.dll",
  7142. "build/netstandard2.0/ref/System.Runtime.dll",
  7143. "build/netstandard2.0/ref/System.Security.Claims.dll",
  7144. "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
  7145. "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
  7146. "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
  7147. "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
  7148. "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
  7149. "build/netstandard2.0/ref/System.Security.Principal.dll",
  7150. "build/netstandard2.0/ref/System.Security.SecureString.dll",
  7151. "build/netstandard2.0/ref/System.ServiceModel.Web.dll",
  7152. "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
  7153. "build/netstandard2.0/ref/System.Text.Encoding.dll",
  7154. "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
  7155. "build/netstandard2.0/ref/System.Threading.Overlapped.dll",
  7156. "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
  7157. "build/netstandard2.0/ref/System.Threading.Tasks.dll",
  7158. "build/netstandard2.0/ref/System.Threading.Thread.dll",
  7159. "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
  7160. "build/netstandard2.0/ref/System.Threading.Timer.dll",
  7161. "build/netstandard2.0/ref/System.Threading.dll",
  7162. "build/netstandard2.0/ref/System.Transactions.dll",
  7163. "build/netstandard2.0/ref/System.ValueTuple.dll",
  7164. "build/netstandard2.0/ref/System.Web.dll",
  7165. "build/netstandard2.0/ref/System.Windows.dll",
  7166. "build/netstandard2.0/ref/System.Xml.Linq.dll",
  7167. "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
  7168. "build/netstandard2.0/ref/System.Xml.Serialization.dll",
  7169. "build/netstandard2.0/ref/System.Xml.XDocument.dll",
  7170. "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
  7171. "build/netstandard2.0/ref/System.Xml.XPath.dll",
  7172. "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
  7173. "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
  7174. "build/netstandard2.0/ref/System.Xml.dll",
  7175. "build/netstandard2.0/ref/System.dll",
  7176. "build/netstandard2.0/ref/mscorlib.dll",
  7177. "build/netstandard2.0/ref/netstandard.dll",
  7178. "build/netstandard2.0/ref/netstandard.xml",
  7179. "lib/netstandard1.0/_._",
  7180. "netstandard.library.2.0.3.nupkg.sha512",
  7181. "netstandard.library.nuspec"
  7182. ]
  7183. },
  7184. "Newtonsoft.Json/12.0.2": {
  7185. "sha512": "rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==",
  7186. "type": "package",
  7187. "path": "newtonsoft.json/12.0.2",
  7188. "files": [
  7189. ".nupkg.metadata",
  7190. ".signature.p7s",
  7191. "LICENSE.md",
  7192. "lib/net20/Newtonsoft.Json.dll",
  7193. "lib/net20/Newtonsoft.Json.xml",
  7194. "lib/net35/Newtonsoft.Json.dll",
  7195. "lib/net35/Newtonsoft.Json.xml",
  7196. "lib/net40/Newtonsoft.Json.dll",
  7197. "lib/net40/Newtonsoft.Json.xml",
  7198. "lib/net45/Newtonsoft.Json.dll",
  7199. "lib/net45/Newtonsoft.Json.xml",
  7200. "lib/netstandard1.0/Newtonsoft.Json.dll",
  7201. "lib/netstandard1.0/Newtonsoft.Json.xml",
  7202. "lib/netstandard1.3/Newtonsoft.Json.dll",
  7203. "lib/netstandard1.3/Newtonsoft.Json.xml",
  7204. "lib/netstandard2.0/Newtonsoft.Json.dll",
  7205. "lib/netstandard2.0/Newtonsoft.Json.xml",
  7206. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  7207. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  7208. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  7209. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  7210. "newtonsoft.json.12.0.2.nupkg.sha512",
  7211. "newtonsoft.json.nuspec"
  7212. ]
  7213. },
  7214. "Newtonsoft.Json.Bson/1.0.1": {
  7215. "sha512": "5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
  7216. "type": "package",
  7217. "path": "newtonsoft.json.bson/1.0.1",
  7218. "files": [
  7219. ".nupkg.metadata",
  7220. ".signature.p7s",
  7221. "lib/net45/Newtonsoft.Json.Bson.dll",
  7222. "lib/net45/Newtonsoft.Json.Bson.xml",
  7223. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  7224. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  7225. "newtonsoft.json.bson.1.0.1.nupkg.sha512",
  7226. "newtonsoft.json.bson.nuspec"
  7227. ]
  7228. },
  7229. "Pipelines.Sockets.Unofficial/2.0.22": {
  7230. "sha512": "KBrLHtOjnSSgVtNLA3FPxR8+/7+NOjo3CDtUKDKlvFvGiE+x82pEzOgf4J/dRePlTVCaLQzfjssqom6GegNiPg==",
  7231. "type": "package",
  7232. "path": "pipelines.sockets.unofficial/2.0.22",
  7233. "files": [
  7234. ".nupkg.metadata",
  7235. ".signature.p7s",
  7236. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  7237. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  7238. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  7239. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  7240. "lib/netcoreapp2.1/Pipelines.Sockets.Unofficial.dll",
  7241. "lib/netcoreapp2.1/Pipelines.Sockets.Unofficial.xml",
  7242. "lib/netcoreapp2.2/Pipelines.Sockets.Unofficial.dll",
  7243. "lib/netcoreapp2.2/Pipelines.Sockets.Unofficial.xml",
  7244. "lib/netcoreapp3.0/Pipelines.Sockets.Unofficial.dll",
  7245. "lib/netcoreapp3.0/Pipelines.Sockets.Unofficial.xml",
  7246. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  7247. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  7248. "pipelines.sockets.unofficial.2.0.22.nupkg.sha512",
  7249. "pipelines.sockets.unofficial.nuspec"
  7250. ]
  7251. },
  7252. "Remotion.Linq/2.2.0": {
  7253. "sha512": "fK/76UmpC0FXBlGDFVPLJHQlDLYnGC+XY3eoDgCgbtrhi0vzbXDQ3n/IYHhqSKqXQfGw/u04A1drWs7rFVkRjw==",
  7254. "type": "package",
  7255. "path": "remotion.linq/2.2.0",
  7256. "files": [
  7257. ".nupkg.metadata",
  7258. ".signature.p7s",
  7259. "lib/net35/Remotion.Linq.XML",
  7260. "lib/net35/Remotion.Linq.dll",
  7261. "lib/net40/Remotion.Linq.XML",
  7262. "lib/net40/Remotion.Linq.dll",
  7263. "lib/net45/Remotion.Linq.XML",
  7264. "lib/net45/Remotion.Linq.dll",
  7265. "lib/netstandard1.0/Remotion.Linq.dll",
  7266. "lib/netstandard1.0/Remotion.Linq.xml",
  7267. "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll",
  7268. "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml",
  7269. "remotion.linq.2.2.0.nupkg.sha512",
  7270. "remotion.linq.nuspec"
  7271. ]
  7272. },
  7273. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7274. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  7275. "type": "package",
  7276. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7277. "files": [
  7278. ".nupkg.metadata",
  7279. "ThirdPartyNotices.txt",
  7280. "dotnet_library_license.txt",
  7281. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7282. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7283. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7284. ]
  7285. },
  7286. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7287. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  7288. "type": "package",
  7289. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7290. "files": [
  7291. ".nupkg.metadata",
  7292. "ThirdPartyNotices.txt",
  7293. "dotnet_library_license.txt",
  7294. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7295. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7296. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7297. ]
  7298. },
  7299. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7300. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  7301. "type": "package",
  7302. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7303. "files": [
  7304. ".nupkg.metadata",
  7305. "ThirdPartyNotices.txt",
  7306. "dotnet_library_license.txt",
  7307. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7308. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7309. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7310. ]
  7311. },
  7312. "runtime.native.System/4.3.0": {
  7313. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  7314. "type": "package",
  7315. "path": "runtime.native.system/4.3.0",
  7316. "files": [
  7317. ".nupkg.metadata",
  7318. "ThirdPartyNotices.txt",
  7319. "dotnet_library_license.txt",
  7320. "lib/netstandard1.0/_._",
  7321. "runtime.native.system.4.3.0.nupkg.sha512",
  7322. "runtime.native.system.nuspec"
  7323. ]
  7324. },
  7325. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  7326. "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
  7327. "type": "package",
  7328. "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
  7329. "files": [
  7330. ".nupkg.metadata",
  7331. ".signature.p7s",
  7332. "LICENSE.TXT",
  7333. "THIRD-PARTY-NOTICES.TXT",
  7334. "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  7335. "runtime.native.system.data.sqlclient.sni.nuspec",
  7336. "useSharedDesignerContext.txt",
  7337. "version.txt"
  7338. ]
  7339. },
  7340. "runtime.native.System.IO.Compression/4.3.0": {
  7341. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  7342. "type": "package",
  7343. "path": "runtime.native.system.io.compression/4.3.0",
  7344. "files": [
  7345. ".nupkg.metadata",
  7346. "ThirdPartyNotices.txt",
  7347. "dotnet_library_license.txt",
  7348. "lib/netstandard1.0/_._",
  7349. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  7350. "runtime.native.system.io.compression.nuspec"
  7351. ]
  7352. },
  7353. "runtime.native.System.Net.Http/4.3.0": {
  7354. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  7355. "type": "package",
  7356. "path": "runtime.native.system.net.http/4.3.0",
  7357. "files": [
  7358. ".nupkg.metadata",
  7359. "ThirdPartyNotices.txt",
  7360. "dotnet_library_license.txt",
  7361. "lib/netstandard1.0/_._",
  7362. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  7363. "runtime.native.system.net.http.nuspec"
  7364. ]
  7365. },
  7366. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  7367. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  7368. "type": "package",
  7369. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  7370. "files": [
  7371. ".nupkg.metadata",
  7372. "ThirdPartyNotices.txt",
  7373. "dotnet_library_license.txt",
  7374. "lib/netstandard1.0/_._",
  7375. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  7376. "runtime.native.system.security.cryptography.apple.nuspec"
  7377. ]
  7378. },
  7379. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7380. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  7381. "type": "package",
  7382. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  7383. "files": [
  7384. ".nupkg.metadata",
  7385. "ThirdPartyNotices.txt",
  7386. "dotnet_library_license.txt",
  7387. "lib/netstandard1.0/_._",
  7388. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7389. "runtime.native.system.security.cryptography.openssl.nuspec"
  7390. ]
  7391. },
  7392. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7393. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  7394. "type": "package",
  7395. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7396. "files": [
  7397. ".nupkg.metadata",
  7398. "ThirdPartyNotices.txt",
  7399. "dotnet_library_license.txt",
  7400. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7401. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7402. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7403. ]
  7404. },
  7405. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7406. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  7407. "type": "package",
  7408. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7409. "files": [
  7410. ".nupkg.metadata",
  7411. "ThirdPartyNotices.txt",
  7412. "dotnet_library_license.txt",
  7413. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7414. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7415. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7416. ]
  7417. },
  7418. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  7419. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  7420. "type": "package",
  7421. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  7422. "files": [
  7423. ".nupkg.metadata",
  7424. ".signature.p7s",
  7425. "ThirdPartyNotices.txt",
  7426. "dotnet_library_license.txt",
  7427. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  7428. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  7429. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  7430. ]
  7431. },
  7432. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7433. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  7434. "type": "package",
  7435. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7436. "files": [
  7437. ".nupkg.metadata",
  7438. "ThirdPartyNotices.txt",
  7439. "dotnet_library_license.txt",
  7440. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7441. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7442. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  7443. ]
  7444. },
  7445. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7446. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  7447. "type": "package",
  7448. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7449. "files": [
  7450. ".nupkg.metadata",
  7451. "ThirdPartyNotices.txt",
  7452. "dotnet_library_license.txt",
  7453. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7454. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7455. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7456. ]
  7457. },
  7458. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7459. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  7460. "type": "package",
  7461. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7462. "files": [
  7463. ".nupkg.metadata",
  7464. "ThirdPartyNotices.txt",
  7465. "dotnet_library_license.txt",
  7466. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7467. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7468. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7469. ]
  7470. },
  7471. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7472. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  7473. "type": "package",
  7474. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7475. "files": [
  7476. ".nupkg.metadata",
  7477. "ThirdPartyNotices.txt",
  7478. "dotnet_library_license.txt",
  7479. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7480. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7481. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7482. ]
  7483. },
  7484. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7485. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  7486. "type": "package",
  7487. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7488. "files": [
  7489. ".nupkg.metadata",
  7490. "ThirdPartyNotices.txt",
  7491. "dotnet_library_license.txt",
  7492. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7493. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7494. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7495. ]
  7496. },
  7497. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  7498. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  7499. "type": "package",
  7500. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  7501. "files": [
  7502. ".nupkg.metadata",
  7503. "ThirdPartyNotices.txt",
  7504. "dotnet_library_license.txt",
  7505. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  7506. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  7507. "runtimes/win-arm64/native/sni.dll",
  7508. "useSharedDesignerContext.txt",
  7509. "version.txt"
  7510. ]
  7511. },
  7512. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  7513. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  7514. "type": "package",
  7515. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  7516. "files": [
  7517. ".nupkg.metadata",
  7518. "ThirdPartyNotices.txt",
  7519. "dotnet_library_license.txt",
  7520. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  7521. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  7522. "runtimes/win-x64/native/sni.dll",
  7523. "useSharedDesignerContext.txt",
  7524. "version.txt"
  7525. ]
  7526. },
  7527. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  7528. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  7529. "type": "package",
  7530. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  7531. "files": [
  7532. ".nupkg.metadata",
  7533. "ThirdPartyNotices.txt",
  7534. "dotnet_library_license.txt",
  7535. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  7536. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  7537. "runtimes/win-x86/native/sni.dll",
  7538. "useSharedDesignerContext.txt",
  7539. "version.txt"
  7540. ]
  7541. },
  7542. "SafeObjectPool/2.1.1": {
  7543. "sha512": "GsM1W5cybpzg3/hcFjKALobc8wv8aDGuZJO+5X+6KNYzO9oGRtIt5p+KKCQjwDNY4lcJyATh72UVpNK0Xjcwlw==",
  7544. "type": "package",
  7545. "path": "safeobjectpool/2.1.1",
  7546. "files": [
  7547. ".nupkg.metadata",
  7548. ".signature.p7s",
  7549. "lib/net40/SafeObjectPool.dll",
  7550. "lib/net40/SafeObjectPool.xml",
  7551. "lib/net45/SafeObjectPool.dll",
  7552. "lib/net45/SafeObjectPool.xml",
  7553. "lib/netstandard2.0/SafeObjectPool.dll",
  7554. "lib/netstandard2.0/SafeObjectPool.xml",
  7555. "safeobjectpool.2.1.1.nupkg.sha512",
  7556. "safeobjectpool.nuspec"
  7557. ]
  7558. },
  7559. "StackExchange.Redis/2.0.601": {
  7560. "sha512": "aEZQui10BTYL787+GCRlcT5qZe4ioyU2NKIO20ppDFbWE9bUuQLIq2FWQyvVcD+e/a88JFusT77KaQ8C7UDP9g==",
  7561. "type": "package",
  7562. "path": "stackexchange.redis/2.0.601",
  7563. "files": [
  7564. ".nupkg.metadata",
  7565. ".signature.p7s",
  7566. "lib/net461/StackExchange.Redis.dll",
  7567. "lib/net461/StackExchange.Redis.xml",
  7568. "lib/net472/StackExchange.Redis.dll",
  7569. "lib/net472/StackExchange.Redis.xml",
  7570. "lib/netstandard2.0/StackExchange.Redis.dll",
  7571. "lib/netstandard2.0/StackExchange.Redis.xml",
  7572. "stackexchange.redis.2.0.601.nupkg.sha512",
  7573. "stackexchange.redis.nuspec"
  7574. ]
  7575. },
  7576. "System.AppContext/4.3.0": {
  7577. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  7578. "type": "package",
  7579. "path": "system.appcontext/4.3.0",
  7580. "files": [
  7581. ".nupkg.metadata",
  7582. "ThirdPartyNotices.txt",
  7583. "dotnet_library_license.txt",
  7584. "lib/MonoAndroid10/_._",
  7585. "lib/MonoTouch10/_._",
  7586. "lib/net46/System.AppContext.dll",
  7587. "lib/net463/System.AppContext.dll",
  7588. "lib/netcore50/System.AppContext.dll",
  7589. "lib/netstandard1.6/System.AppContext.dll",
  7590. "lib/xamarinios10/_._",
  7591. "lib/xamarinmac20/_._",
  7592. "lib/xamarintvos10/_._",
  7593. "lib/xamarinwatchos10/_._",
  7594. "ref/MonoAndroid10/_._",
  7595. "ref/MonoTouch10/_._",
  7596. "ref/net46/System.AppContext.dll",
  7597. "ref/net463/System.AppContext.dll",
  7598. "ref/netstandard/_._",
  7599. "ref/netstandard1.3/System.AppContext.dll",
  7600. "ref/netstandard1.3/System.AppContext.xml",
  7601. "ref/netstandard1.3/de/System.AppContext.xml",
  7602. "ref/netstandard1.3/es/System.AppContext.xml",
  7603. "ref/netstandard1.3/fr/System.AppContext.xml",
  7604. "ref/netstandard1.3/it/System.AppContext.xml",
  7605. "ref/netstandard1.3/ja/System.AppContext.xml",
  7606. "ref/netstandard1.3/ko/System.AppContext.xml",
  7607. "ref/netstandard1.3/ru/System.AppContext.xml",
  7608. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  7609. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  7610. "ref/netstandard1.6/System.AppContext.dll",
  7611. "ref/netstandard1.6/System.AppContext.xml",
  7612. "ref/netstandard1.6/de/System.AppContext.xml",
  7613. "ref/netstandard1.6/es/System.AppContext.xml",
  7614. "ref/netstandard1.6/fr/System.AppContext.xml",
  7615. "ref/netstandard1.6/it/System.AppContext.xml",
  7616. "ref/netstandard1.6/ja/System.AppContext.xml",
  7617. "ref/netstandard1.6/ko/System.AppContext.xml",
  7618. "ref/netstandard1.6/ru/System.AppContext.xml",
  7619. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  7620. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  7621. "ref/xamarinios10/_._",
  7622. "ref/xamarinmac20/_._",
  7623. "ref/xamarintvos10/_._",
  7624. "ref/xamarinwatchos10/_._",
  7625. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  7626. "system.appcontext.4.3.0.nupkg.sha512",
  7627. "system.appcontext.nuspec"
  7628. ]
  7629. },
  7630. "System.Buffers/4.5.0": {
  7631. "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
  7632. "type": "package",
  7633. "path": "system.buffers/4.5.0",
  7634. "files": [
  7635. ".nupkg.metadata",
  7636. ".signature.p7s",
  7637. "LICENSE.TXT",
  7638. "THIRD-PARTY-NOTICES.TXT",
  7639. "lib/netcoreapp2.0/_._",
  7640. "lib/netstandard1.1/System.Buffers.dll",
  7641. "lib/netstandard1.1/System.Buffers.xml",
  7642. "lib/netstandard2.0/System.Buffers.dll",
  7643. "lib/netstandard2.0/System.Buffers.xml",
  7644. "lib/uap10.0.16299/_._",
  7645. "ref/net45/System.Buffers.dll",
  7646. "ref/net45/System.Buffers.xml",
  7647. "ref/netcoreapp2.0/_._",
  7648. "ref/netstandard1.1/System.Buffers.dll",
  7649. "ref/netstandard1.1/System.Buffers.xml",
  7650. "ref/netstandard2.0/System.Buffers.dll",
  7651. "ref/netstandard2.0/System.Buffers.xml",
  7652. "ref/uap10.0.16299/_._",
  7653. "system.buffers.4.5.0.nupkg.sha512",
  7654. "system.buffers.nuspec",
  7655. "useSharedDesignerContext.txt",
  7656. "version.txt"
  7657. ]
  7658. },
  7659. "System.Collections/4.3.0": {
  7660. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  7661. "type": "package",
  7662. "path": "system.collections/4.3.0",
  7663. "files": [
  7664. ".nupkg.metadata",
  7665. "ThirdPartyNotices.txt",
  7666. "dotnet_library_license.txt",
  7667. "lib/MonoAndroid10/_._",
  7668. "lib/MonoTouch10/_._",
  7669. "lib/net45/_._",
  7670. "lib/portable-net45+win8+wp8+wpa81/_._",
  7671. "lib/win8/_._",
  7672. "lib/wp80/_._",
  7673. "lib/wpa81/_._",
  7674. "lib/xamarinios10/_._",
  7675. "lib/xamarinmac20/_._",
  7676. "lib/xamarintvos10/_._",
  7677. "lib/xamarinwatchos10/_._",
  7678. "ref/MonoAndroid10/_._",
  7679. "ref/MonoTouch10/_._",
  7680. "ref/net45/_._",
  7681. "ref/netcore50/System.Collections.dll",
  7682. "ref/netcore50/System.Collections.xml",
  7683. "ref/netcore50/de/System.Collections.xml",
  7684. "ref/netcore50/es/System.Collections.xml",
  7685. "ref/netcore50/fr/System.Collections.xml",
  7686. "ref/netcore50/it/System.Collections.xml",
  7687. "ref/netcore50/ja/System.Collections.xml",
  7688. "ref/netcore50/ko/System.Collections.xml",
  7689. "ref/netcore50/ru/System.Collections.xml",
  7690. "ref/netcore50/zh-hans/System.Collections.xml",
  7691. "ref/netcore50/zh-hant/System.Collections.xml",
  7692. "ref/netstandard1.0/System.Collections.dll",
  7693. "ref/netstandard1.0/System.Collections.xml",
  7694. "ref/netstandard1.0/de/System.Collections.xml",
  7695. "ref/netstandard1.0/es/System.Collections.xml",
  7696. "ref/netstandard1.0/fr/System.Collections.xml",
  7697. "ref/netstandard1.0/it/System.Collections.xml",
  7698. "ref/netstandard1.0/ja/System.Collections.xml",
  7699. "ref/netstandard1.0/ko/System.Collections.xml",
  7700. "ref/netstandard1.0/ru/System.Collections.xml",
  7701. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  7702. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  7703. "ref/netstandard1.3/System.Collections.dll",
  7704. "ref/netstandard1.3/System.Collections.xml",
  7705. "ref/netstandard1.3/de/System.Collections.xml",
  7706. "ref/netstandard1.3/es/System.Collections.xml",
  7707. "ref/netstandard1.3/fr/System.Collections.xml",
  7708. "ref/netstandard1.3/it/System.Collections.xml",
  7709. "ref/netstandard1.3/ja/System.Collections.xml",
  7710. "ref/netstandard1.3/ko/System.Collections.xml",
  7711. "ref/netstandard1.3/ru/System.Collections.xml",
  7712. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  7713. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  7714. "ref/portable-net45+win8+wp8+wpa81/_._",
  7715. "ref/win8/_._",
  7716. "ref/wp80/_._",
  7717. "ref/wpa81/_._",
  7718. "ref/xamarinios10/_._",
  7719. "ref/xamarinmac20/_._",
  7720. "ref/xamarintvos10/_._",
  7721. "ref/xamarinwatchos10/_._",
  7722. "system.collections.4.3.0.nupkg.sha512",
  7723. "system.collections.nuspec"
  7724. ]
  7725. },
  7726. "System.Collections.Concurrent/4.3.0": {
  7727. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  7728. "type": "package",
  7729. "path": "system.collections.concurrent/4.3.0",
  7730. "files": [
  7731. ".nupkg.metadata",
  7732. "ThirdPartyNotices.txt",
  7733. "dotnet_library_license.txt",
  7734. "lib/MonoAndroid10/_._",
  7735. "lib/MonoTouch10/_._",
  7736. "lib/net45/_._",
  7737. "lib/netcore50/System.Collections.Concurrent.dll",
  7738. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  7739. "lib/portable-net45+win8+wpa81/_._",
  7740. "lib/win8/_._",
  7741. "lib/wpa81/_._",
  7742. "lib/xamarinios10/_._",
  7743. "lib/xamarinmac20/_._",
  7744. "lib/xamarintvos10/_._",
  7745. "lib/xamarinwatchos10/_._",
  7746. "ref/MonoAndroid10/_._",
  7747. "ref/MonoTouch10/_._",
  7748. "ref/net45/_._",
  7749. "ref/netcore50/System.Collections.Concurrent.dll",
  7750. "ref/netcore50/System.Collections.Concurrent.xml",
  7751. "ref/netcore50/de/System.Collections.Concurrent.xml",
  7752. "ref/netcore50/es/System.Collections.Concurrent.xml",
  7753. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  7754. "ref/netcore50/it/System.Collections.Concurrent.xml",
  7755. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  7756. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  7757. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  7758. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  7759. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  7760. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  7761. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  7762. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  7763. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  7764. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  7765. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  7766. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  7767. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  7768. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  7769. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  7770. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  7771. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  7772. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  7773. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  7774. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  7775. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  7776. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  7777. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  7778. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  7779. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  7780. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  7781. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  7782. "ref/portable-net45+win8+wpa81/_._",
  7783. "ref/win8/_._",
  7784. "ref/wpa81/_._",
  7785. "ref/xamarinios10/_._",
  7786. "ref/xamarinmac20/_._",
  7787. "ref/xamarintvos10/_._",
  7788. "ref/xamarinwatchos10/_._",
  7789. "system.collections.concurrent.4.3.0.nupkg.sha512",
  7790. "system.collections.concurrent.nuspec"
  7791. ]
  7792. },
  7793. "System.Collections.Immutable/1.5.0": {
  7794. "sha512": "EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==",
  7795. "type": "package",
  7796. "path": "system.collections.immutable/1.5.0",
  7797. "files": [
  7798. ".nupkg.metadata",
  7799. ".signature.p7s",
  7800. "LICENSE.TXT",
  7801. "THIRD-PARTY-NOTICES.TXT",
  7802. "lib/netstandard1.0/System.Collections.Immutable.dll",
  7803. "lib/netstandard1.0/System.Collections.Immutable.xml",
  7804. "lib/netstandard1.3/System.Collections.Immutable.dll",
  7805. "lib/netstandard1.3/System.Collections.Immutable.xml",
  7806. "lib/netstandard2.0/System.Collections.Immutable.dll",
  7807. "lib/netstandard2.0/System.Collections.Immutable.xml",
  7808. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  7809. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  7810. "system.collections.immutable.1.5.0.nupkg.sha512",
  7811. "system.collections.immutable.nuspec",
  7812. "useSharedDesignerContext.txt",
  7813. "version.txt"
  7814. ]
  7815. },
  7816. "System.Collections.NonGeneric/4.3.0": {
  7817. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  7818. "type": "package",
  7819. "path": "system.collections.nongeneric/4.3.0",
  7820. "files": [
  7821. ".nupkg.metadata",
  7822. "ThirdPartyNotices.txt",
  7823. "dotnet_library_license.txt",
  7824. "lib/MonoAndroid10/_._",
  7825. "lib/MonoTouch10/_._",
  7826. "lib/net46/System.Collections.NonGeneric.dll",
  7827. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  7828. "lib/xamarinios10/_._",
  7829. "lib/xamarinmac20/_._",
  7830. "lib/xamarintvos10/_._",
  7831. "lib/xamarinwatchos10/_._",
  7832. "ref/MonoAndroid10/_._",
  7833. "ref/MonoTouch10/_._",
  7834. "ref/net46/System.Collections.NonGeneric.dll",
  7835. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  7836. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  7837. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  7838. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  7839. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  7840. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  7841. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  7842. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  7843. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  7844. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  7845. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  7846. "ref/xamarinios10/_._",
  7847. "ref/xamarinmac20/_._",
  7848. "ref/xamarintvos10/_._",
  7849. "ref/xamarinwatchos10/_._",
  7850. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  7851. "system.collections.nongeneric.nuspec"
  7852. ]
  7853. },
  7854. "System.Collections.Specialized/4.3.0": {
  7855. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  7856. "type": "package",
  7857. "path": "system.collections.specialized/4.3.0",
  7858. "files": [
  7859. ".nupkg.metadata",
  7860. "ThirdPartyNotices.txt",
  7861. "dotnet_library_license.txt",
  7862. "lib/MonoAndroid10/_._",
  7863. "lib/MonoTouch10/_._",
  7864. "lib/net46/System.Collections.Specialized.dll",
  7865. "lib/netstandard1.3/System.Collections.Specialized.dll",
  7866. "lib/xamarinios10/_._",
  7867. "lib/xamarinmac20/_._",
  7868. "lib/xamarintvos10/_._",
  7869. "lib/xamarinwatchos10/_._",
  7870. "ref/MonoAndroid10/_._",
  7871. "ref/MonoTouch10/_._",
  7872. "ref/net46/System.Collections.Specialized.dll",
  7873. "ref/netstandard1.3/System.Collections.Specialized.dll",
  7874. "ref/netstandard1.3/System.Collections.Specialized.xml",
  7875. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  7876. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  7877. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  7878. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  7879. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  7880. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  7881. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  7882. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  7883. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  7884. "ref/xamarinios10/_._",
  7885. "ref/xamarinmac20/_._",
  7886. "ref/xamarintvos10/_._",
  7887. "ref/xamarinwatchos10/_._",
  7888. "system.collections.specialized.4.3.0.nupkg.sha512",
  7889. "system.collections.specialized.nuspec"
  7890. ]
  7891. },
  7892. "System.ComponentModel.Annotations/4.5.0": {
  7893. "sha512": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
  7894. "type": "package",
  7895. "path": "system.componentmodel.annotations/4.5.0",
  7896. "files": [
  7897. ".nupkg.metadata",
  7898. ".signature.p7s",
  7899. "LICENSE.TXT",
  7900. "THIRD-PARTY-NOTICES.TXT",
  7901. "lib/MonoAndroid10/_._",
  7902. "lib/MonoTouch10/_._",
  7903. "lib/net45/_._",
  7904. "lib/net461/System.ComponentModel.Annotations.dll",
  7905. "lib/netcore50/System.ComponentModel.Annotations.dll",
  7906. "lib/netcoreapp2.0/_._",
  7907. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  7908. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  7909. "lib/portable-net45+win8/_._",
  7910. "lib/uap10.0.16299/_._",
  7911. "lib/win8/_._",
  7912. "lib/xamarinios10/_._",
  7913. "lib/xamarinmac20/_._",
  7914. "lib/xamarintvos10/_._",
  7915. "lib/xamarinwatchos10/_._",
  7916. "ref/MonoAndroid10/_._",
  7917. "ref/MonoTouch10/_._",
  7918. "ref/net45/_._",
  7919. "ref/net461/System.ComponentModel.Annotations.dll",
  7920. "ref/net461/System.ComponentModel.Annotations.xml",
  7921. "ref/netcore50/System.ComponentModel.Annotations.dll",
  7922. "ref/netcore50/System.ComponentModel.Annotations.xml",
  7923. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  7924. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  7925. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  7926. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  7927. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  7928. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  7929. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  7930. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  7931. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  7932. "ref/netcoreapp2.0/_._",
  7933. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  7934. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  7935. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  7936. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  7937. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  7938. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  7939. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  7940. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  7941. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  7942. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  7943. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  7944. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  7945. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  7946. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  7947. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  7948. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  7949. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  7950. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  7951. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  7952. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  7953. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  7954. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  7955. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  7956. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  7957. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  7958. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  7959. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  7960. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  7961. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  7962. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  7963. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  7964. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  7965. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  7966. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  7967. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  7968. "ref/portable-net45+win8/_._",
  7969. "ref/uap10.0.16299/_._",
  7970. "ref/win8/_._",
  7971. "ref/xamarinios10/_._",
  7972. "ref/xamarinmac20/_._",
  7973. "ref/xamarintvos10/_._",
  7974. "ref/xamarinwatchos10/_._",
  7975. "system.componentmodel.annotations.4.5.0.nupkg.sha512",
  7976. "system.componentmodel.annotations.nuspec",
  7977. "useSharedDesignerContext.txt",
  7978. "version.txt"
  7979. ]
  7980. },
  7981. "System.Configuration.ConfigurationManager/4.5.0": {
  7982. "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
  7983. "type": "package",
  7984. "path": "system.configuration.configurationmanager/4.5.0",
  7985. "files": [
  7986. ".nupkg.metadata",
  7987. ".signature.p7s",
  7988. "LICENSE.TXT",
  7989. "THIRD-PARTY-NOTICES.TXT",
  7990. "lib/net461/System.Configuration.ConfigurationManager.dll",
  7991. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  7992. "ref/net461/System.Configuration.ConfigurationManager.dll",
  7993. "ref/net461/System.Configuration.ConfigurationManager.xml",
  7994. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  7995. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  7996. "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
  7997. "system.configuration.configurationmanager.nuspec",
  7998. "useSharedDesignerContext.txt",
  7999. "version.txt"
  8000. ]
  8001. },
  8002. "System.Console/4.3.0": {
  8003. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  8004. "type": "package",
  8005. "path": "system.console/4.3.0",
  8006. "files": [
  8007. ".nupkg.metadata",
  8008. "ThirdPartyNotices.txt",
  8009. "dotnet_library_license.txt",
  8010. "lib/MonoAndroid10/_._",
  8011. "lib/MonoTouch10/_._",
  8012. "lib/net46/System.Console.dll",
  8013. "lib/xamarinios10/_._",
  8014. "lib/xamarinmac20/_._",
  8015. "lib/xamarintvos10/_._",
  8016. "lib/xamarinwatchos10/_._",
  8017. "ref/MonoAndroid10/_._",
  8018. "ref/MonoTouch10/_._",
  8019. "ref/net46/System.Console.dll",
  8020. "ref/netstandard1.3/System.Console.dll",
  8021. "ref/netstandard1.3/System.Console.xml",
  8022. "ref/netstandard1.3/de/System.Console.xml",
  8023. "ref/netstandard1.3/es/System.Console.xml",
  8024. "ref/netstandard1.3/fr/System.Console.xml",
  8025. "ref/netstandard1.3/it/System.Console.xml",
  8026. "ref/netstandard1.3/ja/System.Console.xml",
  8027. "ref/netstandard1.3/ko/System.Console.xml",
  8028. "ref/netstandard1.3/ru/System.Console.xml",
  8029. "ref/netstandard1.3/zh-hans/System.Console.xml",
  8030. "ref/netstandard1.3/zh-hant/System.Console.xml",
  8031. "ref/xamarinios10/_._",
  8032. "ref/xamarinmac20/_._",
  8033. "ref/xamarintvos10/_._",
  8034. "ref/xamarinwatchos10/_._",
  8035. "system.console.4.3.0.nupkg.sha512",
  8036. "system.console.nuspec"
  8037. ]
  8038. },
  8039. "System.Data.SqlClient/4.5.1": {
  8040. "sha512": "HV8pqcYlH7bNnX1n4i6F5RG7r6+WVErE2jUMNjXRrrkLFVIWLoerXtXDFs80pHvDBjxoG4rG0p2BUH3iXRs7hQ==",
  8041. "type": "package",
  8042. "path": "system.data.sqlclient/4.5.1",
  8043. "files": [
  8044. ".nupkg.metadata",
  8045. ".signature.p7s",
  8046. "LICENSE.TXT",
  8047. "THIRD-PARTY-NOTICES.TXT",
  8048. "lib/MonoAndroid10/_._",
  8049. "lib/MonoTouch10/_._",
  8050. "lib/net451/System.Data.SqlClient.dll",
  8051. "lib/net46/System.Data.SqlClient.dll",
  8052. "lib/net461/System.Data.SqlClient.dll",
  8053. "lib/netcoreapp2.1/System.Data.SqlClient.dll",
  8054. "lib/netstandard1.2/System.Data.SqlClient.dll",
  8055. "lib/netstandard1.3/System.Data.SqlClient.dll",
  8056. "lib/netstandard2.0/System.Data.SqlClient.dll",
  8057. "lib/xamarinios10/_._",
  8058. "lib/xamarinmac20/_._",
  8059. "lib/xamarintvos10/_._",
  8060. "lib/xamarinwatchos10/_._",
  8061. "ref/MonoAndroid10/_._",
  8062. "ref/MonoTouch10/_._",
  8063. "ref/net451/System.Data.SqlClient.dll",
  8064. "ref/net46/System.Data.SqlClient.dll",
  8065. "ref/net461/System.Data.SqlClient.dll",
  8066. "ref/net461/System.Data.SqlClient.xml",
  8067. "ref/netcoreapp2.1/System.Data.SqlClient.dll",
  8068. "ref/netcoreapp2.1/System.Data.SqlClient.xml",
  8069. "ref/netstandard1.2/System.Data.SqlClient.dll",
  8070. "ref/netstandard1.2/System.Data.SqlClient.xml",
  8071. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  8072. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  8073. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  8074. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  8075. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  8076. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  8077. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  8078. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  8079. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  8080. "ref/netstandard1.3/System.Data.SqlClient.dll",
  8081. "ref/netstandard1.3/System.Data.SqlClient.xml",
  8082. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  8083. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  8084. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  8085. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  8086. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  8087. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  8088. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  8089. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  8090. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  8091. "ref/netstandard2.0/System.Data.SqlClient.dll",
  8092. "ref/netstandard2.0/System.Data.SqlClient.xml",
  8093. "ref/xamarinios10/_._",
  8094. "ref/xamarinmac20/_._",
  8095. "ref/xamarintvos10/_._",
  8096. "ref/xamarinwatchos10/_._",
  8097. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  8098. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  8099. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  8100. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  8101. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  8102. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  8103. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  8104. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  8105. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  8106. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll",
  8107. "system.data.sqlclient.4.5.1.nupkg.sha512",
  8108. "system.data.sqlclient.nuspec",
  8109. "useSharedDesignerContext.txt",
  8110. "version.txt"
  8111. ]
  8112. },
  8113. "System.Diagnostics.Contracts/4.3.0": {
  8114. "sha512": "eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==",
  8115. "type": "package",
  8116. "path": "system.diagnostics.contracts/4.3.0",
  8117. "files": [
  8118. ".nupkg.metadata",
  8119. "ThirdPartyNotices.txt",
  8120. "dotnet_library_license.txt",
  8121. "lib/MonoAndroid10/_._",
  8122. "lib/MonoTouch10/_._",
  8123. "lib/net45/_._",
  8124. "lib/netcore50/System.Diagnostics.Contracts.dll",
  8125. "lib/netstandard1.0/System.Diagnostics.Contracts.dll",
  8126. "lib/portable-net45+win8+wp8+wpa81/_._",
  8127. "lib/win8/_._",
  8128. "lib/wp80/_._",
  8129. "lib/wpa81/_._",
  8130. "lib/xamarinios10/_._",
  8131. "lib/xamarinmac20/_._",
  8132. "lib/xamarintvos10/_._",
  8133. "lib/xamarinwatchos10/_._",
  8134. "ref/MonoAndroid10/_._",
  8135. "ref/MonoTouch10/_._",
  8136. "ref/net45/_._",
  8137. "ref/netcore50/System.Diagnostics.Contracts.dll",
  8138. "ref/netcore50/System.Diagnostics.Contracts.xml",
  8139. "ref/netcore50/de/System.Diagnostics.Contracts.xml",
  8140. "ref/netcore50/es/System.Diagnostics.Contracts.xml",
  8141. "ref/netcore50/fr/System.Diagnostics.Contracts.xml",
  8142. "ref/netcore50/it/System.Diagnostics.Contracts.xml",
  8143. "ref/netcore50/ja/System.Diagnostics.Contracts.xml",
  8144. "ref/netcore50/ko/System.Diagnostics.Contracts.xml",
  8145. "ref/netcore50/ru/System.Diagnostics.Contracts.xml",
  8146. "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml",
  8147. "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml",
  8148. "ref/netstandard1.0/System.Diagnostics.Contracts.dll",
  8149. "ref/netstandard1.0/System.Diagnostics.Contracts.xml",
  8150. "ref/netstandard1.0/de/System.Diagnostics.Contracts.xml",
  8151. "ref/netstandard1.0/es/System.Diagnostics.Contracts.xml",
  8152. "ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml",
  8153. "ref/netstandard1.0/it/System.Diagnostics.Contracts.xml",
  8154. "ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml",
  8155. "ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml",
  8156. "ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml",
  8157. "ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml",
  8158. "ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml",
  8159. "ref/portable-net45+win8+wp8+wpa81/_._",
  8160. "ref/win8/_._",
  8161. "ref/wp80/_._",
  8162. "ref/wpa81/_._",
  8163. "ref/xamarinios10/_._",
  8164. "ref/xamarinmac20/_._",
  8165. "ref/xamarintvos10/_._",
  8166. "ref/xamarinwatchos10/_._",
  8167. "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll",
  8168. "system.diagnostics.contracts.4.3.0.nupkg.sha512",
  8169. "system.diagnostics.contracts.nuspec"
  8170. ]
  8171. },
  8172. "System.Diagnostics.Debug/4.3.0": {
  8173. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  8174. "type": "package",
  8175. "path": "system.diagnostics.debug/4.3.0",
  8176. "files": [
  8177. ".nupkg.metadata",
  8178. "ThirdPartyNotices.txt",
  8179. "dotnet_library_license.txt",
  8180. "lib/MonoAndroid10/_._",
  8181. "lib/MonoTouch10/_._",
  8182. "lib/net45/_._",
  8183. "lib/portable-net45+win8+wp8+wpa81/_._",
  8184. "lib/win8/_._",
  8185. "lib/wp80/_._",
  8186. "lib/wpa81/_._",
  8187. "lib/xamarinios10/_._",
  8188. "lib/xamarinmac20/_._",
  8189. "lib/xamarintvos10/_._",
  8190. "lib/xamarinwatchos10/_._",
  8191. "ref/MonoAndroid10/_._",
  8192. "ref/MonoTouch10/_._",
  8193. "ref/net45/_._",
  8194. "ref/netcore50/System.Diagnostics.Debug.dll",
  8195. "ref/netcore50/System.Diagnostics.Debug.xml",
  8196. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  8197. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  8198. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  8199. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  8200. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  8201. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  8202. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  8203. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  8204. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  8205. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  8206. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  8207. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  8208. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  8209. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  8210. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  8211. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  8212. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  8213. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  8214. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  8215. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  8216. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  8217. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  8218. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  8219. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  8220. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  8221. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  8222. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  8223. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  8224. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  8225. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  8226. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  8227. "ref/portable-net45+win8+wp8+wpa81/_._",
  8228. "ref/win8/_._",
  8229. "ref/wp80/_._",
  8230. "ref/wpa81/_._",
  8231. "ref/xamarinios10/_._",
  8232. "ref/xamarinmac20/_._",
  8233. "ref/xamarintvos10/_._",
  8234. "ref/xamarinwatchos10/_._",
  8235. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  8236. "system.diagnostics.debug.nuspec"
  8237. ]
  8238. },
  8239. "System.Diagnostics.DiagnosticSource/4.5.0": {
  8240. "sha512": "eIHRELiYDQvsMToML81QFkXEEYXUSUT2F28t1SGrevWqP+epFdw80SyAXIKTXOHrIEXReFOEnEr7XlGiC2GgOg==",
  8241. "type": "package",
  8242. "path": "system.diagnostics.diagnosticsource/4.5.0",
  8243. "files": [
  8244. ".nupkg.metadata",
  8245. ".signature.p7s",
  8246. "LICENSE.TXT",
  8247. "THIRD-PARTY-NOTICES.TXT",
  8248. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  8249. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  8250. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  8251. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  8252. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  8253. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  8254. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  8255. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  8256. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  8257. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  8258. "system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512",
  8259. "system.diagnostics.diagnosticsource.nuspec",
  8260. "useSharedDesignerContext.txt",
  8261. "version.txt"
  8262. ]
  8263. },
  8264. "System.Diagnostics.FileVersionInfo/4.3.0": {
  8265. "sha512": "omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==",
  8266. "type": "package",
  8267. "path": "system.diagnostics.fileversioninfo/4.3.0",
  8268. "files": [
  8269. ".nupkg.metadata",
  8270. "ThirdPartyNotices.txt",
  8271. "dotnet_library_license.txt",
  8272. "lib/MonoAndroid10/_._",
  8273. "lib/MonoTouch10/_._",
  8274. "lib/net46/System.Diagnostics.FileVersionInfo.dll",
  8275. "lib/xamarinios10/_._",
  8276. "lib/xamarinmac20/_._",
  8277. "lib/xamarintvos10/_._",
  8278. "lib/xamarinwatchos10/_._",
  8279. "ref/MonoAndroid10/_._",
  8280. "ref/MonoTouch10/_._",
  8281. "ref/net46/System.Diagnostics.FileVersionInfo.dll",
  8282. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  8283. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml",
  8284. "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml",
  8285. "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml",
  8286. "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml",
  8287. "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml",
  8288. "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml",
  8289. "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml",
  8290. "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml",
  8291. "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml",
  8292. "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml",
  8293. "ref/xamarinios10/_._",
  8294. "ref/xamarinmac20/_._",
  8295. "ref/xamarintvos10/_._",
  8296. "ref/xamarinwatchos10/_._",
  8297. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  8298. "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll",
  8299. "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll",
  8300. "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  8301. "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512",
  8302. "system.diagnostics.fileversioninfo.nuspec"
  8303. ]
  8304. },
  8305. "System.Diagnostics.PerformanceCounter/4.5.0": {
  8306. "sha512": "JUO5/moXgchWZBMBElgmPebZPKCgwW8kY3dFwVJavaNR2ftcc/YjXXGjOaCjly2KBXT7Ld5l/GTkMVzNv41yZA==",
  8307. "type": "package",
  8308. "path": "system.diagnostics.performancecounter/4.5.0",
  8309. "files": [
  8310. ".nupkg.metadata",
  8311. ".signature.p7s",
  8312. "LICENSE.TXT",
  8313. "THIRD-PARTY-NOTICES.TXT",
  8314. "lib/MonoAndroid10/_._",
  8315. "lib/MonoTouch10/_._",
  8316. "lib/net461/System.Diagnostics.PerformanceCounter.dll",
  8317. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  8318. "lib/xamarinios10/_._",
  8319. "lib/xamarinmac20/_._",
  8320. "lib/xamarintvos10/_._",
  8321. "lib/xamarinwatchos10/_._",
  8322. "ref/MonoAndroid10/_._",
  8323. "ref/MonoTouch10/_._",
  8324. "ref/net461/System.Diagnostics.PerformanceCounter.dll",
  8325. "ref/net461/System.Diagnostics.PerformanceCounter.xml",
  8326. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  8327. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  8328. "ref/xamarinios10/_._",
  8329. "ref/xamarinmac20/_._",
  8330. "ref/xamarintvos10/_._",
  8331. "ref/xamarinwatchos10/_._",
  8332. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
  8333. "system.diagnostics.performancecounter.4.5.0.nupkg.sha512",
  8334. "system.diagnostics.performancecounter.nuspec",
  8335. "useSharedDesignerContext.txt",
  8336. "version.txt"
  8337. ]
  8338. },
  8339. "System.Diagnostics.StackTrace/4.3.0": {
  8340. "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
  8341. "type": "package",
  8342. "path": "system.diagnostics.stacktrace/4.3.0",
  8343. "files": [
  8344. ".nupkg.metadata",
  8345. "ThirdPartyNotices.txt",
  8346. "dotnet_library_license.txt",
  8347. "lib/MonoAndroid10/_._",
  8348. "lib/MonoTouch10/_._",
  8349. "lib/net46/System.Diagnostics.StackTrace.dll",
  8350. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll",
  8351. "lib/xamarinios10/_._",
  8352. "lib/xamarinmac20/_._",
  8353. "lib/xamarintvos10/_._",
  8354. "lib/xamarinwatchos10/_._",
  8355. "ref/MonoAndroid10/_._",
  8356. "ref/MonoTouch10/_._",
  8357. "ref/net46/System.Diagnostics.StackTrace.dll",
  8358. "ref/netstandard1.3/System.Diagnostics.StackTrace.dll",
  8359. "ref/netstandard1.3/System.Diagnostics.StackTrace.xml",
  8360. "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml",
  8361. "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml",
  8362. "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml",
  8363. "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml",
  8364. "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml",
  8365. "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml",
  8366. "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml",
  8367. "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml",
  8368. "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml",
  8369. "ref/xamarinios10/_._",
  8370. "ref/xamarinmac20/_._",
  8371. "ref/xamarintvos10/_._",
  8372. "ref/xamarinwatchos10/_._",
  8373. "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll",
  8374. "system.diagnostics.stacktrace.4.3.0.nupkg.sha512",
  8375. "system.diagnostics.stacktrace.nuspec"
  8376. ]
  8377. },
  8378. "System.Diagnostics.Tools/4.3.0": {
  8379. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  8380. "type": "package",
  8381. "path": "system.diagnostics.tools/4.3.0",
  8382. "files": [
  8383. ".nupkg.metadata",
  8384. "ThirdPartyNotices.txt",
  8385. "dotnet_library_license.txt",
  8386. "lib/MonoAndroid10/_._",
  8387. "lib/MonoTouch10/_._",
  8388. "lib/net45/_._",
  8389. "lib/portable-net45+win8+wp8+wpa81/_._",
  8390. "lib/win8/_._",
  8391. "lib/wp80/_._",
  8392. "lib/wpa81/_._",
  8393. "lib/xamarinios10/_._",
  8394. "lib/xamarinmac20/_._",
  8395. "lib/xamarintvos10/_._",
  8396. "lib/xamarinwatchos10/_._",
  8397. "ref/MonoAndroid10/_._",
  8398. "ref/MonoTouch10/_._",
  8399. "ref/net45/_._",
  8400. "ref/netcore50/System.Diagnostics.Tools.dll",
  8401. "ref/netcore50/System.Diagnostics.Tools.xml",
  8402. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  8403. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  8404. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  8405. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  8406. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  8407. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  8408. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  8409. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  8410. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  8411. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  8412. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  8413. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  8414. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  8415. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  8416. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  8417. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  8418. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  8419. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  8420. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  8421. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  8422. "ref/portable-net45+win8+wp8+wpa81/_._",
  8423. "ref/win8/_._",
  8424. "ref/wp80/_._",
  8425. "ref/wpa81/_._",
  8426. "ref/xamarinios10/_._",
  8427. "ref/xamarinmac20/_._",
  8428. "ref/xamarintvos10/_._",
  8429. "ref/xamarinwatchos10/_._",
  8430. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  8431. "system.diagnostics.tools.nuspec"
  8432. ]
  8433. },
  8434. "System.Diagnostics.Tracing/4.3.0": {
  8435. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  8436. "type": "package",
  8437. "path": "system.diagnostics.tracing/4.3.0",
  8438. "files": [
  8439. ".nupkg.metadata",
  8440. "ThirdPartyNotices.txt",
  8441. "dotnet_library_license.txt",
  8442. "lib/MonoAndroid10/_._",
  8443. "lib/MonoTouch10/_._",
  8444. "lib/net45/_._",
  8445. "lib/net462/System.Diagnostics.Tracing.dll",
  8446. "lib/portable-net45+win8+wpa81/_._",
  8447. "lib/win8/_._",
  8448. "lib/wpa81/_._",
  8449. "lib/xamarinios10/_._",
  8450. "lib/xamarinmac20/_._",
  8451. "lib/xamarintvos10/_._",
  8452. "lib/xamarinwatchos10/_._",
  8453. "ref/MonoAndroid10/_._",
  8454. "ref/MonoTouch10/_._",
  8455. "ref/net45/_._",
  8456. "ref/net462/System.Diagnostics.Tracing.dll",
  8457. "ref/netcore50/System.Diagnostics.Tracing.dll",
  8458. "ref/netcore50/System.Diagnostics.Tracing.xml",
  8459. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  8460. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  8461. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  8462. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  8463. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  8464. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  8465. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  8466. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  8467. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  8468. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  8469. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  8470. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  8471. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  8472. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  8473. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  8474. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  8475. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  8476. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  8477. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  8478. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  8479. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  8480. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  8481. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  8482. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  8483. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  8484. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  8485. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  8486. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  8487. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  8488. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  8489. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  8490. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  8491. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  8492. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  8493. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  8494. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  8495. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  8496. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  8497. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  8498. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  8499. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  8500. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  8501. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  8502. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  8503. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  8504. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  8505. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  8506. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  8507. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  8508. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  8509. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  8510. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  8511. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  8512. "ref/portable-net45+win8+wpa81/_._",
  8513. "ref/win8/_._",
  8514. "ref/wpa81/_._",
  8515. "ref/xamarinios10/_._",
  8516. "ref/xamarinmac20/_._",
  8517. "ref/xamarintvos10/_._",
  8518. "ref/xamarinwatchos10/_._",
  8519. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  8520. "system.diagnostics.tracing.nuspec"
  8521. ]
  8522. },
  8523. "System.Dynamic.Runtime/4.3.0": {
  8524. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  8525. "type": "package",
  8526. "path": "system.dynamic.runtime/4.3.0",
  8527. "files": [
  8528. ".nupkg.metadata",
  8529. "ThirdPartyNotices.txt",
  8530. "dotnet_library_license.txt",
  8531. "lib/MonoAndroid10/_._",
  8532. "lib/MonoTouch10/_._",
  8533. "lib/net45/_._",
  8534. "lib/netcore50/System.Dynamic.Runtime.dll",
  8535. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  8536. "lib/portable-net45+win8+wp8+wpa81/_._",
  8537. "lib/win8/_._",
  8538. "lib/wp80/_._",
  8539. "lib/wpa81/_._",
  8540. "lib/xamarinios10/_._",
  8541. "lib/xamarinmac20/_._",
  8542. "lib/xamarintvos10/_._",
  8543. "lib/xamarinwatchos10/_._",
  8544. "ref/MonoAndroid10/_._",
  8545. "ref/MonoTouch10/_._",
  8546. "ref/net45/_._",
  8547. "ref/netcore50/System.Dynamic.Runtime.dll",
  8548. "ref/netcore50/System.Dynamic.Runtime.xml",
  8549. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  8550. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  8551. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  8552. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  8553. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  8554. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  8555. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  8556. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  8557. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  8558. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  8559. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  8560. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  8561. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  8562. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  8563. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  8564. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  8565. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  8566. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  8567. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  8568. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  8569. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  8570. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  8571. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  8572. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  8573. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  8574. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  8575. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  8576. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  8577. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  8578. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  8579. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  8580. "ref/portable-net45+win8+wp8+wpa81/_._",
  8581. "ref/win8/_._",
  8582. "ref/wp80/_._",
  8583. "ref/wpa81/_._",
  8584. "ref/xamarinios10/_._",
  8585. "ref/xamarinmac20/_._",
  8586. "ref/xamarintvos10/_._",
  8587. "ref/xamarinwatchos10/_._",
  8588. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  8589. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  8590. "system.dynamic.runtime.nuspec"
  8591. ]
  8592. },
  8593. "System.Globalization/4.3.0": {
  8594. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  8595. "type": "package",
  8596. "path": "system.globalization/4.3.0",
  8597. "files": [
  8598. ".nupkg.metadata",
  8599. "ThirdPartyNotices.txt",
  8600. "dotnet_library_license.txt",
  8601. "lib/MonoAndroid10/_._",
  8602. "lib/MonoTouch10/_._",
  8603. "lib/net45/_._",
  8604. "lib/portable-net45+win8+wp8+wpa81/_._",
  8605. "lib/win8/_._",
  8606. "lib/wp80/_._",
  8607. "lib/wpa81/_._",
  8608. "lib/xamarinios10/_._",
  8609. "lib/xamarinmac20/_._",
  8610. "lib/xamarintvos10/_._",
  8611. "lib/xamarinwatchos10/_._",
  8612. "ref/MonoAndroid10/_._",
  8613. "ref/MonoTouch10/_._",
  8614. "ref/net45/_._",
  8615. "ref/netcore50/System.Globalization.dll",
  8616. "ref/netcore50/System.Globalization.xml",
  8617. "ref/netcore50/de/System.Globalization.xml",
  8618. "ref/netcore50/es/System.Globalization.xml",
  8619. "ref/netcore50/fr/System.Globalization.xml",
  8620. "ref/netcore50/it/System.Globalization.xml",
  8621. "ref/netcore50/ja/System.Globalization.xml",
  8622. "ref/netcore50/ko/System.Globalization.xml",
  8623. "ref/netcore50/ru/System.Globalization.xml",
  8624. "ref/netcore50/zh-hans/System.Globalization.xml",
  8625. "ref/netcore50/zh-hant/System.Globalization.xml",
  8626. "ref/netstandard1.0/System.Globalization.dll",
  8627. "ref/netstandard1.0/System.Globalization.xml",
  8628. "ref/netstandard1.0/de/System.Globalization.xml",
  8629. "ref/netstandard1.0/es/System.Globalization.xml",
  8630. "ref/netstandard1.0/fr/System.Globalization.xml",
  8631. "ref/netstandard1.0/it/System.Globalization.xml",
  8632. "ref/netstandard1.0/ja/System.Globalization.xml",
  8633. "ref/netstandard1.0/ko/System.Globalization.xml",
  8634. "ref/netstandard1.0/ru/System.Globalization.xml",
  8635. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  8636. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  8637. "ref/netstandard1.3/System.Globalization.dll",
  8638. "ref/netstandard1.3/System.Globalization.xml",
  8639. "ref/netstandard1.3/de/System.Globalization.xml",
  8640. "ref/netstandard1.3/es/System.Globalization.xml",
  8641. "ref/netstandard1.3/fr/System.Globalization.xml",
  8642. "ref/netstandard1.3/it/System.Globalization.xml",
  8643. "ref/netstandard1.3/ja/System.Globalization.xml",
  8644. "ref/netstandard1.3/ko/System.Globalization.xml",
  8645. "ref/netstandard1.3/ru/System.Globalization.xml",
  8646. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  8647. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  8648. "ref/portable-net45+win8+wp8+wpa81/_._",
  8649. "ref/win8/_._",
  8650. "ref/wp80/_._",
  8651. "ref/wpa81/_._",
  8652. "ref/xamarinios10/_._",
  8653. "ref/xamarinmac20/_._",
  8654. "ref/xamarintvos10/_._",
  8655. "ref/xamarinwatchos10/_._",
  8656. "system.globalization.4.3.0.nupkg.sha512",
  8657. "system.globalization.nuspec"
  8658. ]
  8659. },
  8660. "System.Globalization.Calendars/4.3.0": {
  8661. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  8662. "type": "package",
  8663. "path": "system.globalization.calendars/4.3.0",
  8664. "files": [
  8665. ".nupkg.metadata",
  8666. "ThirdPartyNotices.txt",
  8667. "dotnet_library_license.txt",
  8668. "lib/MonoAndroid10/_._",
  8669. "lib/MonoTouch10/_._",
  8670. "lib/net46/System.Globalization.Calendars.dll",
  8671. "lib/xamarinios10/_._",
  8672. "lib/xamarinmac20/_._",
  8673. "lib/xamarintvos10/_._",
  8674. "lib/xamarinwatchos10/_._",
  8675. "ref/MonoAndroid10/_._",
  8676. "ref/MonoTouch10/_._",
  8677. "ref/net46/System.Globalization.Calendars.dll",
  8678. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  8679. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  8680. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  8681. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  8682. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  8683. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  8684. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  8685. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  8686. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  8687. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  8688. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  8689. "ref/xamarinios10/_._",
  8690. "ref/xamarinmac20/_._",
  8691. "ref/xamarintvos10/_._",
  8692. "ref/xamarinwatchos10/_._",
  8693. "system.globalization.calendars.4.3.0.nupkg.sha512",
  8694. "system.globalization.calendars.nuspec"
  8695. ]
  8696. },
  8697. "System.Globalization.Extensions/4.3.0": {
  8698. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  8699. "type": "package",
  8700. "path": "system.globalization.extensions/4.3.0",
  8701. "files": [
  8702. ".nupkg.metadata",
  8703. "ThirdPartyNotices.txt",
  8704. "dotnet_library_license.txt",
  8705. "lib/MonoAndroid10/_._",
  8706. "lib/MonoTouch10/_._",
  8707. "lib/net46/System.Globalization.Extensions.dll",
  8708. "lib/xamarinios10/_._",
  8709. "lib/xamarinmac20/_._",
  8710. "lib/xamarintvos10/_._",
  8711. "lib/xamarinwatchos10/_._",
  8712. "ref/MonoAndroid10/_._",
  8713. "ref/MonoTouch10/_._",
  8714. "ref/net46/System.Globalization.Extensions.dll",
  8715. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  8716. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  8717. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  8718. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  8719. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  8720. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  8721. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  8722. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  8723. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  8724. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  8725. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  8726. "ref/xamarinios10/_._",
  8727. "ref/xamarinmac20/_._",
  8728. "ref/xamarintvos10/_._",
  8729. "ref/xamarinwatchos10/_._",
  8730. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  8731. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  8732. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  8733. "system.globalization.extensions.4.3.0.nupkg.sha512",
  8734. "system.globalization.extensions.nuspec"
  8735. ]
  8736. },
  8737. "System.IdentityModel.Tokens.Jwt/5.2.0": {
  8738. "sha512": "E8tNMfMWPvlSF5fvmMIVZZHlGuIZzE5uktuR+GN2gFdngh0k6xoZquxfjKC02d0NqfsshNQVTCdSKXD5e9/lpA==",
  8739. "type": "package",
  8740. "path": "system.identitymodel.tokens.jwt/5.2.0",
  8741. "files": [
  8742. ".nupkg.metadata",
  8743. ".signature.p7s",
  8744. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  8745. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  8746. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  8747. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  8748. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  8749. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  8750. "system.identitymodel.tokens.jwt.5.2.0.nupkg.sha512",
  8751. "system.identitymodel.tokens.jwt.nuspec"
  8752. ]
  8753. },
  8754. "System.Interactive.Async/3.1.1": {
  8755. "sha512": "hZccYiIE5RS1/J9Tb/BNtosAGVggdlsJm4Ojdu+gDV0p4AIi+LUfUogMKkRacljQEJd2AG6vYzvcjhQFkqoZmw==",
  8756. "type": "package",
  8757. "path": "system.interactive.async/3.1.1",
  8758. "files": [
  8759. ".nupkg.metadata",
  8760. ".signature.p7s",
  8761. "lib/net45/System.Interactive.Async.dll",
  8762. "lib/net45/System.Interactive.Async.xml",
  8763. "lib/net46/System.Interactive.Async.dll",
  8764. "lib/net46/System.Interactive.Async.xml",
  8765. "lib/netstandard1.0/System.Interactive.Async.dll",
  8766. "lib/netstandard1.0/System.Interactive.Async.xml",
  8767. "lib/netstandard1.3/System.Interactive.Async.dll",
  8768. "lib/netstandard1.3/System.Interactive.Async.xml",
  8769. "system.interactive.async.3.1.1.nupkg.sha512",
  8770. "system.interactive.async.nuspec"
  8771. ]
  8772. },
  8773. "System.IO/4.3.0": {
  8774. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  8775. "type": "package",
  8776. "path": "system.io/4.3.0",
  8777. "files": [
  8778. ".nupkg.metadata",
  8779. "ThirdPartyNotices.txt",
  8780. "dotnet_library_license.txt",
  8781. "lib/MonoAndroid10/_._",
  8782. "lib/MonoTouch10/_._",
  8783. "lib/net45/_._",
  8784. "lib/net462/System.IO.dll",
  8785. "lib/portable-net45+win8+wp8+wpa81/_._",
  8786. "lib/win8/_._",
  8787. "lib/wp80/_._",
  8788. "lib/wpa81/_._",
  8789. "lib/xamarinios10/_._",
  8790. "lib/xamarinmac20/_._",
  8791. "lib/xamarintvos10/_._",
  8792. "lib/xamarinwatchos10/_._",
  8793. "ref/MonoAndroid10/_._",
  8794. "ref/MonoTouch10/_._",
  8795. "ref/net45/_._",
  8796. "ref/net462/System.IO.dll",
  8797. "ref/netcore50/System.IO.dll",
  8798. "ref/netcore50/System.IO.xml",
  8799. "ref/netcore50/de/System.IO.xml",
  8800. "ref/netcore50/es/System.IO.xml",
  8801. "ref/netcore50/fr/System.IO.xml",
  8802. "ref/netcore50/it/System.IO.xml",
  8803. "ref/netcore50/ja/System.IO.xml",
  8804. "ref/netcore50/ko/System.IO.xml",
  8805. "ref/netcore50/ru/System.IO.xml",
  8806. "ref/netcore50/zh-hans/System.IO.xml",
  8807. "ref/netcore50/zh-hant/System.IO.xml",
  8808. "ref/netstandard1.0/System.IO.dll",
  8809. "ref/netstandard1.0/System.IO.xml",
  8810. "ref/netstandard1.0/de/System.IO.xml",
  8811. "ref/netstandard1.0/es/System.IO.xml",
  8812. "ref/netstandard1.0/fr/System.IO.xml",
  8813. "ref/netstandard1.0/it/System.IO.xml",
  8814. "ref/netstandard1.0/ja/System.IO.xml",
  8815. "ref/netstandard1.0/ko/System.IO.xml",
  8816. "ref/netstandard1.0/ru/System.IO.xml",
  8817. "ref/netstandard1.0/zh-hans/System.IO.xml",
  8818. "ref/netstandard1.0/zh-hant/System.IO.xml",
  8819. "ref/netstandard1.3/System.IO.dll",
  8820. "ref/netstandard1.3/System.IO.xml",
  8821. "ref/netstandard1.3/de/System.IO.xml",
  8822. "ref/netstandard1.3/es/System.IO.xml",
  8823. "ref/netstandard1.3/fr/System.IO.xml",
  8824. "ref/netstandard1.3/it/System.IO.xml",
  8825. "ref/netstandard1.3/ja/System.IO.xml",
  8826. "ref/netstandard1.3/ko/System.IO.xml",
  8827. "ref/netstandard1.3/ru/System.IO.xml",
  8828. "ref/netstandard1.3/zh-hans/System.IO.xml",
  8829. "ref/netstandard1.3/zh-hant/System.IO.xml",
  8830. "ref/netstandard1.5/System.IO.dll",
  8831. "ref/netstandard1.5/System.IO.xml",
  8832. "ref/netstandard1.5/de/System.IO.xml",
  8833. "ref/netstandard1.5/es/System.IO.xml",
  8834. "ref/netstandard1.5/fr/System.IO.xml",
  8835. "ref/netstandard1.5/it/System.IO.xml",
  8836. "ref/netstandard1.5/ja/System.IO.xml",
  8837. "ref/netstandard1.5/ko/System.IO.xml",
  8838. "ref/netstandard1.5/ru/System.IO.xml",
  8839. "ref/netstandard1.5/zh-hans/System.IO.xml",
  8840. "ref/netstandard1.5/zh-hant/System.IO.xml",
  8841. "ref/portable-net45+win8+wp8+wpa81/_._",
  8842. "ref/win8/_._",
  8843. "ref/wp80/_._",
  8844. "ref/wpa81/_._",
  8845. "ref/xamarinios10/_._",
  8846. "ref/xamarinmac20/_._",
  8847. "ref/xamarintvos10/_._",
  8848. "ref/xamarinwatchos10/_._",
  8849. "system.io.4.3.0.nupkg.sha512",
  8850. "system.io.nuspec"
  8851. ]
  8852. },
  8853. "System.IO.Compression/4.3.0": {
  8854. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  8855. "type": "package",
  8856. "path": "system.io.compression/4.3.0",
  8857. "files": [
  8858. ".nupkg.metadata",
  8859. "ThirdPartyNotices.txt",
  8860. "dotnet_library_license.txt",
  8861. "lib/MonoAndroid10/_._",
  8862. "lib/MonoTouch10/_._",
  8863. "lib/net45/_._",
  8864. "lib/net46/System.IO.Compression.dll",
  8865. "lib/portable-net45+win8+wpa81/_._",
  8866. "lib/win8/_._",
  8867. "lib/wpa81/_._",
  8868. "lib/xamarinios10/_._",
  8869. "lib/xamarinmac20/_._",
  8870. "lib/xamarintvos10/_._",
  8871. "lib/xamarinwatchos10/_._",
  8872. "ref/MonoAndroid10/_._",
  8873. "ref/MonoTouch10/_._",
  8874. "ref/net45/_._",
  8875. "ref/net46/System.IO.Compression.dll",
  8876. "ref/netcore50/System.IO.Compression.dll",
  8877. "ref/netcore50/System.IO.Compression.xml",
  8878. "ref/netcore50/de/System.IO.Compression.xml",
  8879. "ref/netcore50/es/System.IO.Compression.xml",
  8880. "ref/netcore50/fr/System.IO.Compression.xml",
  8881. "ref/netcore50/it/System.IO.Compression.xml",
  8882. "ref/netcore50/ja/System.IO.Compression.xml",
  8883. "ref/netcore50/ko/System.IO.Compression.xml",
  8884. "ref/netcore50/ru/System.IO.Compression.xml",
  8885. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  8886. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  8887. "ref/netstandard1.1/System.IO.Compression.dll",
  8888. "ref/netstandard1.1/System.IO.Compression.xml",
  8889. "ref/netstandard1.1/de/System.IO.Compression.xml",
  8890. "ref/netstandard1.1/es/System.IO.Compression.xml",
  8891. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  8892. "ref/netstandard1.1/it/System.IO.Compression.xml",
  8893. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  8894. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  8895. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  8896. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  8897. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  8898. "ref/netstandard1.3/System.IO.Compression.dll",
  8899. "ref/netstandard1.3/System.IO.Compression.xml",
  8900. "ref/netstandard1.3/de/System.IO.Compression.xml",
  8901. "ref/netstandard1.3/es/System.IO.Compression.xml",
  8902. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  8903. "ref/netstandard1.3/it/System.IO.Compression.xml",
  8904. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  8905. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  8906. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  8907. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  8908. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  8909. "ref/portable-net45+win8+wpa81/_._",
  8910. "ref/win8/_._",
  8911. "ref/wpa81/_._",
  8912. "ref/xamarinios10/_._",
  8913. "ref/xamarinmac20/_._",
  8914. "ref/xamarintvos10/_._",
  8915. "ref/xamarinwatchos10/_._",
  8916. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  8917. "runtimes/win/lib/net46/System.IO.Compression.dll",
  8918. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  8919. "system.io.compression.4.3.0.nupkg.sha512",
  8920. "system.io.compression.nuspec"
  8921. ]
  8922. },
  8923. "System.IO.FileSystem/4.3.0": {
  8924. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  8925. "type": "package",
  8926. "path": "system.io.filesystem/4.3.0",
  8927. "files": [
  8928. ".nupkg.metadata",
  8929. "ThirdPartyNotices.txt",
  8930. "dotnet_library_license.txt",
  8931. "lib/MonoAndroid10/_._",
  8932. "lib/MonoTouch10/_._",
  8933. "lib/net46/System.IO.FileSystem.dll",
  8934. "lib/xamarinios10/_._",
  8935. "lib/xamarinmac20/_._",
  8936. "lib/xamarintvos10/_._",
  8937. "lib/xamarinwatchos10/_._",
  8938. "ref/MonoAndroid10/_._",
  8939. "ref/MonoTouch10/_._",
  8940. "ref/net46/System.IO.FileSystem.dll",
  8941. "ref/netstandard1.3/System.IO.FileSystem.dll",
  8942. "ref/netstandard1.3/System.IO.FileSystem.xml",
  8943. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  8944. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  8945. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  8946. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  8947. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  8948. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  8949. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  8950. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  8951. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  8952. "ref/xamarinios10/_._",
  8953. "ref/xamarinmac20/_._",
  8954. "ref/xamarintvos10/_._",
  8955. "ref/xamarinwatchos10/_._",
  8956. "system.io.filesystem.4.3.0.nupkg.sha512",
  8957. "system.io.filesystem.nuspec"
  8958. ]
  8959. },
  8960. "System.IO.FileSystem.Primitives/4.3.0": {
  8961. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  8962. "type": "package",
  8963. "path": "system.io.filesystem.primitives/4.3.0",
  8964. "files": [
  8965. ".nupkg.metadata",
  8966. "ThirdPartyNotices.txt",
  8967. "dotnet_library_license.txt",
  8968. "lib/MonoAndroid10/_._",
  8969. "lib/MonoTouch10/_._",
  8970. "lib/net46/System.IO.FileSystem.Primitives.dll",
  8971. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  8972. "lib/xamarinios10/_._",
  8973. "lib/xamarinmac20/_._",
  8974. "lib/xamarintvos10/_._",
  8975. "lib/xamarinwatchos10/_._",
  8976. "ref/MonoAndroid10/_._",
  8977. "ref/MonoTouch10/_._",
  8978. "ref/net46/System.IO.FileSystem.Primitives.dll",
  8979. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  8980. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  8981. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  8982. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  8983. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  8984. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  8985. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  8986. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  8987. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  8988. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  8989. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  8990. "ref/xamarinios10/_._",
  8991. "ref/xamarinmac20/_._",
  8992. "ref/xamarintvos10/_._",
  8993. "ref/xamarinwatchos10/_._",
  8994. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  8995. "system.io.filesystem.primitives.nuspec"
  8996. ]
  8997. },
  8998. "System.IO.Pipelines/4.5.1": {
  8999. "sha512": "oY5m31iOIZhvW0C69YTdKQWIbiYjFLgxn9NFXA7XeWD947uEk0zOi9fLbGtYgbs1eF7kTQ4zl9IeGQHthz+m+A==",
  9000. "type": "package",
  9001. "path": "system.io.pipelines/4.5.1",
  9002. "files": [
  9003. ".nupkg.metadata",
  9004. ".signature.p7s",
  9005. "LICENSE.TXT",
  9006. "THIRD-PARTY-NOTICES.TXT",
  9007. "lib/netcoreapp2.1/System.IO.Pipelines.dll",
  9008. "lib/netcoreapp2.1/System.IO.Pipelines.xml",
  9009. "lib/netstandard1.3/System.IO.Pipelines.dll",
  9010. "lib/netstandard1.3/System.IO.Pipelines.xml",
  9011. "lib/netstandard2.0/System.IO.Pipelines.dll",
  9012. "lib/netstandard2.0/System.IO.Pipelines.xml",
  9013. "ref/netstandard1.3/System.IO.Pipelines.dll",
  9014. "system.io.pipelines.4.5.1.nupkg.sha512",
  9015. "system.io.pipelines.nuspec",
  9016. "useSharedDesignerContext.txt",
  9017. "version.txt"
  9018. ]
  9019. },
  9020. "System.Linq/4.3.0": {
  9021. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  9022. "type": "package",
  9023. "path": "system.linq/4.3.0",
  9024. "files": [
  9025. ".nupkg.metadata",
  9026. "ThirdPartyNotices.txt",
  9027. "dotnet_library_license.txt",
  9028. "lib/MonoAndroid10/_._",
  9029. "lib/MonoTouch10/_._",
  9030. "lib/net45/_._",
  9031. "lib/net463/System.Linq.dll",
  9032. "lib/netcore50/System.Linq.dll",
  9033. "lib/netstandard1.6/System.Linq.dll",
  9034. "lib/portable-net45+win8+wp8+wpa81/_._",
  9035. "lib/win8/_._",
  9036. "lib/wp80/_._",
  9037. "lib/wpa81/_._",
  9038. "lib/xamarinios10/_._",
  9039. "lib/xamarinmac20/_._",
  9040. "lib/xamarintvos10/_._",
  9041. "lib/xamarinwatchos10/_._",
  9042. "ref/MonoAndroid10/_._",
  9043. "ref/MonoTouch10/_._",
  9044. "ref/net45/_._",
  9045. "ref/net463/System.Linq.dll",
  9046. "ref/netcore50/System.Linq.dll",
  9047. "ref/netcore50/System.Linq.xml",
  9048. "ref/netcore50/de/System.Linq.xml",
  9049. "ref/netcore50/es/System.Linq.xml",
  9050. "ref/netcore50/fr/System.Linq.xml",
  9051. "ref/netcore50/it/System.Linq.xml",
  9052. "ref/netcore50/ja/System.Linq.xml",
  9053. "ref/netcore50/ko/System.Linq.xml",
  9054. "ref/netcore50/ru/System.Linq.xml",
  9055. "ref/netcore50/zh-hans/System.Linq.xml",
  9056. "ref/netcore50/zh-hant/System.Linq.xml",
  9057. "ref/netstandard1.0/System.Linq.dll",
  9058. "ref/netstandard1.0/System.Linq.xml",
  9059. "ref/netstandard1.0/de/System.Linq.xml",
  9060. "ref/netstandard1.0/es/System.Linq.xml",
  9061. "ref/netstandard1.0/fr/System.Linq.xml",
  9062. "ref/netstandard1.0/it/System.Linq.xml",
  9063. "ref/netstandard1.0/ja/System.Linq.xml",
  9064. "ref/netstandard1.0/ko/System.Linq.xml",
  9065. "ref/netstandard1.0/ru/System.Linq.xml",
  9066. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  9067. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  9068. "ref/netstandard1.6/System.Linq.dll",
  9069. "ref/netstandard1.6/System.Linq.xml",
  9070. "ref/netstandard1.6/de/System.Linq.xml",
  9071. "ref/netstandard1.6/es/System.Linq.xml",
  9072. "ref/netstandard1.6/fr/System.Linq.xml",
  9073. "ref/netstandard1.6/it/System.Linq.xml",
  9074. "ref/netstandard1.6/ja/System.Linq.xml",
  9075. "ref/netstandard1.6/ko/System.Linq.xml",
  9076. "ref/netstandard1.6/ru/System.Linq.xml",
  9077. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  9078. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  9079. "ref/portable-net45+win8+wp8+wpa81/_._",
  9080. "ref/win8/_._",
  9081. "ref/wp80/_._",
  9082. "ref/wpa81/_._",
  9083. "ref/xamarinios10/_._",
  9084. "ref/xamarinmac20/_._",
  9085. "ref/xamarintvos10/_._",
  9086. "ref/xamarinwatchos10/_._",
  9087. "system.linq.4.3.0.nupkg.sha512",
  9088. "system.linq.nuspec"
  9089. ]
  9090. },
  9091. "System.Linq.Expressions/4.3.0": {
  9092. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  9093. "type": "package",
  9094. "path": "system.linq.expressions/4.3.0",
  9095. "files": [
  9096. ".nupkg.metadata",
  9097. "ThirdPartyNotices.txt",
  9098. "dotnet_library_license.txt",
  9099. "lib/MonoAndroid10/_._",
  9100. "lib/MonoTouch10/_._",
  9101. "lib/net45/_._",
  9102. "lib/net463/System.Linq.Expressions.dll",
  9103. "lib/netcore50/System.Linq.Expressions.dll",
  9104. "lib/netstandard1.6/System.Linq.Expressions.dll",
  9105. "lib/portable-net45+win8+wp8+wpa81/_._",
  9106. "lib/win8/_._",
  9107. "lib/wp80/_._",
  9108. "lib/wpa81/_._",
  9109. "lib/xamarinios10/_._",
  9110. "lib/xamarinmac20/_._",
  9111. "lib/xamarintvos10/_._",
  9112. "lib/xamarinwatchos10/_._",
  9113. "ref/MonoAndroid10/_._",
  9114. "ref/MonoTouch10/_._",
  9115. "ref/net45/_._",
  9116. "ref/net463/System.Linq.Expressions.dll",
  9117. "ref/netcore50/System.Linq.Expressions.dll",
  9118. "ref/netcore50/System.Linq.Expressions.xml",
  9119. "ref/netcore50/de/System.Linq.Expressions.xml",
  9120. "ref/netcore50/es/System.Linq.Expressions.xml",
  9121. "ref/netcore50/fr/System.Linq.Expressions.xml",
  9122. "ref/netcore50/it/System.Linq.Expressions.xml",
  9123. "ref/netcore50/ja/System.Linq.Expressions.xml",
  9124. "ref/netcore50/ko/System.Linq.Expressions.xml",
  9125. "ref/netcore50/ru/System.Linq.Expressions.xml",
  9126. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  9127. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  9128. "ref/netstandard1.0/System.Linq.Expressions.dll",
  9129. "ref/netstandard1.0/System.Linq.Expressions.xml",
  9130. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  9131. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  9132. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  9133. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  9134. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  9135. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  9136. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  9137. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  9138. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  9139. "ref/netstandard1.3/System.Linq.Expressions.dll",
  9140. "ref/netstandard1.3/System.Linq.Expressions.xml",
  9141. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  9142. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  9143. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  9144. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  9145. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  9146. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  9147. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  9148. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  9149. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  9150. "ref/netstandard1.6/System.Linq.Expressions.dll",
  9151. "ref/netstandard1.6/System.Linq.Expressions.xml",
  9152. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  9153. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  9154. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  9155. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  9156. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  9157. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  9158. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  9159. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  9160. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  9161. "ref/portable-net45+win8+wp8+wpa81/_._",
  9162. "ref/win8/_._",
  9163. "ref/wp80/_._",
  9164. "ref/wpa81/_._",
  9165. "ref/xamarinios10/_._",
  9166. "ref/xamarinmac20/_._",
  9167. "ref/xamarintvos10/_._",
  9168. "ref/xamarinwatchos10/_._",
  9169. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  9170. "system.linq.expressions.4.3.0.nupkg.sha512",
  9171. "system.linq.expressions.nuspec"
  9172. ]
  9173. },
  9174. "System.Linq.Queryable/4.0.1": {
  9175. "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
  9176. "type": "package",
  9177. "path": "system.linq.queryable/4.0.1",
  9178. "files": [
  9179. ".nupkg.metadata",
  9180. "ThirdPartyNotices.txt",
  9181. "dotnet_library_license.txt",
  9182. "lib/monoandroid10/_._",
  9183. "lib/monotouch10/_._",
  9184. "lib/net45/_._",
  9185. "lib/netcore50/System.Linq.Queryable.dll",
  9186. "lib/netstandard1.3/System.Linq.Queryable.dll",
  9187. "lib/portable-net45+win8+wp8+wpa81/_._",
  9188. "lib/win8/_._",
  9189. "lib/wp80/_._",
  9190. "lib/wpa81/_._",
  9191. "lib/xamarinios10/_._",
  9192. "lib/xamarinmac20/_._",
  9193. "lib/xamarintvos10/_._",
  9194. "lib/xamarinwatchos10/_._",
  9195. "ref/monoandroid10/_._",
  9196. "ref/monotouch10/_._",
  9197. "ref/net45/_._",
  9198. "ref/netcore50/System.Linq.Queryable.dll",
  9199. "ref/netcore50/System.Linq.Queryable.xml",
  9200. "ref/netcore50/de/System.Linq.Queryable.xml",
  9201. "ref/netcore50/es/System.Linq.Queryable.xml",
  9202. "ref/netcore50/fr/System.Linq.Queryable.xml",
  9203. "ref/netcore50/it/System.Linq.Queryable.xml",
  9204. "ref/netcore50/ja/System.Linq.Queryable.xml",
  9205. "ref/netcore50/ko/System.Linq.Queryable.xml",
  9206. "ref/netcore50/ru/System.Linq.Queryable.xml",
  9207. "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
  9208. "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
  9209. "ref/netstandard1.0/System.Linq.Queryable.dll",
  9210. "ref/netstandard1.0/System.Linq.Queryable.xml",
  9211. "ref/netstandard1.0/de/System.Linq.Queryable.xml",
  9212. "ref/netstandard1.0/es/System.Linq.Queryable.xml",
  9213. "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
  9214. "ref/netstandard1.0/it/System.Linq.Queryable.xml",
  9215. "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
  9216. "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
  9217. "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
  9218. "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
  9219. "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
  9220. "ref/portable-net45+win8+wp8+wpa81/_._",
  9221. "ref/win8/_._",
  9222. "ref/wp80/_._",
  9223. "ref/wpa81/_._",
  9224. "ref/xamarinios10/_._",
  9225. "ref/xamarinmac20/_._",
  9226. "ref/xamarintvos10/_._",
  9227. "ref/xamarinwatchos10/_._",
  9228. "system.linq.queryable.4.0.1.nupkg.sha512",
  9229. "system.linq.queryable.nuspec"
  9230. ]
  9231. },
  9232. "System.Memory/4.5.1": {
  9233. "sha512": "sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==",
  9234. "type": "package",
  9235. "path": "system.memory/4.5.1",
  9236. "files": [
  9237. ".nupkg.metadata",
  9238. ".signature.p7s",
  9239. "LICENSE.TXT",
  9240. "THIRD-PARTY-NOTICES.TXT",
  9241. "lib/netcoreapp2.1/_._",
  9242. "lib/netstandard1.1/System.Memory.dll",
  9243. "lib/netstandard1.1/System.Memory.xml",
  9244. "lib/netstandard2.0/System.Memory.dll",
  9245. "lib/netstandard2.0/System.Memory.xml",
  9246. "ref/netcoreapp2.1/_._",
  9247. "ref/netstandard1.1/System.Memory.dll",
  9248. "ref/netstandard1.1/System.Memory.xml",
  9249. "ref/netstandard2.0/System.Memory.dll",
  9250. "ref/netstandard2.0/System.Memory.xml",
  9251. "system.memory.4.5.1.nupkg.sha512",
  9252. "system.memory.nuspec",
  9253. "useSharedDesignerContext.txt",
  9254. "version.txt"
  9255. ]
  9256. },
  9257. "System.Net.Http/4.3.0": {
  9258. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  9259. "type": "package",
  9260. "path": "system.net.http/4.3.0",
  9261. "files": [
  9262. ".nupkg.metadata",
  9263. ".signature.p7s",
  9264. "ThirdPartyNotices.txt",
  9265. "dotnet_library_license.txt",
  9266. "lib/Xamarinmac20/_._",
  9267. "lib/monoandroid10/_._",
  9268. "lib/monotouch10/_._",
  9269. "lib/net45/_._",
  9270. "lib/net46/System.Net.Http.dll",
  9271. "lib/portable-net45+win8+wpa81/_._",
  9272. "lib/win8/_._",
  9273. "lib/wpa81/_._",
  9274. "lib/xamarinios10/_._",
  9275. "lib/xamarintvos10/_._",
  9276. "lib/xamarinwatchos10/_._",
  9277. "ref/Xamarinmac20/_._",
  9278. "ref/monoandroid10/_._",
  9279. "ref/monotouch10/_._",
  9280. "ref/net45/_._",
  9281. "ref/net46/System.Net.Http.dll",
  9282. "ref/net46/System.Net.Http.xml",
  9283. "ref/net46/de/System.Net.Http.xml",
  9284. "ref/net46/es/System.Net.Http.xml",
  9285. "ref/net46/fr/System.Net.Http.xml",
  9286. "ref/net46/it/System.Net.Http.xml",
  9287. "ref/net46/ja/System.Net.Http.xml",
  9288. "ref/net46/ko/System.Net.Http.xml",
  9289. "ref/net46/ru/System.Net.Http.xml",
  9290. "ref/net46/zh-hans/System.Net.Http.xml",
  9291. "ref/net46/zh-hant/System.Net.Http.xml",
  9292. "ref/netcore50/System.Net.Http.dll",
  9293. "ref/netcore50/System.Net.Http.xml",
  9294. "ref/netcore50/de/System.Net.Http.xml",
  9295. "ref/netcore50/es/System.Net.Http.xml",
  9296. "ref/netcore50/fr/System.Net.Http.xml",
  9297. "ref/netcore50/it/System.Net.Http.xml",
  9298. "ref/netcore50/ja/System.Net.Http.xml",
  9299. "ref/netcore50/ko/System.Net.Http.xml",
  9300. "ref/netcore50/ru/System.Net.Http.xml",
  9301. "ref/netcore50/zh-hans/System.Net.Http.xml",
  9302. "ref/netcore50/zh-hant/System.Net.Http.xml",
  9303. "ref/netstandard1.1/System.Net.Http.dll",
  9304. "ref/netstandard1.1/System.Net.Http.xml",
  9305. "ref/netstandard1.1/de/System.Net.Http.xml",
  9306. "ref/netstandard1.1/es/System.Net.Http.xml",
  9307. "ref/netstandard1.1/fr/System.Net.Http.xml",
  9308. "ref/netstandard1.1/it/System.Net.Http.xml",
  9309. "ref/netstandard1.1/ja/System.Net.Http.xml",
  9310. "ref/netstandard1.1/ko/System.Net.Http.xml",
  9311. "ref/netstandard1.1/ru/System.Net.Http.xml",
  9312. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  9313. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  9314. "ref/netstandard1.3/System.Net.Http.dll",
  9315. "ref/netstandard1.3/System.Net.Http.xml",
  9316. "ref/netstandard1.3/de/System.Net.Http.xml",
  9317. "ref/netstandard1.3/es/System.Net.Http.xml",
  9318. "ref/netstandard1.3/fr/System.Net.Http.xml",
  9319. "ref/netstandard1.3/it/System.Net.Http.xml",
  9320. "ref/netstandard1.3/ja/System.Net.Http.xml",
  9321. "ref/netstandard1.3/ko/System.Net.Http.xml",
  9322. "ref/netstandard1.3/ru/System.Net.Http.xml",
  9323. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  9324. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  9325. "ref/portable-net45+win8+wpa81/_._",
  9326. "ref/win8/_._",
  9327. "ref/wpa81/_._",
  9328. "ref/xamarinios10/_._",
  9329. "ref/xamarintvos10/_._",
  9330. "ref/xamarinwatchos10/_._",
  9331. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  9332. "runtimes/win/lib/net46/System.Net.Http.dll",
  9333. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  9334. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  9335. "system.net.http.4.3.0.nupkg.sha512",
  9336. "system.net.http.nuspec"
  9337. ]
  9338. },
  9339. "System.Net.Primitives/4.3.0": {
  9340. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  9341. "type": "package",
  9342. "path": "system.net.primitives/4.3.0",
  9343. "files": [
  9344. ".nupkg.metadata",
  9345. "ThirdPartyNotices.txt",
  9346. "dotnet_library_license.txt",
  9347. "lib/MonoAndroid10/_._",
  9348. "lib/MonoTouch10/_._",
  9349. "lib/net45/_._",
  9350. "lib/portable-net45+win8+wp8+wpa81/_._",
  9351. "lib/win8/_._",
  9352. "lib/wp80/_._",
  9353. "lib/wpa81/_._",
  9354. "lib/xamarinios10/_._",
  9355. "lib/xamarinmac20/_._",
  9356. "lib/xamarintvos10/_._",
  9357. "lib/xamarinwatchos10/_._",
  9358. "ref/MonoAndroid10/_._",
  9359. "ref/MonoTouch10/_._",
  9360. "ref/net45/_._",
  9361. "ref/netcore50/System.Net.Primitives.dll",
  9362. "ref/netcore50/System.Net.Primitives.xml",
  9363. "ref/netcore50/de/System.Net.Primitives.xml",
  9364. "ref/netcore50/es/System.Net.Primitives.xml",
  9365. "ref/netcore50/fr/System.Net.Primitives.xml",
  9366. "ref/netcore50/it/System.Net.Primitives.xml",
  9367. "ref/netcore50/ja/System.Net.Primitives.xml",
  9368. "ref/netcore50/ko/System.Net.Primitives.xml",
  9369. "ref/netcore50/ru/System.Net.Primitives.xml",
  9370. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  9371. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  9372. "ref/netstandard1.0/System.Net.Primitives.dll",
  9373. "ref/netstandard1.0/System.Net.Primitives.xml",
  9374. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  9375. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  9376. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  9377. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  9378. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  9379. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  9380. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  9381. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  9382. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  9383. "ref/netstandard1.1/System.Net.Primitives.dll",
  9384. "ref/netstandard1.1/System.Net.Primitives.xml",
  9385. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  9386. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  9387. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  9388. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  9389. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  9390. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  9391. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  9392. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  9393. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  9394. "ref/netstandard1.3/System.Net.Primitives.dll",
  9395. "ref/netstandard1.3/System.Net.Primitives.xml",
  9396. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  9397. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  9398. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  9399. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  9400. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  9401. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  9402. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  9403. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  9404. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  9405. "ref/portable-net45+win8+wp8+wpa81/_._",
  9406. "ref/win8/_._",
  9407. "ref/wp80/_._",
  9408. "ref/wpa81/_._",
  9409. "ref/xamarinios10/_._",
  9410. "ref/xamarinmac20/_._",
  9411. "ref/xamarintvos10/_._",
  9412. "ref/xamarinwatchos10/_._",
  9413. "system.net.primitives.4.3.0.nupkg.sha512",
  9414. "system.net.primitives.nuspec"
  9415. ]
  9416. },
  9417. "System.Net.WebSockets.WebSocketProtocol/4.5.1": {
  9418. "sha512": "FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==",
  9419. "type": "package",
  9420. "path": "system.net.websockets.websocketprotocol/4.5.1",
  9421. "files": [
  9422. ".nupkg.metadata",
  9423. ".signature.p7s",
  9424. "LICENSE.TXT",
  9425. "THIRD-PARTY-NOTICES.TXT",
  9426. "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll",
  9427. "lib/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll",
  9428. "ref/netstandard2.0/System.Net.WebSockets.WebSocketProtocol.dll",
  9429. "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512",
  9430. "system.net.websockets.websocketprotocol.nuspec",
  9431. "useSharedDesignerContext.txt",
  9432. "version.txt"
  9433. ]
  9434. },
  9435. "System.Numerics.Vectors/4.5.0": {
  9436. "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  9437. "type": "package",
  9438. "path": "system.numerics.vectors/4.5.0",
  9439. "files": [
  9440. ".nupkg.metadata",
  9441. ".signature.p7s",
  9442. "LICENSE.TXT",
  9443. "THIRD-PARTY-NOTICES.TXT",
  9444. "lib/MonoAndroid10/_._",
  9445. "lib/MonoTouch10/_._",
  9446. "lib/net46/System.Numerics.Vectors.dll",
  9447. "lib/net46/System.Numerics.Vectors.xml",
  9448. "lib/netcoreapp2.0/_._",
  9449. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  9450. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  9451. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  9452. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  9453. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  9454. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  9455. "lib/uap10.0.16299/_._",
  9456. "lib/xamarinios10/_._",
  9457. "lib/xamarinmac20/_._",
  9458. "lib/xamarintvos10/_._",
  9459. "lib/xamarinwatchos10/_._",
  9460. "ref/MonoAndroid10/_._",
  9461. "ref/MonoTouch10/_._",
  9462. "ref/net45/System.Numerics.Vectors.dll",
  9463. "ref/net45/System.Numerics.Vectors.xml",
  9464. "ref/net46/System.Numerics.Vectors.dll",
  9465. "ref/net46/System.Numerics.Vectors.xml",
  9466. "ref/netcoreapp2.0/_._",
  9467. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  9468. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  9469. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  9470. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  9471. "ref/uap10.0.16299/_._",
  9472. "ref/xamarinios10/_._",
  9473. "ref/xamarinmac20/_._",
  9474. "ref/xamarintvos10/_._",
  9475. "ref/xamarinwatchos10/_._",
  9476. "system.numerics.vectors.4.5.0.nupkg.sha512",
  9477. "system.numerics.vectors.nuspec",
  9478. "useSharedDesignerContext.txt",
  9479. "version.txt"
  9480. ]
  9481. },
  9482. "System.ObjectModel/4.3.0": {
  9483. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  9484. "type": "package",
  9485. "path": "system.objectmodel/4.3.0",
  9486. "files": [
  9487. ".nupkg.metadata",
  9488. "ThirdPartyNotices.txt",
  9489. "dotnet_library_license.txt",
  9490. "lib/MonoAndroid10/_._",
  9491. "lib/MonoTouch10/_._",
  9492. "lib/net45/_._",
  9493. "lib/netcore50/System.ObjectModel.dll",
  9494. "lib/netstandard1.3/System.ObjectModel.dll",
  9495. "lib/portable-net45+win8+wp8+wpa81/_._",
  9496. "lib/win8/_._",
  9497. "lib/wp80/_._",
  9498. "lib/wpa81/_._",
  9499. "lib/xamarinios10/_._",
  9500. "lib/xamarinmac20/_._",
  9501. "lib/xamarintvos10/_._",
  9502. "lib/xamarinwatchos10/_._",
  9503. "ref/MonoAndroid10/_._",
  9504. "ref/MonoTouch10/_._",
  9505. "ref/net45/_._",
  9506. "ref/netcore50/System.ObjectModel.dll",
  9507. "ref/netcore50/System.ObjectModel.xml",
  9508. "ref/netcore50/de/System.ObjectModel.xml",
  9509. "ref/netcore50/es/System.ObjectModel.xml",
  9510. "ref/netcore50/fr/System.ObjectModel.xml",
  9511. "ref/netcore50/it/System.ObjectModel.xml",
  9512. "ref/netcore50/ja/System.ObjectModel.xml",
  9513. "ref/netcore50/ko/System.ObjectModel.xml",
  9514. "ref/netcore50/ru/System.ObjectModel.xml",
  9515. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  9516. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  9517. "ref/netstandard1.0/System.ObjectModel.dll",
  9518. "ref/netstandard1.0/System.ObjectModel.xml",
  9519. "ref/netstandard1.0/de/System.ObjectModel.xml",
  9520. "ref/netstandard1.0/es/System.ObjectModel.xml",
  9521. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  9522. "ref/netstandard1.0/it/System.ObjectModel.xml",
  9523. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  9524. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  9525. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  9526. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  9527. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  9528. "ref/netstandard1.3/System.ObjectModel.dll",
  9529. "ref/netstandard1.3/System.ObjectModel.xml",
  9530. "ref/netstandard1.3/de/System.ObjectModel.xml",
  9531. "ref/netstandard1.3/es/System.ObjectModel.xml",
  9532. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  9533. "ref/netstandard1.3/it/System.ObjectModel.xml",
  9534. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  9535. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  9536. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  9537. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  9538. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  9539. "ref/portable-net45+win8+wp8+wpa81/_._",
  9540. "ref/win8/_._",
  9541. "ref/wp80/_._",
  9542. "ref/wpa81/_._",
  9543. "ref/xamarinios10/_._",
  9544. "ref/xamarinmac20/_._",
  9545. "ref/xamarintvos10/_._",
  9546. "ref/xamarinwatchos10/_._",
  9547. "system.objectmodel.4.3.0.nupkg.sha512",
  9548. "system.objectmodel.nuspec"
  9549. ]
  9550. },
  9551. "System.Private.DataContractSerialization/4.3.0": {
  9552. "sha512": "yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
  9553. "type": "package",
  9554. "path": "system.private.datacontractserialization/4.3.0",
  9555. "files": [
  9556. ".nupkg.metadata",
  9557. "ThirdPartyNotices.txt",
  9558. "dotnet_library_license.txt",
  9559. "lib/netstandard1.3/System.Private.DataContractSerialization.dll",
  9560. "ref/netstandard/_._",
  9561. "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll",
  9562. "system.private.datacontractserialization.4.3.0.nupkg.sha512",
  9563. "system.private.datacontractserialization.nuspec"
  9564. ]
  9565. },
  9566. "System.Reflection/4.3.0": {
  9567. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  9568. "type": "package",
  9569. "path": "system.reflection/4.3.0",
  9570. "files": [
  9571. ".nupkg.metadata",
  9572. "ThirdPartyNotices.txt",
  9573. "dotnet_library_license.txt",
  9574. "lib/MonoAndroid10/_._",
  9575. "lib/MonoTouch10/_._",
  9576. "lib/net45/_._",
  9577. "lib/net462/System.Reflection.dll",
  9578. "lib/portable-net45+win8+wp8+wpa81/_._",
  9579. "lib/win8/_._",
  9580. "lib/wp80/_._",
  9581. "lib/wpa81/_._",
  9582. "lib/xamarinios10/_._",
  9583. "lib/xamarinmac20/_._",
  9584. "lib/xamarintvos10/_._",
  9585. "lib/xamarinwatchos10/_._",
  9586. "ref/MonoAndroid10/_._",
  9587. "ref/MonoTouch10/_._",
  9588. "ref/net45/_._",
  9589. "ref/net462/System.Reflection.dll",
  9590. "ref/netcore50/System.Reflection.dll",
  9591. "ref/netcore50/System.Reflection.xml",
  9592. "ref/netcore50/de/System.Reflection.xml",
  9593. "ref/netcore50/es/System.Reflection.xml",
  9594. "ref/netcore50/fr/System.Reflection.xml",
  9595. "ref/netcore50/it/System.Reflection.xml",
  9596. "ref/netcore50/ja/System.Reflection.xml",
  9597. "ref/netcore50/ko/System.Reflection.xml",
  9598. "ref/netcore50/ru/System.Reflection.xml",
  9599. "ref/netcore50/zh-hans/System.Reflection.xml",
  9600. "ref/netcore50/zh-hant/System.Reflection.xml",
  9601. "ref/netstandard1.0/System.Reflection.dll",
  9602. "ref/netstandard1.0/System.Reflection.xml",
  9603. "ref/netstandard1.0/de/System.Reflection.xml",
  9604. "ref/netstandard1.0/es/System.Reflection.xml",
  9605. "ref/netstandard1.0/fr/System.Reflection.xml",
  9606. "ref/netstandard1.0/it/System.Reflection.xml",
  9607. "ref/netstandard1.0/ja/System.Reflection.xml",
  9608. "ref/netstandard1.0/ko/System.Reflection.xml",
  9609. "ref/netstandard1.0/ru/System.Reflection.xml",
  9610. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  9611. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  9612. "ref/netstandard1.3/System.Reflection.dll",
  9613. "ref/netstandard1.3/System.Reflection.xml",
  9614. "ref/netstandard1.3/de/System.Reflection.xml",
  9615. "ref/netstandard1.3/es/System.Reflection.xml",
  9616. "ref/netstandard1.3/fr/System.Reflection.xml",
  9617. "ref/netstandard1.3/it/System.Reflection.xml",
  9618. "ref/netstandard1.3/ja/System.Reflection.xml",
  9619. "ref/netstandard1.3/ko/System.Reflection.xml",
  9620. "ref/netstandard1.3/ru/System.Reflection.xml",
  9621. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  9622. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  9623. "ref/netstandard1.5/System.Reflection.dll",
  9624. "ref/netstandard1.5/System.Reflection.xml",
  9625. "ref/netstandard1.5/de/System.Reflection.xml",
  9626. "ref/netstandard1.5/es/System.Reflection.xml",
  9627. "ref/netstandard1.5/fr/System.Reflection.xml",
  9628. "ref/netstandard1.5/it/System.Reflection.xml",
  9629. "ref/netstandard1.5/ja/System.Reflection.xml",
  9630. "ref/netstandard1.5/ko/System.Reflection.xml",
  9631. "ref/netstandard1.5/ru/System.Reflection.xml",
  9632. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  9633. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  9634. "ref/portable-net45+win8+wp8+wpa81/_._",
  9635. "ref/win8/_._",
  9636. "ref/wp80/_._",
  9637. "ref/wpa81/_._",
  9638. "ref/xamarinios10/_._",
  9639. "ref/xamarinmac20/_._",
  9640. "ref/xamarintvos10/_._",
  9641. "ref/xamarinwatchos10/_._",
  9642. "system.reflection.4.3.0.nupkg.sha512",
  9643. "system.reflection.nuspec"
  9644. ]
  9645. },
  9646. "System.Reflection.Emit/4.3.0": {
  9647. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  9648. "type": "package",
  9649. "path": "system.reflection.emit/4.3.0",
  9650. "files": [
  9651. ".nupkg.metadata",
  9652. ".signature.p7s",
  9653. "ThirdPartyNotices.txt",
  9654. "dotnet_library_license.txt",
  9655. "lib/MonoAndroid10/_._",
  9656. "lib/monotouch10/_._",
  9657. "lib/net45/_._",
  9658. "lib/netcore50/System.Reflection.Emit.dll",
  9659. "lib/netstandard1.3/System.Reflection.Emit.dll",
  9660. "lib/xamarinios10/_._",
  9661. "lib/xamarinmac20/_._",
  9662. "lib/xamarintvos10/_._",
  9663. "lib/xamarinwatchos10/_._",
  9664. "ref/MonoAndroid10/_._",
  9665. "ref/net45/_._",
  9666. "ref/netstandard1.1/System.Reflection.Emit.dll",
  9667. "ref/netstandard1.1/System.Reflection.Emit.xml",
  9668. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  9669. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  9670. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  9671. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  9672. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  9673. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  9674. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  9675. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  9676. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  9677. "ref/xamarinmac20/_._",
  9678. "system.reflection.emit.4.3.0.nupkg.sha512",
  9679. "system.reflection.emit.nuspec"
  9680. ]
  9681. },
  9682. "System.Reflection.Emit.ILGeneration/4.3.0": {
  9683. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  9684. "type": "package",
  9685. "path": "system.reflection.emit.ilgeneration/4.3.0",
  9686. "files": [
  9687. ".nupkg.metadata",
  9688. ".signature.p7s",
  9689. "ThirdPartyNotices.txt",
  9690. "dotnet_library_license.txt",
  9691. "lib/MonoAndroid10/_._",
  9692. "lib/MonoTouch10/_._",
  9693. "lib/net45/_._",
  9694. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  9695. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  9696. "lib/portable-net45+wp8/_._",
  9697. "lib/wp80/_._",
  9698. "lib/xamarinios10/_._",
  9699. "lib/xamarinmac20/_._",
  9700. "lib/xamarintvos10/_._",
  9701. "lib/xamarinwatchos10/_._",
  9702. "ref/MonoAndroid10/_._",
  9703. "ref/MonoTouch10/_._",
  9704. "ref/net45/_._",
  9705. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  9706. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  9707. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  9708. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  9709. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  9710. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  9711. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  9712. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  9713. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  9714. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  9715. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  9716. "ref/portable-net45+wp8/_._",
  9717. "ref/wp80/_._",
  9718. "ref/xamarinios10/_._",
  9719. "ref/xamarinmac20/_._",
  9720. "ref/xamarintvos10/_._",
  9721. "ref/xamarinwatchos10/_._",
  9722. "runtimes/aot/lib/netcore50/_._",
  9723. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  9724. "system.reflection.emit.ilgeneration.nuspec"
  9725. ]
  9726. },
  9727. "System.Reflection.Emit.Lightweight/4.3.0": {
  9728. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  9729. "type": "package",
  9730. "path": "system.reflection.emit.lightweight/4.3.0",
  9731. "files": [
  9732. ".nupkg.metadata",
  9733. ".signature.p7s",
  9734. "ThirdPartyNotices.txt",
  9735. "dotnet_library_license.txt",
  9736. "lib/MonoAndroid10/_._",
  9737. "lib/MonoTouch10/_._",
  9738. "lib/net45/_._",
  9739. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  9740. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  9741. "lib/portable-net45+wp8/_._",
  9742. "lib/wp80/_._",
  9743. "lib/xamarinios10/_._",
  9744. "lib/xamarinmac20/_._",
  9745. "lib/xamarintvos10/_._",
  9746. "lib/xamarinwatchos10/_._",
  9747. "ref/MonoAndroid10/_._",
  9748. "ref/MonoTouch10/_._",
  9749. "ref/net45/_._",
  9750. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  9751. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  9752. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  9753. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  9754. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  9755. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  9756. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  9757. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  9758. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  9759. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  9760. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  9761. "ref/portable-net45+wp8/_._",
  9762. "ref/wp80/_._",
  9763. "ref/xamarinios10/_._",
  9764. "ref/xamarinmac20/_._",
  9765. "ref/xamarintvos10/_._",
  9766. "ref/xamarinwatchos10/_._",
  9767. "runtimes/aot/lib/netcore50/_._",
  9768. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  9769. "system.reflection.emit.lightweight.nuspec"
  9770. ]
  9771. },
  9772. "System.Reflection.Extensions/4.3.0": {
  9773. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  9774. "type": "package",
  9775. "path": "system.reflection.extensions/4.3.0",
  9776. "files": [
  9777. ".nupkg.metadata",
  9778. "ThirdPartyNotices.txt",
  9779. "dotnet_library_license.txt",
  9780. "lib/MonoAndroid10/_._",
  9781. "lib/MonoTouch10/_._",
  9782. "lib/net45/_._",
  9783. "lib/portable-net45+win8+wp8+wpa81/_._",
  9784. "lib/win8/_._",
  9785. "lib/wp80/_._",
  9786. "lib/wpa81/_._",
  9787. "lib/xamarinios10/_._",
  9788. "lib/xamarinmac20/_._",
  9789. "lib/xamarintvos10/_._",
  9790. "lib/xamarinwatchos10/_._",
  9791. "ref/MonoAndroid10/_._",
  9792. "ref/MonoTouch10/_._",
  9793. "ref/net45/_._",
  9794. "ref/netcore50/System.Reflection.Extensions.dll",
  9795. "ref/netcore50/System.Reflection.Extensions.xml",
  9796. "ref/netcore50/de/System.Reflection.Extensions.xml",
  9797. "ref/netcore50/es/System.Reflection.Extensions.xml",
  9798. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  9799. "ref/netcore50/it/System.Reflection.Extensions.xml",
  9800. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  9801. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  9802. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  9803. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  9804. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  9805. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  9806. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  9807. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  9808. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  9809. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  9810. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  9811. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  9812. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  9813. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  9814. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  9815. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  9816. "ref/portable-net45+win8+wp8+wpa81/_._",
  9817. "ref/win8/_._",
  9818. "ref/wp80/_._",
  9819. "ref/wpa81/_._",
  9820. "ref/xamarinios10/_._",
  9821. "ref/xamarinmac20/_._",
  9822. "ref/xamarintvos10/_._",
  9823. "ref/xamarinwatchos10/_._",
  9824. "system.reflection.extensions.4.3.0.nupkg.sha512",
  9825. "system.reflection.extensions.nuspec"
  9826. ]
  9827. },
  9828. "System.Reflection.Metadata/1.6.0": {
  9829. "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  9830. "type": "package",
  9831. "path": "system.reflection.metadata/1.6.0",
  9832. "files": [
  9833. ".nupkg.metadata",
  9834. ".signature.p7s",
  9835. "LICENSE.TXT",
  9836. "THIRD-PARTY-NOTICES.TXT",
  9837. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  9838. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  9839. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  9840. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  9841. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  9842. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  9843. "system.reflection.metadata.1.6.0.nupkg.sha512",
  9844. "system.reflection.metadata.nuspec",
  9845. "useSharedDesignerContext.txt",
  9846. "version.txt"
  9847. ]
  9848. },
  9849. "System.Reflection.Primitives/4.3.0": {
  9850. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  9851. "type": "package",
  9852. "path": "system.reflection.primitives/4.3.0",
  9853. "files": [
  9854. ".nupkg.metadata",
  9855. "ThirdPartyNotices.txt",
  9856. "dotnet_library_license.txt",
  9857. "lib/MonoAndroid10/_._",
  9858. "lib/MonoTouch10/_._",
  9859. "lib/net45/_._",
  9860. "lib/portable-net45+win8+wp8+wpa81/_._",
  9861. "lib/win8/_._",
  9862. "lib/wp80/_._",
  9863. "lib/wpa81/_._",
  9864. "lib/xamarinios10/_._",
  9865. "lib/xamarinmac20/_._",
  9866. "lib/xamarintvos10/_._",
  9867. "lib/xamarinwatchos10/_._",
  9868. "ref/MonoAndroid10/_._",
  9869. "ref/MonoTouch10/_._",
  9870. "ref/net45/_._",
  9871. "ref/netcore50/System.Reflection.Primitives.dll",
  9872. "ref/netcore50/System.Reflection.Primitives.xml",
  9873. "ref/netcore50/de/System.Reflection.Primitives.xml",
  9874. "ref/netcore50/es/System.Reflection.Primitives.xml",
  9875. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  9876. "ref/netcore50/it/System.Reflection.Primitives.xml",
  9877. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  9878. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  9879. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  9880. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  9881. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  9882. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  9883. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  9884. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  9885. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  9886. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  9887. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  9888. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  9889. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  9890. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  9891. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  9892. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  9893. "ref/portable-net45+win8+wp8+wpa81/_._",
  9894. "ref/win8/_._",
  9895. "ref/wp80/_._",
  9896. "ref/wpa81/_._",
  9897. "ref/xamarinios10/_._",
  9898. "ref/xamarinmac20/_._",
  9899. "ref/xamarintvos10/_._",
  9900. "ref/xamarinwatchos10/_._",
  9901. "system.reflection.primitives.4.3.0.nupkg.sha512",
  9902. "system.reflection.primitives.nuspec"
  9903. ]
  9904. },
  9905. "System.Reflection.TypeExtensions/4.3.0": {
  9906. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  9907. "type": "package",
  9908. "path": "system.reflection.typeextensions/4.3.0",
  9909. "files": [
  9910. ".nupkg.metadata",
  9911. "ThirdPartyNotices.txt",
  9912. "dotnet_library_license.txt",
  9913. "lib/MonoAndroid10/_._",
  9914. "lib/MonoTouch10/_._",
  9915. "lib/net46/System.Reflection.TypeExtensions.dll",
  9916. "lib/net462/System.Reflection.TypeExtensions.dll",
  9917. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  9918. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  9919. "lib/xamarinios10/_._",
  9920. "lib/xamarinmac20/_._",
  9921. "lib/xamarintvos10/_._",
  9922. "lib/xamarinwatchos10/_._",
  9923. "ref/MonoAndroid10/_._",
  9924. "ref/MonoTouch10/_._",
  9925. "ref/net46/System.Reflection.TypeExtensions.dll",
  9926. "ref/net462/System.Reflection.TypeExtensions.dll",
  9927. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  9928. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  9929. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  9930. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  9931. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  9932. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  9933. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  9934. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  9935. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  9936. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  9937. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  9938. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  9939. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  9940. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  9941. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  9942. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  9943. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  9944. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  9945. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  9946. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  9947. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  9948. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  9949. "ref/xamarinios10/_._",
  9950. "ref/xamarinmac20/_._",
  9951. "ref/xamarintvos10/_._",
  9952. "ref/xamarinwatchos10/_._",
  9953. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  9954. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  9955. "system.reflection.typeextensions.nuspec"
  9956. ]
  9957. },
  9958. "System.Resources.ResourceManager/4.3.0": {
  9959. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  9960. "type": "package",
  9961. "path": "system.resources.resourcemanager/4.3.0",
  9962. "files": [
  9963. ".nupkg.metadata",
  9964. "ThirdPartyNotices.txt",
  9965. "dotnet_library_license.txt",
  9966. "lib/MonoAndroid10/_._",
  9967. "lib/MonoTouch10/_._",
  9968. "lib/net45/_._",
  9969. "lib/portable-net45+win8+wp8+wpa81/_._",
  9970. "lib/win8/_._",
  9971. "lib/wp80/_._",
  9972. "lib/wpa81/_._",
  9973. "lib/xamarinios10/_._",
  9974. "lib/xamarinmac20/_._",
  9975. "lib/xamarintvos10/_._",
  9976. "lib/xamarinwatchos10/_._",
  9977. "ref/MonoAndroid10/_._",
  9978. "ref/MonoTouch10/_._",
  9979. "ref/net45/_._",
  9980. "ref/netcore50/System.Resources.ResourceManager.dll",
  9981. "ref/netcore50/System.Resources.ResourceManager.xml",
  9982. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  9983. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  9984. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  9985. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  9986. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  9987. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  9988. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  9989. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  9990. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  9991. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  9992. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  9993. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  9994. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  9995. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  9996. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  9997. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  9998. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  9999. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  10000. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  10001. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  10002. "ref/portable-net45+win8+wp8+wpa81/_._",
  10003. "ref/win8/_._",
  10004. "ref/wp80/_._",
  10005. "ref/wpa81/_._",
  10006. "ref/xamarinios10/_._",
  10007. "ref/xamarinmac20/_._",
  10008. "ref/xamarintvos10/_._",
  10009. "ref/xamarinwatchos10/_._",
  10010. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  10011. "system.resources.resourcemanager.nuspec"
  10012. ]
  10013. },
  10014. "System.Runtime/4.3.0": {
  10015. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  10016. "type": "package",
  10017. "path": "system.runtime/4.3.0",
  10018. "files": [
  10019. ".nupkg.metadata",
  10020. "ThirdPartyNotices.txt",
  10021. "dotnet_library_license.txt",
  10022. "lib/MonoAndroid10/_._",
  10023. "lib/MonoTouch10/_._",
  10024. "lib/net45/_._",
  10025. "lib/net462/System.Runtime.dll",
  10026. "lib/portable-net45+win8+wp80+wpa81/_._",
  10027. "lib/win8/_._",
  10028. "lib/wp80/_._",
  10029. "lib/wpa81/_._",
  10030. "lib/xamarinios10/_._",
  10031. "lib/xamarinmac20/_._",
  10032. "lib/xamarintvos10/_._",
  10033. "lib/xamarinwatchos10/_._",
  10034. "ref/MonoAndroid10/_._",
  10035. "ref/MonoTouch10/_._",
  10036. "ref/net45/_._",
  10037. "ref/net462/System.Runtime.dll",
  10038. "ref/netcore50/System.Runtime.dll",
  10039. "ref/netcore50/System.Runtime.xml",
  10040. "ref/netcore50/de/System.Runtime.xml",
  10041. "ref/netcore50/es/System.Runtime.xml",
  10042. "ref/netcore50/fr/System.Runtime.xml",
  10043. "ref/netcore50/it/System.Runtime.xml",
  10044. "ref/netcore50/ja/System.Runtime.xml",
  10045. "ref/netcore50/ko/System.Runtime.xml",
  10046. "ref/netcore50/ru/System.Runtime.xml",
  10047. "ref/netcore50/zh-hans/System.Runtime.xml",
  10048. "ref/netcore50/zh-hant/System.Runtime.xml",
  10049. "ref/netstandard1.0/System.Runtime.dll",
  10050. "ref/netstandard1.0/System.Runtime.xml",
  10051. "ref/netstandard1.0/de/System.Runtime.xml",
  10052. "ref/netstandard1.0/es/System.Runtime.xml",
  10053. "ref/netstandard1.0/fr/System.Runtime.xml",
  10054. "ref/netstandard1.0/it/System.Runtime.xml",
  10055. "ref/netstandard1.0/ja/System.Runtime.xml",
  10056. "ref/netstandard1.0/ko/System.Runtime.xml",
  10057. "ref/netstandard1.0/ru/System.Runtime.xml",
  10058. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  10059. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  10060. "ref/netstandard1.2/System.Runtime.dll",
  10061. "ref/netstandard1.2/System.Runtime.xml",
  10062. "ref/netstandard1.2/de/System.Runtime.xml",
  10063. "ref/netstandard1.2/es/System.Runtime.xml",
  10064. "ref/netstandard1.2/fr/System.Runtime.xml",
  10065. "ref/netstandard1.2/it/System.Runtime.xml",
  10066. "ref/netstandard1.2/ja/System.Runtime.xml",
  10067. "ref/netstandard1.2/ko/System.Runtime.xml",
  10068. "ref/netstandard1.2/ru/System.Runtime.xml",
  10069. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  10070. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  10071. "ref/netstandard1.3/System.Runtime.dll",
  10072. "ref/netstandard1.3/System.Runtime.xml",
  10073. "ref/netstandard1.3/de/System.Runtime.xml",
  10074. "ref/netstandard1.3/es/System.Runtime.xml",
  10075. "ref/netstandard1.3/fr/System.Runtime.xml",
  10076. "ref/netstandard1.3/it/System.Runtime.xml",
  10077. "ref/netstandard1.3/ja/System.Runtime.xml",
  10078. "ref/netstandard1.3/ko/System.Runtime.xml",
  10079. "ref/netstandard1.3/ru/System.Runtime.xml",
  10080. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  10081. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  10082. "ref/netstandard1.5/System.Runtime.dll",
  10083. "ref/netstandard1.5/System.Runtime.xml",
  10084. "ref/netstandard1.5/de/System.Runtime.xml",
  10085. "ref/netstandard1.5/es/System.Runtime.xml",
  10086. "ref/netstandard1.5/fr/System.Runtime.xml",
  10087. "ref/netstandard1.5/it/System.Runtime.xml",
  10088. "ref/netstandard1.5/ja/System.Runtime.xml",
  10089. "ref/netstandard1.5/ko/System.Runtime.xml",
  10090. "ref/netstandard1.5/ru/System.Runtime.xml",
  10091. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  10092. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  10093. "ref/portable-net45+win8+wp80+wpa81/_._",
  10094. "ref/win8/_._",
  10095. "ref/wp80/_._",
  10096. "ref/wpa81/_._",
  10097. "ref/xamarinios10/_._",
  10098. "ref/xamarinmac20/_._",
  10099. "ref/xamarintvos10/_._",
  10100. "ref/xamarinwatchos10/_._",
  10101. "system.runtime.4.3.0.nupkg.sha512",
  10102. "system.runtime.nuspec"
  10103. ]
  10104. },
  10105. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  10106. "sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==",
  10107. "type": "package",
  10108. "path": "system.runtime.compilerservices.unsafe/4.5.2",
  10109. "files": [
  10110. ".nupkg.metadata",
  10111. ".signature.p7s",
  10112. "LICENSE.TXT",
  10113. "THIRD-PARTY-NOTICES.TXT",
  10114. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  10115. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  10116. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  10117. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  10118. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  10119. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  10120. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  10121. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  10122. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  10123. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  10124. "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512",
  10125. "system.runtime.compilerservices.unsafe.nuspec",
  10126. "useSharedDesignerContext.txt",
  10127. "version.txt"
  10128. ]
  10129. },
  10130. "System.Runtime.Extensions/4.3.0": {
  10131. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  10132. "type": "package",
  10133. "path": "system.runtime.extensions/4.3.0",
  10134. "files": [
  10135. ".nupkg.metadata",
  10136. "ThirdPartyNotices.txt",
  10137. "dotnet_library_license.txt",
  10138. "lib/MonoAndroid10/_._",
  10139. "lib/MonoTouch10/_._",
  10140. "lib/net45/_._",
  10141. "lib/net462/System.Runtime.Extensions.dll",
  10142. "lib/portable-net45+win8+wp8+wpa81/_._",
  10143. "lib/win8/_._",
  10144. "lib/wp80/_._",
  10145. "lib/wpa81/_._",
  10146. "lib/xamarinios10/_._",
  10147. "lib/xamarinmac20/_._",
  10148. "lib/xamarintvos10/_._",
  10149. "lib/xamarinwatchos10/_._",
  10150. "ref/MonoAndroid10/_._",
  10151. "ref/MonoTouch10/_._",
  10152. "ref/net45/_._",
  10153. "ref/net462/System.Runtime.Extensions.dll",
  10154. "ref/netcore50/System.Runtime.Extensions.dll",
  10155. "ref/netcore50/System.Runtime.Extensions.xml",
  10156. "ref/netcore50/de/System.Runtime.Extensions.xml",
  10157. "ref/netcore50/es/System.Runtime.Extensions.xml",
  10158. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  10159. "ref/netcore50/it/System.Runtime.Extensions.xml",
  10160. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  10161. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  10162. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  10163. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  10164. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  10165. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  10166. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  10167. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  10168. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  10169. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  10170. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  10171. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  10172. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  10173. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  10174. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  10175. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  10176. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  10177. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  10178. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  10179. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  10180. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  10181. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  10182. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  10183. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  10184. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  10185. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  10186. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  10187. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  10188. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  10189. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  10190. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  10191. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  10192. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  10193. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  10194. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  10195. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  10196. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  10197. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  10198. "ref/portable-net45+win8+wp8+wpa81/_._",
  10199. "ref/win8/_._",
  10200. "ref/wp80/_._",
  10201. "ref/wpa81/_._",
  10202. "ref/xamarinios10/_._",
  10203. "ref/xamarinmac20/_._",
  10204. "ref/xamarintvos10/_._",
  10205. "ref/xamarinwatchos10/_._",
  10206. "system.runtime.extensions.4.3.0.nupkg.sha512",
  10207. "system.runtime.extensions.nuspec"
  10208. ]
  10209. },
  10210. "System.Runtime.Handles/4.3.0": {
  10211. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  10212. "type": "package",
  10213. "path": "system.runtime.handles/4.3.0",
  10214. "files": [
  10215. ".nupkg.metadata",
  10216. "ThirdPartyNotices.txt",
  10217. "dotnet_library_license.txt",
  10218. "lib/MonoAndroid10/_._",
  10219. "lib/MonoTouch10/_._",
  10220. "lib/net46/_._",
  10221. "lib/xamarinios10/_._",
  10222. "lib/xamarinmac20/_._",
  10223. "lib/xamarintvos10/_._",
  10224. "lib/xamarinwatchos10/_._",
  10225. "ref/MonoAndroid10/_._",
  10226. "ref/MonoTouch10/_._",
  10227. "ref/net46/_._",
  10228. "ref/netstandard1.3/System.Runtime.Handles.dll",
  10229. "ref/netstandard1.3/System.Runtime.Handles.xml",
  10230. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  10231. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  10232. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  10233. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  10234. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  10235. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  10236. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  10237. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  10238. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  10239. "ref/xamarinios10/_._",
  10240. "ref/xamarinmac20/_._",
  10241. "ref/xamarintvos10/_._",
  10242. "ref/xamarinwatchos10/_._",
  10243. "system.runtime.handles.4.3.0.nupkg.sha512",
  10244. "system.runtime.handles.nuspec"
  10245. ]
  10246. },
  10247. "System.Runtime.InteropServices/4.3.0": {
  10248. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  10249. "type": "package",
  10250. "path": "system.runtime.interopservices/4.3.0",
  10251. "files": [
  10252. ".nupkg.metadata",
  10253. "ThirdPartyNotices.txt",
  10254. "dotnet_library_license.txt",
  10255. "lib/MonoAndroid10/_._",
  10256. "lib/MonoTouch10/_._",
  10257. "lib/net45/_._",
  10258. "lib/net462/System.Runtime.InteropServices.dll",
  10259. "lib/net463/System.Runtime.InteropServices.dll",
  10260. "lib/portable-net45+win8+wpa81/_._",
  10261. "lib/win8/_._",
  10262. "lib/wpa81/_._",
  10263. "lib/xamarinios10/_._",
  10264. "lib/xamarinmac20/_._",
  10265. "lib/xamarintvos10/_._",
  10266. "lib/xamarinwatchos10/_._",
  10267. "ref/MonoAndroid10/_._",
  10268. "ref/MonoTouch10/_._",
  10269. "ref/net45/_._",
  10270. "ref/net462/System.Runtime.InteropServices.dll",
  10271. "ref/net463/System.Runtime.InteropServices.dll",
  10272. "ref/netcore50/System.Runtime.InteropServices.dll",
  10273. "ref/netcore50/System.Runtime.InteropServices.xml",
  10274. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  10275. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  10276. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  10277. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  10278. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  10279. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  10280. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  10281. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  10282. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  10283. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  10284. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  10285. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  10286. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  10287. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  10288. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  10289. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  10290. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  10291. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  10292. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  10293. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  10294. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  10295. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  10296. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  10297. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  10298. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  10299. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  10300. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  10301. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  10302. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  10303. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  10304. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  10305. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  10306. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  10307. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  10308. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  10309. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  10310. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  10311. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  10312. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  10313. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  10314. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  10315. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  10316. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  10317. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  10318. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  10319. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  10320. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  10321. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  10322. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  10323. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  10324. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  10325. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  10326. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  10327. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  10328. "ref/portable-net45+win8+wpa81/_._",
  10329. "ref/win8/_._",
  10330. "ref/wpa81/_._",
  10331. "ref/xamarinios10/_._",
  10332. "ref/xamarinmac20/_._",
  10333. "ref/xamarintvos10/_._",
  10334. "ref/xamarinwatchos10/_._",
  10335. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  10336. "system.runtime.interopservices.nuspec"
  10337. ]
  10338. },
  10339. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  10340. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  10341. "type": "package",
  10342. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  10343. "files": [
  10344. ".nupkg.metadata",
  10345. "ThirdPartyNotices.txt",
  10346. "dotnet_library_license.txt",
  10347. "lib/MonoAndroid10/_._",
  10348. "lib/MonoTouch10/_._",
  10349. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  10350. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10351. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  10352. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  10353. "lib/xamarinios10/_._",
  10354. "lib/xamarinmac20/_._",
  10355. "lib/xamarintvos10/_._",
  10356. "lib/xamarinwatchos10/_._",
  10357. "ref/MonoAndroid10/_._",
  10358. "ref/MonoTouch10/_._",
  10359. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10360. "ref/xamarinios10/_._",
  10361. "ref/xamarinmac20/_._",
  10362. "ref/xamarintvos10/_._",
  10363. "ref/xamarinwatchos10/_._",
  10364. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  10365. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10366. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  10367. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  10368. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10369. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  10370. "system.runtime.interopservices.runtimeinformation.nuspec"
  10371. ]
  10372. },
  10373. "System.Runtime.Numerics/4.3.0": {
  10374. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  10375. "type": "package",
  10376. "path": "system.runtime.numerics/4.3.0",
  10377. "files": [
  10378. ".nupkg.metadata",
  10379. "ThirdPartyNotices.txt",
  10380. "dotnet_library_license.txt",
  10381. "lib/MonoAndroid10/_._",
  10382. "lib/MonoTouch10/_._",
  10383. "lib/net45/_._",
  10384. "lib/netcore50/System.Runtime.Numerics.dll",
  10385. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  10386. "lib/portable-net45+win8+wpa81/_._",
  10387. "lib/win8/_._",
  10388. "lib/wpa81/_._",
  10389. "lib/xamarinios10/_._",
  10390. "lib/xamarinmac20/_._",
  10391. "lib/xamarintvos10/_._",
  10392. "lib/xamarinwatchos10/_._",
  10393. "ref/MonoAndroid10/_._",
  10394. "ref/MonoTouch10/_._",
  10395. "ref/net45/_._",
  10396. "ref/netcore50/System.Runtime.Numerics.dll",
  10397. "ref/netcore50/System.Runtime.Numerics.xml",
  10398. "ref/netcore50/de/System.Runtime.Numerics.xml",
  10399. "ref/netcore50/es/System.Runtime.Numerics.xml",
  10400. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  10401. "ref/netcore50/it/System.Runtime.Numerics.xml",
  10402. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  10403. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  10404. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  10405. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  10406. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  10407. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  10408. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  10409. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  10410. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  10411. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  10412. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  10413. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  10414. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  10415. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  10416. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  10417. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  10418. "ref/portable-net45+win8+wpa81/_._",
  10419. "ref/win8/_._",
  10420. "ref/wpa81/_._",
  10421. "ref/xamarinios10/_._",
  10422. "ref/xamarinmac20/_._",
  10423. "ref/xamarintvos10/_._",
  10424. "ref/xamarinwatchos10/_._",
  10425. "system.runtime.numerics.4.3.0.nupkg.sha512",
  10426. "system.runtime.numerics.nuspec"
  10427. ]
  10428. },
  10429. "System.Runtime.Serialization.Primitives/4.3.0": {
  10430. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  10431. "type": "package",
  10432. "path": "system.runtime.serialization.primitives/4.3.0",
  10433. "files": [
  10434. ".nupkg.metadata",
  10435. "ThirdPartyNotices.txt",
  10436. "dotnet_library_license.txt",
  10437. "lib/MonoAndroid10/_._",
  10438. "lib/MonoTouch10/_._",
  10439. "lib/net45/_._",
  10440. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  10441. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  10442. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  10443. "lib/portable-net45+win8+wp8+wpa81/_._",
  10444. "lib/win8/_._",
  10445. "lib/wp80/_._",
  10446. "lib/wpa81/_._",
  10447. "lib/xamarinios10/_._",
  10448. "lib/xamarinmac20/_._",
  10449. "lib/xamarintvos10/_._",
  10450. "lib/xamarinwatchos10/_._",
  10451. "ref/MonoAndroid10/_._",
  10452. "ref/MonoTouch10/_._",
  10453. "ref/net45/_._",
  10454. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  10455. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  10456. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  10457. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  10458. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  10459. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  10460. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  10461. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  10462. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  10463. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  10464. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  10465. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  10466. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  10467. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  10468. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  10469. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  10470. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  10471. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  10472. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  10473. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  10474. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  10475. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  10476. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  10477. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  10478. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  10479. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  10480. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  10481. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  10482. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  10483. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  10484. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  10485. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  10486. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  10487. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  10488. "ref/portable-net45+win8+wp8+wpa81/_._",
  10489. "ref/win8/_._",
  10490. "ref/wp80/_._",
  10491. "ref/wpa81/_._",
  10492. "ref/xamarinios10/_._",
  10493. "ref/xamarinmac20/_._",
  10494. "ref/xamarintvos10/_._",
  10495. "ref/xamarinwatchos10/_._",
  10496. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  10497. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  10498. "system.runtime.serialization.primitives.nuspec"
  10499. ]
  10500. },
  10501. "System.Runtime.Serialization.Xml/4.3.0": {
  10502. "sha512": "nUQx/5OVgrqEba3+j7OdiofvVq9koWZAC7Z3xGI8IIViZqApWnZ5+lLcwYgTlbkobrl/Rat+Jb8GeD4WQESD2A==",
  10503. "type": "package",
  10504. "path": "system.runtime.serialization.xml/4.3.0",
  10505. "files": [
  10506. ".nupkg.metadata",
  10507. "ThirdPartyNotices.txt",
  10508. "dotnet_library_license.txt",
  10509. "lib/MonoAndroid10/_._",
  10510. "lib/MonoTouch10/_._",
  10511. "lib/net45/_._",
  10512. "lib/net46/System.Runtime.Serialization.Xml.dll",
  10513. "lib/netcore50/System.Runtime.Serialization.Xml.dll",
  10514. "lib/netstandard1.3/System.Runtime.Serialization.Xml.dll",
  10515. "lib/portable-net45+win8+wp8+wpa81/_._",
  10516. "lib/win8/_._",
  10517. "lib/wp80/_._",
  10518. "lib/wpa81/_._",
  10519. "lib/xamarinios10/_._",
  10520. "lib/xamarinmac20/_._",
  10521. "lib/xamarintvos10/_._",
  10522. "lib/xamarinwatchos10/_._",
  10523. "ref/MonoAndroid10/_._",
  10524. "ref/MonoTouch10/_._",
  10525. "ref/net45/_._",
  10526. "ref/net46/System.Runtime.Serialization.Xml.dll",
  10527. "ref/netcore50/System.Runtime.Serialization.Xml.dll",
  10528. "ref/netcore50/System.Runtime.Serialization.Xml.xml",
  10529. "ref/netcore50/de/System.Runtime.Serialization.Xml.xml",
  10530. "ref/netcore50/es/System.Runtime.Serialization.Xml.xml",
  10531. "ref/netcore50/fr/System.Runtime.Serialization.Xml.xml",
  10532. "ref/netcore50/it/System.Runtime.Serialization.Xml.xml",
  10533. "ref/netcore50/ja/System.Runtime.Serialization.Xml.xml",
  10534. "ref/netcore50/ko/System.Runtime.Serialization.Xml.xml",
  10535. "ref/netcore50/ru/System.Runtime.Serialization.Xml.xml",
  10536. "ref/netcore50/zh-hans/System.Runtime.Serialization.Xml.xml",
  10537. "ref/netcore50/zh-hant/System.Runtime.Serialization.Xml.xml",
  10538. "ref/netstandard1.0/System.Runtime.Serialization.Xml.dll",
  10539. "ref/netstandard1.0/System.Runtime.Serialization.Xml.xml",
  10540. "ref/netstandard1.0/de/System.Runtime.Serialization.Xml.xml",
  10541. "ref/netstandard1.0/es/System.Runtime.Serialization.Xml.xml",
  10542. "ref/netstandard1.0/fr/System.Runtime.Serialization.Xml.xml",
  10543. "ref/netstandard1.0/it/System.Runtime.Serialization.Xml.xml",
  10544. "ref/netstandard1.0/ja/System.Runtime.Serialization.Xml.xml",
  10545. "ref/netstandard1.0/ko/System.Runtime.Serialization.Xml.xml",
  10546. "ref/netstandard1.0/ru/System.Runtime.Serialization.Xml.xml",
  10547. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Xml.xml",
  10548. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Xml.xml",
  10549. "ref/netstandard1.3/System.Runtime.Serialization.Xml.dll",
  10550. "ref/netstandard1.3/System.Runtime.Serialization.Xml.xml",
  10551. "ref/netstandard1.3/de/System.Runtime.Serialization.Xml.xml",
  10552. "ref/netstandard1.3/es/System.Runtime.Serialization.Xml.xml",
  10553. "ref/netstandard1.3/fr/System.Runtime.Serialization.Xml.xml",
  10554. "ref/netstandard1.3/it/System.Runtime.Serialization.Xml.xml",
  10555. "ref/netstandard1.3/ja/System.Runtime.Serialization.Xml.xml",
  10556. "ref/netstandard1.3/ko/System.Runtime.Serialization.Xml.xml",
  10557. "ref/netstandard1.3/ru/System.Runtime.Serialization.Xml.xml",
  10558. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Xml.xml",
  10559. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Xml.xml",
  10560. "ref/portable-net45+win8+wp8+wpa81/_._",
  10561. "ref/win8/_._",
  10562. "ref/wp80/_._",
  10563. "ref/wpa81/_._",
  10564. "ref/xamarinios10/_._",
  10565. "ref/xamarinmac20/_._",
  10566. "ref/xamarintvos10/_._",
  10567. "ref/xamarinwatchos10/_._",
  10568. "system.runtime.serialization.xml.4.3.0.nupkg.sha512",
  10569. "system.runtime.serialization.xml.nuspec"
  10570. ]
  10571. },
  10572. "System.Security.AccessControl/4.5.0": {
  10573. "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
  10574. "type": "package",
  10575. "path": "system.security.accesscontrol/4.5.0",
  10576. "files": [
  10577. ".nupkg.metadata",
  10578. ".signature.p7s",
  10579. "LICENSE.TXT",
  10580. "THIRD-PARTY-NOTICES.TXT",
  10581. "lib/net46/System.Security.AccessControl.dll",
  10582. "lib/net461/System.Security.AccessControl.dll",
  10583. "lib/netstandard1.3/System.Security.AccessControl.dll",
  10584. "lib/netstandard2.0/System.Security.AccessControl.dll",
  10585. "lib/uap10.0.16299/_._",
  10586. "ref/net46/System.Security.AccessControl.dll",
  10587. "ref/net461/System.Security.AccessControl.dll",
  10588. "ref/net461/System.Security.AccessControl.xml",
  10589. "ref/netstandard1.3/System.Security.AccessControl.dll",
  10590. "ref/netstandard1.3/System.Security.AccessControl.xml",
  10591. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  10592. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  10593. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  10594. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  10595. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  10596. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  10597. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  10598. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  10599. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  10600. "ref/netstandard2.0/System.Security.AccessControl.dll",
  10601. "ref/netstandard2.0/System.Security.AccessControl.xml",
  10602. "ref/uap10.0.16299/_._",
  10603. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  10604. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  10605. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  10606. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  10607. "runtimes/win/lib/uap10.0.16299/_._",
  10608. "system.security.accesscontrol.4.5.0.nupkg.sha512",
  10609. "system.security.accesscontrol.nuspec",
  10610. "useSharedDesignerContext.txt",
  10611. "version.txt"
  10612. ]
  10613. },
  10614. "System.Security.Claims/4.3.0": {
  10615. "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
  10616. "type": "package",
  10617. "path": "system.security.claims/4.3.0",
  10618. "files": [
  10619. ".nupkg.metadata",
  10620. "ThirdPartyNotices.txt",
  10621. "dotnet_library_license.txt",
  10622. "lib/MonoAndroid10/_._",
  10623. "lib/MonoTouch10/_._",
  10624. "lib/net46/System.Security.Claims.dll",
  10625. "lib/netstandard1.3/System.Security.Claims.dll",
  10626. "lib/xamarinios10/_._",
  10627. "lib/xamarinmac20/_._",
  10628. "lib/xamarintvos10/_._",
  10629. "lib/xamarinwatchos10/_._",
  10630. "ref/MonoAndroid10/_._",
  10631. "ref/MonoTouch10/_._",
  10632. "ref/net46/System.Security.Claims.dll",
  10633. "ref/netstandard1.3/System.Security.Claims.dll",
  10634. "ref/netstandard1.3/System.Security.Claims.xml",
  10635. "ref/netstandard1.3/de/System.Security.Claims.xml",
  10636. "ref/netstandard1.3/es/System.Security.Claims.xml",
  10637. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  10638. "ref/netstandard1.3/it/System.Security.Claims.xml",
  10639. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  10640. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  10641. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  10642. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  10643. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  10644. "ref/xamarinios10/_._",
  10645. "ref/xamarinmac20/_._",
  10646. "ref/xamarintvos10/_._",
  10647. "ref/xamarinwatchos10/_._",
  10648. "system.security.claims.4.3.0.nupkg.sha512",
  10649. "system.security.claims.nuspec"
  10650. ]
  10651. },
  10652. "System.Security.Cryptography.Algorithms/4.3.0": {
  10653. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  10654. "type": "package",
  10655. "path": "system.security.cryptography.algorithms/4.3.0",
  10656. "files": [
  10657. ".nupkg.metadata",
  10658. "ThirdPartyNotices.txt",
  10659. "dotnet_library_license.txt",
  10660. "lib/MonoAndroid10/_._",
  10661. "lib/MonoTouch10/_._",
  10662. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  10663. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  10664. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  10665. "lib/xamarinios10/_._",
  10666. "lib/xamarinmac20/_._",
  10667. "lib/xamarintvos10/_._",
  10668. "lib/xamarinwatchos10/_._",
  10669. "ref/MonoAndroid10/_._",
  10670. "ref/MonoTouch10/_._",
  10671. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  10672. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  10673. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  10674. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  10675. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  10676. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10677. "ref/xamarinios10/_._",
  10678. "ref/xamarinmac20/_._",
  10679. "ref/xamarintvos10/_._",
  10680. "ref/xamarinwatchos10/_._",
  10681. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10682. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10683. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  10684. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  10685. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  10686. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  10687. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10688. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  10689. "system.security.cryptography.algorithms.nuspec"
  10690. ]
  10691. },
  10692. "System.Security.Cryptography.Cng/4.5.0": {
  10693. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  10694. "type": "package",
  10695. "path": "system.security.cryptography.cng/4.5.0",
  10696. "files": [
  10697. ".nupkg.metadata",
  10698. ".signature.p7s",
  10699. "LICENSE.TXT",
  10700. "THIRD-PARTY-NOTICES.TXT",
  10701. "lib/MonoAndroid10/_._",
  10702. "lib/MonoTouch10/_._",
  10703. "lib/net46/System.Security.Cryptography.Cng.dll",
  10704. "lib/net461/System.Security.Cryptography.Cng.dll",
  10705. "lib/net462/System.Security.Cryptography.Cng.dll",
  10706. "lib/net47/System.Security.Cryptography.Cng.dll",
  10707. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10708. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  10709. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10710. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10711. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  10712. "lib/uap10.0.16299/_._",
  10713. "lib/xamarinios10/_._",
  10714. "lib/xamarinmac20/_._",
  10715. "lib/xamarintvos10/_._",
  10716. "lib/xamarinwatchos10/_._",
  10717. "ref/MonoAndroid10/_._",
  10718. "ref/MonoTouch10/_._",
  10719. "ref/net46/System.Security.Cryptography.Cng.dll",
  10720. "ref/net461/System.Security.Cryptography.Cng.dll",
  10721. "ref/net461/System.Security.Cryptography.Cng.xml",
  10722. "ref/net462/System.Security.Cryptography.Cng.dll",
  10723. "ref/net462/System.Security.Cryptography.Cng.xml",
  10724. "ref/net47/System.Security.Cryptography.Cng.dll",
  10725. "ref/net47/System.Security.Cryptography.Cng.xml",
  10726. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  10727. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  10728. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10729. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  10730. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  10731. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10732. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10733. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  10734. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  10735. "ref/uap10.0.16299/_._",
  10736. "ref/xamarinios10/_._",
  10737. "ref/xamarinmac20/_._",
  10738. "ref/xamarintvos10/_._",
  10739. "ref/xamarinwatchos10/_._",
  10740. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  10741. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  10742. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  10743. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  10744. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  10745. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10746. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10747. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10748. "runtimes/win/lib/uap10.0.16299/_._",
  10749. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  10750. "system.security.cryptography.cng.nuspec",
  10751. "useSharedDesignerContext.txt",
  10752. "version.txt"
  10753. ]
  10754. },
  10755. "System.Security.Cryptography.Csp/4.3.0": {
  10756. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  10757. "type": "package",
  10758. "path": "system.security.cryptography.csp/4.3.0",
  10759. "files": [
  10760. ".nupkg.metadata",
  10761. "ThirdPartyNotices.txt",
  10762. "dotnet_library_license.txt",
  10763. "lib/MonoAndroid10/_._",
  10764. "lib/MonoTouch10/_._",
  10765. "lib/net46/System.Security.Cryptography.Csp.dll",
  10766. "lib/xamarinios10/_._",
  10767. "lib/xamarinmac20/_._",
  10768. "lib/xamarintvos10/_._",
  10769. "lib/xamarinwatchos10/_._",
  10770. "ref/MonoAndroid10/_._",
  10771. "ref/MonoTouch10/_._",
  10772. "ref/net46/System.Security.Cryptography.Csp.dll",
  10773. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10774. "ref/xamarinios10/_._",
  10775. "ref/xamarinmac20/_._",
  10776. "ref/xamarintvos10/_._",
  10777. "ref/xamarinwatchos10/_._",
  10778. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10779. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  10780. "runtimes/win/lib/netcore50/_._",
  10781. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10782. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  10783. "system.security.cryptography.csp.nuspec"
  10784. ]
  10785. },
  10786. "System.Security.Cryptography.Encoding/4.3.0": {
  10787. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  10788. "type": "package",
  10789. "path": "system.security.cryptography.encoding/4.3.0",
  10790. "files": [
  10791. ".nupkg.metadata",
  10792. "ThirdPartyNotices.txt",
  10793. "dotnet_library_license.txt",
  10794. "lib/MonoAndroid10/_._",
  10795. "lib/MonoTouch10/_._",
  10796. "lib/net46/System.Security.Cryptography.Encoding.dll",
  10797. "lib/xamarinios10/_._",
  10798. "lib/xamarinmac20/_._",
  10799. "lib/xamarintvos10/_._",
  10800. "lib/xamarinwatchos10/_._",
  10801. "ref/MonoAndroid10/_._",
  10802. "ref/MonoTouch10/_._",
  10803. "ref/net46/System.Security.Cryptography.Encoding.dll",
  10804. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10805. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  10806. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  10807. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  10808. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  10809. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  10810. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  10811. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  10812. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  10813. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  10814. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  10815. "ref/xamarinios10/_._",
  10816. "ref/xamarinmac20/_._",
  10817. "ref/xamarintvos10/_._",
  10818. "ref/xamarinwatchos10/_._",
  10819. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10820. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  10821. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10822. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  10823. "system.security.cryptography.encoding.nuspec"
  10824. ]
  10825. },
  10826. "System.Security.Cryptography.OpenSsl/4.3.0": {
  10827. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  10828. "type": "package",
  10829. "path": "system.security.cryptography.openssl/4.3.0",
  10830. "files": [
  10831. ".nupkg.metadata",
  10832. "ThirdPartyNotices.txt",
  10833. "dotnet_library_license.txt",
  10834. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10835. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10836. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10837. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  10838. "system.security.cryptography.openssl.nuspec"
  10839. ]
  10840. },
  10841. "System.Security.Cryptography.Pkcs/4.5.0": {
  10842. "sha512": "TGQX51gxpY3K3I6LJlE2LAftVlIMqJf0cBGhz68Y89jjk3LJCB6SrwiD+YN1fkqemBvWGs+GjyMJukl6d6goyQ==",
  10843. "type": "package",
  10844. "path": "system.security.cryptography.pkcs/4.5.0",
  10845. "files": [
  10846. ".nupkg.metadata",
  10847. ".signature.p7s",
  10848. "LICENSE.TXT",
  10849. "THIRD-PARTY-NOTICES.TXT",
  10850. "lib/net46/System.Security.Cryptography.Pkcs.dll",
  10851. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  10852. "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  10853. "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  10854. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  10855. "ref/net46/System.Security.Cryptography.Pkcs.dll",
  10856. "ref/net461/System.Security.Cryptography.Pkcs.dll",
  10857. "ref/net461/System.Security.Cryptography.Pkcs.xml",
  10858. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  10859. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml",
  10860. "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  10861. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  10862. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  10863. "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll",
  10864. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  10865. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  10866. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  10867. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  10868. "system.security.cryptography.pkcs.4.5.0.nupkg.sha512",
  10869. "system.security.cryptography.pkcs.nuspec",
  10870. "useSharedDesignerContext.txt",
  10871. "version.txt"
  10872. ]
  10873. },
  10874. "System.Security.Cryptography.Primitives/4.3.0": {
  10875. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  10876. "type": "package",
  10877. "path": "system.security.cryptography.primitives/4.3.0",
  10878. "files": [
  10879. ".nupkg.metadata",
  10880. "ThirdPartyNotices.txt",
  10881. "dotnet_library_license.txt",
  10882. "lib/MonoAndroid10/_._",
  10883. "lib/MonoTouch10/_._",
  10884. "lib/net46/System.Security.Cryptography.Primitives.dll",
  10885. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  10886. "lib/xamarinios10/_._",
  10887. "lib/xamarinmac20/_._",
  10888. "lib/xamarintvos10/_._",
  10889. "lib/xamarinwatchos10/_._",
  10890. "ref/MonoAndroid10/_._",
  10891. "ref/MonoTouch10/_._",
  10892. "ref/net46/System.Security.Cryptography.Primitives.dll",
  10893. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  10894. "ref/xamarinios10/_._",
  10895. "ref/xamarinmac20/_._",
  10896. "ref/xamarintvos10/_._",
  10897. "ref/xamarinwatchos10/_._",
  10898. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  10899. "system.security.cryptography.primitives.nuspec"
  10900. ]
  10901. },
  10902. "System.Security.Cryptography.ProtectedData/4.5.0": {
  10903. "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  10904. "type": "package",
  10905. "path": "system.security.cryptography.protecteddata/4.5.0",
  10906. "files": [
  10907. ".nupkg.metadata",
  10908. ".signature.p7s",
  10909. "LICENSE.TXT",
  10910. "THIRD-PARTY-NOTICES.TXT",
  10911. "lib/MonoAndroid10/_._",
  10912. "lib/MonoTouch10/_._",
  10913. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  10914. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  10915. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  10916. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  10917. "lib/xamarinios10/_._",
  10918. "lib/xamarinmac20/_._",
  10919. "lib/xamarintvos10/_._",
  10920. "lib/xamarinwatchos10/_._",
  10921. "ref/MonoAndroid10/_._",
  10922. "ref/MonoTouch10/_._",
  10923. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  10924. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  10925. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  10926. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  10927. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  10928. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  10929. "ref/xamarinios10/_._",
  10930. "ref/xamarinmac20/_._",
  10931. "ref/xamarintvos10/_._",
  10932. "ref/xamarinwatchos10/_._",
  10933. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  10934. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  10935. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  10936. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  10937. "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
  10938. "system.security.cryptography.protecteddata.nuspec",
  10939. "useSharedDesignerContext.txt",
  10940. "version.txt"
  10941. ]
  10942. },
  10943. "System.Security.Cryptography.X509Certificates/4.3.0": {
  10944. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  10945. "type": "package",
  10946. "path": "system.security.cryptography.x509certificates/4.3.0",
  10947. "files": [
  10948. ".nupkg.metadata",
  10949. "ThirdPartyNotices.txt",
  10950. "dotnet_library_license.txt",
  10951. "lib/MonoAndroid10/_._",
  10952. "lib/MonoTouch10/_._",
  10953. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  10954. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  10955. "lib/xamarinios10/_._",
  10956. "lib/xamarinmac20/_._",
  10957. "lib/xamarintvos10/_._",
  10958. "lib/xamarinwatchos10/_._",
  10959. "ref/MonoAndroid10/_._",
  10960. "ref/MonoTouch10/_._",
  10961. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  10962. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  10963. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  10964. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  10965. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  10966. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  10967. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  10968. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  10969. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  10970. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  10971. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  10972. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  10973. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  10974. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  10975. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  10976. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  10977. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  10978. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  10979. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  10980. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  10981. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  10982. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  10983. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  10984. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  10985. "ref/xamarinios10/_._",
  10986. "ref/xamarinmac20/_._",
  10987. "ref/xamarintvos10/_._",
  10988. "ref/xamarinwatchos10/_._",
  10989. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  10990. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  10991. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  10992. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  10993. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  10994. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  10995. "system.security.cryptography.x509certificates.nuspec"
  10996. ]
  10997. },
  10998. "System.Security.Cryptography.Xml/4.5.0": {
  10999. "sha512": "i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==",
  11000. "type": "package",
  11001. "path": "system.security.cryptography.xml/4.5.0",
  11002. "files": [
  11003. ".nupkg.metadata",
  11004. ".signature.p7s",
  11005. "LICENSE.TXT",
  11006. "THIRD-PARTY-NOTICES.TXT",
  11007. "lib/net461/System.Security.Cryptography.Xml.dll",
  11008. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
  11009. "ref/net461/System.Security.Cryptography.Xml.dll",
  11010. "ref/net461/System.Security.Cryptography.Xml.xml",
  11011. "ref/netstandard2.0/System.Security.Cryptography.Xml.dll",
  11012. "ref/netstandard2.0/System.Security.Cryptography.Xml.xml",
  11013. "system.security.cryptography.xml.4.5.0.nupkg.sha512",
  11014. "system.security.cryptography.xml.nuspec",
  11015. "useSharedDesignerContext.txt",
  11016. "version.txt"
  11017. ]
  11018. },
  11019. "System.Security.Permissions/4.5.0": {
  11020. "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
  11021. "type": "package",
  11022. "path": "system.security.permissions/4.5.0",
  11023. "files": [
  11024. ".nupkg.metadata",
  11025. ".signature.p7s",
  11026. "LICENSE.TXT",
  11027. "THIRD-PARTY-NOTICES.TXT",
  11028. "lib/net461/System.Security.Permissions.dll",
  11029. "lib/netstandard2.0/System.Security.Permissions.dll",
  11030. "ref/net461/System.Security.Permissions.dll",
  11031. "ref/net461/System.Security.Permissions.xml",
  11032. "ref/netstandard2.0/System.Security.Permissions.dll",
  11033. "ref/netstandard2.0/System.Security.Permissions.xml",
  11034. "system.security.permissions.4.5.0.nupkg.sha512",
  11035. "system.security.permissions.nuspec",
  11036. "useSharedDesignerContext.txt",
  11037. "version.txt"
  11038. ]
  11039. },
  11040. "System.Security.Principal/4.3.0": {
  11041. "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
  11042. "type": "package",
  11043. "path": "system.security.principal/4.3.0",
  11044. "files": [
  11045. ".nupkg.metadata",
  11046. "ThirdPartyNotices.txt",
  11047. "dotnet_library_license.txt",
  11048. "lib/MonoAndroid10/_._",
  11049. "lib/MonoTouch10/_._",
  11050. "lib/net45/_._",
  11051. "lib/netcore50/System.Security.Principal.dll",
  11052. "lib/netstandard1.0/System.Security.Principal.dll",
  11053. "lib/portable-net45+win8+wp8+wpa81/_._",
  11054. "lib/win8/_._",
  11055. "lib/wp80/_._",
  11056. "lib/wpa81/_._",
  11057. "lib/xamarinios10/_._",
  11058. "lib/xamarinmac20/_._",
  11059. "lib/xamarintvos10/_._",
  11060. "lib/xamarinwatchos10/_._",
  11061. "ref/MonoAndroid10/_._",
  11062. "ref/MonoTouch10/_._",
  11063. "ref/net45/_._",
  11064. "ref/netcore50/System.Security.Principal.dll",
  11065. "ref/netcore50/System.Security.Principal.xml",
  11066. "ref/netcore50/de/System.Security.Principal.xml",
  11067. "ref/netcore50/es/System.Security.Principal.xml",
  11068. "ref/netcore50/fr/System.Security.Principal.xml",
  11069. "ref/netcore50/it/System.Security.Principal.xml",
  11070. "ref/netcore50/ja/System.Security.Principal.xml",
  11071. "ref/netcore50/ko/System.Security.Principal.xml",
  11072. "ref/netcore50/ru/System.Security.Principal.xml",
  11073. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  11074. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  11075. "ref/netstandard1.0/System.Security.Principal.dll",
  11076. "ref/netstandard1.0/System.Security.Principal.xml",
  11077. "ref/netstandard1.0/de/System.Security.Principal.xml",
  11078. "ref/netstandard1.0/es/System.Security.Principal.xml",
  11079. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  11080. "ref/netstandard1.0/it/System.Security.Principal.xml",
  11081. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  11082. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  11083. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  11084. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  11085. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  11086. "ref/portable-net45+win8+wp8+wpa81/_._",
  11087. "ref/win8/_._",
  11088. "ref/wp80/_._",
  11089. "ref/wpa81/_._",
  11090. "ref/xamarinios10/_._",
  11091. "ref/xamarinmac20/_._",
  11092. "ref/xamarintvos10/_._",
  11093. "ref/xamarinwatchos10/_._",
  11094. "system.security.principal.4.3.0.nupkg.sha512",
  11095. "system.security.principal.nuspec"
  11096. ]
  11097. },
  11098. "System.Security.Principal.Windows/4.5.0": {
  11099. "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==",
  11100. "type": "package",
  11101. "path": "system.security.principal.windows/4.5.0",
  11102. "files": [
  11103. ".nupkg.metadata",
  11104. ".signature.p7s",
  11105. "LICENSE.TXT",
  11106. "THIRD-PARTY-NOTICES.TXT",
  11107. "lib/net46/System.Security.Principal.Windows.dll",
  11108. "lib/net461/System.Security.Principal.Windows.dll",
  11109. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  11110. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  11111. "lib/uap10.0.16299/_._",
  11112. "ref/net46/System.Security.Principal.Windows.dll",
  11113. "ref/net461/System.Security.Principal.Windows.dll",
  11114. "ref/net461/System.Security.Principal.Windows.xml",
  11115. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  11116. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  11117. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  11118. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  11119. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  11120. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  11121. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  11122. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  11123. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  11124. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  11125. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  11126. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  11127. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  11128. "ref/uap10.0.16299/_._",
  11129. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  11130. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  11131. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  11132. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  11133. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  11134. "runtimes/win/lib/uap10.0.16299/_._",
  11135. "system.security.principal.windows.4.5.0.nupkg.sha512",
  11136. "system.security.principal.windows.nuspec",
  11137. "useSharedDesignerContext.txt",
  11138. "version.txt"
  11139. ]
  11140. },
  11141. "System.Text.Encoding/4.3.0": {
  11142. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  11143. "type": "package",
  11144. "path": "system.text.encoding/4.3.0",
  11145. "files": [
  11146. ".nupkg.metadata",
  11147. "ThirdPartyNotices.txt",
  11148. "dotnet_library_license.txt",
  11149. "lib/MonoAndroid10/_._",
  11150. "lib/MonoTouch10/_._",
  11151. "lib/net45/_._",
  11152. "lib/portable-net45+win8+wp8+wpa81/_._",
  11153. "lib/win8/_._",
  11154. "lib/wp80/_._",
  11155. "lib/wpa81/_._",
  11156. "lib/xamarinios10/_._",
  11157. "lib/xamarinmac20/_._",
  11158. "lib/xamarintvos10/_._",
  11159. "lib/xamarinwatchos10/_._",
  11160. "ref/MonoAndroid10/_._",
  11161. "ref/MonoTouch10/_._",
  11162. "ref/net45/_._",
  11163. "ref/netcore50/System.Text.Encoding.dll",
  11164. "ref/netcore50/System.Text.Encoding.xml",
  11165. "ref/netcore50/de/System.Text.Encoding.xml",
  11166. "ref/netcore50/es/System.Text.Encoding.xml",
  11167. "ref/netcore50/fr/System.Text.Encoding.xml",
  11168. "ref/netcore50/it/System.Text.Encoding.xml",
  11169. "ref/netcore50/ja/System.Text.Encoding.xml",
  11170. "ref/netcore50/ko/System.Text.Encoding.xml",
  11171. "ref/netcore50/ru/System.Text.Encoding.xml",
  11172. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  11173. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  11174. "ref/netstandard1.0/System.Text.Encoding.dll",
  11175. "ref/netstandard1.0/System.Text.Encoding.xml",
  11176. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  11177. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  11178. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  11179. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  11180. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  11181. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  11182. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  11183. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  11184. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  11185. "ref/netstandard1.3/System.Text.Encoding.dll",
  11186. "ref/netstandard1.3/System.Text.Encoding.xml",
  11187. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  11188. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  11189. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  11190. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  11191. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  11192. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  11193. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  11194. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  11195. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  11196. "ref/portable-net45+win8+wp8+wpa81/_._",
  11197. "ref/win8/_._",
  11198. "ref/wp80/_._",
  11199. "ref/wpa81/_._",
  11200. "ref/xamarinios10/_._",
  11201. "ref/xamarinmac20/_._",
  11202. "ref/xamarintvos10/_._",
  11203. "ref/xamarinwatchos10/_._",
  11204. "system.text.encoding.4.3.0.nupkg.sha512",
  11205. "system.text.encoding.nuspec"
  11206. ]
  11207. },
  11208. "System.Text.Encoding.CodePages/4.5.0": {
  11209. "sha512": "S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng==",
  11210. "type": "package",
  11211. "path": "system.text.encoding.codepages/4.5.0",
  11212. "files": [
  11213. ".nupkg.metadata",
  11214. ".signature.p7s",
  11215. "LICENSE.TXT",
  11216. "THIRD-PARTY-NOTICES.TXT",
  11217. "lib/MonoAndroid10/_._",
  11218. "lib/MonoTouch10/_._",
  11219. "lib/net46/System.Text.Encoding.CodePages.dll",
  11220. "lib/net461/System.Text.Encoding.CodePages.dll",
  11221. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  11222. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  11223. "lib/xamarinios10/_._",
  11224. "lib/xamarinmac20/_._",
  11225. "lib/xamarintvos10/_._",
  11226. "lib/xamarinwatchos10/_._",
  11227. "ref/MonoAndroid10/_._",
  11228. "ref/MonoTouch10/_._",
  11229. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  11230. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  11231. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  11232. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  11233. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  11234. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  11235. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  11236. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  11237. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  11238. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  11239. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  11240. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
  11241. "ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
  11242. "ref/xamarinios10/_._",
  11243. "ref/xamarinmac20/_._",
  11244. "ref/xamarintvos10/_._",
  11245. "ref/xamarinwatchos10/_._",
  11246. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  11247. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  11248. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  11249. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  11250. "system.text.encoding.codepages.4.5.0.nupkg.sha512",
  11251. "system.text.encoding.codepages.nuspec",
  11252. "useSharedDesignerContext.txt",
  11253. "version.txt"
  11254. ]
  11255. },
  11256. "System.Text.Encoding.Extensions/4.3.0": {
  11257. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  11258. "type": "package",
  11259. "path": "system.text.encoding.extensions/4.3.0",
  11260. "files": [
  11261. ".nupkg.metadata",
  11262. "ThirdPartyNotices.txt",
  11263. "dotnet_library_license.txt",
  11264. "lib/MonoAndroid10/_._",
  11265. "lib/MonoTouch10/_._",
  11266. "lib/net45/_._",
  11267. "lib/portable-net45+win8+wp8+wpa81/_._",
  11268. "lib/win8/_._",
  11269. "lib/wp80/_._",
  11270. "lib/wpa81/_._",
  11271. "lib/xamarinios10/_._",
  11272. "lib/xamarinmac20/_._",
  11273. "lib/xamarintvos10/_._",
  11274. "lib/xamarinwatchos10/_._",
  11275. "ref/MonoAndroid10/_._",
  11276. "ref/MonoTouch10/_._",
  11277. "ref/net45/_._",
  11278. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  11279. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  11280. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  11281. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  11282. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  11283. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  11284. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  11285. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  11286. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  11287. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  11288. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  11289. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  11290. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  11291. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  11292. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  11293. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  11294. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  11295. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  11296. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  11297. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  11298. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  11299. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  11300. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  11301. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  11302. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  11303. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  11304. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  11305. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  11306. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  11307. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  11308. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  11309. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  11310. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  11311. "ref/portable-net45+win8+wp8+wpa81/_._",
  11312. "ref/win8/_._",
  11313. "ref/wp80/_._",
  11314. "ref/wpa81/_._",
  11315. "ref/xamarinios10/_._",
  11316. "ref/xamarinmac20/_._",
  11317. "ref/xamarintvos10/_._",
  11318. "ref/xamarinwatchos10/_._",
  11319. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  11320. "system.text.encoding.extensions.nuspec"
  11321. ]
  11322. },
  11323. "System.Text.Encodings.Web/4.5.0": {
  11324. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  11325. "type": "package",
  11326. "path": "system.text.encodings.web/4.5.0",
  11327. "files": [
  11328. ".nupkg.metadata",
  11329. ".signature.p7s",
  11330. "LICENSE.TXT",
  11331. "THIRD-PARTY-NOTICES.TXT",
  11332. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  11333. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  11334. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  11335. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  11336. "system.text.encodings.web.4.5.0.nupkg.sha512",
  11337. "system.text.encodings.web.nuspec",
  11338. "useSharedDesignerContext.txt",
  11339. "version.txt"
  11340. ]
  11341. },
  11342. "System.Text.RegularExpressions/4.3.0": {
  11343. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  11344. "type": "package",
  11345. "path": "system.text.regularexpressions/4.3.0",
  11346. "files": [
  11347. ".nupkg.metadata",
  11348. "ThirdPartyNotices.txt",
  11349. "dotnet_library_license.txt",
  11350. "lib/MonoAndroid10/_._",
  11351. "lib/MonoTouch10/_._",
  11352. "lib/net45/_._",
  11353. "lib/net463/System.Text.RegularExpressions.dll",
  11354. "lib/netcore50/System.Text.RegularExpressions.dll",
  11355. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  11356. "lib/portable-net45+win8+wp8+wpa81/_._",
  11357. "lib/win8/_._",
  11358. "lib/wp80/_._",
  11359. "lib/wpa81/_._",
  11360. "lib/xamarinios10/_._",
  11361. "lib/xamarinmac20/_._",
  11362. "lib/xamarintvos10/_._",
  11363. "lib/xamarinwatchos10/_._",
  11364. "ref/MonoAndroid10/_._",
  11365. "ref/MonoTouch10/_._",
  11366. "ref/net45/_._",
  11367. "ref/net463/System.Text.RegularExpressions.dll",
  11368. "ref/netcore50/System.Text.RegularExpressions.dll",
  11369. "ref/netcore50/System.Text.RegularExpressions.xml",
  11370. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  11371. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  11372. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  11373. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  11374. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  11375. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  11376. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  11377. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  11378. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  11379. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  11380. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  11381. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  11382. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  11383. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  11384. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  11385. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  11386. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  11387. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  11388. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  11389. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  11390. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  11391. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  11392. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  11393. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  11394. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  11395. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  11396. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  11397. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  11398. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  11399. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  11400. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  11401. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  11402. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  11403. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  11404. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  11405. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  11406. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  11407. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  11408. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  11409. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  11410. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  11411. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  11412. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  11413. "ref/portable-net45+win8+wp8+wpa81/_._",
  11414. "ref/win8/_._",
  11415. "ref/wp80/_._",
  11416. "ref/wpa81/_._",
  11417. "ref/xamarinios10/_._",
  11418. "ref/xamarinmac20/_._",
  11419. "ref/xamarintvos10/_._",
  11420. "ref/xamarinwatchos10/_._",
  11421. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  11422. "system.text.regularexpressions.nuspec"
  11423. ]
  11424. },
  11425. "System.Threading/4.3.0": {
  11426. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  11427. "type": "package",
  11428. "path": "system.threading/4.3.0",
  11429. "files": [
  11430. ".nupkg.metadata",
  11431. "ThirdPartyNotices.txt",
  11432. "dotnet_library_license.txt",
  11433. "lib/MonoAndroid10/_._",
  11434. "lib/MonoTouch10/_._",
  11435. "lib/net45/_._",
  11436. "lib/netcore50/System.Threading.dll",
  11437. "lib/netstandard1.3/System.Threading.dll",
  11438. "lib/portable-net45+win8+wp8+wpa81/_._",
  11439. "lib/win8/_._",
  11440. "lib/wp80/_._",
  11441. "lib/wpa81/_._",
  11442. "lib/xamarinios10/_._",
  11443. "lib/xamarinmac20/_._",
  11444. "lib/xamarintvos10/_._",
  11445. "lib/xamarinwatchos10/_._",
  11446. "ref/MonoAndroid10/_._",
  11447. "ref/MonoTouch10/_._",
  11448. "ref/net45/_._",
  11449. "ref/netcore50/System.Threading.dll",
  11450. "ref/netcore50/System.Threading.xml",
  11451. "ref/netcore50/de/System.Threading.xml",
  11452. "ref/netcore50/es/System.Threading.xml",
  11453. "ref/netcore50/fr/System.Threading.xml",
  11454. "ref/netcore50/it/System.Threading.xml",
  11455. "ref/netcore50/ja/System.Threading.xml",
  11456. "ref/netcore50/ko/System.Threading.xml",
  11457. "ref/netcore50/ru/System.Threading.xml",
  11458. "ref/netcore50/zh-hans/System.Threading.xml",
  11459. "ref/netcore50/zh-hant/System.Threading.xml",
  11460. "ref/netstandard1.0/System.Threading.dll",
  11461. "ref/netstandard1.0/System.Threading.xml",
  11462. "ref/netstandard1.0/de/System.Threading.xml",
  11463. "ref/netstandard1.0/es/System.Threading.xml",
  11464. "ref/netstandard1.0/fr/System.Threading.xml",
  11465. "ref/netstandard1.0/it/System.Threading.xml",
  11466. "ref/netstandard1.0/ja/System.Threading.xml",
  11467. "ref/netstandard1.0/ko/System.Threading.xml",
  11468. "ref/netstandard1.0/ru/System.Threading.xml",
  11469. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  11470. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  11471. "ref/netstandard1.3/System.Threading.dll",
  11472. "ref/netstandard1.3/System.Threading.xml",
  11473. "ref/netstandard1.3/de/System.Threading.xml",
  11474. "ref/netstandard1.3/es/System.Threading.xml",
  11475. "ref/netstandard1.3/fr/System.Threading.xml",
  11476. "ref/netstandard1.3/it/System.Threading.xml",
  11477. "ref/netstandard1.3/ja/System.Threading.xml",
  11478. "ref/netstandard1.3/ko/System.Threading.xml",
  11479. "ref/netstandard1.3/ru/System.Threading.xml",
  11480. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  11481. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  11482. "ref/portable-net45+win8+wp8+wpa81/_._",
  11483. "ref/win8/_._",
  11484. "ref/wp80/_._",
  11485. "ref/wpa81/_._",
  11486. "ref/xamarinios10/_._",
  11487. "ref/xamarinmac20/_._",
  11488. "ref/xamarintvos10/_._",
  11489. "ref/xamarinwatchos10/_._",
  11490. "runtimes/aot/lib/netcore50/System.Threading.dll",
  11491. "system.threading.4.3.0.nupkg.sha512",
  11492. "system.threading.nuspec"
  11493. ]
  11494. },
  11495. "System.Threading.Channels/4.5.0": {
  11496. "sha512": "MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==",
  11497. "type": "package",
  11498. "path": "system.threading.channels/4.5.0",
  11499. "files": [
  11500. ".nupkg.metadata",
  11501. ".signature.p7s",
  11502. "LICENSE.TXT",
  11503. "THIRD-PARTY-NOTICES.TXT",
  11504. "lib/netcoreapp2.1/System.Threading.Channels.dll",
  11505. "lib/netcoreapp2.1/System.Threading.Channels.xml",
  11506. "lib/netstandard1.3/System.Threading.Channels.dll",
  11507. "lib/netstandard1.3/System.Threading.Channels.xml",
  11508. "lib/netstandard2.0/System.Threading.Channels.dll",
  11509. "lib/netstandard2.0/System.Threading.Channels.xml",
  11510. "system.threading.channels.4.5.0.nupkg.sha512",
  11511. "system.threading.channels.nuspec",
  11512. "useSharedDesignerContext.txt",
  11513. "version.txt"
  11514. ]
  11515. },
  11516. "System.Threading.Tasks/4.3.0": {
  11517. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  11518. "type": "package",
  11519. "path": "system.threading.tasks/4.3.0",
  11520. "files": [
  11521. ".nupkg.metadata",
  11522. "ThirdPartyNotices.txt",
  11523. "dotnet_library_license.txt",
  11524. "lib/MonoAndroid10/_._",
  11525. "lib/MonoTouch10/_._",
  11526. "lib/net45/_._",
  11527. "lib/portable-net45+win8+wp8+wpa81/_._",
  11528. "lib/win8/_._",
  11529. "lib/wp80/_._",
  11530. "lib/wpa81/_._",
  11531. "lib/xamarinios10/_._",
  11532. "lib/xamarinmac20/_._",
  11533. "lib/xamarintvos10/_._",
  11534. "lib/xamarinwatchos10/_._",
  11535. "ref/MonoAndroid10/_._",
  11536. "ref/MonoTouch10/_._",
  11537. "ref/net45/_._",
  11538. "ref/netcore50/System.Threading.Tasks.dll",
  11539. "ref/netcore50/System.Threading.Tasks.xml",
  11540. "ref/netcore50/de/System.Threading.Tasks.xml",
  11541. "ref/netcore50/es/System.Threading.Tasks.xml",
  11542. "ref/netcore50/fr/System.Threading.Tasks.xml",
  11543. "ref/netcore50/it/System.Threading.Tasks.xml",
  11544. "ref/netcore50/ja/System.Threading.Tasks.xml",
  11545. "ref/netcore50/ko/System.Threading.Tasks.xml",
  11546. "ref/netcore50/ru/System.Threading.Tasks.xml",
  11547. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  11548. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  11549. "ref/netstandard1.0/System.Threading.Tasks.dll",
  11550. "ref/netstandard1.0/System.Threading.Tasks.xml",
  11551. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  11552. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  11553. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  11554. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  11555. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  11556. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  11557. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  11558. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  11559. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  11560. "ref/netstandard1.3/System.Threading.Tasks.dll",
  11561. "ref/netstandard1.3/System.Threading.Tasks.xml",
  11562. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  11563. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  11564. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  11565. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  11566. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  11567. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  11568. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  11569. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  11570. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  11571. "ref/portable-net45+win8+wp8+wpa81/_._",
  11572. "ref/win8/_._",
  11573. "ref/wp80/_._",
  11574. "ref/wpa81/_._",
  11575. "ref/xamarinios10/_._",
  11576. "ref/xamarinmac20/_._",
  11577. "ref/xamarintvos10/_._",
  11578. "ref/xamarinwatchos10/_._",
  11579. "system.threading.tasks.4.3.0.nupkg.sha512",
  11580. "system.threading.tasks.nuspec"
  11581. ]
  11582. },
  11583. "System.Threading.Tasks.Extensions/4.5.1": {
  11584. "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==",
  11585. "type": "package",
  11586. "path": "system.threading.tasks.extensions/4.5.1",
  11587. "files": [
  11588. ".nupkg.metadata",
  11589. ".signature.p7s",
  11590. "LICENSE.TXT",
  11591. "THIRD-PARTY-NOTICES.TXT",
  11592. "lib/MonoAndroid10/_._",
  11593. "lib/MonoTouch10/_._",
  11594. "lib/netcoreapp2.1/_._",
  11595. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  11596. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  11597. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  11598. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  11599. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  11600. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  11601. "lib/xamarinios10/_._",
  11602. "lib/xamarinmac20/_._",
  11603. "lib/xamarintvos10/_._",
  11604. "lib/xamarinwatchos10/_._",
  11605. "ref/MonoAndroid10/_._",
  11606. "ref/MonoTouch10/_._",
  11607. "ref/netcoreapp2.1/_._",
  11608. "ref/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  11609. "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  11610. "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  11611. "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  11612. "ref/xamarinios10/_._",
  11613. "ref/xamarinmac20/_._",
  11614. "ref/xamarintvos10/_._",
  11615. "ref/xamarinwatchos10/_._",
  11616. "system.threading.tasks.extensions.4.5.1.nupkg.sha512",
  11617. "system.threading.tasks.extensions.nuspec",
  11618. "useSharedDesignerContext.txt",
  11619. "version.txt"
  11620. ]
  11621. },
  11622. "System.Threading.Tasks.Parallel/4.3.0": {
  11623. "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
  11624. "type": "package",
  11625. "path": "system.threading.tasks.parallel/4.3.0",
  11626. "files": [
  11627. ".nupkg.metadata",
  11628. "ThirdPartyNotices.txt",
  11629. "dotnet_library_license.txt",
  11630. "lib/MonoAndroid10/_._",
  11631. "lib/MonoTouch10/_._",
  11632. "lib/net45/_._",
  11633. "lib/netcore50/System.Threading.Tasks.Parallel.dll",
  11634. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll",
  11635. "lib/portable-net45+win8+wpa81/_._",
  11636. "lib/win8/_._",
  11637. "lib/wpa81/_._",
  11638. "lib/xamarinios10/_._",
  11639. "lib/xamarinmac20/_._",
  11640. "lib/xamarintvos10/_._",
  11641. "lib/xamarinwatchos10/_._",
  11642. "ref/MonoAndroid10/_._",
  11643. "ref/MonoTouch10/_._",
  11644. "ref/net45/_._",
  11645. "ref/netcore50/System.Threading.Tasks.Parallel.dll",
  11646. "ref/netcore50/System.Threading.Tasks.Parallel.xml",
  11647. "ref/netcore50/de/System.Threading.Tasks.Parallel.xml",
  11648. "ref/netcore50/es/System.Threading.Tasks.Parallel.xml",
  11649. "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml",
  11650. "ref/netcore50/it/System.Threading.Tasks.Parallel.xml",
  11651. "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml",
  11652. "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml",
  11653. "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml",
  11654. "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml",
  11655. "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml",
  11656. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll",
  11657. "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml",
  11658. "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml",
  11659. "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml",
  11660. "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml",
  11661. "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml",
  11662. "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml",
  11663. "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml",
  11664. "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml",
  11665. "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml",
  11666. "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml",
  11667. "ref/portable-net45+win8+wpa81/_._",
  11668. "ref/win8/_._",
  11669. "ref/wpa81/_._",
  11670. "ref/xamarinios10/_._",
  11671. "ref/xamarinmac20/_._",
  11672. "ref/xamarintvos10/_._",
  11673. "ref/xamarinwatchos10/_._",
  11674. "system.threading.tasks.parallel.4.3.0.nupkg.sha512",
  11675. "system.threading.tasks.parallel.nuspec"
  11676. ]
  11677. },
  11678. "System.Threading.Thread/4.3.0": {
  11679. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  11680. "type": "package",
  11681. "path": "system.threading.thread/4.3.0",
  11682. "files": [
  11683. ".nupkg.metadata",
  11684. "ThirdPartyNotices.txt",
  11685. "dotnet_library_license.txt",
  11686. "lib/MonoAndroid10/_._",
  11687. "lib/MonoTouch10/_._",
  11688. "lib/net46/System.Threading.Thread.dll",
  11689. "lib/netcore50/_._",
  11690. "lib/netstandard1.3/System.Threading.Thread.dll",
  11691. "lib/xamarinios10/_._",
  11692. "lib/xamarinmac20/_._",
  11693. "lib/xamarintvos10/_._",
  11694. "lib/xamarinwatchos10/_._",
  11695. "ref/MonoAndroid10/_._",
  11696. "ref/MonoTouch10/_._",
  11697. "ref/net46/System.Threading.Thread.dll",
  11698. "ref/netstandard1.3/System.Threading.Thread.dll",
  11699. "ref/netstandard1.3/System.Threading.Thread.xml",
  11700. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  11701. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  11702. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  11703. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  11704. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  11705. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  11706. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  11707. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  11708. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  11709. "ref/xamarinios10/_._",
  11710. "ref/xamarinmac20/_._",
  11711. "ref/xamarintvos10/_._",
  11712. "ref/xamarinwatchos10/_._",
  11713. "system.threading.thread.4.3.0.nupkg.sha512",
  11714. "system.threading.thread.nuspec"
  11715. ]
  11716. },
  11717. "System.ValueTuple/4.5.0": {
  11718. "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==",
  11719. "type": "package",
  11720. "path": "system.valuetuple/4.5.0",
  11721. "files": [
  11722. ".nupkg.metadata",
  11723. ".signature.p7s",
  11724. "LICENSE.TXT",
  11725. "THIRD-PARTY-NOTICES.TXT",
  11726. "lib/MonoAndroid10/_._",
  11727. "lib/MonoTouch10/_._",
  11728. "lib/net461/System.ValueTuple.dll",
  11729. "lib/net461/System.ValueTuple.xml",
  11730. "lib/net47/System.ValueTuple.dll",
  11731. "lib/net47/System.ValueTuple.xml",
  11732. "lib/netcoreapp2.0/_._",
  11733. "lib/netstandard1.0/System.ValueTuple.dll",
  11734. "lib/netstandard1.0/System.ValueTuple.xml",
  11735. "lib/netstandard2.0/_._",
  11736. "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
  11737. "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml",
  11738. "lib/uap10.0.16299/_._",
  11739. "lib/xamarinios10/_._",
  11740. "lib/xamarinmac20/_._",
  11741. "lib/xamarintvos10/_._",
  11742. "lib/xamarinwatchos10/_._",
  11743. "ref/MonoAndroid10/_._",
  11744. "ref/MonoTouch10/_._",
  11745. "ref/net461/System.ValueTuple.dll",
  11746. "ref/net47/System.ValueTuple.dll",
  11747. "ref/netcoreapp2.0/_._",
  11748. "ref/netstandard2.0/_._",
  11749. "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
  11750. "ref/uap10.0.16299/_._",
  11751. "ref/xamarinios10/_._",
  11752. "ref/xamarinmac20/_._",
  11753. "ref/xamarintvos10/_._",
  11754. "ref/xamarinwatchos10/_._",
  11755. "system.valuetuple.4.5.0.nupkg.sha512",
  11756. "system.valuetuple.nuspec",
  11757. "useSharedDesignerContext.txt",
  11758. "version.txt"
  11759. ]
  11760. },
  11761. "System.Xml.ReaderWriter/4.3.0": {
  11762. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  11763. "type": "package",
  11764. "path": "system.xml.readerwriter/4.3.0",
  11765. "files": [
  11766. ".nupkg.metadata",
  11767. "ThirdPartyNotices.txt",
  11768. "dotnet_library_license.txt",
  11769. "lib/MonoAndroid10/_._",
  11770. "lib/MonoTouch10/_._",
  11771. "lib/net45/_._",
  11772. "lib/net46/System.Xml.ReaderWriter.dll",
  11773. "lib/netcore50/System.Xml.ReaderWriter.dll",
  11774. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  11775. "lib/portable-net45+win8+wp8+wpa81/_._",
  11776. "lib/win8/_._",
  11777. "lib/wp80/_._",
  11778. "lib/wpa81/_._",
  11779. "lib/xamarinios10/_._",
  11780. "lib/xamarinmac20/_._",
  11781. "lib/xamarintvos10/_._",
  11782. "lib/xamarinwatchos10/_._",
  11783. "ref/MonoAndroid10/_._",
  11784. "ref/MonoTouch10/_._",
  11785. "ref/net45/_._",
  11786. "ref/net46/System.Xml.ReaderWriter.dll",
  11787. "ref/netcore50/System.Xml.ReaderWriter.dll",
  11788. "ref/netcore50/System.Xml.ReaderWriter.xml",
  11789. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  11790. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  11791. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  11792. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  11793. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  11794. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  11795. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  11796. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  11797. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  11798. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  11799. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  11800. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  11801. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  11802. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  11803. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  11804. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  11805. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  11806. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  11807. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  11808. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  11809. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  11810. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  11811. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  11812. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  11813. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  11814. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  11815. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  11816. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  11817. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  11818. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  11819. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  11820. "ref/portable-net45+win8+wp8+wpa81/_._",
  11821. "ref/win8/_._",
  11822. "ref/wp80/_._",
  11823. "ref/wpa81/_._",
  11824. "ref/xamarinios10/_._",
  11825. "ref/xamarinmac20/_._",
  11826. "ref/xamarintvos10/_._",
  11827. "ref/xamarinwatchos10/_._",
  11828. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  11829. "system.xml.readerwriter.nuspec"
  11830. ]
  11831. },
  11832. "System.Xml.XDocument/4.3.0": {
  11833. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  11834. "type": "package",
  11835. "path": "system.xml.xdocument/4.3.0",
  11836. "files": [
  11837. ".nupkg.metadata",
  11838. "ThirdPartyNotices.txt",
  11839. "dotnet_library_license.txt",
  11840. "lib/MonoAndroid10/_._",
  11841. "lib/MonoTouch10/_._",
  11842. "lib/net45/_._",
  11843. "lib/netcore50/System.Xml.XDocument.dll",
  11844. "lib/netstandard1.3/System.Xml.XDocument.dll",
  11845. "lib/portable-net45+win8+wp8+wpa81/_._",
  11846. "lib/win8/_._",
  11847. "lib/wp80/_._",
  11848. "lib/wpa81/_._",
  11849. "lib/xamarinios10/_._",
  11850. "lib/xamarinmac20/_._",
  11851. "lib/xamarintvos10/_._",
  11852. "lib/xamarinwatchos10/_._",
  11853. "ref/MonoAndroid10/_._",
  11854. "ref/MonoTouch10/_._",
  11855. "ref/net45/_._",
  11856. "ref/netcore50/System.Xml.XDocument.dll",
  11857. "ref/netcore50/System.Xml.XDocument.xml",
  11858. "ref/netcore50/de/System.Xml.XDocument.xml",
  11859. "ref/netcore50/es/System.Xml.XDocument.xml",
  11860. "ref/netcore50/fr/System.Xml.XDocument.xml",
  11861. "ref/netcore50/it/System.Xml.XDocument.xml",
  11862. "ref/netcore50/ja/System.Xml.XDocument.xml",
  11863. "ref/netcore50/ko/System.Xml.XDocument.xml",
  11864. "ref/netcore50/ru/System.Xml.XDocument.xml",
  11865. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  11866. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  11867. "ref/netstandard1.0/System.Xml.XDocument.dll",
  11868. "ref/netstandard1.0/System.Xml.XDocument.xml",
  11869. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  11870. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  11871. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  11872. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  11873. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  11874. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  11875. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  11876. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  11877. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  11878. "ref/netstandard1.3/System.Xml.XDocument.dll",
  11879. "ref/netstandard1.3/System.Xml.XDocument.xml",
  11880. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  11881. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  11882. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  11883. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  11884. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  11885. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  11886. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  11887. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  11888. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  11889. "ref/portable-net45+win8+wp8+wpa81/_._",
  11890. "ref/win8/_._",
  11891. "ref/wp80/_._",
  11892. "ref/wpa81/_._",
  11893. "ref/xamarinios10/_._",
  11894. "ref/xamarinmac20/_._",
  11895. "ref/xamarintvos10/_._",
  11896. "ref/xamarinwatchos10/_._",
  11897. "system.xml.xdocument.4.3.0.nupkg.sha512",
  11898. "system.xml.xdocument.nuspec"
  11899. ]
  11900. },
  11901. "System.Xml.XmlDocument/4.3.0": {
  11902. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  11903. "type": "package",
  11904. "path": "system.xml.xmldocument/4.3.0",
  11905. "files": [
  11906. ".nupkg.metadata",
  11907. "ThirdPartyNotices.txt",
  11908. "dotnet_library_license.txt",
  11909. "lib/MonoAndroid10/_._",
  11910. "lib/MonoTouch10/_._",
  11911. "lib/net46/System.Xml.XmlDocument.dll",
  11912. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  11913. "lib/xamarinios10/_._",
  11914. "lib/xamarinmac20/_._",
  11915. "lib/xamarintvos10/_._",
  11916. "lib/xamarinwatchos10/_._",
  11917. "ref/MonoAndroid10/_._",
  11918. "ref/MonoTouch10/_._",
  11919. "ref/net46/System.Xml.XmlDocument.dll",
  11920. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  11921. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  11922. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  11923. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  11924. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  11925. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  11926. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  11927. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  11928. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  11929. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  11930. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  11931. "ref/xamarinios10/_._",
  11932. "ref/xamarinmac20/_._",
  11933. "ref/xamarintvos10/_._",
  11934. "ref/xamarinwatchos10/_._",
  11935. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  11936. "system.xml.xmldocument.nuspec"
  11937. ]
  11938. },
  11939. "System.Xml.XmlSerializer/4.3.0": {
  11940. "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
  11941. "type": "package",
  11942. "path": "system.xml.xmlserializer/4.3.0",
  11943. "files": [
  11944. ".nupkg.metadata",
  11945. "ThirdPartyNotices.txt",
  11946. "dotnet_library_license.txt",
  11947. "lib/MonoAndroid10/_._",
  11948. "lib/MonoTouch10/_._",
  11949. "lib/net45/_._",
  11950. "lib/netcore50/System.Xml.XmlSerializer.dll",
  11951. "lib/netstandard1.3/System.Xml.XmlSerializer.dll",
  11952. "lib/portable-net45+win8+wp8+wpa81/_._",
  11953. "lib/win8/_._",
  11954. "lib/wp80/_._",
  11955. "lib/wpa81/_._",
  11956. "lib/xamarinios10/_._",
  11957. "lib/xamarinmac20/_._",
  11958. "lib/xamarintvos10/_._",
  11959. "lib/xamarinwatchos10/_._",
  11960. "ref/MonoAndroid10/_._",
  11961. "ref/MonoTouch10/_._",
  11962. "ref/net45/_._",
  11963. "ref/netcore50/System.Xml.XmlSerializer.dll",
  11964. "ref/netcore50/System.Xml.XmlSerializer.xml",
  11965. "ref/netcore50/de/System.Xml.XmlSerializer.xml",
  11966. "ref/netcore50/es/System.Xml.XmlSerializer.xml",
  11967. "ref/netcore50/fr/System.Xml.XmlSerializer.xml",
  11968. "ref/netcore50/it/System.Xml.XmlSerializer.xml",
  11969. "ref/netcore50/ja/System.Xml.XmlSerializer.xml",
  11970. "ref/netcore50/ko/System.Xml.XmlSerializer.xml",
  11971. "ref/netcore50/ru/System.Xml.XmlSerializer.xml",
  11972. "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml",
  11973. "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml",
  11974. "ref/netstandard1.0/System.Xml.XmlSerializer.dll",
  11975. "ref/netstandard1.0/System.Xml.XmlSerializer.xml",
  11976. "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml",
  11977. "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml",
  11978. "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml",
  11979. "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml",
  11980. "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml",
  11981. "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml",
  11982. "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml",
  11983. "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml",
  11984. "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml",
  11985. "ref/netstandard1.3/System.Xml.XmlSerializer.dll",
  11986. "ref/netstandard1.3/System.Xml.XmlSerializer.xml",
  11987. "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml",
  11988. "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml",
  11989. "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml",
  11990. "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml",
  11991. "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml",
  11992. "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml",
  11993. "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml",
  11994. "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml",
  11995. "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml",
  11996. "ref/portable-net45+win8+wp8+wpa81/_._",
  11997. "ref/win8/_._",
  11998. "ref/wp80/_._",
  11999. "ref/wpa81/_._",
  12000. "ref/xamarinios10/_._",
  12001. "ref/xamarinmac20/_._",
  12002. "ref/xamarintvos10/_._",
  12003. "ref/xamarinwatchos10/_._",
  12004. "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll",
  12005. "system.xml.xmlserializer.4.3.0.nupkg.sha512",
  12006. "system.xml.xmlserializer.nuspec"
  12007. ]
  12008. },
  12009. "System.Xml.XPath/4.3.0": {
  12010. "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
  12011. "type": "package",
  12012. "path": "system.xml.xpath/4.3.0",
  12013. "files": [
  12014. ".nupkg.metadata",
  12015. "ThirdPartyNotices.txt",
  12016. "dotnet_library_license.txt",
  12017. "lib/MonoAndroid10/_._",
  12018. "lib/MonoTouch10/_._",
  12019. "lib/net46/System.Xml.XPath.dll",
  12020. "lib/netstandard1.3/System.Xml.XPath.dll",
  12021. "lib/xamarinios10/_._",
  12022. "lib/xamarinmac20/_._",
  12023. "lib/xamarintvos10/_._",
  12024. "lib/xamarinwatchos10/_._",
  12025. "ref/MonoAndroid10/_._",
  12026. "ref/MonoTouch10/_._",
  12027. "ref/net46/System.Xml.XPath.dll",
  12028. "ref/netstandard1.3/System.Xml.XPath.dll",
  12029. "ref/netstandard1.3/System.Xml.XPath.xml",
  12030. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  12031. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  12032. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  12033. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  12034. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  12035. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  12036. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  12037. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  12038. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  12039. "ref/xamarinios10/_._",
  12040. "ref/xamarinmac20/_._",
  12041. "ref/xamarintvos10/_._",
  12042. "ref/xamarinwatchos10/_._",
  12043. "system.xml.xpath.4.3.0.nupkg.sha512",
  12044. "system.xml.xpath.nuspec"
  12045. ]
  12046. },
  12047. "System.Xml.XPath.XDocument/4.3.0": {
  12048. "sha512": "jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==",
  12049. "type": "package",
  12050. "path": "system.xml.xpath.xdocument/4.3.0",
  12051. "files": [
  12052. ".nupkg.metadata",
  12053. "ThirdPartyNotices.txt",
  12054. "dotnet_library_license.txt",
  12055. "lib/MonoAndroid10/_._",
  12056. "lib/MonoTouch10/_._",
  12057. "lib/net46/System.Xml.XPath.XDocument.dll",
  12058. "lib/netstandard1.3/System.Xml.XPath.XDocument.dll",
  12059. "lib/xamarinios10/_._",
  12060. "lib/xamarinmac20/_._",
  12061. "lib/xamarintvos10/_._",
  12062. "lib/xamarinwatchos10/_._",
  12063. "ref/MonoAndroid10/_._",
  12064. "ref/MonoTouch10/_._",
  12065. "ref/net46/System.Xml.XPath.XDocument.dll",
  12066. "ref/netstandard1.3/System.Xml.XPath.XDocument.dll",
  12067. "ref/netstandard1.3/System.Xml.XPath.XDocument.xml",
  12068. "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml",
  12069. "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml",
  12070. "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml",
  12071. "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml",
  12072. "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml",
  12073. "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml",
  12074. "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml",
  12075. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml",
  12076. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml",
  12077. "ref/xamarinios10/_._",
  12078. "ref/xamarinmac20/_._",
  12079. "ref/xamarintvos10/_._",
  12080. "ref/xamarinwatchos10/_._",
  12081. "system.xml.xpath.xdocument.4.3.0.nupkg.sha512",
  12082. "system.xml.xpath.xdocument.nuspec"
  12083. ]
  12084. }
  12085. },
  12086. "projectFileDependencyGroups": {
  12087. ".NETCoreApp,Version=v2.1": [
  12088. "CSRedisCore >= 3.1.5",
  12089. "Microsoft.AspNetCore.App >= 2.1.1",
  12090. "Microsoft.AspNetCore.Razor.Design >= 2.1.2",
  12091. "Microsoft.NETCore.App >= 2.1.0",
  12092. "StackExchange.Redis >= 2.0.601"
  12093. ]
  12094. },
  12095. "packageFolders": {
  12096. "C:\\Users\\Administrator\\.nuget\\packages\\": {},
  12097. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
  12098. },
  12099. "project": {
  12100. "version": "1.0.0",
  12101. "restore": {
  12102. "projectUniqueName": "E:\\dome\\会员1\\Member\\CSCoreRedis\\CSCoreRedis.csproj",
  12103. "projectName": "CSCoreRedis",
  12104. "projectPath": "E:\\dome\\会员1\\Member\\CSCoreRedis\\CSCoreRedis.csproj",
  12105. "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",
  12106. "outputPath": "E:\\dome\\会员1\\Member\\CSCoreRedis\\obj\\",
  12107. "projectStyle": "PackageReference",
  12108. "fallbackFolders": [
  12109. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
  12110. ],
  12111. "configFilePaths": [
  12112. "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",
  12113. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  12114. ],
  12115. "originalTargetFrameworks": [
  12116. "netcoreapp2.1"
  12117. ],
  12118. "sources": {
  12119. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  12120. "https://api.nuget.org/v3/index.json": {}
  12121. },
  12122. "frameworks": {
  12123. "netcoreapp2.1": {
  12124. "projectReferences": {}
  12125. }
  12126. },
  12127. "warningProperties": {
  12128. "warnAsError": [
  12129. "NU1605"
  12130. ]
  12131. }
  12132. },
  12133. "frameworks": {
  12134. "netcoreapp2.1": {
  12135. "dependencies": {
  12136. "CSRedisCore": {
  12137. "target": "Package",
  12138. "version": "[3.1.5, )"
  12139. },
  12140. "Microsoft.AspNetCore.App": {
  12141. "suppressParent": "All",
  12142. "target": "Package",
  12143. "version": "[2.1.1, )",
  12144. "autoReferenced": true
  12145. },
  12146. "Microsoft.AspNetCore.Razor.Design": {
  12147. "suppressParent": "All",
  12148. "target": "Package",
  12149. "version": "[2.1.2, )"
  12150. },
  12151. "Microsoft.NETCore.App": {
  12152. "target": "Package",
  12153. "version": "[2.1.0, )",
  12154. "autoReferenced": true
  12155. },
  12156. "StackExchange.Redis": {
  12157. "target": "Package",
  12158. "version": "[2.0.601, )"
  12159. }
  12160. },
  12161. "imports": [
  12162. "net461"
  12163. ],
  12164. "assetTargetFallback": true,
  12165. "warn": true
  12166. }
  12167. }
  12168. }
  12169. }