project.assets.json 350 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETFramework,Version=v4.8": {
  5. "Microsoft.AspNetCore/2.1.7": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.AspNetCore.Diagnostics": "2.1.1",
  9. "Microsoft.AspNetCore.HostFiltering": "2.1.1",
  10. "Microsoft.AspNetCore.Hosting": "2.1.1",
  11. "Microsoft.AspNetCore.Routing": "2.1.1",
  12. "Microsoft.AspNetCore.Server.IISIntegration": "2.1.7",
  13. "Microsoft.AspNetCore.Server.Kestrel": "2.1.3",
  14. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.1.3",
  15. "Microsoft.Extensions.Configuration.CommandLine": "2.1.1",
  16. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.1.1",
  17. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  18. "Microsoft.Extensions.Configuration.Json": "2.1.1",
  19. "Microsoft.Extensions.Configuration.UserSecrets": "2.1.1",
  20. "Microsoft.Extensions.Logging": "2.1.1",
  21. "Microsoft.Extensions.Logging.Configuration": "2.1.1",
  22. "Microsoft.Extensions.Logging.Console": "2.1.1",
  23. "Microsoft.Extensions.Logging.Debug": "2.1.1"
  24. },
  25. "compile": {
  26. "lib/netstandard2.0/Microsoft.AspNetCore.dll": {
  27. "related": ".xml"
  28. }
  29. },
  30. "runtime": {
  31. "lib/netstandard2.0/Microsoft.AspNetCore.dll": {
  32. "related": ".xml"
  33. }
  34. }
  35. },
  36. "Microsoft.AspNetCore.Antiforgery/2.1.1": {
  37. "type": "package",
  38. "dependencies": {
  39. "Microsoft.AspNetCore.DataProtection": "2.1.1",
  40. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  41. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  42. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  43. "Microsoft.Extensions.ObjectPool": "2.1.1"
  44. },
  45. "compile": {
  46. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {
  47. "related": ".xml"
  48. }
  49. },
  50. "runtime": {
  51. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {
  52. "related": ".xml"
  53. }
  54. }
  55. },
  56. "Microsoft.AspNetCore.Authentication.Abstractions/2.1.1": {
  57. "type": "package",
  58. "dependencies": {
  59. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  60. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  61. "Microsoft.Extensions.Options": "2.1.1"
  62. },
  63. "compile": {
  64. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  65. "related": ".xml"
  66. }
  67. },
  68. "runtime": {
  69. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  70. "related": ".xml"
  71. }
  72. }
  73. },
  74. "Microsoft.AspNetCore.Authentication.Core/2.1.1": {
  75. "type": "package",
  76. "dependencies": {
  77. "Microsoft.AspNetCore.Authentication.Abstractions": "2.1.1",
  78. "Microsoft.AspNetCore.Http": "2.1.1",
  79. "Microsoft.AspNetCore.Http.Extensions": "2.1.1"
  80. },
  81. "compile": {
  82. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
  83. "related": ".xml"
  84. }
  85. },
  86. "runtime": {
  87. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
  88. "related": ".xml"
  89. }
  90. }
  91. },
  92. "Microsoft.AspNetCore.Authorization/2.1.1": {
  93. "type": "package",
  94. "dependencies": {
  95. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  96. "Microsoft.Extensions.Options": "2.1.1"
  97. },
  98. "compile": {
  99. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  100. "related": ".xml"
  101. }
  102. },
  103. "runtime": {
  104. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  105. "related": ".xml"
  106. }
  107. }
  108. },
  109. "Microsoft.AspNetCore.Authorization.Policy/2.1.1": {
  110. "type": "package",
  111. "dependencies": {
  112. "Microsoft.AspNetCore.Authentication.Abstractions": "2.1.1",
  113. "Microsoft.AspNetCore.Authorization": "2.1.1"
  114. },
  115. "compile": {
  116. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  117. "related": ".xml"
  118. }
  119. },
  120. "runtime": {
  121. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  122. "related": ".xml"
  123. }
  124. }
  125. },
  126. "Microsoft.AspNetCore.Connections.Abstractions/2.1.3": {
  127. "type": "package",
  128. "dependencies": {
  129. "Microsoft.AspNetCore.Http.Features": "2.1.1",
  130. "System.IO.Pipelines": "4.5.0"
  131. },
  132. "compile": {
  133. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  134. "related": ".xml"
  135. }
  136. },
  137. "runtime": {
  138. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  139. "related": ".xml"
  140. }
  141. }
  142. },
  143. "Microsoft.AspNetCore.Cors/2.1.1": {
  144. "type": "package",
  145. "dependencies": {
  146. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  147. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
  148. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  149. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  150. "Microsoft.Extensions.Options": "2.1.1"
  151. },
  152. "compile": {
  153. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {
  154. "related": ".xml"
  155. }
  156. },
  157. "runtime": {
  158. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {
  159. "related": ".xml"
  160. }
  161. }
  162. },
  163. "Microsoft.AspNetCore.Cryptography.Internal/2.1.1": {
  164. "type": "package",
  165. "compile": {
  166. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  167. "related": ".xml"
  168. }
  169. },
  170. "runtime": {
  171. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  172. "related": ".xml"
  173. }
  174. }
  175. },
  176. "Microsoft.AspNetCore.DataProtection/2.1.1": {
  177. "type": "package",
  178. "dependencies": {
  179. "Microsoft.AspNetCore.Cryptography.Internal": "2.1.1",
  180. "Microsoft.AspNetCore.DataProtection.Abstractions": "2.1.1",
  181. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  182. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  183. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  184. "Microsoft.Extensions.Options": "2.1.1",
  185. "Microsoft.Win32.Registry": "4.5.0",
  186. "System.Security.Cryptography.Xml": "4.5.0",
  187. "System.Security.Principal.Windows": "4.5.0"
  188. },
  189. "compile": {
  190. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {
  191. "related": ".xml"
  192. }
  193. },
  194. "runtime": {
  195. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {
  196. "related": ".xml"
  197. }
  198. }
  199. },
  200. "Microsoft.AspNetCore.DataProtection.Abstractions/2.1.1": {
  201. "type": "package",
  202. "compile": {
  203. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  204. "related": ".xml"
  205. }
  206. },
  207. "runtime": {
  208. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  209. "related": ".xml"
  210. }
  211. }
  212. },
  213. "Microsoft.AspNetCore.Diagnostics/2.1.1": {
  214. "type": "package",
  215. "dependencies": {
  216. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.1.1",
  217. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  218. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  219. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  220. "Microsoft.Extensions.FileProviders.Physical": "2.1.1",
  221. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  222. "Microsoft.Extensions.Options": "2.1.1",
  223. "System.Diagnostics.DiagnosticSource": "4.5.0",
  224. "System.Reflection.Metadata": "1.6.0"
  225. },
  226. "compile": {
  227. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {
  228. "related": ".xml"
  229. }
  230. },
  231. "runtime": {
  232. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {
  233. "related": ".xml"
  234. }
  235. }
  236. },
  237. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.1.1": {
  238. "type": "package",
  239. "compile": {
  240. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
  241. "related": ".xml"
  242. }
  243. },
  244. "runtime": {
  245. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
  246. "related": ".xml"
  247. }
  248. }
  249. },
  250. "Microsoft.AspNetCore.HostFiltering/2.1.1": {
  251. "type": "package",
  252. "dependencies": {
  253. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  254. "Microsoft.AspNetCore.Http": "2.1.1",
  255. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  256. "Microsoft.Extensions.Options": "2.1.1"
  257. },
  258. "compile": {
  259. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll": {
  260. "related": ".xml"
  261. }
  262. },
  263. "runtime": {
  264. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll": {
  265. "related": ".xml"
  266. }
  267. }
  268. },
  269. "Microsoft.AspNetCore.Hosting/2.1.1": {
  270. "type": "package",
  271. "dependencies": {
  272. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  273. "Microsoft.AspNetCore.Http": "2.1.1",
  274. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  275. "Microsoft.Extensions.Configuration": "2.1.1",
  276. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.1.1",
  277. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  278. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  279. "Microsoft.Extensions.FileProviders.Physical": "2.1.1",
  280. "Microsoft.Extensions.Hosting.Abstractions": "2.1.1",
  281. "Microsoft.Extensions.Logging": "2.1.1",
  282. "Microsoft.Extensions.Options": "2.1.1",
  283. "System.Diagnostics.DiagnosticSource": "4.5.0",
  284. "System.Reflection.Metadata": "1.6.0"
  285. },
  286. "compile": {
  287. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {
  288. "related": ".xml"
  289. }
  290. },
  291. "runtime": {
  292. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {
  293. "related": ".xml"
  294. }
  295. }
  296. },
  297. "Microsoft.AspNetCore.Hosting.Abstractions/2.1.1": {
  298. "type": "package",
  299. "dependencies": {
  300. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.1.1",
  301. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  302. "Microsoft.Extensions.Hosting.Abstractions": "2.1.1"
  303. },
  304. "compile": {
  305. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  306. "related": ".xml"
  307. }
  308. },
  309. "runtime": {
  310. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  311. "related": ".xml"
  312. }
  313. }
  314. },
  315. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.1": {
  316. "type": "package",
  317. "dependencies": {
  318. "Microsoft.AspNetCore.Http.Features": "2.1.1",
  319. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
  320. },
  321. "compile": {
  322. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  323. "related": ".xml"
  324. }
  325. },
  326. "runtime": {
  327. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  328. "related": ".xml"
  329. }
  330. }
  331. },
  332. "Microsoft.AspNetCore.Html.Abstractions/2.1.1": {
  333. "type": "package",
  334. "dependencies": {
  335. "System.Text.Encodings.Web": "4.5.0"
  336. },
  337. "compile": {
  338. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {
  339. "related": ".xml"
  340. }
  341. },
  342. "runtime": {
  343. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {
  344. "related": ".xml"
  345. }
  346. }
  347. },
  348. "Microsoft.AspNetCore.Http/2.1.1": {
  349. "type": "package",
  350. "dependencies": {
  351. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  352. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  353. "Microsoft.Extensions.ObjectPool": "2.1.1",
  354. "Microsoft.Extensions.Options": "2.1.1",
  355. "Microsoft.Net.Http.Headers": "2.1.1"
  356. },
  357. "compile": {
  358. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  359. "related": ".xml"
  360. }
  361. },
  362. "runtime": {
  363. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  364. "related": ".xml"
  365. }
  366. }
  367. },
  368. "Microsoft.AspNetCore.Http.Abstractions/2.1.1": {
  369. "type": "package",
  370. "dependencies": {
  371. "Microsoft.AspNetCore.Http.Features": "2.1.1",
  372. "System.Text.Encodings.Web": "4.5.0"
  373. },
  374. "compile": {
  375. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  376. "related": ".xml"
  377. }
  378. },
  379. "runtime": {
  380. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  381. "related": ".xml"
  382. }
  383. }
  384. },
  385. "Microsoft.AspNetCore.Http.Extensions/2.1.1": {
  386. "type": "package",
  387. "dependencies": {
  388. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  389. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  390. "Microsoft.Net.Http.Headers": "2.1.1",
  391. "System.Buffers": "4.5.0"
  392. },
  393. "compile": {
  394. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  395. "related": ".xml"
  396. }
  397. },
  398. "runtime": {
  399. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  400. "related": ".xml"
  401. }
  402. }
  403. },
  404. "Microsoft.AspNetCore.Http.Features/2.1.1": {
  405. "type": "package",
  406. "dependencies": {
  407. "Microsoft.Extensions.Primitives": "2.1.1"
  408. },
  409. "compile": {
  410. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  411. "related": ".xml"
  412. }
  413. },
  414. "runtime": {
  415. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  416. "related": ".xml"
  417. }
  418. }
  419. },
  420. "Microsoft.AspNetCore.HttpOverrides/2.1.1": {
  421. "type": "package",
  422. "dependencies": {
  423. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  424. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  425. "Microsoft.Extensions.Options": "2.1.1"
  426. },
  427. "compile": {
  428. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {
  429. "related": ".xml"
  430. }
  431. },
  432. "runtime": {
  433. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {
  434. "related": ".xml"
  435. }
  436. }
  437. },
  438. "Microsoft.AspNetCore.HttpsPolicy/2.1.1": {
  439. "type": "package",
  440. "dependencies": {
  441. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  442. "Microsoft.AspNetCore.Http": "2.1.1",
  443. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  444. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  445. "Microsoft.Extensions.Options": "2.1.1"
  446. },
  447. "compile": {
  448. "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll": {
  449. "related": ".xml"
  450. }
  451. },
  452. "runtime": {
  453. "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll": {
  454. "related": ".xml"
  455. }
  456. }
  457. },
  458. "Microsoft.AspNetCore.JsonPatch/2.1.1": {
  459. "type": "package",
  460. "dependencies": {
  461. "Microsoft.CSharp": "4.5.0",
  462. "Newtonsoft.Json": "11.0.2"
  463. },
  464. "compile": {
  465. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  466. "related": ".xml"
  467. }
  468. },
  469. "runtime": {
  470. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  471. "related": ".xml"
  472. }
  473. }
  474. },
  475. "Microsoft.AspNetCore.Localization/2.1.1": {
  476. "type": "package",
  477. "dependencies": {
  478. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  479. "Microsoft.Extensions.Localization.Abstractions": "2.1.1",
  480. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  481. "Microsoft.Extensions.Options": "2.1.1"
  482. },
  483. "compile": {
  484. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {
  485. "related": ".xml"
  486. }
  487. },
  488. "runtime": {
  489. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {
  490. "related": ".xml"
  491. }
  492. }
  493. },
  494. "Microsoft.AspNetCore.Mvc/2.1.3": {
  495. "type": "package",
  496. "dependencies": {
  497. "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.1.3",
  498. "Microsoft.AspNetCore.Mvc.Cors": "2.1.3",
  499. "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.1.3",
  500. "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.1.3",
  501. "Microsoft.AspNetCore.Mvc.Localization": "2.1.3",
  502. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.1.1",
  503. "Microsoft.AspNetCore.Mvc.RazorPages": "2.1.3",
  504. "Microsoft.AspNetCore.Mvc.TagHelpers": "2.1.3",
  505. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.1.3",
  506. "Microsoft.AspNetCore.Razor.Design": "2.1.1",
  507. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  508. "Microsoft.Extensions.DependencyInjection": "2.1.1"
  509. },
  510. "compile": {
  511. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {
  512. "related": ".xml"
  513. }
  514. },
  515. "runtime": {
  516. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {
  517. "related": ".xml"
  518. }
  519. }
  520. },
  521. "Microsoft.AspNetCore.Mvc.Abstractions/2.1.3": {
  522. "type": "package",
  523. "dependencies": {
  524. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1",
  525. "Microsoft.Net.Http.Headers": "2.1.1"
  526. },
  527. "compile": {
  528. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
  529. "related": ".xml"
  530. }
  531. },
  532. "runtime": {
  533. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
  534. "related": ".xml"
  535. }
  536. }
  537. },
  538. "Microsoft.AspNetCore.Mvc.ApiExplorer/2.1.3": {
  539. "type": "package",
  540. "dependencies": {
  541. "Microsoft.AspNetCore.Mvc.Core": "2.1.3"
  542. },
  543. "compile": {
  544. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {
  545. "related": ".xml"
  546. }
  547. },
  548. "runtime": {
  549. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {
  550. "related": ".xml"
  551. }
  552. }
  553. },
  554. "Microsoft.AspNetCore.Mvc.Core/2.1.3": {
  555. "type": "package",
  556. "dependencies": {
  557. "Microsoft.AspNetCore.Authentication.Core": "2.1.1",
  558. "Microsoft.AspNetCore.Authorization.Policy": "2.1.1",
  559. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  560. "Microsoft.AspNetCore.Http": "2.1.1",
  561. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  562. "Microsoft.AspNetCore.Mvc.Abstractions": "2.1.3",
  563. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.1.1",
  564. "Microsoft.AspNetCore.Routing": "2.1.1",
  565. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  566. "Microsoft.Extensions.DependencyModel": "2.1.0",
  567. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  568. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  569. "System.Diagnostics.DiagnosticSource": "4.5.1",
  570. "System.Threading.Tasks.Extensions": "4.5.1"
  571. },
  572. "compile": {
  573. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
  574. "related": ".xml"
  575. }
  576. },
  577. "runtime": {
  578. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
  579. "related": ".xml"
  580. }
  581. }
  582. },
  583. "Microsoft.AspNetCore.Mvc.Cors/2.1.3": {
  584. "type": "package",
  585. "dependencies": {
  586. "Microsoft.AspNetCore.Cors": "2.1.1",
  587. "Microsoft.AspNetCore.Mvc.Core": "2.1.3"
  588. },
  589. "compile": {
  590. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {
  591. "related": ".xml"
  592. }
  593. },
  594. "runtime": {
  595. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {
  596. "related": ".xml"
  597. }
  598. }
  599. },
  600. "Microsoft.AspNetCore.Mvc.DataAnnotations/2.1.3": {
  601. "type": "package",
  602. "dependencies": {
  603. "Microsoft.AspNetCore.Mvc.Core": "2.1.3",
  604. "Microsoft.Extensions.Localization": "2.1.1",
  605. "System.ComponentModel.Annotations": "4.5.0"
  606. },
  607. "compile": {
  608. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
  609. "related": ".xml"
  610. }
  611. },
  612. "runtime": {
  613. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
  614. "related": ".xml"
  615. }
  616. }
  617. },
  618. "Microsoft.AspNetCore.Mvc.Formatters.Json/2.1.3": {
  619. "type": "package",
  620. "dependencies": {
  621. "Microsoft.AspNetCore.JsonPatch": "2.1.1",
  622. "Microsoft.AspNetCore.Mvc.Core": "2.1.3"
  623. },
  624. "compile": {
  625. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
  626. "related": ".xml"
  627. }
  628. },
  629. "runtime": {
  630. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
  631. "related": ".xml"
  632. }
  633. }
  634. },
  635. "Microsoft.AspNetCore.Mvc.Localization/2.1.3": {
  636. "type": "package",
  637. "dependencies": {
  638. "Microsoft.AspNetCore.Localization": "2.1.1",
  639. "Microsoft.AspNetCore.Mvc.Razor": "2.1.3",
  640. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  641. "Microsoft.Extensions.Localization": "2.1.1"
  642. },
  643. "compile": {
  644. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {
  645. "related": ".xml"
  646. }
  647. },
  648. "runtime": {
  649. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {
  650. "related": ".xml"
  651. }
  652. }
  653. },
  654. "Microsoft.AspNetCore.Mvc.Razor/2.1.3": {
  655. "type": "package",
  656. "dependencies": {
  657. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.1.1",
  658. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.1.3",
  659. "Microsoft.AspNetCore.Razor.Runtime": "2.1.1",
  660. "Microsoft.CodeAnalysis.CSharp": "2.8.0",
  661. "Microsoft.CodeAnalysis.Razor": "2.1.1",
  662. "Microsoft.DiaSymReader.Native": "1.7.0",
  663. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  664. "Microsoft.Extensions.FileProviders.Composite": "2.1.1"
  665. },
  666. "compile": {
  667. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {
  668. "related": ".xml"
  669. }
  670. },
  671. "runtime": {
  672. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {
  673. "related": ".xml"
  674. }
  675. }
  676. },
  677. "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.1.1": {
  678. "type": "package",
  679. "dependencies": {
  680. "Microsoft.AspNetCore.Razor.Language": "2.1.1",
  681. "Microsoft.CodeAnalysis.Razor": "2.1.1"
  682. },
  683. "compile": {
  684. "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
  685. "related": ".xml"
  686. }
  687. },
  688. "runtime": {
  689. "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
  690. "related": ".xml"
  691. }
  692. },
  693. "build": {
  694. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.props": {},
  695. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.targets": {}
  696. }
  697. },
  698. "Microsoft.AspNetCore.Mvc.RazorPages/2.1.3": {
  699. "type": "package",
  700. "dependencies": {
  701. "Microsoft.AspNetCore.Mvc.Razor": "2.1.3"
  702. },
  703. "compile": {
  704. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {
  705. "related": ".xml"
  706. }
  707. },
  708. "runtime": {
  709. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {
  710. "related": ".xml"
  711. }
  712. }
  713. },
  714. "Microsoft.AspNetCore.Mvc.TagHelpers/2.1.3": {
  715. "type": "package",
  716. "dependencies": {
  717. "Microsoft.AspNetCore.Mvc.Razor": "2.1.3",
  718. "Microsoft.AspNetCore.Razor.Runtime": "2.1.1",
  719. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1",
  720. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  721. "Microsoft.Extensions.FileSystemGlobbing": "2.1.1",
  722. "Microsoft.Extensions.Primitives": "2.1.1"
  723. },
  724. "compile": {
  725. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
  726. "related": ".xml"
  727. }
  728. },
  729. "runtime": {
  730. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
  731. "related": ".xml"
  732. }
  733. }
  734. },
  735. "Microsoft.AspNetCore.Mvc.ViewFeatures/2.1.3": {
  736. "type": "package",
  737. "dependencies": {
  738. "Microsoft.AspNetCore.Antiforgery": "2.1.1",
  739. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.1.1",
  740. "Microsoft.AspNetCore.Html.Abstractions": "2.1.1",
  741. "Microsoft.AspNetCore.Mvc.Core": "2.1.3",
  742. "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.1.3",
  743. "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.1.3",
  744. "Microsoft.Extensions.WebEncoders": "2.1.1",
  745. "Newtonsoft.Json.Bson": "1.0.1"
  746. },
  747. "compile": {
  748. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
  749. "related": ".xml"
  750. }
  751. },
  752. "runtime": {
  753. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
  754. "related": ".xml"
  755. }
  756. }
  757. },
  758. "Microsoft.AspNetCore.Razor/2.1.1": {
  759. "type": "package",
  760. "dependencies": {
  761. "Microsoft.AspNetCore.Html.Abstractions": "2.1.1"
  762. },
  763. "compile": {
  764. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {
  765. "related": ".xml"
  766. }
  767. },
  768. "runtime": {
  769. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {
  770. "related": ".xml"
  771. }
  772. }
  773. },
  774. "Microsoft.AspNetCore.Razor.Design/2.1.1": {
  775. "type": "package",
  776. "build": {
  777. "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.props": {}
  778. },
  779. "buildMultiTargeting": {
  780. "buildMultiTargeting/Microsoft.AspNetCore.Razor.Design.props": {}
  781. }
  782. },
  783. "Microsoft.AspNetCore.Razor.Language/2.1.1": {
  784. "type": "package",
  785. "compile": {
  786. "lib/net46/Microsoft.AspNetCore.Razor.Language.dll": {
  787. "related": ".xml"
  788. }
  789. },
  790. "runtime": {
  791. "lib/net46/Microsoft.AspNetCore.Razor.Language.dll": {
  792. "related": ".xml"
  793. }
  794. }
  795. },
  796. "Microsoft.AspNetCore.Razor.Runtime/2.1.1": {
  797. "type": "package",
  798. "dependencies": {
  799. "Microsoft.AspNetCore.Html.Abstractions": "2.1.1",
  800. "Microsoft.AspNetCore.Razor": "2.1.1"
  801. },
  802. "compile": {
  803. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {
  804. "related": ".xml"
  805. }
  806. },
  807. "runtime": {
  808. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {
  809. "related": ".xml"
  810. }
  811. }
  812. },
  813. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.1.1": {
  814. "type": "package",
  815. "dependencies": {
  816. "Microsoft.Extensions.Primitives": "2.1.1"
  817. },
  818. "compile": {
  819. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
  820. "related": ".xml"
  821. }
  822. },
  823. "runtime": {
  824. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
  825. "related": ".xml"
  826. }
  827. }
  828. },
  829. "Microsoft.AspNetCore.Routing/2.1.1": {
  830. "type": "package",
  831. "dependencies": {
  832. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  833. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1",
  834. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  835. "Microsoft.Extensions.ObjectPool": "2.1.1",
  836. "Microsoft.Extensions.Options": "2.1.1"
  837. },
  838. "compile": {
  839. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll": {
  840. "related": ".xml"
  841. }
  842. },
  843. "runtime": {
  844. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll": {
  845. "related": ".xml"
  846. }
  847. }
  848. },
  849. "Microsoft.AspNetCore.Routing.Abstractions/2.1.1": {
  850. "type": "package",
  851. "dependencies": {
  852. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1"
  853. },
  854. "compile": {
  855. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  856. "related": ".xml"
  857. }
  858. },
  859. "runtime": {
  860. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  861. "related": ".xml"
  862. }
  863. }
  864. },
  865. "Microsoft.AspNetCore.Server.IISIntegration/2.1.7": {
  866. "type": "package",
  867. "dependencies": {
  868. "Microsoft.AspNetCore.Authentication.Core": "2.1.1",
  869. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  870. "Microsoft.AspNetCore.Http": "2.1.1",
  871. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  872. "Microsoft.AspNetCore.HttpOverrides": "2.1.1",
  873. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  874. "Microsoft.Extensions.Options": "2.1.1",
  875. "System.Buffers": "4.5.0",
  876. "System.IO.Pipelines": "4.5.3",
  877. "System.Memory": "4.5.2",
  878. "System.Numerics.Vectors": "4.5.0",
  879. "System.Runtime.CompilerServices.Unsafe": "4.5.2",
  880. "System.Security.Principal.Windows": "4.5.1"
  881. },
  882. "compile": {
  883. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {
  884. "related": ".xml"
  885. }
  886. },
  887. "runtime": {
  888. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {
  889. "related": ".xml"
  890. }
  891. }
  892. },
  893. "Microsoft.AspNetCore.Server.Kestrel/2.1.3": {
  894. "type": "package",
  895. "dependencies": {
  896. "Microsoft.AspNetCore.Hosting": "2.1.1",
  897. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.1.3",
  898. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.1.3",
  899. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.1.3"
  900. },
  901. "compile": {
  902. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {
  903. "related": ".xml"
  904. }
  905. },
  906. "runtime": {
  907. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {
  908. "related": ".xml"
  909. }
  910. }
  911. },
  912. "Microsoft.AspNetCore.Server.Kestrel.Core/2.1.3": {
  913. "type": "package",
  914. "dependencies": {
  915. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  916. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.1.3",
  917. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  918. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  919. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  920. "Microsoft.Extensions.Options": "2.1.1",
  921. "Microsoft.Net.Http.Headers": "2.1.1",
  922. "System.Memory": "4.5.1",
  923. "System.Numerics.Vectors": "4.5.0",
  924. "System.Runtime.CompilerServices.Unsafe": "4.5.1",
  925. "System.Security.Cryptography.Cng": "4.5.0",
  926. "System.Threading.Tasks.Extensions": "4.5.1"
  927. },
  928. "compile": {
  929. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {
  930. "related": ".xml"
  931. }
  932. },
  933. "runtime": {
  934. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {
  935. "related": ".xml"
  936. }
  937. }
  938. },
  939. "Microsoft.AspNetCore.Server.Kestrel.Https/2.1.3": {
  940. "type": "package",
  941. "dependencies": {
  942. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  943. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.1.3"
  944. },
  945. "compile": {
  946. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
  947. "related": ".xml"
  948. }
  949. },
  950. "runtime": {
  951. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
  952. "related": ".xml"
  953. }
  954. }
  955. },
  956. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.1.3": {
  957. "type": "package",
  958. "dependencies": {
  959. "Microsoft.AspNetCore.Connections.Abstractions": "2.1.3"
  960. },
  961. "compile": {
  962. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
  963. "related": ".xml"
  964. }
  965. },
  966. "runtime": {
  967. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
  968. "related": ".xml"
  969. }
  970. }
  971. },
  972. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.1.3": {
  973. "type": "package",
  974. "dependencies": {
  975. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  976. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.1.3",
  977. "Microsoft.Extensions.Options": "2.1.1"
  978. },
  979. "compile": {
  980. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {
  981. "related": ".xml"
  982. }
  983. },
  984. "runtime": {
  985. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {
  986. "related": ".xml"
  987. }
  988. }
  989. },
  990. "Microsoft.AspNetCore.WebUtilities/2.1.1": {
  991. "type": "package",
  992. "dependencies": {
  993. "Microsoft.Net.Http.Headers": "2.1.1",
  994. "System.Text.Encodings.Web": "4.5.0"
  995. },
  996. "compile": {
  997. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  998. "related": ".xml"
  999. }
  1000. },
  1001. "runtime": {
  1002. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  1003. "related": ".xml"
  1004. }
  1005. }
  1006. },
  1007. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  1008. "type": "package",
  1009. "frameworkAssemblies": [
  1010. "System"
  1011. ]
  1012. },
  1013. "Microsoft.CodeAnalysis.Common/2.8.0": {
  1014. "type": "package",
  1015. "dependencies": {
  1016. "Microsoft.CodeAnalysis.Analyzers": "1.1.0",
  1017. "System.AppContext": "4.3.0",
  1018. "System.Collections": "4.3.0",
  1019. "System.Collections.Concurrent": "4.3.0",
  1020. "System.Collections.Immutable": "1.3.1",
  1021. "System.Console": "4.3.0",
  1022. "System.Diagnostics.Debug": "4.3.0",
  1023. "System.Diagnostics.FileVersionInfo": "4.3.0",
  1024. "System.Diagnostics.StackTrace": "4.3.0",
  1025. "System.Diagnostics.Tools": "4.3.0",
  1026. "System.Dynamic.Runtime": "4.3.0",
  1027. "System.Globalization": "4.3.0",
  1028. "System.IO.Compression": "4.3.0",
  1029. "System.IO.FileSystem": "4.3.0",
  1030. "System.IO.FileSystem.Primitives": "4.3.0",
  1031. "System.Linq": "4.3.0",
  1032. "System.Linq.Expressions": "4.3.0",
  1033. "System.Reflection": "4.3.0",
  1034. "System.Reflection.Metadata": "1.4.2",
  1035. "System.Resources.ResourceManager": "4.3.0",
  1036. "System.Runtime": "4.3.0",
  1037. "System.Runtime.Extensions": "4.3.0",
  1038. "System.Runtime.InteropServices": "4.3.0",
  1039. "System.Runtime.Numerics": "4.3.0",
  1040. "System.Security.Cryptography.Algorithms": "4.3.0",
  1041. "System.Security.Cryptography.Encoding": "4.3.0",
  1042. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1043. "System.Text.Encoding": "4.3.0",
  1044. "System.Text.Encoding.CodePages": "4.3.0",
  1045. "System.Text.Encoding.Extensions": "4.3.0",
  1046. "System.Threading": "4.3.0",
  1047. "System.Threading.Tasks": "4.3.0",
  1048. "System.Threading.Tasks.Parallel": "4.3.0",
  1049. "System.Threading.Thread": "4.3.0",
  1050. "System.ValueTuple": "4.3.0",
  1051. "System.Xml.ReaderWriter": "4.3.0",
  1052. "System.Xml.XDocument": "4.3.0",
  1053. "System.Xml.XPath.XDocument": "4.3.0",
  1054. "System.Xml.XmlDocument": "4.3.0"
  1055. },
  1056. "compile": {
  1057. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {
  1058. "related": ".pdb;.xml"
  1059. }
  1060. },
  1061. "runtime": {
  1062. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {
  1063. "related": ".pdb;.xml"
  1064. }
  1065. }
  1066. },
  1067. "Microsoft.CodeAnalysis.CSharp/2.8.0": {
  1068. "type": "package",
  1069. "dependencies": {
  1070. "Microsoft.CodeAnalysis.Common": "[2.8.0]"
  1071. },
  1072. "compile": {
  1073. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {
  1074. "related": ".pdb;.xml"
  1075. }
  1076. },
  1077. "runtime": {
  1078. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {
  1079. "related": ".pdb;.xml"
  1080. }
  1081. }
  1082. },
  1083. "Microsoft.CodeAnalysis.Razor/2.1.1": {
  1084. "type": "package",
  1085. "dependencies": {
  1086. "Microsoft.AspNetCore.Razor.Language": "2.1.1",
  1087. "Microsoft.CodeAnalysis.CSharp": "2.8.0",
  1088. "Microsoft.CodeAnalysis.Common": "2.8.0",
  1089. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
  1090. },
  1091. "compile": {
  1092. "lib/net46/Microsoft.CodeAnalysis.Razor.dll": {
  1093. "related": ".xml"
  1094. }
  1095. },
  1096. "runtime": {
  1097. "lib/net46/Microsoft.CodeAnalysis.Razor.dll": {
  1098. "related": ".xml"
  1099. }
  1100. }
  1101. },
  1102. "Microsoft.CSharp/4.5.0": {
  1103. "type": "package",
  1104. "frameworkAssemblies": [
  1105. "Microsoft.CSharp"
  1106. ],
  1107. "compile": {
  1108. "ref/net45/_._": {}
  1109. },
  1110. "runtime": {
  1111. "lib/net45/_._": {}
  1112. }
  1113. },
  1114. "Microsoft.DiaSymReader.Native/1.7.0": {
  1115. "type": "package",
  1116. "build": {
  1117. "build/_._": {}
  1118. },
  1119. "runtimeTargets": {
  1120. "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll": {
  1121. "assetType": "native",
  1122. "rid": "win-x64"
  1123. },
  1124. "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll": {
  1125. "assetType": "native",
  1126. "rid": "win-x86"
  1127. },
  1128. "runtimes/win/native/Microsoft.DiaSymReader.Native.amd64.dll": {
  1129. "assetType": "native",
  1130. "rid": "win"
  1131. },
  1132. "runtimes/win/native/Microsoft.DiaSymReader.Native.arm.dll": {
  1133. "assetType": "native",
  1134. "rid": "win"
  1135. },
  1136. "runtimes/win/native/Microsoft.DiaSymReader.Native.x86.dll": {
  1137. "assetType": "native",
  1138. "rid": "win"
  1139. },
  1140. "runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll": {
  1141. "assetType": "native",
  1142. "rid": "win8-arm"
  1143. }
  1144. }
  1145. },
  1146. "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
  1147. "type": "package",
  1148. "dependencies": {
  1149. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
  1150. },
  1151. "frameworkAssemblies": [
  1152. "System",
  1153. "System.Core"
  1154. ],
  1155. "compile": {
  1156. "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll": {}
  1157. },
  1158. "runtime": {
  1159. "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll": {}
  1160. }
  1161. },
  1162. "Microsoft.Extensions.Caching.Abstractions/2.1.1": {
  1163. "type": "package",
  1164. "dependencies": {
  1165. "Microsoft.Extensions.Primitives": "2.1.1"
  1166. },
  1167. "compile": {
  1168. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  1169. "related": ".xml"
  1170. }
  1171. },
  1172. "runtime": {
  1173. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  1174. "related": ".xml"
  1175. }
  1176. }
  1177. },
  1178. "Microsoft.Extensions.Caching.Memory/2.1.1": {
  1179. "type": "package",
  1180. "dependencies": {
  1181. "Microsoft.Extensions.Caching.Abstractions": "2.1.1",
  1182. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  1183. "Microsoft.Extensions.Options": "2.1.1"
  1184. },
  1185. "compile": {
  1186. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  1187. "related": ".xml"
  1188. }
  1189. },
  1190. "runtime": {
  1191. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  1192. "related": ".xml"
  1193. }
  1194. }
  1195. },
  1196. "Microsoft.Extensions.Configuration/2.1.1": {
  1197. "type": "package",
  1198. "dependencies": {
  1199. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
  1200. },
  1201. "compile": {
  1202. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  1203. "related": ".xml"
  1204. }
  1205. },
  1206. "runtime": {
  1207. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  1208. "related": ".xml"
  1209. }
  1210. }
  1211. },
  1212. "Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
  1213. "type": "package",
  1214. "dependencies": {
  1215. "Microsoft.Extensions.Primitives": "2.1.1"
  1216. },
  1217. "compile": {
  1218. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1219. "related": ".xml"
  1220. }
  1221. },
  1222. "runtime": {
  1223. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1224. "related": ".xml"
  1225. }
  1226. }
  1227. },
  1228. "Microsoft.Extensions.Configuration.Binder/2.1.1": {
  1229. "type": "package",
  1230. "dependencies": {
  1231. "Microsoft.Extensions.Configuration": "2.1.1"
  1232. },
  1233. "compile": {
  1234. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  1235. "related": ".xml"
  1236. }
  1237. },
  1238. "runtime": {
  1239. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  1240. "related": ".xml"
  1241. }
  1242. }
  1243. },
  1244. "Microsoft.Extensions.Configuration.CommandLine/2.1.1": {
  1245. "type": "package",
  1246. "dependencies": {
  1247. "Microsoft.Extensions.Configuration": "2.1.1"
  1248. },
  1249. "compile": {
  1250. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  1251. "related": ".xml"
  1252. }
  1253. },
  1254. "runtime": {
  1255. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  1256. "related": ".xml"
  1257. }
  1258. }
  1259. },
  1260. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.1.1": {
  1261. "type": "package",
  1262. "dependencies": {
  1263. "Microsoft.Extensions.Configuration": "2.1.1"
  1264. },
  1265. "compile": {
  1266. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  1267. "related": ".xml"
  1268. }
  1269. },
  1270. "runtime": {
  1271. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  1272. "related": ".xml"
  1273. }
  1274. }
  1275. },
  1276. "Microsoft.Extensions.Configuration.FileExtensions/2.1.1": {
  1277. "type": "package",
  1278. "dependencies": {
  1279. "Microsoft.Extensions.Configuration": "2.1.1",
  1280. "Microsoft.Extensions.FileProviders.Physical": "2.1.1"
  1281. },
  1282. "compile": {
  1283. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  1284. "related": ".xml"
  1285. }
  1286. },
  1287. "runtime": {
  1288. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  1289. "related": ".xml"
  1290. }
  1291. }
  1292. },
  1293. "Microsoft.Extensions.Configuration.Json/2.1.1": {
  1294. "type": "package",
  1295. "dependencies": {
  1296. "Microsoft.Extensions.Configuration": "2.1.1",
  1297. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  1298. "Newtonsoft.Json": "11.0.2"
  1299. },
  1300. "compile": {
  1301. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
  1302. "related": ".xml"
  1303. }
  1304. },
  1305. "runtime": {
  1306. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
  1307. "related": ".xml"
  1308. }
  1309. }
  1310. },
  1311. "Microsoft.Extensions.Configuration.UserSecrets/2.1.1": {
  1312. "type": "package",
  1313. "dependencies": {
  1314. "Microsoft.Extensions.Configuration.Json": "2.1.1"
  1315. },
  1316. "compile": {
  1317. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  1318. "related": ".xml"
  1319. }
  1320. },
  1321. "runtime": {
  1322. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  1323. "related": ".xml"
  1324. }
  1325. },
  1326. "build": {
  1327. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props": {},
  1328. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  1329. }
  1330. },
  1331. "Microsoft.Extensions.DependencyInjection/2.1.1": {
  1332. "type": "package",
  1333. "dependencies": {
  1334. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1"
  1335. },
  1336. "compile": {
  1337. "lib/net461/Microsoft.Extensions.DependencyInjection.dll": {
  1338. "related": ".xml"
  1339. }
  1340. },
  1341. "runtime": {
  1342. "lib/net461/Microsoft.Extensions.DependencyInjection.dll": {
  1343. "related": ".xml"
  1344. }
  1345. }
  1346. },
  1347. "Microsoft.Extensions.DependencyInjection.Abstractions/2.1.1": {
  1348. "type": "package",
  1349. "compile": {
  1350. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1351. "related": ".xml"
  1352. }
  1353. },
  1354. "runtime": {
  1355. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1356. "related": ".xml"
  1357. }
  1358. }
  1359. },
  1360. "Microsoft.Extensions.DependencyModel/2.1.0": {
  1361. "type": "package",
  1362. "dependencies": {
  1363. "Microsoft.DotNet.PlatformAbstractions": "2.1.0",
  1364. "Newtonsoft.Json": "9.0.1"
  1365. },
  1366. "frameworkAssemblies": [
  1367. "System",
  1368. "System.Core"
  1369. ],
  1370. "compile": {
  1371. "lib/net451/Microsoft.Extensions.DependencyModel.dll": {}
  1372. },
  1373. "runtime": {
  1374. "lib/net451/Microsoft.Extensions.DependencyModel.dll": {}
  1375. }
  1376. },
  1377. "Microsoft.Extensions.FileProviders.Abstractions/2.1.1": {
  1378. "type": "package",
  1379. "dependencies": {
  1380. "Microsoft.Extensions.Primitives": "2.1.1"
  1381. },
  1382. "compile": {
  1383. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1384. "related": ".xml"
  1385. }
  1386. },
  1387. "runtime": {
  1388. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1389. "related": ".xml"
  1390. }
  1391. }
  1392. },
  1393. "Microsoft.Extensions.FileProviders.Composite/2.1.1": {
  1394. "type": "package",
  1395. "dependencies": {
  1396. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1"
  1397. },
  1398. "compile": {
  1399. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  1400. "related": ".xml"
  1401. }
  1402. },
  1403. "runtime": {
  1404. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  1405. "related": ".xml"
  1406. }
  1407. }
  1408. },
  1409. "Microsoft.Extensions.FileProviders.Physical/2.1.1": {
  1410. "type": "package",
  1411. "dependencies": {
  1412. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  1413. "Microsoft.Extensions.FileSystemGlobbing": "2.1.1"
  1414. },
  1415. "compile": {
  1416. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1417. "related": ".xml"
  1418. }
  1419. },
  1420. "runtime": {
  1421. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1422. "related": ".xml"
  1423. }
  1424. }
  1425. },
  1426. "Microsoft.Extensions.FileSystemGlobbing/2.1.1": {
  1427. "type": "package",
  1428. "compile": {
  1429. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1430. "related": ".xml"
  1431. }
  1432. },
  1433. "runtime": {
  1434. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1435. "related": ".xml"
  1436. }
  1437. }
  1438. },
  1439. "Microsoft.Extensions.Hosting.Abstractions/2.1.1": {
  1440. "type": "package",
  1441. "dependencies": {
  1442. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
  1443. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  1444. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  1445. "Microsoft.Extensions.Logging.Abstractions": "2.1.1"
  1446. },
  1447. "compile": {
  1448. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1449. "related": ".xml"
  1450. }
  1451. },
  1452. "runtime": {
  1453. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1454. "related": ".xml"
  1455. }
  1456. }
  1457. },
  1458. "Microsoft.Extensions.Localization/2.1.1": {
  1459. "type": "package",
  1460. "dependencies": {
  1461. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  1462. "Microsoft.Extensions.Localization.Abstractions": "2.1.1",
  1463. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1464. "Microsoft.Extensions.Options": "2.1.1"
  1465. },
  1466. "compile": {
  1467. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
  1468. "related": ".xml"
  1469. }
  1470. },
  1471. "runtime": {
  1472. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
  1473. "related": ".xml"
  1474. }
  1475. }
  1476. },
  1477. "Microsoft.Extensions.Localization.Abstractions/2.1.1": {
  1478. "type": "package",
  1479. "compile": {
  1480. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  1481. "related": ".xml"
  1482. }
  1483. },
  1484. "runtime": {
  1485. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  1486. "related": ".xml"
  1487. }
  1488. }
  1489. },
  1490. "Microsoft.Extensions.Logging/2.1.1": {
  1491. "type": "package",
  1492. "dependencies": {
  1493. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  1494. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  1495. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1496. "Microsoft.Extensions.Options": "2.1.1"
  1497. },
  1498. "compile": {
  1499. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
  1500. "related": ".xml"
  1501. }
  1502. },
  1503. "runtime": {
  1504. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
  1505. "related": ".xml"
  1506. }
  1507. }
  1508. },
  1509. "Microsoft.Extensions.Logging.Abstractions/2.1.1": {
  1510. "type": "package",
  1511. "compile": {
  1512. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1513. "related": ".xml"
  1514. }
  1515. },
  1516. "runtime": {
  1517. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1518. "related": ".xml"
  1519. }
  1520. }
  1521. },
  1522. "Microsoft.Extensions.Logging.Configuration/2.1.1": {
  1523. "type": "package",
  1524. "dependencies": {
  1525. "Microsoft.Extensions.Logging": "2.1.1",
  1526. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.1.1"
  1527. },
  1528. "compile": {
  1529. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  1530. "related": ".xml"
  1531. }
  1532. },
  1533. "runtime": {
  1534. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  1535. "related": ".xml"
  1536. }
  1537. }
  1538. },
  1539. "Microsoft.Extensions.Logging.Console/2.1.1": {
  1540. "type": "package",
  1541. "dependencies": {
  1542. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
  1543. "Microsoft.Extensions.Logging": "2.1.1",
  1544. "Microsoft.Extensions.Logging.Configuration": "2.1.1"
  1545. },
  1546. "compile": {
  1547. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  1548. "related": ".xml"
  1549. }
  1550. },
  1551. "runtime": {
  1552. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  1553. "related": ".xml"
  1554. }
  1555. }
  1556. },
  1557. "Microsoft.Extensions.Logging.Debug/2.1.1": {
  1558. "type": "package",
  1559. "dependencies": {
  1560. "Microsoft.Extensions.Logging": "2.1.1"
  1561. },
  1562. "compile": {
  1563. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  1564. "related": ".xml"
  1565. }
  1566. },
  1567. "runtime": {
  1568. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  1569. "related": ".xml"
  1570. }
  1571. }
  1572. },
  1573. "Microsoft.Extensions.ObjectPool/2.1.1": {
  1574. "type": "package",
  1575. "compile": {
  1576. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1577. "related": ".xml"
  1578. }
  1579. },
  1580. "runtime": {
  1581. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1582. "related": ".xml"
  1583. }
  1584. }
  1585. },
  1586. "Microsoft.Extensions.Options/2.1.1": {
  1587. "type": "package",
  1588. "dependencies": {
  1589. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  1590. "Microsoft.Extensions.Primitives": "2.1.1"
  1591. },
  1592. "compile": {
  1593. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
  1594. "related": ".xml"
  1595. }
  1596. },
  1597. "runtime": {
  1598. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
  1599. "related": ".xml"
  1600. }
  1601. }
  1602. },
  1603. "Microsoft.Extensions.Options.ConfigurationExtensions/2.1.1": {
  1604. "type": "package",
  1605. "dependencies": {
  1606. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
  1607. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  1608. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  1609. "Microsoft.Extensions.Options": "2.1.1"
  1610. },
  1611. "compile": {
  1612. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1613. "related": ".xml"
  1614. }
  1615. },
  1616. "runtime": {
  1617. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1618. "related": ".xml"
  1619. }
  1620. }
  1621. },
  1622. "Microsoft.Extensions.Primitives/2.1.1": {
  1623. "type": "package",
  1624. "dependencies": {
  1625. "System.Memory": "4.5.1",
  1626. "System.Runtime.CompilerServices.Unsafe": "4.5.1"
  1627. },
  1628. "compile": {
  1629. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  1630. "related": ".xml"
  1631. }
  1632. },
  1633. "runtime": {
  1634. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  1635. "related": ".xml"
  1636. }
  1637. }
  1638. },
  1639. "Microsoft.Extensions.WebEncoders/2.1.1": {
  1640. "type": "package",
  1641. "dependencies": {
  1642. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  1643. "Microsoft.Extensions.Options": "2.1.1",
  1644. "System.Text.Encodings.Web": "4.5.0"
  1645. },
  1646. "compile": {
  1647. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
  1648. "related": ".xml"
  1649. }
  1650. },
  1651. "runtime": {
  1652. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
  1653. "related": ".xml"
  1654. }
  1655. }
  1656. },
  1657. "Microsoft.Net.Http.Headers/2.1.1": {
  1658. "type": "package",
  1659. "dependencies": {
  1660. "Microsoft.Extensions.Primitives": "2.1.1",
  1661. "System.Buffers": "4.5.0"
  1662. },
  1663. "compile": {
  1664. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1665. "related": ".xml"
  1666. }
  1667. },
  1668. "runtime": {
  1669. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1670. "related": ".xml"
  1671. }
  1672. }
  1673. },
  1674. "Microsoft.Win32.Registry/4.5.0": {
  1675. "type": "package",
  1676. "dependencies": {
  1677. "System.Security.AccessControl": "4.5.0",
  1678. "System.Security.Principal.Windows": "4.5.0"
  1679. },
  1680. "frameworkAssemblies": [
  1681. "mscorlib"
  1682. ],
  1683. "compile": {
  1684. "ref/net461/Microsoft.Win32.Registry.dll": {
  1685. "related": ".xml"
  1686. }
  1687. },
  1688. "runtime": {
  1689. "lib/net461/Microsoft.Win32.Registry.dll": {}
  1690. },
  1691. "runtimeTargets": {
  1692. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1693. "assetType": "runtime",
  1694. "rid": "unix"
  1695. },
  1696. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll": {
  1697. "assetType": "runtime",
  1698. "rid": "win"
  1699. }
  1700. }
  1701. },
  1702. "Newtonsoft.Json/11.0.2": {
  1703. "type": "package",
  1704. "compile": {
  1705. "lib/net45/Newtonsoft.Json.dll": {
  1706. "related": ".xml"
  1707. }
  1708. },
  1709. "runtime": {
  1710. "lib/net45/Newtonsoft.Json.dll": {
  1711. "related": ".xml"
  1712. }
  1713. }
  1714. },
  1715. "Newtonsoft.Json.Bson/1.0.1": {
  1716. "type": "package",
  1717. "dependencies": {
  1718. "Newtonsoft.Json": "10.0.1"
  1719. },
  1720. "compile": {
  1721. "lib/net45/Newtonsoft.Json.Bson.dll": {
  1722. "related": ".xml"
  1723. }
  1724. },
  1725. "runtime": {
  1726. "lib/net45/Newtonsoft.Json.Bson.dll": {
  1727. "related": ".xml"
  1728. }
  1729. }
  1730. },
  1731. "System.AppContext/4.3.0": {
  1732. "type": "package",
  1733. "frameworkAssemblies": [
  1734. "mscorlib"
  1735. ],
  1736. "compile": {
  1737. "ref/net463/System.AppContext.dll": {}
  1738. },
  1739. "runtime": {
  1740. "lib/net463/System.AppContext.dll": {}
  1741. }
  1742. },
  1743. "System.Buffers/4.5.0": {
  1744. "type": "package",
  1745. "frameworkAssemblies": [
  1746. "mscorlib"
  1747. ],
  1748. "compile": {
  1749. "ref/net45/System.Buffers.dll": {
  1750. "related": ".xml"
  1751. }
  1752. },
  1753. "runtime": {
  1754. "lib/netstandard2.0/System.Buffers.dll": {
  1755. "related": ".xml"
  1756. }
  1757. }
  1758. },
  1759. "System.Collections/4.3.0": {
  1760. "type": "package",
  1761. "frameworkAssemblies": [
  1762. "System",
  1763. "System.Core"
  1764. ],
  1765. "compile": {
  1766. "ref/net45/_._": {}
  1767. },
  1768. "runtime": {
  1769. "lib/net45/_._": {}
  1770. }
  1771. },
  1772. "System.Collections.Concurrent/4.3.0": {
  1773. "type": "package",
  1774. "frameworkAssemblies": [
  1775. "System"
  1776. ],
  1777. "compile": {
  1778. "ref/net45/_._": {}
  1779. },
  1780. "runtime": {
  1781. "lib/net45/_._": {}
  1782. }
  1783. },
  1784. "System.Collections.Immutable/1.5.0": {
  1785. "type": "package",
  1786. "compile": {
  1787. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1788. "related": ".xml"
  1789. }
  1790. },
  1791. "runtime": {
  1792. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1793. "related": ".xml"
  1794. }
  1795. }
  1796. },
  1797. "System.ComponentModel.Annotations/4.5.0": {
  1798. "type": "package",
  1799. "frameworkAssemblies": [
  1800. "System.ComponentModel.DataAnnotations",
  1801. "mscorlib"
  1802. ],
  1803. "compile": {
  1804. "ref/net461/System.ComponentModel.Annotations.dll": {
  1805. "related": ".xml"
  1806. }
  1807. },
  1808. "runtime": {
  1809. "lib/net461/System.ComponentModel.Annotations.dll": {}
  1810. }
  1811. },
  1812. "System.Console/4.3.0": {
  1813. "type": "package",
  1814. "frameworkAssemblies": [
  1815. "mscorlib"
  1816. ],
  1817. "compile": {
  1818. "ref/net46/System.Console.dll": {}
  1819. },
  1820. "runtime": {
  1821. "lib/net46/System.Console.dll": {}
  1822. }
  1823. },
  1824. "System.Diagnostics.Debug/4.3.0": {
  1825. "type": "package",
  1826. "frameworkAssemblies": [
  1827. "System"
  1828. ],
  1829. "compile": {
  1830. "ref/net45/_._": {}
  1831. },
  1832. "runtime": {
  1833. "lib/net45/_._": {}
  1834. }
  1835. },
  1836. "System.Diagnostics.DiagnosticSource/4.5.1": {
  1837. "type": "package",
  1838. "frameworkAssemblies": [
  1839. "System",
  1840. "mscorlib"
  1841. ],
  1842. "compile": {
  1843. "lib/net46/System.Diagnostics.DiagnosticSource.dll": {
  1844. "related": ".xml"
  1845. }
  1846. },
  1847. "runtime": {
  1848. "lib/net46/System.Diagnostics.DiagnosticSource.dll": {
  1849. "related": ".xml"
  1850. }
  1851. }
  1852. },
  1853. "System.Diagnostics.FileVersionInfo/4.3.0": {
  1854. "type": "package",
  1855. "frameworkAssemblies": [
  1856. "System",
  1857. "mscorlib"
  1858. ],
  1859. "compile": {
  1860. "ref/net46/_._": {}
  1861. },
  1862. "runtime": {
  1863. "lib/net46/System.Diagnostics.FileVersionInfo.dll": {}
  1864. },
  1865. "runtimeTargets": {
  1866. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
  1867. "assetType": "runtime",
  1868. "rid": "unix"
  1869. },
  1870. "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll": {
  1871. "assetType": "runtime",
  1872. "rid": "win"
  1873. }
  1874. }
  1875. },
  1876. "System.Diagnostics.StackTrace/4.3.0": {
  1877. "type": "package",
  1878. "frameworkAssemblies": [
  1879. "mscorlib"
  1880. ],
  1881. "compile": {
  1882. "ref/net46/_._": {}
  1883. },
  1884. "runtime": {
  1885. "lib/net46/System.Diagnostics.StackTrace.dll": {}
  1886. }
  1887. },
  1888. "System.Diagnostics.Tools/4.3.0": {
  1889. "type": "package",
  1890. "frameworkAssemblies": [
  1891. "System"
  1892. ],
  1893. "compile": {
  1894. "ref/net45/_._": {}
  1895. },
  1896. "runtime": {
  1897. "lib/net45/_._": {}
  1898. }
  1899. },
  1900. "System.Dynamic.Runtime/4.3.0": {
  1901. "type": "package",
  1902. "frameworkAssemblies": [
  1903. "System.Core"
  1904. ],
  1905. "compile": {
  1906. "ref/net45/_._": {}
  1907. },
  1908. "runtime": {
  1909. "lib/net45/_._": {}
  1910. }
  1911. },
  1912. "System.Globalization/4.3.0": {
  1913. "type": "package",
  1914. "compile": {
  1915. "ref/net45/_._": {}
  1916. },
  1917. "runtime": {
  1918. "lib/net45/_._": {}
  1919. }
  1920. },
  1921. "System.IO/4.3.0": {
  1922. "type": "package",
  1923. "frameworkAssemblies": [
  1924. "System",
  1925. "mscorlib"
  1926. ],
  1927. "compile": {
  1928. "ref/net462/System.IO.dll": {}
  1929. },
  1930. "runtime": {
  1931. "lib/net462/System.IO.dll": {}
  1932. }
  1933. },
  1934. "System.IO.Compression/4.3.0": {
  1935. "type": "package",
  1936. "frameworkAssemblies": [
  1937. "System",
  1938. "mscorlib"
  1939. ],
  1940. "compile": {
  1941. "ref/net46/System.IO.Compression.dll": {}
  1942. },
  1943. "runtime": {
  1944. "lib/net46/System.IO.Compression.dll": {}
  1945. },
  1946. "runtimeTargets": {
  1947. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1948. "assetType": "runtime",
  1949. "rid": "unix"
  1950. },
  1951. "runtimes/win/lib/net46/System.IO.Compression.dll": {
  1952. "assetType": "runtime",
  1953. "rid": "win"
  1954. }
  1955. }
  1956. },
  1957. "System.IO.FileSystem/4.3.0": {
  1958. "type": "package",
  1959. "dependencies": {
  1960. "System.IO.FileSystem.Primitives": "4.3.0"
  1961. },
  1962. "frameworkAssemblies": [
  1963. "mscorlib"
  1964. ],
  1965. "compile": {
  1966. "ref/net46/System.IO.FileSystem.dll": {}
  1967. },
  1968. "runtime": {
  1969. "lib/net46/System.IO.FileSystem.dll": {}
  1970. }
  1971. },
  1972. "System.IO.FileSystem.Primitives/4.3.0": {
  1973. "type": "package",
  1974. "frameworkAssemblies": [
  1975. "mscorlib"
  1976. ],
  1977. "compile": {
  1978. "ref/net46/System.IO.FileSystem.Primitives.dll": {}
  1979. },
  1980. "runtime": {
  1981. "lib/net46/System.IO.FileSystem.Primitives.dll": {}
  1982. }
  1983. },
  1984. "System.IO.Pipelines/4.5.3": {
  1985. "type": "package",
  1986. "dependencies": {
  1987. "System.Buffers": "4.4.0",
  1988. "System.Memory": "4.5.1",
  1989. "System.Threading.Tasks.Extensions": "4.5.1"
  1990. },
  1991. "compile": {
  1992. "lib/netstandard2.0/System.IO.Pipelines.dll": {
  1993. "related": ".xml"
  1994. }
  1995. },
  1996. "runtime": {
  1997. "lib/netstandard2.0/System.IO.Pipelines.dll": {
  1998. "related": ".xml"
  1999. }
  2000. }
  2001. },
  2002. "System.Linq/4.3.0": {
  2003. "type": "package",
  2004. "frameworkAssemblies": [
  2005. "System.Core",
  2006. "mscorlib"
  2007. ],
  2008. "compile": {
  2009. "ref/net463/System.Linq.dll": {}
  2010. },
  2011. "runtime": {
  2012. "lib/net463/System.Linq.dll": {}
  2013. }
  2014. },
  2015. "System.Linq.Expressions/4.3.0": {
  2016. "type": "package",
  2017. "frameworkAssemblies": [
  2018. "System.Core",
  2019. "mscorlib"
  2020. ],
  2021. "compile": {
  2022. "ref/net463/System.Linq.Expressions.dll": {}
  2023. },
  2024. "runtime": {
  2025. "lib/net463/System.Linq.Expressions.dll": {}
  2026. }
  2027. },
  2028. "System.Memory/4.5.2": {
  2029. "type": "package",
  2030. "dependencies": {
  2031. "System.Buffers": "4.4.0",
  2032. "System.Numerics.Vectors": "4.4.0",
  2033. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2034. },
  2035. "compile": {
  2036. "lib/netstandard2.0/System.Memory.dll": {
  2037. "related": ".xml"
  2038. }
  2039. },
  2040. "runtime": {
  2041. "lib/netstandard2.0/System.Memory.dll": {
  2042. "related": ".xml"
  2043. }
  2044. }
  2045. },
  2046. "System.Numerics.Vectors/4.5.0": {
  2047. "type": "package",
  2048. "frameworkAssemblies": [
  2049. "System.Numerics",
  2050. "mscorlib"
  2051. ],
  2052. "compile": {
  2053. "ref/net46/System.Numerics.Vectors.dll": {
  2054. "related": ".xml"
  2055. }
  2056. },
  2057. "runtime": {
  2058. "lib/net46/System.Numerics.Vectors.dll": {
  2059. "related": ".xml"
  2060. }
  2061. }
  2062. },
  2063. "System.Reflection/4.3.0": {
  2064. "type": "package",
  2065. "frameworkAssemblies": [
  2066. "mscorlib"
  2067. ],
  2068. "compile": {
  2069. "ref/net462/System.Reflection.dll": {}
  2070. },
  2071. "runtime": {
  2072. "lib/net462/System.Reflection.dll": {}
  2073. }
  2074. },
  2075. "System.Reflection.Metadata/1.6.0": {
  2076. "type": "package",
  2077. "dependencies": {
  2078. "System.Collections.Immutable": "1.5.0"
  2079. },
  2080. "compile": {
  2081. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  2082. "related": ".xml"
  2083. }
  2084. },
  2085. "runtime": {
  2086. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  2087. "related": ".xml"
  2088. }
  2089. }
  2090. },
  2091. "System.Resources.ResourceManager/4.3.0": {
  2092. "type": "package",
  2093. "compile": {
  2094. "ref/net45/_._": {}
  2095. },
  2096. "runtime": {
  2097. "lib/net45/_._": {}
  2098. }
  2099. },
  2100. "System.Runtime/4.3.0": {
  2101. "type": "package",
  2102. "frameworkAssemblies": [
  2103. "System",
  2104. "System.ComponentModel.Composition",
  2105. "System.Core",
  2106. "mscorlib"
  2107. ],
  2108. "compile": {
  2109. "ref/net462/System.Runtime.dll": {}
  2110. },
  2111. "runtime": {
  2112. "lib/net462/System.Runtime.dll": {}
  2113. }
  2114. },
  2115. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  2116. "type": "package",
  2117. "compile": {
  2118. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2119. "related": ".xml"
  2120. }
  2121. },
  2122. "runtime": {
  2123. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2124. "related": ".xml"
  2125. }
  2126. }
  2127. },
  2128. "System.Runtime.Extensions/4.3.0": {
  2129. "type": "package",
  2130. "frameworkAssemblies": [
  2131. "System",
  2132. "mscorlib"
  2133. ],
  2134. "compile": {
  2135. "ref/net462/System.Runtime.Extensions.dll": {}
  2136. },
  2137. "runtime": {
  2138. "lib/net462/System.Runtime.Extensions.dll": {}
  2139. }
  2140. },
  2141. "System.Runtime.InteropServices/4.3.0": {
  2142. "type": "package",
  2143. "dependencies": {
  2144. "System.Runtime": "4.3.0"
  2145. },
  2146. "frameworkAssemblies": [
  2147. "System",
  2148. "System.Core",
  2149. "mscorlib"
  2150. ],
  2151. "compile": {
  2152. "ref/net463/System.Runtime.InteropServices.dll": {}
  2153. },
  2154. "runtime": {
  2155. "lib/net463/System.Runtime.InteropServices.dll": {}
  2156. }
  2157. },
  2158. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2159. "type": "package",
  2160. "compile": {
  2161. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2162. },
  2163. "runtime": {
  2164. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2165. },
  2166. "runtimeTargets": {
  2167. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2168. "assetType": "runtime",
  2169. "rid": "unix"
  2170. },
  2171. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2172. "assetType": "runtime",
  2173. "rid": "win"
  2174. }
  2175. }
  2176. },
  2177. "System.Runtime.Numerics/4.3.0": {
  2178. "type": "package",
  2179. "frameworkAssemblies": [
  2180. "System.Numerics"
  2181. ],
  2182. "compile": {
  2183. "ref/net45/_._": {}
  2184. },
  2185. "runtime": {
  2186. "lib/net45/_._": {}
  2187. }
  2188. },
  2189. "System.Security.AccessControl/4.5.0": {
  2190. "type": "package",
  2191. "dependencies": {
  2192. "System.Security.Principal.Windows": "4.5.0"
  2193. },
  2194. "frameworkAssemblies": [
  2195. "mscorlib"
  2196. ],
  2197. "compile": {
  2198. "ref/net461/System.Security.AccessControl.dll": {
  2199. "related": ".xml"
  2200. }
  2201. },
  2202. "runtime": {
  2203. "lib/net461/System.Security.AccessControl.dll": {}
  2204. },
  2205. "runtimeTargets": {
  2206. "runtimes/win/lib/net461/System.Security.AccessControl.dll": {
  2207. "assetType": "runtime",
  2208. "rid": "win"
  2209. }
  2210. }
  2211. },
  2212. "System.Security.Cryptography.Algorithms/4.3.0": {
  2213. "type": "package",
  2214. "dependencies": {
  2215. "System.IO": "4.3.0",
  2216. "System.Runtime": "4.3.0",
  2217. "System.Security.Cryptography.Encoding": "4.3.0",
  2218. "System.Security.Cryptography.Primitives": "4.3.0"
  2219. },
  2220. "frameworkAssemblies": [
  2221. "System.Core",
  2222. "mscorlib"
  2223. ],
  2224. "compile": {
  2225. "ref/net463/System.Security.Cryptography.Algorithms.dll": {}
  2226. },
  2227. "runtime": {
  2228. "lib/net463/System.Security.Cryptography.Algorithms.dll": {}
  2229. },
  2230. "runtimeTargets": {
  2231. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2232. "assetType": "runtime",
  2233. "rid": "osx"
  2234. },
  2235. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2236. "assetType": "runtime",
  2237. "rid": "unix"
  2238. },
  2239. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll": {
  2240. "assetType": "runtime",
  2241. "rid": "win"
  2242. }
  2243. }
  2244. },
  2245. "System.Security.Cryptography.Cng/4.5.0": {
  2246. "type": "package",
  2247. "frameworkAssemblies": [
  2248. "System.Core",
  2249. "mscorlib"
  2250. ],
  2251. "compile": {
  2252. "ref/net47/System.Security.Cryptography.Cng.dll": {
  2253. "related": ".xml"
  2254. }
  2255. },
  2256. "runtime": {
  2257. "lib/net47/System.Security.Cryptography.Cng.dll": {}
  2258. },
  2259. "runtimeTargets": {
  2260. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll": {
  2261. "assetType": "runtime",
  2262. "rid": "win"
  2263. }
  2264. }
  2265. },
  2266. "System.Security.Cryptography.Encoding/4.3.0": {
  2267. "type": "package",
  2268. "frameworkAssemblies": [
  2269. "System",
  2270. "mscorlib"
  2271. ],
  2272. "compile": {
  2273. "ref/net46/System.Security.Cryptography.Encoding.dll": {}
  2274. },
  2275. "runtime": {
  2276. "lib/net46/System.Security.Cryptography.Encoding.dll": {}
  2277. },
  2278. "runtimeTargets": {
  2279. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2280. "assetType": "runtime",
  2281. "rid": "unix"
  2282. },
  2283. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll": {
  2284. "assetType": "runtime",
  2285. "rid": "win"
  2286. }
  2287. }
  2288. },
  2289. "System.Security.Cryptography.Primitives/4.3.0": {
  2290. "type": "package",
  2291. "frameworkAssemblies": [
  2292. "mscorlib"
  2293. ],
  2294. "compile": {
  2295. "ref/net46/System.Security.Cryptography.Primitives.dll": {}
  2296. },
  2297. "runtime": {
  2298. "lib/net46/System.Security.Cryptography.Primitives.dll": {}
  2299. }
  2300. },
  2301. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2302. "type": "package",
  2303. "dependencies": {
  2304. "System.Security.Cryptography.Algorithms": "4.3.0",
  2305. "System.Security.Cryptography.Encoding": "4.3.0"
  2306. },
  2307. "frameworkAssemblies": [
  2308. "System",
  2309. "System.Core",
  2310. "mscorlib"
  2311. ],
  2312. "compile": {
  2313. "ref/net461/System.Security.Cryptography.X509Certificates.dll": {}
  2314. },
  2315. "runtime": {
  2316. "lib/net461/System.Security.Cryptography.X509Certificates.dll": {}
  2317. },
  2318. "runtimeTargets": {
  2319. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2320. "assetType": "runtime",
  2321. "rid": "unix"
  2322. },
  2323. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll": {
  2324. "assetType": "runtime",
  2325. "rid": "win"
  2326. }
  2327. }
  2328. },
  2329. "System.Security.Cryptography.Xml/4.5.0": {
  2330. "type": "package",
  2331. "dependencies": {
  2332. "System.Security.Permissions": "4.5.0"
  2333. },
  2334. "frameworkAssemblies": [
  2335. "System",
  2336. "System.Security",
  2337. "System.Xml",
  2338. "mscorlib"
  2339. ],
  2340. "compile": {
  2341. "ref/net461/System.Security.Cryptography.Xml.dll": {
  2342. "related": ".xml"
  2343. }
  2344. },
  2345. "runtime": {
  2346. "lib/net461/System.Security.Cryptography.Xml.dll": {}
  2347. }
  2348. },
  2349. "System.Security.Permissions/4.5.0": {
  2350. "type": "package",
  2351. "dependencies": {
  2352. "System.Security.AccessControl": "4.5.0"
  2353. },
  2354. "frameworkAssemblies": [
  2355. "System",
  2356. "System.Data",
  2357. "System.Data.OracleClient",
  2358. "System.Drawing",
  2359. "System.Net",
  2360. "System.ServiceProcess",
  2361. "System.Transactions",
  2362. "mscorlib"
  2363. ],
  2364. "compile": {
  2365. "ref/net461/System.Security.Permissions.dll": {
  2366. "related": ".xml"
  2367. }
  2368. },
  2369. "runtime": {
  2370. "lib/net461/System.Security.Permissions.dll": {}
  2371. }
  2372. },
  2373. "System.Security.Principal.Windows/4.5.1": {
  2374. "type": "package",
  2375. "frameworkAssemblies": [
  2376. "System",
  2377. "mscorlib"
  2378. ],
  2379. "compile": {
  2380. "ref/net461/System.Security.Principal.Windows.dll": {
  2381. "related": ".xml"
  2382. }
  2383. },
  2384. "runtime": {
  2385. "lib/net461/System.Security.Principal.Windows.dll": {}
  2386. },
  2387. "runtimeTargets": {
  2388. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll": {
  2389. "assetType": "runtime",
  2390. "rid": "win"
  2391. }
  2392. }
  2393. },
  2394. "System.Text.Encoding/4.3.0": {
  2395. "type": "package",
  2396. "compile": {
  2397. "ref/net45/_._": {}
  2398. },
  2399. "runtime": {
  2400. "lib/net45/_._": {}
  2401. }
  2402. },
  2403. "System.Text.Encoding.CodePages/4.3.0": {
  2404. "type": "package",
  2405. "compile": {
  2406. "ref/netstandard1.3/_._": {
  2407. "related": ".xml"
  2408. }
  2409. },
  2410. "runtime": {
  2411. "lib/net46/System.Text.Encoding.CodePages.dll": {}
  2412. },
  2413. "runtimeTargets": {
  2414. "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
  2415. "assetType": "runtime",
  2416. "rid": "unix"
  2417. },
  2418. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
  2419. "assetType": "runtime",
  2420. "rid": "win"
  2421. }
  2422. }
  2423. },
  2424. "System.Text.Encoding.Extensions/4.3.0": {
  2425. "type": "package",
  2426. "compile": {
  2427. "ref/net45/_._": {}
  2428. },
  2429. "runtime": {
  2430. "lib/net45/_._": {}
  2431. }
  2432. },
  2433. "System.Text.Encodings.Web/4.5.0": {
  2434. "type": "package",
  2435. "compile": {
  2436. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2437. "related": ".xml"
  2438. }
  2439. },
  2440. "runtime": {
  2441. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2442. "related": ".xml"
  2443. }
  2444. }
  2445. },
  2446. "System.Threading/4.3.0": {
  2447. "type": "package",
  2448. "frameworkAssemblies": [
  2449. "System",
  2450. "System.Core"
  2451. ],
  2452. "compile": {
  2453. "ref/net45/_._": {}
  2454. },
  2455. "runtime": {
  2456. "lib/net45/_._": {}
  2457. }
  2458. },
  2459. "System.Threading.Tasks/4.3.0": {
  2460. "type": "package",
  2461. "frameworkAssemblies": [
  2462. "System.Core"
  2463. ],
  2464. "compile": {
  2465. "ref/net45/_._": {}
  2466. },
  2467. "runtime": {
  2468. "lib/net45/_._": {}
  2469. }
  2470. },
  2471. "System.Threading.Tasks.Extensions/4.5.1": {
  2472. "type": "package",
  2473. "dependencies": {
  2474. "System.Runtime.CompilerServices.Unsafe": "4.5.0"
  2475. },
  2476. "compile": {
  2477. "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
  2478. "related": ".xml"
  2479. }
  2480. },
  2481. "runtime": {
  2482. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
  2483. "related": ".xml"
  2484. }
  2485. }
  2486. },
  2487. "System.Threading.Tasks.Parallel/4.3.0": {
  2488. "type": "package",
  2489. "compile": {
  2490. "ref/net45/_._": {}
  2491. },
  2492. "runtime": {
  2493. "lib/net45/_._": {}
  2494. }
  2495. },
  2496. "System.Threading.Thread/4.3.0": {
  2497. "type": "package",
  2498. "frameworkAssemblies": [
  2499. "mscorlib"
  2500. ],
  2501. "compile": {
  2502. "ref/net46/_._": {}
  2503. },
  2504. "runtime": {
  2505. "lib/net46/System.Threading.Thread.dll": {}
  2506. }
  2507. },
  2508. "System.ValueTuple/4.3.0": {
  2509. "type": "package",
  2510. "compile": {
  2511. "lib/netstandard1.0/System.ValueTuple.dll": {}
  2512. },
  2513. "runtime": {
  2514. "lib/netstandard1.0/System.ValueTuple.dll": {}
  2515. }
  2516. },
  2517. "System.Xml.ReaderWriter/4.3.0": {
  2518. "type": "package",
  2519. "frameworkAssemblies": [
  2520. "System.Xml",
  2521. "mscorlib"
  2522. ],
  2523. "compile": {
  2524. "ref/net46/System.Xml.ReaderWriter.dll": {}
  2525. },
  2526. "runtime": {
  2527. "lib/net46/System.Xml.ReaderWriter.dll": {}
  2528. }
  2529. },
  2530. "System.Xml.XDocument/4.3.0": {
  2531. "type": "package",
  2532. "frameworkAssemblies": [
  2533. "System.Xml.Linq"
  2534. ],
  2535. "compile": {
  2536. "ref/net45/_._": {}
  2537. },
  2538. "runtime": {
  2539. "lib/net45/_._": {}
  2540. }
  2541. },
  2542. "System.Xml.XmlDocument/4.3.0": {
  2543. "type": "package",
  2544. "frameworkAssemblies": [
  2545. "System.Xml",
  2546. "mscorlib"
  2547. ],
  2548. "compile": {
  2549. "ref/net46/_._": {}
  2550. },
  2551. "runtime": {
  2552. "lib/net46/System.Xml.XmlDocument.dll": {}
  2553. }
  2554. },
  2555. "System.Xml.XPath/4.3.0": {
  2556. "type": "package",
  2557. "frameworkAssemblies": [
  2558. "System.Xml",
  2559. "mscorlib"
  2560. ],
  2561. "compile": {
  2562. "ref/net46/_._": {}
  2563. },
  2564. "runtime": {
  2565. "lib/net46/System.Xml.XPath.dll": {}
  2566. }
  2567. },
  2568. "System.Xml.XPath.XDocument/4.3.0": {
  2569. "type": "package",
  2570. "dependencies": {
  2571. "System.Xml.XPath": "4.3.0"
  2572. },
  2573. "frameworkAssemblies": [
  2574. "System.Xml",
  2575. "System.Xml.Linq",
  2576. "mscorlib"
  2577. ],
  2578. "compile": {
  2579. "ref/net46/_._": {}
  2580. },
  2581. "runtime": {
  2582. "lib/net46/System.Xml.XPath.XDocument.dll": {}
  2583. }
  2584. }
  2585. },
  2586. ".NETFramework,Version=v4.8/win7-x86": {
  2587. "Microsoft.AspNetCore/2.1.7": {
  2588. "type": "package",
  2589. "dependencies": {
  2590. "Microsoft.AspNetCore.Diagnostics": "2.1.1",
  2591. "Microsoft.AspNetCore.HostFiltering": "2.1.1",
  2592. "Microsoft.AspNetCore.Hosting": "2.1.1",
  2593. "Microsoft.AspNetCore.Routing": "2.1.1",
  2594. "Microsoft.AspNetCore.Server.IISIntegration": "2.1.7",
  2595. "Microsoft.AspNetCore.Server.Kestrel": "2.1.3",
  2596. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.1.3",
  2597. "Microsoft.Extensions.Configuration.CommandLine": "2.1.1",
  2598. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.1.1",
  2599. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  2600. "Microsoft.Extensions.Configuration.Json": "2.1.1",
  2601. "Microsoft.Extensions.Configuration.UserSecrets": "2.1.1",
  2602. "Microsoft.Extensions.Logging": "2.1.1",
  2603. "Microsoft.Extensions.Logging.Configuration": "2.1.1",
  2604. "Microsoft.Extensions.Logging.Console": "2.1.1",
  2605. "Microsoft.Extensions.Logging.Debug": "2.1.1"
  2606. },
  2607. "compile": {
  2608. "lib/netstandard2.0/Microsoft.AspNetCore.dll": {
  2609. "related": ".xml"
  2610. }
  2611. },
  2612. "runtime": {
  2613. "lib/netstandard2.0/Microsoft.AspNetCore.dll": {
  2614. "related": ".xml"
  2615. }
  2616. }
  2617. },
  2618. "Microsoft.AspNetCore.Antiforgery/2.1.1": {
  2619. "type": "package",
  2620. "dependencies": {
  2621. "Microsoft.AspNetCore.DataProtection": "2.1.1",
  2622. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  2623. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  2624. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  2625. "Microsoft.Extensions.ObjectPool": "2.1.1"
  2626. },
  2627. "compile": {
  2628. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {
  2629. "related": ".xml"
  2630. }
  2631. },
  2632. "runtime": {
  2633. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {
  2634. "related": ".xml"
  2635. }
  2636. }
  2637. },
  2638. "Microsoft.AspNetCore.Authentication.Abstractions/2.1.1": {
  2639. "type": "package",
  2640. "dependencies": {
  2641. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  2642. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  2643. "Microsoft.Extensions.Options": "2.1.1"
  2644. },
  2645. "compile": {
  2646. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  2647. "related": ".xml"
  2648. }
  2649. },
  2650. "runtime": {
  2651. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  2652. "related": ".xml"
  2653. }
  2654. }
  2655. },
  2656. "Microsoft.AspNetCore.Authentication.Core/2.1.1": {
  2657. "type": "package",
  2658. "dependencies": {
  2659. "Microsoft.AspNetCore.Authentication.Abstractions": "2.1.1",
  2660. "Microsoft.AspNetCore.Http": "2.1.1",
  2661. "Microsoft.AspNetCore.Http.Extensions": "2.1.1"
  2662. },
  2663. "compile": {
  2664. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
  2665. "related": ".xml"
  2666. }
  2667. },
  2668. "runtime": {
  2669. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
  2670. "related": ".xml"
  2671. }
  2672. }
  2673. },
  2674. "Microsoft.AspNetCore.Authorization/2.1.1": {
  2675. "type": "package",
  2676. "dependencies": {
  2677. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  2678. "Microsoft.Extensions.Options": "2.1.1"
  2679. },
  2680. "compile": {
  2681. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  2682. "related": ".xml"
  2683. }
  2684. },
  2685. "runtime": {
  2686. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  2687. "related": ".xml"
  2688. }
  2689. }
  2690. },
  2691. "Microsoft.AspNetCore.Authorization.Policy/2.1.1": {
  2692. "type": "package",
  2693. "dependencies": {
  2694. "Microsoft.AspNetCore.Authentication.Abstractions": "2.1.1",
  2695. "Microsoft.AspNetCore.Authorization": "2.1.1"
  2696. },
  2697. "compile": {
  2698. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  2699. "related": ".xml"
  2700. }
  2701. },
  2702. "runtime": {
  2703. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  2704. "related": ".xml"
  2705. }
  2706. }
  2707. },
  2708. "Microsoft.AspNetCore.Connections.Abstractions/2.1.3": {
  2709. "type": "package",
  2710. "dependencies": {
  2711. "Microsoft.AspNetCore.Http.Features": "2.1.1",
  2712. "System.IO.Pipelines": "4.5.0"
  2713. },
  2714. "compile": {
  2715. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  2716. "related": ".xml"
  2717. }
  2718. },
  2719. "runtime": {
  2720. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {
  2721. "related": ".xml"
  2722. }
  2723. }
  2724. },
  2725. "Microsoft.AspNetCore.Cors/2.1.1": {
  2726. "type": "package",
  2727. "dependencies": {
  2728. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  2729. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
  2730. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  2731. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  2732. "Microsoft.Extensions.Options": "2.1.1"
  2733. },
  2734. "compile": {
  2735. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {
  2736. "related": ".xml"
  2737. }
  2738. },
  2739. "runtime": {
  2740. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {
  2741. "related": ".xml"
  2742. }
  2743. }
  2744. },
  2745. "Microsoft.AspNetCore.Cryptography.Internal/2.1.1": {
  2746. "type": "package",
  2747. "compile": {
  2748. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  2749. "related": ".xml"
  2750. }
  2751. },
  2752. "runtime": {
  2753. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  2754. "related": ".xml"
  2755. }
  2756. }
  2757. },
  2758. "Microsoft.AspNetCore.DataProtection/2.1.1": {
  2759. "type": "package",
  2760. "dependencies": {
  2761. "Microsoft.AspNetCore.Cryptography.Internal": "2.1.1",
  2762. "Microsoft.AspNetCore.DataProtection.Abstractions": "2.1.1",
  2763. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  2764. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  2765. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  2766. "Microsoft.Extensions.Options": "2.1.1",
  2767. "Microsoft.Win32.Registry": "4.5.0",
  2768. "System.Security.Cryptography.Xml": "4.5.0",
  2769. "System.Security.Principal.Windows": "4.5.0"
  2770. },
  2771. "compile": {
  2772. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {
  2773. "related": ".xml"
  2774. }
  2775. },
  2776. "runtime": {
  2777. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {
  2778. "related": ".xml"
  2779. }
  2780. }
  2781. },
  2782. "Microsoft.AspNetCore.DataProtection.Abstractions/2.1.1": {
  2783. "type": "package",
  2784. "compile": {
  2785. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  2786. "related": ".xml"
  2787. }
  2788. },
  2789. "runtime": {
  2790. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  2791. "related": ".xml"
  2792. }
  2793. }
  2794. },
  2795. "Microsoft.AspNetCore.Diagnostics/2.1.1": {
  2796. "type": "package",
  2797. "dependencies": {
  2798. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.1.1",
  2799. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  2800. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  2801. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  2802. "Microsoft.Extensions.FileProviders.Physical": "2.1.1",
  2803. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  2804. "Microsoft.Extensions.Options": "2.1.1",
  2805. "System.Diagnostics.DiagnosticSource": "4.5.0",
  2806. "System.Reflection.Metadata": "1.6.0"
  2807. },
  2808. "compile": {
  2809. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {
  2810. "related": ".xml"
  2811. }
  2812. },
  2813. "runtime": {
  2814. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {
  2815. "related": ".xml"
  2816. }
  2817. }
  2818. },
  2819. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.1.1": {
  2820. "type": "package",
  2821. "compile": {
  2822. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
  2823. "related": ".xml"
  2824. }
  2825. },
  2826. "runtime": {
  2827. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
  2828. "related": ".xml"
  2829. }
  2830. }
  2831. },
  2832. "Microsoft.AspNetCore.HostFiltering/2.1.1": {
  2833. "type": "package",
  2834. "dependencies": {
  2835. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  2836. "Microsoft.AspNetCore.Http": "2.1.1",
  2837. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  2838. "Microsoft.Extensions.Options": "2.1.1"
  2839. },
  2840. "compile": {
  2841. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll": {
  2842. "related": ".xml"
  2843. }
  2844. },
  2845. "runtime": {
  2846. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll": {
  2847. "related": ".xml"
  2848. }
  2849. }
  2850. },
  2851. "Microsoft.AspNetCore.Hosting/2.1.1": {
  2852. "type": "package",
  2853. "dependencies": {
  2854. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  2855. "Microsoft.AspNetCore.Http": "2.1.1",
  2856. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  2857. "Microsoft.Extensions.Configuration": "2.1.1",
  2858. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.1.1",
  2859. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  2860. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  2861. "Microsoft.Extensions.FileProviders.Physical": "2.1.1",
  2862. "Microsoft.Extensions.Hosting.Abstractions": "2.1.1",
  2863. "Microsoft.Extensions.Logging": "2.1.1",
  2864. "Microsoft.Extensions.Options": "2.1.1",
  2865. "System.Diagnostics.DiagnosticSource": "4.5.0",
  2866. "System.Reflection.Metadata": "1.6.0"
  2867. },
  2868. "compile": {
  2869. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {
  2870. "related": ".xml"
  2871. }
  2872. },
  2873. "runtime": {
  2874. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {
  2875. "related": ".xml"
  2876. }
  2877. }
  2878. },
  2879. "Microsoft.AspNetCore.Hosting.Abstractions/2.1.1": {
  2880. "type": "package",
  2881. "dependencies": {
  2882. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.1.1",
  2883. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  2884. "Microsoft.Extensions.Hosting.Abstractions": "2.1.1"
  2885. },
  2886. "compile": {
  2887. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  2888. "related": ".xml"
  2889. }
  2890. },
  2891. "runtime": {
  2892. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  2893. "related": ".xml"
  2894. }
  2895. }
  2896. },
  2897. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.1": {
  2898. "type": "package",
  2899. "dependencies": {
  2900. "Microsoft.AspNetCore.Http.Features": "2.1.1",
  2901. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
  2902. },
  2903. "compile": {
  2904. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  2905. "related": ".xml"
  2906. }
  2907. },
  2908. "runtime": {
  2909. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  2910. "related": ".xml"
  2911. }
  2912. }
  2913. },
  2914. "Microsoft.AspNetCore.Html.Abstractions/2.1.1": {
  2915. "type": "package",
  2916. "dependencies": {
  2917. "System.Text.Encodings.Web": "4.5.0"
  2918. },
  2919. "compile": {
  2920. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {
  2921. "related": ".xml"
  2922. }
  2923. },
  2924. "runtime": {
  2925. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {
  2926. "related": ".xml"
  2927. }
  2928. }
  2929. },
  2930. "Microsoft.AspNetCore.Http/2.1.1": {
  2931. "type": "package",
  2932. "dependencies": {
  2933. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  2934. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  2935. "Microsoft.Extensions.ObjectPool": "2.1.1",
  2936. "Microsoft.Extensions.Options": "2.1.1",
  2937. "Microsoft.Net.Http.Headers": "2.1.1"
  2938. },
  2939. "compile": {
  2940. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  2941. "related": ".xml"
  2942. }
  2943. },
  2944. "runtime": {
  2945. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  2946. "related": ".xml"
  2947. }
  2948. }
  2949. },
  2950. "Microsoft.AspNetCore.Http.Abstractions/2.1.1": {
  2951. "type": "package",
  2952. "dependencies": {
  2953. "Microsoft.AspNetCore.Http.Features": "2.1.1",
  2954. "System.Text.Encodings.Web": "4.5.0"
  2955. },
  2956. "compile": {
  2957. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  2958. "related": ".xml"
  2959. }
  2960. },
  2961. "runtime": {
  2962. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  2963. "related": ".xml"
  2964. }
  2965. }
  2966. },
  2967. "Microsoft.AspNetCore.Http.Extensions/2.1.1": {
  2968. "type": "package",
  2969. "dependencies": {
  2970. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  2971. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  2972. "Microsoft.Net.Http.Headers": "2.1.1",
  2973. "System.Buffers": "4.5.0"
  2974. },
  2975. "compile": {
  2976. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  2977. "related": ".xml"
  2978. }
  2979. },
  2980. "runtime": {
  2981. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  2982. "related": ".xml"
  2983. }
  2984. }
  2985. },
  2986. "Microsoft.AspNetCore.Http.Features/2.1.1": {
  2987. "type": "package",
  2988. "dependencies": {
  2989. "Microsoft.Extensions.Primitives": "2.1.1"
  2990. },
  2991. "compile": {
  2992. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  2993. "related": ".xml"
  2994. }
  2995. },
  2996. "runtime": {
  2997. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  2998. "related": ".xml"
  2999. }
  3000. }
  3001. },
  3002. "Microsoft.AspNetCore.HttpOverrides/2.1.1": {
  3003. "type": "package",
  3004. "dependencies": {
  3005. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  3006. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  3007. "Microsoft.Extensions.Options": "2.1.1"
  3008. },
  3009. "compile": {
  3010. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {
  3011. "related": ".xml"
  3012. }
  3013. },
  3014. "runtime": {
  3015. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {
  3016. "related": ".xml"
  3017. }
  3018. }
  3019. },
  3020. "Microsoft.AspNetCore.HttpsPolicy/2.1.1": {
  3021. "type": "package",
  3022. "dependencies": {
  3023. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  3024. "Microsoft.AspNetCore.Http": "2.1.1",
  3025. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  3026. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  3027. "Microsoft.Extensions.Options": "2.1.1"
  3028. },
  3029. "compile": {
  3030. "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll": {
  3031. "related": ".xml"
  3032. }
  3033. },
  3034. "runtime": {
  3035. "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll": {
  3036. "related": ".xml"
  3037. }
  3038. }
  3039. },
  3040. "Microsoft.AspNetCore.JsonPatch/2.1.1": {
  3041. "type": "package",
  3042. "dependencies": {
  3043. "Microsoft.CSharp": "4.5.0",
  3044. "Newtonsoft.Json": "11.0.2"
  3045. },
  3046. "compile": {
  3047. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  3048. "related": ".xml"
  3049. }
  3050. },
  3051. "runtime": {
  3052. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  3053. "related": ".xml"
  3054. }
  3055. }
  3056. },
  3057. "Microsoft.AspNetCore.Localization/2.1.1": {
  3058. "type": "package",
  3059. "dependencies": {
  3060. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  3061. "Microsoft.Extensions.Localization.Abstractions": "2.1.1",
  3062. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  3063. "Microsoft.Extensions.Options": "2.1.1"
  3064. },
  3065. "compile": {
  3066. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {
  3067. "related": ".xml"
  3068. }
  3069. },
  3070. "runtime": {
  3071. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {
  3072. "related": ".xml"
  3073. }
  3074. }
  3075. },
  3076. "Microsoft.AspNetCore.Mvc/2.1.3": {
  3077. "type": "package",
  3078. "dependencies": {
  3079. "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.1.3",
  3080. "Microsoft.AspNetCore.Mvc.Cors": "2.1.3",
  3081. "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.1.3",
  3082. "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.1.3",
  3083. "Microsoft.AspNetCore.Mvc.Localization": "2.1.3",
  3084. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.1.1",
  3085. "Microsoft.AspNetCore.Mvc.RazorPages": "2.1.3",
  3086. "Microsoft.AspNetCore.Mvc.TagHelpers": "2.1.3",
  3087. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.1.3",
  3088. "Microsoft.AspNetCore.Razor.Design": "2.1.1",
  3089. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  3090. "Microsoft.Extensions.DependencyInjection": "2.1.1"
  3091. },
  3092. "compile": {
  3093. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {
  3094. "related": ".xml"
  3095. }
  3096. },
  3097. "runtime": {
  3098. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {
  3099. "related": ".xml"
  3100. }
  3101. }
  3102. },
  3103. "Microsoft.AspNetCore.Mvc.Abstractions/2.1.3": {
  3104. "type": "package",
  3105. "dependencies": {
  3106. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1",
  3107. "Microsoft.Net.Http.Headers": "2.1.1"
  3108. },
  3109. "compile": {
  3110. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
  3111. "related": ".xml"
  3112. }
  3113. },
  3114. "runtime": {
  3115. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
  3116. "related": ".xml"
  3117. }
  3118. }
  3119. },
  3120. "Microsoft.AspNetCore.Mvc.ApiExplorer/2.1.3": {
  3121. "type": "package",
  3122. "dependencies": {
  3123. "Microsoft.AspNetCore.Mvc.Core": "2.1.3"
  3124. },
  3125. "compile": {
  3126. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {
  3127. "related": ".xml"
  3128. }
  3129. },
  3130. "runtime": {
  3131. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {
  3132. "related": ".xml"
  3133. }
  3134. }
  3135. },
  3136. "Microsoft.AspNetCore.Mvc.Core/2.1.3": {
  3137. "type": "package",
  3138. "dependencies": {
  3139. "Microsoft.AspNetCore.Authentication.Core": "2.1.1",
  3140. "Microsoft.AspNetCore.Authorization.Policy": "2.1.1",
  3141. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  3142. "Microsoft.AspNetCore.Http": "2.1.1",
  3143. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  3144. "Microsoft.AspNetCore.Mvc.Abstractions": "2.1.3",
  3145. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.1.1",
  3146. "Microsoft.AspNetCore.Routing": "2.1.1",
  3147. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  3148. "Microsoft.Extensions.DependencyModel": "2.1.0",
  3149. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  3150. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  3151. "System.Diagnostics.DiagnosticSource": "4.5.1",
  3152. "System.Threading.Tasks.Extensions": "4.5.1"
  3153. },
  3154. "compile": {
  3155. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
  3156. "related": ".xml"
  3157. }
  3158. },
  3159. "runtime": {
  3160. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
  3161. "related": ".xml"
  3162. }
  3163. }
  3164. },
  3165. "Microsoft.AspNetCore.Mvc.Cors/2.1.3": {
  3166. "type": "package",
  3167. "dependencies": {
  3168. "Microsoft.AspNetCore.Cors": "2.1.1",
  3169. "Microsoft.AspNetCore.Mvc.Core": "2.1.3"
  3170. },
  3171. "compile": {
  3172. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {
  3173. "related": ".xml"
  3174. }
  3175. },
  3176. "runtime": {
  3177. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {
  3178. "related": ".xml"
  3179. }
  3180. }
  3181. },
  3182. "Microsoft.AspNetCore.Mvc.DataAnnotations/2.1.3": {
  3183. "type": "package",
  3184. "dependencies": {
  3185. "Microsoft.AspNetCore.Mvc.Core": "2.1.3",
  3186. "Microsoft.Extensions.Localization": "2.1.1",
  3187. "System.ComponentModel.Annotations": "4.5.0"
  3188. },
  3189. "compile": {
  3190. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
  3191. "related": ".xml"
  3192. }
  3193. },
  3194. "runtime": {
  3195. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
  3196. "related": ".xml"
  3197. }
  3198. }
  3199. },
  3200. "Microsoft.AspNetCore.Mvc.Formatters.Json/2.1.3": {
  3201. "type": "package",
  3202. "dependencies": {
  3203. "Microsoft.AspNetCore.JsonPatch": "2.1.1",
  3204. "Microsoft.AspNetCore.Mvc.Core": "2.1.3"
  3205. },
  3206. "compile": {
  3207. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
  3208. "related": ".xml"
  3209. }
  3210. },
  3211. "runtime": {
  3212. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
  3213. "related": ".xml"
  3214. }
  3215. }
  3216. },
  3217. "Microsoft.AspNetCore.Mvc.Localization/2.1.3": {
  3218. "type": "package",
  3219. "dependencies": {
  3220. "Microsoft.AspNetCore.Localization": "2.1.1",
  3221. "Microsoft.AspNetCore.Mvc.Razor": "2.1.3",
  3222. "Microsoft.Extensions.DependencyInjection": "2.1.1",
  3223. "Microsoft.Extensions.Localization": "2.1.1"
  3224. },
  3225. "compile": {
  3226. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {
  3227. "related": ".xml"
  3228. }
  3229. },
  3230. "runtime": {
  3231. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {
  3232. "related": ".xml"
  3233. }
  3234. }
  3235. },
  3236. "Microsoft.AspNetCore.Mvc.Razor/2.1.3": {
  3237. "type": "package",
  3238. "dependencies": {
  3239. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.1.1",
  3240. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.1.3",
  3241. "Microsoft.AspNetCore.Razor.Runtime": "2.1.1",
  3242. "Microsoft.CodeAnalysis.CSharp": "2.8.0",
  3243. "Microsoft.CodeAnalysis.Razor": "2.1.1",
  3244. "Microsoft.DiaSymReader.Native": "1.7.0",
  3245. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  3246. "Microsoft.Extensions.FileProviders.Composite": "2.1.1"
  3247. },
  3248. "compile": {
  3249. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {
  3250. "related": ".xml"
  3251. }
  3252. },
  3253. "runtime": {
  3254. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {
  3255. "related": ".xml"
  3256. }
  3257. }
  3258. },
  3259. "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.1.1": {
  3260. "type": "package",
  3261. "dependencies": {
  3262. "Microsoft.AspNetCore.Razor.Language": "2.1.1",
  3263. "Microsoft.CodeAnalysis.Razor": "2.1.1"
  3264. },
  3265. "compile": {
  3266. "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
  3267. "related": ".xml"
  3268. }
  3269. },
  3270. "runtime": {
  3271. "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
  3272. "related": ".xml"
  3273. }
  3274. },
  3275. "build": {
  3276. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.props": {},
  3277. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.targets": {}
  3278. }
  3279. },
  3280. "Microsoft.AspNetCore.Mvc.RazorPages/2.1.3": {
  3281. "type": "package",
  3282. "dependencies": {
  3283. "Microsoft.AspNetCore.Mvc.Razor": "2.1.3"
  3284. },
  3285. "compile": {
  3286. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {
  3287. "related": ".xml"
  3288. }
  3289. },
  3290. "runtime": {
  3291. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {
  3292. "related": ".xml"
  3293. }
  3294. }
  3295. },
  3296. "Microsoft.AspNetCore.Mvc.TagHelpers/2.1.3": {
  3297. "type": "package",
  3298. "dependencies": {
  3299. "Microsoft.AspNetCore.Mvc.Razor": "2.1.3",
  3300. "Microsoft.AspNetCore.Razor.Runtime": "2.1.1",
  3301. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1",
  3302. "Microsoft.Extensions.Caching.Memory": "2.1.1",
  3303. "Microsoft.Extensions.FileSystemGlobbing": "2.1.1",
  3304. "Microsoft.Extensions.Primitives": "2.1.1"
  3305. },
  3306. "compile": {
  3307. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
  3308. "related": ".xml"
  3309. }
  3310. },
  3311. "runtime": {
  3312. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
  3313. "related": ".xml"
  3314. }
  3315. }
  3316. },
  3317. "Microsoft.AspNetCore.Mvc.ViewFeatures/2.1.3": {
  3318. "type": "package",
  3319. "dependencies": {
  3320. "Microsoft.AspNetCore.Antiforgery": "2.1.1",
  3321. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.1.1",
  3322. "Microsoft.AspNetCore.Html.Abstractions": "2.1.1",
  3323. "Microsoft.AspNetCore.Mvc.Core": "2.1.3",
  3324. "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.1.3",
  3325. "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.1.3",
  3326. "Microsoft.Extensions.WebEncoders": "2.1.1",
  3327. "Newtonsoft.Json.Bson": "1.0.1"
  3328. },
  3329. "compile": {
  3330. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
  3331. "related": ".xml"
  3332. }
  3333. },
  3334. "runtime": {
  3335. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
  3336. "related": ".xml"
  3337. }
  3338. }
  3339. },
  3340. "Microsoft.AspNetCore.Razor/2.1.1": {
  3341. "type": "package",
  3342. "dependencies": {
  3343. "Microsoft.AspNetCore.Html.Abstractions": "2.1.1"
  3344. },
  3345. "compile": {
  3346. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {
  3347. "related": ".xml"
  3348. }
  3349. },
  3350. "runtime": {
  3351. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {
  3352. "related": ".xml"
  3353. }
  3354. }
  3355. },
  3356. "Microsoft.AspNetCore.Razor.Design/2.1.1": {
  3357. "type": "package",
  3358. "build": {
  3359. "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.props": {}
  3360. },
  3361. "buildMultiTargeting": {
  3362. "buildMultiTargeting/Microsoft.AspNetCore.Razor.Design.props": {}
  3363. }
  3364. },
  3365. "Microsoft.AspNetCore.Razor.Language/2.1.1": {
  3366. "type": "package",
  3367. "compile": {
  3368. "lib/net46/Microsoft.AspNetCore.Razor.Language.dll": {
  3369. "related": ".xml"
  3370. }
  3371. },
  3372. "runtime": {
  3373. "lib/net46/Microsoft.AspNetCore.Razor.Language.dll": {
  3374. "related": ".xml"
  3375. }
  3376. }
  3377. },
  3378. "Microsoft.AspNetCore.Razor.Runtime/2.1.1": {
  3379. "type": "package",
  3380. "dependencies": {
  3381. "Microsoft.AspNetCore.Html.Abstractions": "2.1.1",
  3382. "Microsoft.AspNetCore.Razor": "2.1.1"
  3383. },
  3384. "compile": {
  3385. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {
  3386. "related": ".xml"
  3387. }
  3388. },
  3389. "runtime": {
  3390. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {
  3391. "related": ".xml"
  3392. }
  3393. }
  3394. },
  3395. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.1.1": {
  3396. "type": "package",
  3397. "dependencies": {
  3398. "Microsoft.Extensions.Primitives": "2.1.1"
  3399. },
  3400. "compile": {
  3401. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
  3402. "related": ".xml"
  3403. }
  3404. },
  3405. "runtime": {
  3406. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
  3407. "related": ".xml"
  3408. }
  3409. }
  3410. },
  3411. "Microsoft.AspNetCore.Routing/2.1.1": {
  3412. "type": "package",
  3413. "dependencies": {
  3414. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  3415. "Microsoft.AspNetCore.Routing.Abstractions": "2.1.1",
  3416. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  3417. "Microsoft.Extensions.ObjectPool": "2.1.1",
  3418. "Microsoft.Extensions.Options": "2.1.1"
  3419. },
  3420. "compile": {
  3421. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll": {
  3422. "related": ".xml"
  3423. }
  3424. },
  3425. "runtime": {
  3426. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll": {
  3427. "related": ".xml"
  3428. }
  3429. }
  3430. },
  3431. "Microsoft.AspNetCore.Routing.Abstractions/2.1.1": {
  3432. "type": "package",
  3433. "dependencies": {
  3434. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1"
  3435. },
  3436. "compile": {
  3437. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  3438. "related": ".xml"
  3439. }
  3440. },
  3441. "runtime": {
  3442. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  3443. "related": ".xml"
  3444. }
  3445. }
  3446. },
  3447. "Microsoft.AspNetCore.Server.IISIntegration/2.1.7": {
  3448. "type": "package",
  3449. "dependencies": {
  3450. "Microsoft.AspNetCore.Authentication.Core": "2.1.1",
  3451. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  3452. "Microsoft.AspNetCore.Http": "2.1.1",
  3453. "Microsoft.AspNetCore.Http.Extensions": "2.1.1",
  3454. "Microsoft.AspNetCore.HttpOverrides": "2.1.1",
  3455. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  3456. "Microsoft.Extensions.Options": "2.1.1",
  3457. "System.Buffers": "4.5.0",
  3458. "System.IO.Pipelines": "4.5.3",
  3459. "System.Memory": "4.5.2",
  3460. "System.Numerics.Vectors": "4.5.0",
  3461. "System.Runtime.CompilerServices.Unsafe": "4.5.2",
  3462. "System.Security.Principal.Windows": "4.5.1"
  3463. },
  3464. "compile": {
  3465. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {
  3466. "related": ".xml"
  3467. }
  3468. },
  3469. "runtime": {
  3470. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {
  3471. "related": ".xml"
  3472. }
  3473. }
  3474. },
  3475. "Microsoft.AspNetCore.Server.Kestrel/2.1.3": {
  3476. "type": "package",
  3477. "dependencies": {
  3478. "Microsoft.AspNetCore.Hosting": "2.1.1",
  3479. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.1.3",
  3480. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.1.3",
  3481. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.1.3"
  3482. },
  3483. "compile": {
  3484. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {
  3485. "related": ".xml"
  3486. }
  3487. },
  3488. "runtime": {
  3489. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {
  3490. "related": ".xml"
  3491. }
  3492. }
  3493. },
  3494. "Microsoft.AspNetCore.Server.Kestrel.Core/2.1.3": {
  3495. "type": "package",
  3496. "dependencies": {
  3497. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  3498. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.1.3",
  3499. "Microsoft.AspNetCore.WebUtilities": "2.1.1",
  3500. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  3501. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  3502. "Microsoft.Extensions.Options": "2.1.1",
  3503. "Microsoft.Net.Http.Headers": "2.1.1",
  3504. "System.Memory": "4.5.1",
  3505. "System.Numerics.Vectors": "4.5.0",
  3506. "System.Runtime.CompilerServices.Unsafe": "4.5.1",
  3507. "System.Security.Cryptography.Cng": "4.5.0",
  3508. "System.Threading.Tasks.Extensions": "4.5.1"
  3509. },
  3510. "compile": {
  3511. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {
  3512. "related": ".xml"
  3513. }
  3514. },
  3515. "runtime": {
  3516. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {
  3517. "related": ".xml"
  3518. }
  3519. }
  3520. },
  3521. "Microsoft.AspNetCore.Server.Kestrel.Https/2.1.3": {
  3522. "type": "package",
  3523. "dependencies": {
  3524. "Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
  3525. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.1.3"
  3526. },
  3527. "compile": {
  3528. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
  3529. "related": ".xml"
  3530. }
  3531. },
  3532. "runtime": {
  3533. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
  3534. "related": ".xml"
  3535. }
  3536. }
  3537. },
  3538. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.1.3": {
  3539. "type": "package",
  3540. "dependencies": {
  3541. "Microsoft.AspNetCore.Connections.Abstractions": "2.1.3"
  3542. },
  3543. "compile": {
  3544. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
  3545. "related": ".xml"
  3546. }
  3547. },
  3548. "runtime": {
  3549. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
  3550. "related": ".xml"
  3551. }
  3552. }
  3553. },
  3554. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.1.3": {
  3555. "type": "package",
  3556. "dependencies": {
  3557. "Microsoft.AspNetCore.Hosting.Abstractions": "2.1.1",
  3558. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.1.3",
  3559. "Microsoft.Extensions.Options": "2.1.1"
  3560. },
  3561. "compile": {
  3562. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {
  3563. "related": ".xml"
  3564. }
  3565. },
  3566. "runtime": {
  3567. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {
  3568. "related": ".xml"
  3569. }
  3570. }
  3571. },
  3572. "Microsoft.AspNetCore.WebUtilities/2.1.1": {
  3573. "type": "package",
  3574. "dependencies": {
  3575. "Microsoft.Net.Http.Headers": "2.1.1",
  3576. "System.Text.Encodings.Web": "4.5.0"
  3577. },
  3578. "compile": {
  3579. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  3580. "related": ".xml"
  3581. }
  3582. },
  3583. "runtime": {
  3584. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  3585. "related": ".xml"
  3586. }
  3587. }
  3588. },
  3589. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  3590. "type": "package",
  3591. "frameworkAssemblies": [
  3592. "System"
  3593. ]
  3594. },
  3595. "Microsoft.CodeAnalysis.Common/2.8.0": {
  3596. "type": "package",
  3597. "dependencies": {
  3598. "Microsoft.CodeAnalysis.Analyzers": "1.1.0",
  3599. "System.AppContext": "4.3.0",
  3600. "System.Collections": "4.3.0",
  3601. "System.Collections.Concurrent": "4.3.0",
  3602. "System.Collections.Immutable": "1.3.1",
  3603. "System.Console": "4.3.0",
  3604. "System.Diagnostics.Debug": "4.3.0",
  3605. "System.Diagnostics.FileVersionInfo": "4.3.0",
  3606. "System.Diagnostics.StackTrace": "4.3.0",
  3607. "System.Diagnostics.Tools": "4.3.0",
  3608. "System.Dynamic.Runtime": "4.3.0",
  3609. "System.Globalization": "4.3.0",
  3610. "System.IO.Compression": "4.3.0",
  3611. "System.IO.FileSystem": "4.3.0",
  3612. "System.IO.FileSystem.Primitives": "4.3.0",
  3613. "System.Linq": "4.3.0",
  3614. "System.Linq.Expressions": "4.3.0",
  3615. "System.Reflection": "4.3.0",
  3616. "System.Reflection.Metadata": "1.4.2",
  3617. "System.Resources.ResourceManager": "4.3.0",
  3618. "System.Runtime": "4.3.0",
  3619. "System.Runtime.Extensions": "4.3.0",
  3620. "System.Runtime.InteropServices": "4.3.0",
  3621. "System.Runtime.Numerics": "4.3.0",
  3622. "System.Security.Cryptography.Algorithms": "4.3.0",
  3623. "System.Security.Cryptography.Encoding": "4.3.0",
  3624. "System.Security.Cryptography.X509Certificates": "4.3.0",
  3625. "System.Text.Encoding": "4.3.0",
  3626. "System.Text.Encoding.CodePages": "4.3.0",
  3627. "System.Text.Encoding.Extensions": "4.3.0",
  3628. "System.Threading": "4.3.0",
  3629. "System.Threading.Tasks": "4.3.0",
  3630. "System.Threading.Tasks.Parallel": "4.3.0",
  3631. "System.Threading.Thread": "4.3.0",
  3632. "System.ValueTuple": "4.3.0",
  3633. "System.Xml.ReaderWriter": "4.3.0",
  3634. "System.Xml.XDocument": "4.3.0",
  3635. "System.Xml.XPath.XDocument": "4.3.0",
  3636. "System.Xml.XmlDocument": "4.3.0"
  3637. },
  3638. "compile": {
  3639. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {
  3640. "related": ".pdb;.xml"
  3641. }
  3642. },
  3643. "runtime": {
  3644. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {
  3645. "related": ".pdb;.xml"
  3646. }
  3647. }
  3648. },
  3649. "Microsoft.CodeAnalysis.CSharp/2.8.0": {
  3650. "type": "package",
  3651. "dependencies": {
  3652. "Microsoft.CodeAnalysis.Common": "[2.8.0]"
  3653. },
  3654. "compile": {
  3655. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {
  3656. "related": ".pdb;.xml"
  3657. }
  3658. },
  3659. "runtime": {
  3660. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {
  3661. "related": ".pdb;.xml"
  3662. }
  3663. }
  3664. },
  3665. "Microsoft.CodeAnalysis.Razor/2.1.1": {
  3666. "type": "package",
  3667. "dependencies": {
  3668. "Microsoft.AspNetCore.Razor.Language": "2.1.1",
  3669. "Microsoft.CodeAnalysis.CSharp": "2.8.0",
  3670. "Microsoft.CodeAnalysis.Common": "2.8.0",
  3671. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
  3672. },
  3673. "compile": {
  3674. "lib/net46/Microsoft.CodeAnalysis.Razor.dll": {
  3675. "related": ".xml"
  3676. }
  3677. },
  3678. "runtime": {
  3679. "lib/net46/Microsoft.CodeAnalysis.Razor.dll": {
  3680. "related": ".xml"
  3681. }
  3682. }
  3683. },
  3684. "Microsoft.CSharp/4.5.0": {
  3685. "type": "package",
  3686. "frameworkAssemblies": [
  3687. "Microsoft.CSharp"
  3688. ],
  3689. "compile": {
  3690. "ref/net45/_._": {}
  3691. },
  3692. "runtime": {
  3693. "lib/net45/_._": {}
  3694. }
  3695. },
  3696. "Microsoft.DiaSymReader.Native/1.7.0": {
  3697. "type": "package",
  3698. "native": {
  3699. "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll": {}
  3700. },
  3701. "build": {
  3702. "build/_._": {}
  3703. }
  3704. },
  3705. "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
  3706. "type": "package",
  3707. "dependencies": {
  3708. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
  3709. },
  3710. "frameworkAssemblies": [
  3711. "System",
  3712. "System.Core"
  3713. ],
  3714. "compile": {
  3715. "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll": {}
  3716. },
  3717. "runtime": {
  3718. "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll": {}
  3719. }
  3720. },
  3721. "Microsoft.Extensions.Caching.Abstractions/2.1.1": {
  3722. "type": "package",
  3723. "dependencies": {
  3724. "Microsoft.Extensions.Primitives": "2.1.1"
  3725. },
  3726. "compile": {
  3727. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  3728. "related": ".xml"
  3729. }
  3730. },
  3731. "runtime": {
  3732. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  3733. "related": ".xml"
  3734. }
  3735. }
  3736. },
  3737. "Microsoft.Extensions.Caching.Memory/2.1.1": {
  3738. "type": "package",
  3739. "dependencies": {
  3740. "Microsoft.Extensions.Caching.Abstractions": "2.1.1",
  3741. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  3742. "Microsoft.Extensions.Options": "2.1.1"
  3743. },
  3744. "compile": {
  3745. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  3746. "related": ".xml"
  3747. }
  3748. },
  3749. "runtime": {
  3750. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  3751. "related": ".xml"
  3752. }
  3753. }
  3754. },
  3755. "Microsoft.Extensions.Configuration/2.1.1": {
  3756. "type": "package",
  3757. "dependencies": {
  3758. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1"
  3759. },
  3760. "compile": {
  3761. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  3762. "related": ".xml"
  3763. }
  3764. },
  3765. "runtime": {
  3766. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  3767. "related": ".xml"
  3768. }
  3769. }
  3770. },
  3771. "Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
  3772. "type": "package",
  3773. "dependencies": {
  3774. "Microsoft.Extensions.Primitives": "2.1.1"
  3775. },
  3776. "compile": {
  3777. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  3778. "related": ".xml"
  3779. }
  3780. },
  3781. "runtime": {
  3782. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  3783. "related": ".xml"
  3784. }
  3785. }
  3786. },
  3787. "Microsoft.Extensions.Configuration.Binder/2.1.1": {
  3788. "type": "package",
  3789. "dependencies": {
  3790. "Microsoft.Extensions.Configuration": "2.1.1"
  3791. },
  3792. "compile": {
  3793. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  3794. "related": ".xml"
  3795. }
  3796. },
  3797. "runtime": {
  3798. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  3799. "related": ".xml"
  3800. }
  3801. }
  3802. },
  3803. "Microsoft.Extensions.Configuration.CommandLine/2.1.1": {
  3804. "type": "package",
  3805. "dependencies": {
  3806. "Microsoft.Extensions.Configuration": "2.1.1"
  3807. },
  3808. "compile": {
  3809. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  3810. "related": ".xml"
  3811. }
  3812. },
  3813. "runtime": {
  3814. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  3815. "related": ".xml"
  3816. }
  3817. }
  3818. },
  3819. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.1.1": {
  3820. "type": "package",
  3821. "dependencies": {
  3822. "Microsoft.Extensions.Configuration": "2.1.1"
  3823. },
  3824. "compile": {
  3825. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  3826. "related": ".xml"
  3827. }
  3828. },
  3829. "runtime": {
  3830. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  3831. "related": ".xml"
  3832. }
  3833. }
  3834. },
  3835. "Microsoft.Extensions.Configuration.FileExtensions/2.1.1": {
  3836. "type": "package",
  3837. "dependencies": {
  3838. "Microsoft.Extensions.Configuration": "2.1.1",
  3839. "Microsoft.Extensions.FileProviders.Physical": "2.1.1"
  3840. },
  3841. "compile": {
  3842. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  3843. "related": ".xml"
  3844. }
  3845. },
  3846. "runtime": {
  3847. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  3848. "related": ".xml"
  3849. }
  3850. }
  3851. },
  3852. "Microsoft.Extensions.Configuration.Json/2.1.1": {
  3853. "type": "package",
  3854. "dependencies": {
  3855. "Microsoft.Extensions.Configuration": "2.1.1",
  3856. "Microsoft.Extensions.Configuration.FileExtensions": "2.1.1",
  3857. "Newtonsoft.Json": "11.0.2"
  3858. },
  3859. "compile": {
  3860. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
  3861. "related": ".xml"
  3862. }
  3863. },
  3864. "runtime": {
  3865. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
  3866. "related": ".xml"
  3867. }
  3868. }
  3869. },
  3870. "Microsoft.Extensions.Configuration.UserSecrets/2.1.1": {
  3871. "type": "package",
  3872. "dependencies": {
  3873. "Microsoft.Extensions.Configuration.Json": "2.1.1"
  3874. },
  3875. "compile": {
  3876. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  3877. "related": ".xml"
  3878. }
  3879. },
  3880. "runtime": {
  3881. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  3882. "related": ".xml"
  3883. }
  3884. },
  3885. "build": {
  3886. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props": {},
  3887. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  3888. }
  3889. },
  3890. "Microsoft.Extensions.DependencyInjection/2.1.1": {
  3891. "type": "package",
  3892. "dependencies": {
  3893. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1"
  3894. },
  3895. "compile": {
  3896. "lib/net461/Microsoft.Extensions.DependencyInjection.dll": {
  3897. "related": ".xml"
  3898. }
  3899. },
  3900. "runtime": {
  3901. "lib/net461/Microsoft.Extensions.DependencyInjection.dll": {
  3902. "related": ".xml"
  3903. }
  3904. }
  3905. },
  3906. "Microsoft.Extensions.DependencyInjection.Abstractions/2.1.1": {
  3907. "type": "package",
  3908. "compile": {
  3909. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  3910. "related": ".xml"
  3911. }
  3912. },
  3913. "runtime": {
  3914. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  3915. "related": ".xml"
  3916. }
  3917. }
  3918. },
  3919. "Microsoft.Extensions.DependencyModel/2.1.0": {
  3920. "type": "package",
  3921. "dependencies": {
  3922. "Microsoft.DotNet.PlatformAbstractions": "2.1.0",
  3923. "Newtonsoft.Json": "9.0.1"
  3924. },
  3925. "frameworkAssemblies": [
  3926. "System",
  3927. "System.Core"
  3928. ],
  3929. "compile": {
  3930. "lib/net451/Microsoft.Extensions.DependencyModel.dll": {}
  3931. },
  3932. "runtime": {
  3933. "lib/net451/Microsoft.Extensions.DependencyModel.dll": {}
  3934. }
  3935. },
  3936. "Microsoft.Extensions.FileProviders.Abstractions/2.1.1": {
  3937. "type": "package",
  3938. "dependencies": {
  3939. "Microsoft.Extensions.Primitives": "2.1.1"
  3940. },
  3941. "compile": {
  3942. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  3943. "related": ".xml"
  3944. }
  3945. },
  3946. "runtime": {
  3947. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  3948. "related": ".xml"
  3949. }
  3950. }
  3951. },
  3952. "Microsoft.Extensions.FileProviders.Composite/2.1.1": {
  3953. "type": "package",
  3954. "dependencies": {
  3955. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1"
  3956. },
  3957. "compile": {
  3958. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  3959. "related": ".xml"
  3960. }
  3961. },
  3962. "runtime": {
  3963. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  3964. "related": ".xml"
  3965. }
  3966. }
  3967. },
  3968. "Microsoft.Extensions.FileProviders.Physical/2.1.1": {
  3969. "type": "package",
  3970. "dependencies": {
  3971. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  3972. "Microsoft.Extensions.FileSystemGlobbing": "2.1.1"
  3973. },
  3974. "compile": {
  3975. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  3976. "related": ".xml"
  3977. }
  3978. },
  3979. "runtime": {
  3980. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  3981. "related": ".xml"
  3982. }
  3983. }
  3984. },
  3985. "Microsoft.Extensions.FileSystemGlobbing/2.1.1": {
  3986. "type": "package",
  3987. "compile": {
  3988. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  3989. "related": ".xml"
  3990. }
  3991. },
  3992. "runtime": {
  3993. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  3994. "related": ".xml"
  3995. }
  3996. }
  3997. },
  3998. "Microsoft.Extensions.Hosting.Abstractions/2.1.1": {
  3999. "type": "package",
  4000. "dependencies": {
  4001. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
  4002. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  4003. "Microsoft.Extensions.FileProviders.Abstractions": "2.1.1",
  4004. "Microsoft.Extensions.Logging.Abstractions": "2.1.1"
  4005. },
  4006. "compile": {
  4007. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  4008. "related": ".xml"
  4009. }
  4010. },
  4011. "runtime": {
  4012. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  4013. "related": ".xml"
  4014. }
  4015. }
  4016. },
  4017. "Microsoft.Extensions.Localization/2.1.1": {
  4018. "type": "package",
  4019. "dependencies": {
  4020. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  4021. "Microsoft.Extensions.Localization.Abstractions": "2.1.1",
  4022. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  4023. "Microsoft.Extensions.Options": "2.1.1"
  4024. },
  4025. "compile": {
  4026. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
  4027. "related": ".xml"
  4028. }
  4029. },
  4030. "runtime": {
  4031. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
  4032. "related": ".xml"
  4033. }
  4034. }
  4035. },
  4036. "Microsoft.Extensions.Localization.Abstractions/2.1.1": {
  4037. "type": "package",
  4038. "compile": {
  4039. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  4040. "related": ".xml"
  4041. }
  4042. },
  4043. "runtime": {
  4044. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  4045. "related": ".xml"
  4046. }
  4047. }
  4048. },
  4049. "Microsoft.Extensions.Logging/2.1.1": {
  4050. "type": "package",
  4051. "dependencies": {
  4052. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  4053. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  4054. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  4055. "Microsoft.Extensions.Options": "2.1.1"
  4056. },
  4057. "compile": {
  4058. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
  4059. "related": ".xml"
  4060. }
  4061. },
  4062. "runtime": {
  4063. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
  4064. "related": ".xml"
  4065. }
  4066. }
  4067. },
  4068. "Microsoft.Extensions.Logging.Abstractions/2.1.1": {
  4069. "type": "package",
  4070. "compile": {
  4071. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  4072. "related": ".xml"
  4073. }
  4074. },
  4075. "runtime": {
  4076. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  4077. "related": ".xml"
  4078. }
  4079. }
  4080. },
  4081. "Microsoft.Extensions.Logging.Configuration/2.1.1": {
  4082. "type": "package",
  4083. "dependencies": {
  4084. "Microsoft.Extensions.Logging": "2.1.1",
  4085. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.1.1"
  4086. },
  4087. "compile": {
  4088. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  4089. "related": ".xml"
  4090. }
  4091. },
  4092. "runtime": {
  4093. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  4094. "related": ".xml"
  4095. }
  4096. }
  4097. },
  4098. "Microsoft.Extensions.Logging.Console/2.1.1": {
  4099. "type": "package",
  4100. "dependencies": {
  4101. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
  4102. "Microsoft.Extensions.Logging": "2.1.1",
  4103. "Microsoft.Extensions.Logging.Configuration": "2.1.1"
  4104. },
  4105. "compile": {
  4106. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  4107. "related": ".xml"
  4108. }
  4109. },
  4110. "runtime": {
  4111. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  4112. "related": ".xml"
  4113. }
  4114. }
  4115. },
  4116. "Microsoft.Extensions.Logging.Debug/2.1.1": {
  4117. "type": "package",
  4118. "dependencies": {
  4119. "Microsoft.Extensions.Logging": "2.1.1"
  4120. },
  4121. "compile": {
  4122. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  4123. "related": ".xml"
  4124. }
  4125. },
  4126. "runtime": {
  4127. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  4128. "related": ".xml"
  4129. }
  4130. }
  4131. },
  4132. "Microsoft.Extensions.ObjectPool/2.1.1": {
  4133. "type": "package",
  4134. "compile": {
  4135. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  4136. "related": ".xml"
  4137. }
  4138. },
  4139. "runtime": {
  4140. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  4141. "related": ".xml"
  4142. }
  4143. }
  4144. },
  4145. "Microsoft.Extensions.Options/2.1.1": {
  4146. "type": "package",
  4147. "dependencies": {
  4148. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  4149. "Microsoft.Extensions.Primitives": "2.1.1"
  4150. },
  4151. "compile": {
  4152. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
  4153. "related": ".xml"
  4154. }
  4155. },
  4156. "runtime": {
  4157. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
  4158. "related": ".xml"
  4159. }
  4160. }
  4161. },
  4162. "Microsoft.Extensions.Options.ConfigurationExtensions/2.1.1": {
  4163. "type": "package",
  4164. "dependencies": {
  4165. "Microsoft.Extensions.Configuration.Abstractions": "2.1.1",
  4166. "Microsoft.Extensions.Configuration.Binder": "2.1.1",
  4167. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  4168. "Microsoft.Extensions.Options": "2.1.1"
  4169. },
  4170. "compile": {
  4171. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  4172. "related": ".xml"
  4173. }
  4174. },
  4175. "runtime": {
  4176. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  4177. "related": ".xml"
  4178. }
  4179. }
  4180. },
  4181. "Microsoft.Extensions.Primitives/2.1.1": {
  4182. "type": "package",
  4183. "dependencies": {
  4184. "System.Memory": "4.5.1",
  4185. "System.Runtime.CompilerServices.Unsafe": "4.5.1"
  4186. },
  4187. "compile": {
  4188. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  4189. "related": ".xml"
  4190. }
  4191. },
  4192. "runtime": {
  4193. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  4194. "related": ".xml"
  4195. }
  4196. }
  4197. },
  4198. "Microsoft.Extensions.WebEncoders/2.1.1": {
  4199. "type": "package",
  4200. "dependencies": {
  4201. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1",
  4202. "Microsoft.Extensions.Options": "2.1.1",
  4203. "System.Text.Encodings.Web": "4.5.0"
  4204. },
  4205. "compile": {
  4206. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
  4207. "related": ".xml"
  4208. }
  4209. },
  4210. "runtime": {
  4211. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
  4212. "related": ".xml"
  4213. }
  4214. }
  4215. },
  4216. "Microsoft.Net.Http.Headers/2.1.1": {
  4217. "type": "package",
  4218. "dependencies": {
  4219. "Microsoft.Extensions.Primitives": "2.1.1",
  4220. "System.Buffers": "4.5.0"
  4221. },
  4222. "compile": {
  4223. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  4224. "related": ".xml"
  4225. }
  4226. },
  4227. "runtime": {
  4228. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  4229. "related": ".xml"
  4230. }
  4231. }
  4232. },
  4233. "Microsoft.Win32.Registry/4.5.0": {
  4234. "type": "package",
  4235. "dependencies": {
  4236. "System.Security.AccessControl": "4.5.0",
  4237. "System.Security.Principal.Windows": "4.5.0"
  4238. },
  4239. "frameworkAssemblies": [
  4240. "mscorlib"
  4241. ],
  4242. "compile": {
  4243. "ref/net461/Microsoft.Win32.Registry.dll": {
  4244. "related": ".xml"
  4245. }
  4246. },
  4247. "runtime": {
  4248. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll": {}
  4249. }
  4250. },
  4251. "Newtonsoft.Json/11.0.2": {
  4252. "type": "package",
  4253. "compile": {
  4254. "lib/net45/Newtonsoft.Json.dll": {
  4255. "related": ".xml"
  4256. }
  4257. },
  4258. "runtime": {
  4259. "lib/net45/Newtonsoft.Json.dll": {
  4260. "related": ".xml"
  4261. }
  4262. }
  4263. },
  4264. "Newtonsoft.Json.Bson/1.0.1": {
  4265. "type": "package",
  4266. "dependencies": {
  4267. "Newtonsoft.Json": "10.0.1"
  4268. },
  4269. "compile": {
  4270. "lib/net45/Newtonsoft.Json.Bson.dll": {
  4271. "related": ".xml"
  4272. }
  4273. },
  4274. "runtime": {
  4275. "lib/net45/Newtonsoft.Json.Bson.dll": {
  4276. "related": ".xml"
  4277. }
  4278. }
  4279. },
  4280. "System.AppContext/4.3.0": {
  4281. "type": "package",
  4282. "frameworkAssemblies": [
  4283. "mscorlib"
  4284. ],
  4285. "compile": {
  4286. "ref/net463/System.AppContext.dll": {}
  4287. },
  4288. "runtime": {
  4289. "lib/net463/System.AppContext.dll": {}
  4290. }
  4291. },
  4292. "System.Buffers/4.5.0": {
  4293. "type": "package",
  4294. "frameworkAssemblies": [
  4295. "mscorlib"
  4296. ],
  4297. "compile": {
  4298. "ref/net45/System.Buffers.dll": {
  4299. "related": ".xml"
  4300. }
  4301. },
  4302. "runtime": {
  4303. "lib/netstandard2.0/System.Buffers.dll": {
  4304. "related": ".xml"
  4305. }
  4306. }
  4307. },
  4308. "System.Collections/4.3.0": {
  4309. "type": "package",
  4310. "frameworkAssemblies": [
  4311. "System",
  4312. "System.Core"
  4313. ],
  4314. "compile": {
  4315. "ref/net45/_._": {}
  4316. },
  4317. "runtime": {
  4318. "lib/net45/_._": {}
  4319. }
  4320. },
  4321. "System.Collections.Concurrent/4.3.0": {
  4322. "type": "package",
  4323. "frameworkAssemblies": [
  4324. "System"
  4325. ],
  4326. "compile": {
  4327. "ref/net45/_._": {}
  4328. },
  4329. "runtime": {
  4330. "lib/net45/_._": {}
  4331. }
  4332. },
  4333. "System.Collections.Immutable/1.5.0": {
  4334. "type": "package",
  4335. "compile": {
  4336. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  4337. "related": ".xml"
  4338. }
  4339. },
  4340. "runtime": {
  4341. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  4342. "related": ".xml"
  4343. }
  4344. }
  4345. },
  4346. "System.ComponentModel.Annotations/4.5.0": {
  4347. "type": "package",
  4348. "frameworkAssemblies": [
  4349. "System.ComponentModel.DataAnnotations",
  4350. "mscorlib"
  4351. ],
  4352. "compile": {
  4353. "ref/net461/System.ComponentModel.Annotations.dll": {
  4354. "related": ".xml"
  4355. }
  4356. },
  4357. "runtime": {
  4358. "lib/net461/System.ComponentModel.Annotations.dll": {}
  4359. }
  4360. },
  4361. "System.Console/4.3.0": {
  4362. "type": "package",
  4363. "frameworkAssemblies": [
  4364. "mscorlib"
  4365. ],
  4366. "compile": {
  4367. "ref/net46/System.Console.dll": {}
  4368. },
  4369. "runtime": {
  4370. "lib/net46/System.Console.dll": {}
  4371. }
  4372. },
  4373. "System.Diagnostics.Debug/4.3.0": {
  4374. "type": "package",
  4375. "frameworkAssemblies": [
  4376. "System"
  4377. ],
  4378. "compile": {
  4379. "ref/net45/_._": {}
  4380. },
  4381. "runtime": {
  4382. "lib/net45/_._": {}
  4383. }
  4384. },
  4385. "System.Diagnostics.DiagnosticSource/4.5.1": {
  4386. "type": "package",
  4387. "frameworkAssemblies": [
  4388. "System",
  4389. "mscorlib"
  4390. ],
  4391. "compile": {
  4392. "lib/net46/System.Diagnostics.DiagnosticSource.dll": {
  4393. "related": ".xml"
  4394. }
  4395. },
  4396. "runtime": {
  4397. "lib/net46/System.Diagnostics.DiagnosticSource.dll": {
  4398. "related": ".xml"
  4399. }
  4400. }
  4401. },
  4402. "System.Diagnostics.FileVersionInfo/4.3.0": {
  4403. "type": "package",
  4404. "frameworkAssemblies": [
  4405. "System",
  4406. "mscorlib"
  4407. ],
  4408. "compile": {
  4409. "ref/net46/_._": {}
  4410. },
  4411. "runtime": {
  4412. "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll": {}
  4413. }
  4414. },
  4415. "System.Diagnostics.StackTrace/4.3.0": {
  4416. "type": "package",
  4417. "frameworkAssemblies": [
  4418. "mscorlib"
  4419. ],
  4420. "compile": {
  4421. "ref/net46/_._": {}
  4422. },
  4423. "runtime": {
  4424. "lib/net46/System.Diagnostics.StackTrace.dll": {}
  4425. }
  4426. },
  4427. "System.Diagnostics.Tools/4.3.0": {
  4428. "type": "package",
  4429. "frameworkAssemblies": [
  4430. "System"
  4431. ],
  4432. "compile": {
  4433. "ref/net45/_._": {}
  4434. },
  4435. "runtime": {
  4436. "lib/net45/_._": {}
  4437. }
  4438. },
  4439. "System.Dynamic.Runtime/4.3.0": {
  4440. "type": "package",
  4441. "frameworkAssemblies": [
  4442. "System.Core"
  4443. ],
  4444. "compile": {
  4445. "ref/net45/_._": {}
  4446. },
  4447. "runtime": {
  4448. "lib/net45/_._": {}
  4449. }
  4450. },
  4451. "System.Globalization/4.3.0": {
  4452. "type": "package",
  4453. "compile": {
  4454. "ref/net45/_._": {}
  4455. },
  4456. "runtime": {
  4457. "lib/net45/_._": {}
  4458. }
  4459. },
  4460. "System.IO/4.3.0": {
  4461. "type": "package",
  4462. "frameworkAssemblies": [
  4463. "System",
  4464. "mscorlib"
  4465. ],
  4466. "compile": {
  4467. "ref/net462/System.IO.dll": {}
  4468. },
  4469. "runtime": {
  4470. "lib/net462/System.IO.dll": {}
  4471. }
  4472. },
  4473. "System.IO.Compression/4.3.0": {
  4474. "type": "package",
  4475. "frameworkAssemblies": [
  4476. "System",
  4477. "mscorlib"
  4478. ],
  4479. "compile": {
  4480. "ref/net46/System.IO.Compression.dll": {}
  4481. },
  4482. "runtime": {
  4483. "runtimes/win/lib/net46/System.IO.Compression.dll": {}
  4484. }
  4485. },
  4486. "System.IO.FileSystem/4.3.0": {
  4487. "type": "package",
  4488. "dependencies": {
  4489. "System.IO.FileSystem.Primitives": "4.3.0"
  4490. },
  4491. "frameworkAssemblies": [
  4492. "mscorlib"
  4493. ],
  4494. "compile": {
  4495. "ref/net46/System.IO.FileSystem.dll": {}
  4496. },
  4497. "runtime": {
  4498. "lib/net46/System.IO.FileSystem.dll": {}
  4499. }
  4500. },
  4501. "System.IO.FileSystem.Primitives/4.3.0": {
  4502. "type": "package",
  4503. "frameworkAssemblies": [
  4504. "mscorlib"
  4505. ],
  4506. "compile": {
  4507. "ref/net46/System.IO.FileSystem.Primitives.dll": {}
  4508. },
  4509. "runtime": {
  4510. "lib/net46/System.IO.FileSystem.Primitives.dll": {}
  4511. }
  4512. },
  4513. "System.IO.Pipelines/4.5.3": {
  4514. "type": "package",
  4515. "dependencies": {
  4516. "System.Buffers": "4.4.0",
  4517. "System.Memory": "4.5.1",
  4518. "System.Threading.Tasks.Extensions": "4.5.1"
  4519. },
  4520. "compile": {
  4521. "lib/netstandard2.0/System.IO.Pipelines.dll": {
  4522. "related": ".xml"
  4523. }
  4524. },
  4525. "runtime": {
  4526. "lib/netstandard2.0/System.IO.Pipelines.dll": {
  4527. "related": ".xml"
  4528. }
  4529. }
  4530. },
  4531. "System.Linq/4.3.0": {
  4532. "type": "package",
  4533. "frameworkAssemblies": [
  4534. "System.Core",
  4535. "mscorlib"
  4536. ],
  4537. "compile": {
  4538. "ref/net463/System.Linq.dll": {}
  4539. },
  4540. "runtime": {
  4541. "lib/net463/System.Linq.dll": {}
  4542. }
  4543. },
  4544. "System.Linq.Expressions/4.3.0": {
  4545. "type": "package",
  4546. "frameworkAssemblies": [
  4547. "System.Core",
  4548. "mscorlib"
  4549. ],
  4550. "compile": {
  4551. "ref/net463/System.Linq.Expressions.dll": {}
  4552. },
  4553. "runtime": {
  4554. "lib/net463/System.Linq.Expressions.dll": {}
  4555. }
  4556. },
  4557. "System.Memory/4.5.2": {
  4558. "type": "package",
  4559. "dependencies": {
  4560. "System.Buffers": "4.4.0",
  4561. "System.Numerics.Vectors": "4.4.0",
  4562. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  4563. },
  4564. "compile": {
  4565. "lib/netstandard2.0/System.Memory.dll": {
  4566. "related": ".xml"
  4567. }
  4568. },
  4569. "runtime": {
  4570. "lib/netstandard2.0/System.Memory.dll": {
  4571. "related": ".xml"
  4572. }
  4573. }
  4574. },
  4575. "System.Numerics.Vectors/4.5.0": {
  4576. "type": "package",
  4577. "frameworkAssemblies": [
  4578. "System.Numerics",
  4579. "mscorlib"
  4580. ],
  4581. "compile": {
  4582. "ref/net46/System.Numerics.Vectors.dll": {
  4583. "related": ".xml"
  4584. }
  4585. },
  4586. "runtime": {
  4587. "lib/net46/System.Numerics.Vectors.dll": {
  4588. "related": ".xml"
  4589. }
  4590. }
  4591. },
  4592. "System.Reflection/4.3.0": {
  4593. "type": "package",
  4594. "frameworkAssemblies": [
  4595. "mscorlib"
  4596. ],
  4597. "compile": {
  4598. "ref/net462/System.Reflection.dll": {}
  4599. },
  4600. "runtime": {
  4601. "lib/net462/System.Reflection.dll": {}
  4602. }
  4603. },
  4604. "System.Reflection.Metadata/1.6.0": {
  4605. "type": "package",
  4606. "dependencies": {
  4607. "System.Collections.Immutable": "1.5.0"
  4608. },
  4609. "compile": {
  4610. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  4611. "related": ".xml"
  4612. }
  4613. },
  4614. "runtime": {
  4615. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  4616. "related": ".xml"
  4617. }
  4618. }
  4619. },
  4620. "System.Resources.ResourceManager/4.3.0": {
  4621. "type": "package",
  4622. "compile": {
  4623. "ref/net45/_._": {}
  4624. },
  4625. "runtime": {
  4626. "lib/net45/_._": {}
  4627. }
  4628. },
  4629. "System.Runtime/4.3.0": {
  4630. "type": "package",
  4631. "frameworkAssemblies": [
  4632. "System",
  4633. "System.ComponentModel.Composition",
  4634. "System.Core",
  4635. "mscorlib"
  4636. ],
  4637. "compile": {
  4638. "ref/net462/System.Runtime.dll": {}
  4639. },
  4640. "runtime": {
  4641. "lib/net462/System.Runtime.dll": {}
  4642. }
  4643. },
  4644. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  4645. "type": "package",
  4646. "compile": {
  4647. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  4648. "related": ".xml"
  4649. }
  4650. },
  4651. "runtime": {
  4652. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  4653. "related": ".xml"
  4654. }
  4655. }
  4656. },
  4657. "System.Runtime.Extensions/4.3.0": {
  4658. "type": "package",
  4659. "frameworkAssemblies": [
  4660. "System",
  4661. "mscorlib"
  4662. ],
  4663. "compile": {
  4664. "ref/net462/System.Runtime.Extensions.dll": {}
  4665. },
  4666. "runtime": {
  4667. "lib/net462/System.Runtime.Extensions.dll": {}
  4668. }
  4669. },
  4670. "System.Runtime.InteropServices/4.3.0": {
  4671. "type": "package",
  4672. "dependencies": {
  4673. "System.Runtime": "4.3.0"
  4674. },
  4675. "frameworkAssemblies": [
  4676. "System",
  4677. "System.Core",
  4678. "mscorlib"
  4679. ],
  4680. "compile": {
  4681. "ref/net463/System.Runtime.InteropServices.dll": {}
  4682. },
  4683. "runtime": {
  4684. "lib/net463/System.Runtime.InteropServices.dll": {}
  4685. }
  4686. },
  4687. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  4688. "type": "package",
  4689. "compile": {
  4690. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  4691. },
  4692. "runtime": {
  4693. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  4694. }
  4695. },
  4696. "System.Runtime.Numerics/4.3.0": {
  4697. "type": "package",
  4698. "frameworkAssemblies": [
  4699. "System.Numerics"
  4700. ],
  4701. "compile": {
  4702. "ref/net45/_._": {}
  4703. },
  4704. "runtime": {
  4705. "lib/net45/_._": {}
  4706. }
  4707. },
  4708. "System.Security.AccessControl/4.5.0": {
  4709. "type": "package",
  4710. "dependencies": {
  4711. "System.Security.Principal.Windows": "4.5.0"
  4712. },
  4713. "frameworkAssemblies": [
  4714. "mscorlib"
  4715. ],
  4716. "compile": {
  4717. "ref/net461/System.Security.AccessControl.dll": {
  4718. "related": ".xml"
  4719. }
  4720. },
  4721. "runtime": {
  4722. "runtimes/win/lib/net461/System.Security.AccessControl.dll": {}
  4723. }
  4724. },
  4725. "System.Security.Cryptography.Algorithms/4.3.0": {
  4726. "type": "package",
  4727. "dependencies": {
  4728. "System.IO": "4.3.0",
  4729. "System.Runtime": "4.3.0",
  4730. "System.Security.Cryptography.Encoding": "4.3.0",
  4731. "System.Security.Cryptography.Primitives": "4.3.0"
  4732. },
  4733. "frameworkAssemblies": [
  4734. "System.Core",
  4735. "mscorlib"
  4736. ],
  4737. "compile": {
  4738. "ref/net463/System.Security.Cryptography.Algorithms.dll": {}
  4739. },
  4740. "runtime": {
  4741. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll": {}
  4742. }
  4743. },
  4744. "System.Security.Cryptography.Cng/4.5.0": {
  4745. "type": "package",
  4746. "frameworkAssemblies": [
  4747. "System.Core",
  4748. "mscorlib"
  4749. ],
  4750. "compile": {
  4751. "ref/net47/System.Security.Cryptography.Cng.dll": {
  4752. "related": ".xml"
  4753. }
  4754. },
  4755. "runtime": {
  4756. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll": {}
  4757. }
  4758. },
  4759. "System.Security.Cryptography.Encoding/4.3.0": {
  4760. "type": "package",
  4761. "frameworkAssemblies": [
  4762. "System",
  4763. "mscorlib"
  4764. ],
  4765. "compile": {
  4766. "ref/net46/System.Security.Cryptography.Encoding.dll": {}
  4767. },
  4768. "runtime": {
  4769. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll": {}
  4770. }
  4771. },
  4772. "System.Security.Cryptography.Primitives/4.3.0": {
  4773. "type": "package",
  4774. "frameworkAssemblies": [
  4775. "mscorlib"
  4776. ],
  4777. "compile": {
  4778. "ref/net46/System.Security.Cryptography.Primitives.dll": {}
  4779. },
  4780. "runtime": {
  4781. "lib/net46/System.Security.Cryptography.Primitives.dll": {}
  4782. }
  4783. },
  4784. "System.Security.Cryptography.X509Certificates/4.3.0": {
  4785. "type": "package",
  4786. "dependencies": {
  4787. "System.Security.Cryptography.Algorithms": "4.3.0",
  4788. "System.Security.Cryptography.Encoding": "4.3.0"
  4789. },
  4790. "frameworkAssemblies": [
  4791. "System",
  4792. "System.Core",
  4793. "mscorlib"
  4794. ],
  4795. "compile": {
  4796. "ref/net461/System.Security.Cryptography.X509Certificates.dll": {}
  4797. },
  4798. "runtime": {
  4799. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll": {}
  4800. }
  4801. },
  4802. "System.Security.Cryptography.Xml/4.5.0": {
  4803. "type": "package",
  4804. "dependencies": {
  4805. "System.Security.Permissions": "4.5.0"
  4806. },
  4807. "frameworkAssemblies": [
  4808. "System",
  4809. "System.Security",
  4810. "System.Xml",
  4811. "mscorlib"
  4812. ],
  4813. "compile": {
  4814. "ref/net461/System.Security.Cryptography.Xml.dll": {
  4815. "related": ".xml"
  4816. }
  4817. },
  4818. "runtime": {
  4819. "lib/net461/System.Security.Cryptography.Xml.dll": {}
  4820. }
  4821. },
  4822. "System.Security.Permissions/4.5.0": {
  4823. "type": "package",
  4824. "dependencies": {
  4825. "System.Security.AccessControl": "4.5.0"
  4826. },
  4827. "frameworkAssemblies": [
  4828. "System",
  4829. "System.Data",
  4830. "System.Data.OracleClient",
  4831. "System.Drawing",
  4832. "System.Net",
  4833. "System.ServiceProcess",
  4834. "System.Transactions",
  4835. "mscorlib"
  4836. ],
  4837. "compile": {
  4838. "ref/net461/System.Security.Permissions.dll": {
  4839. "related": ".xml"
  4840. }
  4841. },
  4842. "runtime": {
  4843. "lib/net461/System.Security.Permissions.dll": {}
  4844. }
  4845. },
  4846. "System.Security.Principal.Windows/4.5.1": {
  4847. "type": "package",
  4848. "frameworkAssemblies": [
  4849. "System",
  4850. "mscorlib"
  4851. ],
  4852. "compile": {
  4853. "ref/net461/System.Security.Principal.Windows.dll": {
  4854. "related": ".xml"
  4855. }
  4856. },
  4857. "runtime": {
  4858. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll": {}
  4859. }
  4860. },
  4861. "System.Text.Encoding/4.3.0": {
  4862. "type": "package",
  4863. "compile": {
  4864. "ref/net45/_._": {}
  4865. },
  4866. "runtime": {
  4867. "lib/net45/_._": {}
  4868. }
  4869. },
  4870. "System.Text.Encoding.CodePages/4.3.0": {
  4871. "type": "package",
  4872. "compile": {
  4873. "ref/netstandard1.3/_._": {
  4874. "related": ".xml"
  4875. }
  4876. },
  4877. "runtime": {
  4878. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {}
  4879. }
  4880. },
  4881. "System.Text.Encoding.Extensions/4.3.0": {
  4882. "type": "package",
  4883. "compile": {
  4884. "ref/net45/_._": {}
  4885. },
  4886. "runtime": {
  4887. "lib/net45/_._": {}
  4888. }
  4889. },
  4890. "System.Text.Encodings.Web/4.5.0": {
  4891. "type": "package",
  4892. "compile": {
  4893. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  4894. "related": ".xml"
  4895. }
  4896. },
  4897. "runtime": {
  4898. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  4899. "related": ".xml"
  4900. }
  4901. }
  4902. },
  4903. "System.Threading/4.3.0": {
  4904. "type": "package",
  4905. "frameworkAssemblies": [
  4906. "System",
  4907. "System.Core"
  4908. ],
  4909. "compile": {
  4910. "ref/net45/_._": {}
  4911. },
  4912. "runtime": {
  4913. "lib/net45/_._": {}
  4914. }
  4915. },
  4916. "System.Threading.Tasks/4.3.0": {
  4917. "type": "package",
  4918. "frameworkAssemblies": [
  4919. "System.Core"
  4920. ],
  4921. "compile": {
  4922. "ref/net45/_._": {}
  4923. },
  4924. "runtime": {
  4925. "lib/net45/_._": {}
  4926. }
  4927. },
  4928. "System.Threading.Tasks.Extensions/4.5.1": {
  4929. "type": "package",
  4930. "dependencies": {
  4931. "System.Runtime.CompilerServices.Unsafe": "4.5.0"
  4932. },
  4933. "compile": {
  4934. "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
  4935. "related": ".xml"
  4936. }
  4937. },
  4938. "runtime": {
  4939. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
  4940. "related": ".xml"
  4941. }
  4942. }
  4943. },
  4944. "System.Threading.Tasks.Parallel/4.3.0": {
  4945. "type": "package",
  4946. "compile": {
  4947. "ref/net45/_._": {}
  4948. },
  4949. "runtime": {
  4950. "lib/net45/_._": {}
  4951. }
  4952. },
  4953. "System.Threading.Thread/4.3.0": {
  4954. "type": "package",
  4955. "frameworkAssemblies": [
  4956. "mscorlib"
  4957. ],
  4958. "compile": {
  4959. "ref/net46/_._": {}
  4960. },
  4961. "runtime": {
  4962. "lib/net46/System.Threading.Thread.dll": {}
  4963. }
  4964. },
  4965. "System.ValueTuple/4.3.0": {
  4966. "type": "package",
  4967. "compile": {
  4968. "lib/netstandard1.0/System.ValueTuple.dll": {}
  4969. },
  4970. "runtime": {
  4971. "lib/netstandard1.0/System.ValueTuple.dll": {}
  4972. }
  4973. },
  4974. "System.Xml.ReaderWriter/4.3.0": {
  4975. "type": "package",
  4976. "frameworkAssemblies": [
  4977. "System.Xml",
  4978. "mscorlib"
  4979. ],
  4980. "compile": {
  4981. "ref/net46/System.Xml.ReaderWriter.dll": {}
  4982. },
  4983. "runtime": {
  4984. "lib/net46/System.Xml.ReaderWriter.dll": {}
  4985. }
  4986. },
  4987. "System.Xml.XDocument/4.3.0": {
  4988. "type": "package",
  4989. "frameworkAssemblies": [
  4990. "System.Xml.Linq"
  4991. ],
  4992. "compile": {
  4993. "ref/net45/_._": {}
  4994. },
  4995. "runtime": {
  4996. "lib/net45/_._": {}
  4997. }
  4998. },
  4999. "System.Xml.XmlDocument/4.3.0": {
  5000. "type": "package",
  5001. "frameworkAssemblies": [
  5002. "System.Xml",
  5003. "mscorlib"
  5004. ],
  5005. "compile": {
  5006. "ref/net46/_._": {}
  5007. },
  5008. "runtime": {
  5009. "lib/net46/System.Xml.XmlDocument.dll": {}
  5010. }
  5011. },
  5012. "System.Xml.XPath/4.3.0": {
  5013. "type": "package",
  5014. "frameworkAssemblies": [
  5015. "System.Xml",
  5016. "mscorlib"
  5017. ],
  5018. "compile": {
  5019. "ref/net46/_._": {}
  5020. },
  5021. "runtime": {
  5022. "lib/net46/System.Xml.XPath.dll": {}
  5023. }
  5024. },
  5025. "System.Xml.XPath.XDocument/4.3.0": {
  5026. "type": "package",
  5027. "dependencies": {
  5028. "System.Xml.XPath": "4.3.0"
  5029. },
  5030. "frameworkAssemblies": [
  5031. "System.Xml",
  5032. "System.Xml.Linq",
  5033. "mscorlib"
  5034. ],
  5035. "compile": {
  5036. "ref/net46/_._": {}
  5037. },
  5038. "runtime": {
  5039. "lib/net46/System.Xml.XPath.XDocument.dll": {}
  5040. }
  5041. }
  5042. }
  5043. },
  5044. "libraries": {
  5045. "Microsoft.AspNetCore/2.1.7": {
  5046. "sha512": "WJ8au6vYsXdwEBus9CNVAtaTtcJ6Gwr+s2Sxw6mWq/smxINliIbE68YaD8WDqJbwuyrIHlTEJPS53tyohYL7VQ==",
  5047. "type": "package",
  5048. "path": "microsoft.aspnetcore/2.1.7",
  5049. "files": [
  5050. ".nupkg.metadata",
  5051. ".signature.p7s",
  5052. "lib/netstandard2.0/Microsoft.AspNetCore.dll",
  5053. "lib/netstandard2.0/Microsoft.AspNetCore.xml",
  5054. "microsoft.aspnetcore.2.1.7.nupkg.sha512",
  5055. "microsoft.aspnetcore.nuspec"
  5056. ]
  5057. },
  5058. "Microsoft.AspNetCore.Antiforgery/2.1.1": {
  5059. "sha512": "De4NysQJXeWiyzjCH+zE+hVeB7mgCelz00zsBFqkrFtgLWaint5Xt/4qACxRVLUGHQsUo48V6lG0entMJMwv3Q==",
  5060. "type": "package",
  5061. "path": "microsoft.aspnetcore.antiforgery/2.1.1",
  5062. "files": [
  5063. ".nupkg.metadata",
  5064. ".signature.p7s",
  5065. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll",
  5066. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.xml",
  5067. "microsoft.aspnetcore.antiforgery.2.1.1.nupkg.sha512",
  5068. "microsoft.aspnetcore.antiforgery.nuspec"
  5069. ]
  5070. },
  5071. "Microsoft.AspNetCore.Authentication.Abstractions/2.1.1": {
  5072. "sha512": "Smj5TGeE9629+hGHPk/DZUfCMYGvQwCajAsU/OVExRb8JXfeua4uXZFzT9Kh3pJY2MThPSt1lbDnkL2KaDyw/A==",
  5073. "type": "package",
  5074. "path": "microsoft.aspnetcore.authentication.abstractions/2.1.1",
  5075. "files": [
  5076. ".nupkg.metadata",
  5077. ".signature.p7s",
  5078. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll",
  5079. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml",
  5080. "microsoft.aspnetcore.authentication.abstractions.2.1.1.nupkg.sha512",
  5081. "microsoft.aspnetcore.authentication.abstractions.nuspec"
  5082. ]
  5083. },
  5084. "Microsoft.AspNetCore.Authentication.Core/2.1.1": {
  5085. "sha512": "Zo6SLzqxrW0PFg1AB0xSb+Rta4hCuX8hgOY425ldhFq4kKcmw45oJQ2zOIeeW/6EuBtEy+hwDB96baxTmXtfeA==",
  5086. "type": "package",
  5087. "path": "microsoft.aspnetcore.authentication.core/2.1.1",
  5088. "files": [
  5089. ".nupkg.metadata",
  5090. ".signature.p7s",
  5091. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll",
  5092. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml",
  5093. "microsoft.aspnetcore.authentication.core.2.1.1.nupkg.sha512",
  5094. "microsoft.aspnetcore.authentication.core.nuspec"
  5095. ]
  5096. },
  5097. "Microsoft.AspNetCore.Authorization/2.1.1": {
  5098. "sha512": "rsxgcq+BU7VDGOZ0DdyPQOSE+jw5Bb4nk6PQpG70U/ZhgKFaAnnLeEnCfHgnCBUy3kn2ZtH3ZKJL+sh9MYzR4w==",
  5099. "type": "package",
  5100. "path": "microsoft.aspnetcore.authorization/2.1.1",
  5101. "files": [
  5102. ".nupkg.metadata",
  5103. ".signature.p7s",
  5104. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
  5105. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
  5106. "microsoft.aspnetcore.authorization.2.1.1.nupkg.sha512",
  5107. "microsoft.aspnetcore.authorization.nuspec"
  5108. ]
  5109. },
  5110. "Microsoft.AspNetCore.Authorization.Policy/2.1.1": {
  5111. "sha512": "6Gy9rFN1/4pKgjcbb2yaOmwpjV282dGnl7ewcCvcLxQmywpolkwxe5PPI6K/VPC2sovL5BtzhxnRl3OkwJZxwg==",
  5112. "type": "package",
  5113. "path": "microsoft.aspnetcore.authorization.policy/2.1.1",
  5114. "files": [
  5115. ".nupkg.metadata",
  5116. ".signature.p7s",
  5117. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll",
  5118. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml",
  5119. "microsoft.aspnetcore.authorization.policy.2.1.1.nupkg.sha512",
  5120. "microsoft.aspnetcore.authorization.policy.nuspec"
  5121. ]
  5122. },
  5123. "Microsoft.AspNetCore.Connections.Abstractions/2.1.3": {
  5124. "sha512": "ZpizM+XToYZUBK9F/V5mVgQ5yFA8H7t9Ba4UiDrBuYkzBGVh/e+87A29OHZSaJh+dns8GUTP6IucQ6713ZQwQQ==",
  5125. "type": "package",
  5126. "path": "microsoft.aspnetcore.connections.abstractions/2.1.3",
  5127. "files": [
  5128. ".nupkg.metadata",
  5129. ".signature.p7s",
  5130. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll",
  5131. "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml",
  5132. "microsoft.aspnetcore.connections.abstractions.2.1.3.nupkg.sha512",
  5133. "microsoft.aspnetcore.connections.abstractions.nuspec"
  5134. ]
  5135. },
  5136. "Microsoft.AspNetCore.Cors/2.1.1": {
  5137. "sha512": "5b3xfO8ycP9fEm76HGdExptlxURKNbmGnlA2mN+FQMaWPEuFH1te6GReBcKCQp4oeSSWuLfV9xSo+8LpU24u1A==",
  5138. "type": "package",
  5139. "path": "microsoft.aspnetcore.cors/2.1.1",
  5140. "files": [
  5141. ".nupkg.metadata",
  5142. ".signature.p7s",
  5143. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll",
  5144. "lib/netstandard2.0/Microsoft.AspNetCore.Cors.xml",
  5145. "microsoft.aspnetcore.cors.2.1.1.nupkg.sha512",
  5146. "microsoft.aspnetcore.cors.nuspec"
  5147. ]
  5148. },
  5149. "Microsoft.AspNetCore.Cryptography.Internal/2.1.1": {
  5150. "sha512": "guY3jMNkcUi2hrMJ4/vPnUUFwudxTVSJ809gCfpq+xR0UgV6P9ZHZLOI5q/07QHDZY+kKPXxipXGyJXQpq2k0g==",
  5151. "type": "package",
  5152. "path": "microsoft.aspnetcore.cryptography.internal/2.1.1",
  5153. "files": [
  5154. ".nupkg.metadata",
  5155. ".signature.p7s",
  5156. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  5157. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  5158. "microsoft.aspnetcore.cryptography.internal.2.1.1.nupkg.sha512",
  5159. "microsoft.aspnetcore.cryptography.internal.nuspec"
  5160. ]
  5161. },
  5162. "Microsoft.AspNetCore.DataProtection/2.1.1": {
  5163. "sha512": "OPZDPAAL3OwOCrz870F9goq//NJOmPl4Lv3dz+v0cRQe8EpsbCe0c6IRI8vdlFwM13Qy57D5rLQlysb+tLpENA==",
  5164. "type": "package",
  5165. "path": "microsoft.aspnetcore.dataprotection/2.1.1",
  5166. "files": [
  5167. ".nupkg.metadata",
  5168. ".signature.p7s",
  5169. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll",
  5170. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml",
  5171. "microsoft.aspnetcore.dataprotection.2.1.1.nupkg.sha512",
  5172. "microsoft.aspnetcore.dataprotection.nuspec"
  5173. ]
  5174. },
  5175. "Microsoft.AspNetCore.DataProtection.Abstractions/2.1.1": {
  5176. "sha512": "dcH52SMIIUOwBeDZ2QQEY3hWXJz50Dk2YzC/B2hxDLB78Il75BHGOhClIw6/0H+dKZCwItUytxoMNYtCSmG+aQ==",
  5177. "type": "package",
  5178. "path": "microsoft.aspnetcore.dataprotection.abstractions/2.1.1",
  5179. "files": [
  5180. ".nupkg.metadata",
  5181. ".signature.p7s",
  5182. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  5183. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  5184. "microsoft.aspnetcore.dataprotection.abstractions.2.1.1.nupkg.sha512",
  5185. "microsoft.aspnetcore.dataprotection.abstractions.nuspec"
  5186. ]
  5187. },
  5188. "Microsoft.AspNetCore.Diagnostics/2.1.1": {
  5189. "sha512": "N0s12z4ZOa2Gxj+c23RRjj7MnGrgX3eeBUSenz2yUb4DLY48CBQt+m6ROPv+imY7evhGPRP7HvAtRsJhKJ2UVg==",
  5190. "type": "package",
  5191. "path": "microsoft.aspnetcore.diagnostics/2.1.1",
  5192. "files": [
  5193. ".nupkg.metadata",
  5194. ".signature.p7s",
  5195. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll",
  5196. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.xml",
  5197. "microsoft.aspnetcore.diagnostics.2.1.1.nupkg.sha512",
  5198. "microsoft.aspnetcore.diagnostics.nuspec"
  5199. ]
  5200. },
  5201. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.1.1": {
  5202. "sha512": "W4V3uJY3mIUZbmon6MKOVr16r/NPgn/ey06L+BKf6uzXPua1Tzwlkz5h101b/Ncaown0iEJz5Pm6heYj+Fr/WQ==",
  5203. "type": "package",
  5204. "path": "microsoft.aspnetcore.diagnostics.abstractions/2.1.1",
  5205. "files": [
  5206. ".nupkg.metadata",
  5207. ".signature.p7s",
  5208. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
  5209. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml",
  5210. "microsoft.aspnetcore.diagnostics.abstractions.2.1.1.nupkg.sha512",
  5211. "microsoft.aspnetcore.diagnostics.abstractions.nuspec"
  5212. ]
  5213. },
  5214. "Microsoft.AspNetCore.HostFiltering/2.1.1": {
  5215. "sha512": "tTlWJ/2Br7W7AtBj5ufWKD0oZBs1rJ5/GIN15PLIHmDPMWCHgxeX+F5tLFgkSoCmQWOJAPy+thltfgpz9Gkp6g==",
  5216. "type": "package",
  5217. "path": "microsoft.aspnetcore.hostfiltering/2.1.1",
  5218. "files": [
  5219. ".nupkg.metadata",
  5220. ".signature.p7s",
  5221. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.dll",
  5222. "lib/netstandard2.0/Microsoft.AspNetCore.HostFiltering.xml",
  5223. "microsoft.aspnetcore.hostfiltering.2.1.1.nupkg.sha512",
  5224. "microsoft.aspnetcore.hostfiltering.nuspec"
  5225. ]
  5226. },
  5227. "Microsoft.AspNetCore.Hosting/2.1.1": {
  5228. "sha512": "MqYc0DUxrhAPnb5b4HFspxsoJT+gJlLsliSxIgovf4BsbmpaXQId0/pDiVzLuEbmks2w1/lRfY8w0lQOuK1jQQ==",
  5229. "type": "package",
  5230. "path": "microsoft.aspnetcore.hosting/2.1.1",
  5231. "files": [
  5232. ".nupkg.metadata",
  5233. ".signature.p7s",
  5234. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll",
  5235. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.xml",
  5236. "microsoft.aspnetcore.hosting.2.1.1.nupkg.sha512",
  5237. "microsoft.aspnetcore.hosting.nuspec"
  5238. ]
  5239. },
  5240. "Microsoft.AspNetCore.Hosting.Abstractions/2.1.1": {
  5241. "sha512": "76cKcp2pWhvdV2TXTqMg/DyW7N6cDzTEhtL8vVWFShQN+Ylwv3eO/vUQr2BS3Hz4IZHEpL+FOo2T+MtymHDqDQ==",
  5242. "type": "package",
  5243. "path": "microsoft.aspnetcore.hosting.abstractions/2.1.1",
  5244. "files": [
  5245. ".nupkg.metadata",
  5246. ".signature.p7s",
  5247. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  5248. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  5249. "microsoft.aspnetcore.hosting.abstractions.2.1.1.nupkg.sha512",
  5250. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  5251. ]
  5252. },
  5253. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.1.1": {
  5254. "sha512": "+vD7HJYzAXNq17t+NgRkpS38cxuAyOBu8ixruOiA3nWsybozolUdALWiZ5QFtGRzajSLPFA2YsbO3NPcqoUwcw==",
  5255. "type": "package",
  5256. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.1.1",
  5257. "files": [
  5258. ".nupkg.metadata",
  5259. ".signature.p7s",
  5260. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  5261. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  5262. "microsoft.aspnetcore.hosting.server.abstractions.2.1.1.nupkg.sha512",
  5263. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  5264. ]
  5265. },
  5266. "Microsoft.AspNetCore.Html.Abstractions/2.1.1": {
  5267. "sha512": "CS/2N0d0JUdhYOrnd9Ll6O2Lb++CQaToKem6NyF+9RIgdL3tEZJOJHXcFWSXUSDqML98XQzbtnV+dCT22cBrRw==",
  5268. "type": "package",
  5269. "path": "microsoft.aspnetcore.html.abstractions/2.1.1",
  5270. "files": [
  5271. ".nupkg.metadata",
  5272. ".signature.p7s",
  5273. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll",
  5274. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.xml",
  5275. "microsoft.aspnetcore.html.abstractions.2.1.1.nupkg.sha512",
  5276. "microsoft.aspnetcore.html.abstractions.nuspec"
  5277. ]
  5278. },
  5279. "Microsoft.AspNetCore.Http/2.1.1": {
  5280. "sha512": "pPDcCW8spnyibK3krpxrOpaFHf5fjV6k1Hsl6gfh77N/8gRYlLU7MOQDUnjpEwdlHmtxwJKQJNxZqVQOmJGRUw==",
  5281. "type": "package",
  5282. "path": "microsoft.aspnetcore.http/2.1.1",
  5283. "files": [
  5284. ".nupkg.metadata",
  5285. ".signature.p7s",
  5286. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll",
  5287. "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml",
  5288. "microsoft.aspnetcore.http.2.1.1.nupkg.sha512",
  5289. "microsoft.aspnetcore.http.nuspec"
  5290. ]
  5291. },
  5292. "Microsoft.AspNetCore.Http.Abstractions/2.1.1": {
  5293. "sha512": "kQUEVOU4loc8CPSb2WoHFTESqwIa8Ik7ysCBfTwzHAd0moWovc9JQLmhDIHlYLjHbyexqZAlkq/FPRUZqokebw==",
  5294. "type": "package",
  5295. "path": "microsoft.aspnetcore.http.abstractions/2.1.1",
  5296. "files": [
  5297. ".nupkg.metadata",
  5298. ".signature.p7s",
  5299. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  5300. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  5301. "microsoft.aspnetcore.http.abstractions.2.1.1.nupkg.sha512",
  5302. "microsoft.aspnetcore.http.abstractions.nuspec"
  5303. ]
  5304. },
  5305. "Microsoft.AspNetCore.Http.Extensions/2.1.1": {
  5306. "sha512": "ncAgV+cqsWSqjLXFUTyObGh4Tr7ShYYs3uW8Q/YpRwZn7eLV7dux5Z6GLY+rsdzmIHiia3Q2NWbLULQi7aziHw==",
  5307. "type": "package",
  5308. "path": "microsoft.aspnetcore.http.extensions/2.1.1",
  5309. "files": [
  5310. ".nupkg.metadata",
  5311. ".signature.p7s",
  5312. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll",
  5313. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml",
  5314. "microsoft.aspnetcore.http.extensions.2.1.1.nupkg.sha512",
  5315. "microsoft.aspnetcore.http.extensions.nuspec"
  5316. ]
  5317. },
  5318. "Microsoft.AspNetCore.Http.Features/2.1.1": {
  5319. "sha512": "VklZ7hWgSvHBcDtwYYkdMdI/adlf7ebxTZ9kdzAhX+gUs5jSHE9mZlTamdgf9miSsxc1QjNazHXTDJdVPZKKTw==",
  5320. "type": "package",
  5321. "path": "microsoft.aspnetcore.http.features/2.1.1",
  5322. "files": [
  5323. ".nupkg.metadata",
  5324. ".signature.p7s",
  5325. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  5326. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  5327. "microsoft.aspnetcore.http.features.2.1.1.nupkg.sha512",
  5328. "microsoft.aspnetcore.http.features.nuspec"
  5329. ]
  5330. },
  5331. "Microsoft.AspNetCore.HttpOverrides/2.1.1": {
  5332. "sha512": "7oPPKBQLOWwcdhjcLO8ItuP7Br0Ytjpdq+x5j65XaTeKiD9JPSVadP8ceLoyzttnf7mhY3PuCsyTPbmsDzcclw==",
  5333. "type": "package",
  5334. "path": "microsoft.aspnetcore.httpoverrides/2.1.1",
  5335. "files": [
  5336. ".nupkg.metadata",
  5337. ".signature.p7s",
  5338. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll",
  5339. "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.xml",
  5340. "microsoft.aspnetcore.httpoverrides.2.1.1.nupkg.sha512",
  5341. "microsoft.aspnetcore.httpoverrides.nuspec"
  5342. ]
  5343. },
  5344. "Microsoft.AspNetCore.HttpsPolicy/2.1.1": {
  5345. "sha512": "NpdDAjvK2ElehzeOO8nB3tHj8SOFxbSvTSTsPHA5hfeY782BqSvEl9+o5YMVosIRES0o5jkqgzJDlLdn3kT2OQ==",
  5346. "type": "package",
  5347. "path": "microsoft.aspnetcore.httpspolicy/2.1.1",
  5348. "files": [
  5349. ".nupkg.metadata",
  5350. ".signature.p7s",
  5351. "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.dll",
  5352. "lib/netstandard2.0/Microsoft.AspNetCore.HttpsPolicy.xml",
  5353. "microsoft.aspnetcore.httpspolicy.2.1.1.nupkg.sha512",
  5354. "microsoft.aspnetcore.httpspolicy.nuspec"
  5355. ]
  5356. },
  5357. "Microsoft.AspNetCore.JsonPatch/2.1.1": {
  5358. "sha512": "VjTsHQQG5H8Gjw6oi3jLUc6Wnc9Gnj1alQIwVsbfxuoXS5j0rTpzIKcRNyppEf0eQfI5fV/IDPJxgxV0NK5Xgw==",
  5359. "type": "package",
  5360. "path": "microsoft.aspnetcore.jsonpatch/2.1.1",
  5361. "files": [
  5362. ".nupkg.metadata",
  5363. ".signature.p7s",
  5364. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  5365. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  5366. "microsoft.aspnetcore.jsonpatch.2.1.1.nupkg.sha512",
  5367. "microsoft.aspnetcore.jsonpatch.nuspec"
  5368. ]
  5369. },
  5370. "Microsoft.AspNetCore.Localization/2.1.1": {
  5371. "sha512": "vq/zYk4PxqLdhQq269RgmT9Tp44cEMYFm4aFU6B61TMzUyHIjiIYTvNcuAI+5VVBU6n6GfExxeF11J3U4Pzupw==",
  5372. "type": "package",
  5373. "path": "microsoft.aspnetcore.localization/2.1.1",
  5374. "files": [
  5375. ".nupkg.metadata",
  5376. ".signature.p7s",
  5377. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll",
  5378. "lib/netstandard2.0/Microsoft.AspNetCore.Localization.xml",
  5379. "microsoft.aspnetcore.localization.2.1.1.nupkg.sha512",
  5380. "microsoft.aspnetcore.localization.nuspec"
  5381. ]
  5382. },
  5383. "Microsoft.AspNetCore.Mvc/2.1.3": {
  5384. "sha512": "3FMnUZwgIr6VmvkLvozRuSEYuPgUHC1l81PLN4SmR/UDdJYKFDwIknGVYHZBAHDUB3WB/joCYHjuUENM6PvuYg==",
  5385. "type": "package",
  5386. "path": "microsoft.aspnetcore.mvc/2.1.3",
  5387. "files": [
  5388. ".nupkg.metadata",
  5389. ".signature.p7s",
  5390. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll",
  5391. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.xml",
  5392. "microsoft.aspnetcore.mvc.2.1.3.nupkg.sha512",
  5393. "microsoft.aspnetcore.mvc.nuspec"
  5394. ]
  5395. },
  5396. "Microsoft.AspNetCore.Mvc.Abstractions/2.1.3": {
  5397. "sha512": "G0oQiJ9okq+QbH9HBbmxu8/+Vhv063Dt06RzJPzsw7/uFT7Tvq5XHU5LI3b9qudyotJIRfYBbJRNeZyXEc+ALw==",
  5398. "type": "package",
  5399. "path": "microsoft.aspnetcore.mvc.abstractions/2.1.3",
  5400. "files": [
  5401. ".nupkg.metadata",
  5402. ".signature.p7s",
  5403. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll",
  5404. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml",
  5405. "microsoft.aspnetcore.mvc.abstractions.2.1.3.nupkg.sha512",
  5406. "microsoft.aspnetcore.mvc.abstractions.nuspec"
  5407. ]
  5408. },
  5409. "Microsoft.AspNetCore.Mvc.ApiExplorer/2.1.3": {
  5410. "sha512": "KQVzqCWhizoCkXDXe6DU1NkSfN7/X9v8juVRV/yRh2HbsLZlEwiMPLI8qA6x/OIjP3U6dwHMemsMQCbNH3YbCw==",
  5411. "type": "package",
  5412. "path": "microsoft.aspnetcore.mvc.apiexplorer/2.1.3",
  5413. "files": [
  5414. ".nupkg.metadata",
  5415. ".signature.p7s",
  5416. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll",
  5417. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.xml",
  5418. "microsoft.aspnetcore.mvc.apiexplorer.2.1.3.nupkg.sha512",
  5419. "microsoft.aspnetcore.mvc.apiexplorer.nuspec"
  5420. ]
  5421. },
  5422. "Microsoft.AspNetCore.Mvc.Core/2.1.3": {
  5423. "sha512": "qu2EOWIqz/KFw2WV0IDltHLoKjfWr60mWl9waPJwuwpjwycaDimu8fjOEigY941tMZoWjv/ZUi2kQGKHov10/g==",
  5424. "type": "package",
  5425. "path": "microsoft.aspnetcore.mvc.core/2.1.3",
  5426. "files": [
  5427. ".nupkg.metadata",
  5428. ".signature.p7s",
  5429. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll",
  5430. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml",
  5431. "microsoft.aspnetcore.mvc.core.2.1.3.nupkg.sha512",
  5432. "microsoft.aspnetcore.mvc.core.nuspec"
  5433. ]
  5434. },
  5435. "Microsoft.AspNetCore.Mvc.Cors/2.1.3": {
  5436. "sha512": "apH1jf7/D88YJbVRGnzrslOgEMKBRDnDtfSudQiMH/w13uu7FwfdJSAvFFwHQvODgGPVnmeZetsUXcvd4ySATQ==",
  5437. "type": "package",
  5438. "path": "microsoft.aspnetcore.mvc.cors/2.1.3",
  5439. "files": [
  5440. ".nupkg.metadata",
  5441. ".signature.p7s",
  5442. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll",
  5443. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.xml",
  5444. "microsoft.aspnetcore.mvc.cors.2.1.3.nupkg.sha512",
  5445. "microsoft.aspnetcore.mvc.cors.nuspec"
  5446. ]
  5447. },
  5448. "Microsoft.AspNetCore.Mvc.DataAnnotations/2.1.3": {
  5449. "sha512": "ume8mo6v/hCk2OmkYP45Au5rg+FUYCpSWSbDQGHlAo4NLspHa6MB+D4INiiEzvTXC4d738E4DzkdaKc7+PYcAQ==",
  5450. "type": "package",
  5451. "path": "microsoft.aspnetcore.mvc.dataannotations/2.1.3",
  5452. "files": [
  5453. ".nupkg.metadata",
  5454. ".signature.p7s",
  5455. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
  5456. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
  5457. "microsoft.aspnetcore.mvc.dataannotations.2.1.3.nupkg.sha512",
  5458. "microsoft.aspnetcore.mvc.dataannotations.nuspec"
  5459. ]
  5460. },
  5461. "Microsoft.AspNetCore.Mvc.Formatters.Json/2.1.3": {
  5462. "sha512": "a3tyBmMy1onYZbDHrbJ7nuE4xEQUSdD76T2KlE68s7xtANhIdbC/mW1FGTEZKzXawBygOaVVS7A1OzIiduxjUw==",
  5463. "type": "package",
  5464. "path": "microsoft.aspnetcore.mvc.formatters.json/2.1.3",
  5465. "files": [
  5466. ".nupkg.metadata",
  5467. ".signature.p7s",
  5468. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
  5469. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
  5470. "microsoft.aspnetcore.mvc.formatters.json.2.1.3.nupkg.sha512",
  5471. "microsoft.aspnetcore.mvc.formatters.json.nuspec"
  5472. ]
  5473. },
  5474. "Microsoft.AspNetCore.Mvc.Localization/2.1.3": {
  5475. "sha512": "sTG7gccAlN5xcwYgR+DLwoGL2Nsf9YTo7JpNHnLz44BdcoIt2WrsQnBy6Xg0+X0iK6sCn2JcB6i8sHMA/QAxgA==",
  5476. "type": "package",
  5477. "path": "microsoft.aspnetcore.mvc.localization/2.1.3",
  5478. "files": [
  5479. ".nupkg.metadata",
  5480. ".signature.p7s",
  5481. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll",
  5482. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.xml",
  5483. "microsoft.aspnetcore.mvc.localization.2.1.3.nupkg.sha512",
  5484. "microsoft.aspnetcore.mvc.localization.nuspec"
  5485. ]
  5486. },
  5487. "Microsoft.AspNetCore.Mvc.Razor/2.1.3": {
  5488. "sha512": "A6H7GV9NdMswPXui/MKi337kk3uKqXyLCQ6qjjL3XXmS4kn5G7AOhkOJ5YswbtW1ssP/rBC1E5iK2QX3bFCHew==",
  5489. "type": "package",
  5490. "path": "microsoft.aspnetcore.mvc.razor/2.1.3",
  5491. "files": [
  5492. ".nupkg.metadata",
  5493. ".signature.p7s",
  5494. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll",
  5495. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.xml",
  5496. "microsoft.aspnetcore.mvc.razor.2.1.3.nupkg.sha512",
  5497. "microsoft.aspnetcore.mvc.razor.nuspec"
  5498. ]
  5499. },
  5500. "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.1.1": {
  5501. "sha512": "dX6QcZLUbIQj2BC+lkmlAvHPrDzrknmO1YW1AUNh2GKk9iEAhlVraxzsQo10IvYdXOhJGhiqa6gVyq9fledK1g==",
  5502. "type": "package",
  5503. "path": "microsoft.aspnetcore.mvc.razor.extensions/2.1.1",
  5504. "files": [
  5505. ".nupkg.metadata",
  5506. ".signature.p7s",
  5507. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.props",
  5508. "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.targets",
  5509. "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  5510. "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml",
  5511. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  5512. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml",
  5513. "microsoft.aspnetcore.mvc.razor.extensions.2.1.1.nupkg.sha512",
  5514. "microsoft.aspnetcore.mvc.razor.extensions.nuspec"
  5515. ]
  5516. },
  5517. "Microsoft.AspNetCore.Mvc.RazorPages/2.1.3": {
  5518. "sha512": "9XAjyPY2n1V9jRDm0XqvsgURtOI99N+Wvhu1C719lOM0dmst6tMYmed2MJCdZ7EzzLxGoK112It33/zZheXWig==",
  5519. "type": "package",
  5520. "path": "microsoft.aspnetcore.mvc.razorpages/2.1.3",
  5521. "files": [
  5522. ".nupkg.metadata",
  5523. ".signature.p7s",
  5524. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll",
  5525. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml",
  5526. "microsoft.aspnetcore.mvc.razorpages.2.1.3.nupkg.sha512",
  5527. "microsoft.aspnetcore.mvc.razorpages.nuspec"
  5528. ]
  5529. },
  5530. "Microsoft.AspNetCore.Mvc.TagHelpers/2.1.3": {
  5531. "sha512": "YQ3L/NDtmYXO36hcsvFmG0bBDpO1U2mPtQb9h8ueOKVHrwYJQX1oBKTKyNoW1CxGkunmXoi2IeVwXeTl7HrVkA==",
  5532. "type": "package",
  5533. "path": "microsoft.aspnetcore.mvc.taghelpers/2.1.3",
  5534. "files": [
  5535. ".nupkg.metadata",
  5536. ".signature.p7s",
  5537. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
  5538. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.xml",
  5539. "microsoft.aspnetcore.mvc.taghelpers.2.1.3.nupkg.sha512",
  5540. "microsoft.aspnetcore.mvc.taghelpers.nuspec"
  5541. ]
  5542. },
  5543. "Microsoft.AspNetCore.Mvc.ViewFeatures/2.1.3": {
  5544. "sha512": "UwFP+BjvqzF5V9NVga0kLb4oS5LceNkYPFtMvd9imezn0+/vHKSxiIp0cWvHuksNGMld/9JjSH2KQMt0i3zkzA==",
  5545. "type": "package",
  5546. "path": "microsoft.aspnetcore.mvc.viewfeatures/2.1.3",
  5547. "files": [
  5548. ".nupkg.metadata",
  5549. ".signature.p7s",
  5550. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
  5551. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
  5552. "microsoft.aspnetcore.mvc.viewfeatures.2.1.3.nupkg.sha512",
  5553. "microsoft.aspnetcore.mvc.viewfeatures.nuspec"
  5554. ]
  5555. },
  5556. "Microsoft.AspNetCore.Razor/2.1.1": {
  5557. "sha512": "2yYunEgYC7hOyasvMiiH+a8250l+l1R79jB6VarZ6I8fiXDNCrJ/mEEn9TS0vDidAzesOshFigepa6+qI5Cb0w==",
  5558. "type": "package",
  5559. "path": "microsoft.aspnetcore.razor/2.1.1",
  5560. "files": [
  5561. ".nupkg.metadata",
  5562. ".signature.p7s",
  5563. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll",
  5564. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.xml",
  5565. "microsoft.aspnetcore.razor.2.1.1.nupkg.sha512",
  5566. "microsoft.aspnetcore.razor.nuspec"
  5567. ]
  5568. },
  5569. "Microsoft.AspNetCore.Razor.Design/2.1.1": {
  5570. "sha512": "1XHObHLx6A0/57ZmLG9gfKMO/Z/gQjRXPFWQDMlPZGYwcfgufvSdmI2+RYvR5DGkbba9HIHC35ClNQ2yVNIohw==",
  5571. "type": "package",
  5572. "path": "microsoft.aspnetcore.razor.design/2.1.1",
  5573. "hasTools": true,
  5574. "files": [
  5575. ".nupkg.metadata",
  5576. ".signature.p7s",
  5577. "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.CodeGeneration.targets",
  5578. "build/netstandard2.0/Microsoft.AspNetCore.Razor.Design.props",
  5579. "buildMultiTargeting/Microsoft.AspNetCore.Razor.Design.props",
  5580. "microsoft.aspnetcore.razor.design.2.1.1.nupkg.sha512",
  5581. "microsoft.aspnetcore.razor.design.nuspec",
  5582. "tasks/net46/Microsoft.AspNetCore.Razor.Tasks.dll",
  5583. "tasks/netstandard2.0/Microsoft.AspNetCore.Razor.Tasks.dll",
  5584. "tools/Microsoft.AspNetCore.Razor.Language.dll",
  5585. "tools/Microsoft.CodeAnalysis.CSharp.dll",
  5586. "tools/Microsoft.CodeAnalysis.Razor.dll",
  5587. "tools/Microsoft.CodeAnalysis.dll",
  5588. "tools/Newtonsoft.Json.dll",
  5589. "tools/runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  5590. "tools/runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  5591. "tools/rzc.deps.json",
  5592. "tools/rzc.dll",
  5593. "tools/rzc.runtimeconfig.json"
  5594. ]
  5595. },
  5596. "Microsoft.AspNetCore.Razor.Language/2.1.1": {
  5597. "sha512": "NbDH62ez/AZzSAGZuy6dIMBDMV0HmBlbWJqPw/ZX+Ooz8x1oZq6i/LbPbt34CQlAkrm7lnAlWZq+cE7dzkvGiQ==",
  5598. "type": "package",
  5599. "path": "microsoft.aspnetcore.razor.language/2.1.1",
  5600. "files": [
  5601. ".nupkg.metadata",
  5602. ".signature.p7s",
  5603. "lib/net46/Microsoft.AspNetCore.Razor.Language.dll",
  5604. "lib/net46/Microsoft.AspNetCore.Razor.Language.xml",
  5605. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  5606. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.xml",
  5607. "microsoft.aspnetcore.razor.language.2.1.1.nupkg.sha512",
  5608. "microsoft.aspnetcore.razor.language.nuspec"
  5609. ]
  5610. },
  5611. "Microsoft.AspNetCore.Razor.Runtime/2.1.1": {
  5612. "sha512": "m+lFv8BGZiR/1mtuBCwCtwvoQlx0QpjUbH6ixqqm7v8+uhXo6RKGV4CHBDozuJhhI4qb9dxNyyWhVm3S0bY8Zw==",
  5613. "type": "package",
  5614. "path": "microsoft.aspnetcore.razor.runtime/2.1.1",
  5615. "files": [
  5616. ".nupkg.metadata",
  5617. ".signature.p7s",
  5618. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll",
  5619. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.xml",
  5620. "microsoft.aspnetcore.razor.runtime.2.1.1.nupkg.sha512",
  5621. "microsoft.aspnetcore.razor.runtime.nuspec"
  5622. ]
  5623. },
  5624. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.1.1": {
  5625. "sha512": "sTJvhc408h4J8ml66gfhuN/r2WfrasvgERq2ZLIDz3YZYqSXmkpwDjbxSlhzuHQFKMlyx1Tg1uWoF+6eRrKjDA==",
  5626. "type": "package",
  5627. "path": "microsoft.aspnetcore.responsecaching.abstractions/2.1.1",
  5628. "files": [
  5629. ".nupkg.metadata",
  5630. ".signature.p7s",
  5631. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
  5632. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
  5633. "microsoft.aspnetcore.responsecaching.abstractions.2.1.1.nupkg.sha512",
  5634. "microsoft.aspnetcore.responsecaching.abstractions.nuspec"
  5635. ]
  5636. },
  5637. "Microsoft.AspNetCore.Routing/2.1.1": {
  5638. "sha512": "U39z3M0oTrquVBohK32Nh20PWQkb9fuO1dbVPTI43Dr3n6qCx6vAFNGWuCzFeINLy152LivmVlLn4rMOzWudug==",
  5639. "type": "package",
  5640. "path": "microsoft.aspnetcore.routing/2.1.1",
  5641. "files": [
  5642. ".nupkg.metadata",
  5643. ".signature.p7s",
  5644. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll",
  5645. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml",
  5646. "microsoft.aspnetcore.routing.2.1.1.nupkg.sha512",
  5647. "microsoft.aspnetcore.routing.nuspec"
  5648. ]
  5649. },
  5650. "Microsoft.AspNetCore.Routing.Abstractions/2.1.1": {
  5651. "sha512": "Aa88Bi0/HI8dPReC0XqByPiVGYDRfj6Xh2eVsNCisnlgFHonDdW9CQsNPhVSK+uWQl3kDMFxFpeJ1ktz/wUHsQ==",
  5652. "type": "package",
  5653. "path": "microsoft.aspnetcore.routing.abstractions/2.1.1",
  5654. "files": [
  5655. ".nupkg.metadata",
  5656. ".signature.p7s",
  5657. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll",
  5658. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml",
  5659. "microsoft.aspnetcore.routing.abstractions.2.1.1.nupkg.sha512",
  5660. "microsoft.aspnetcore.routing.abstractions.nuspec"
  5661. ]
  5662. },
  5663. "Microsoft.AspNetCore.Server.IISIntegration/2.1.7": {
  5664. "sha512": "F9L+Khl+l9nKUcANEdDXdmbFS2E8yfC9Bfcc3+IEuV2sg/H3NIMEEPCZe5nhI8ELrDxLtCSKX46RubsPtks6FQ==",
  5665. "type": "package",
  5666. "path": "microsoft.aspnetcore.server.iisintegration/2.1.7",
  5667. "files": [
  5668. ".nupkg.metadata",
  5669. ".signature.p7s",
  5670. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll",
  5671. "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.xml",
  5672. "microsoft.aspnetcore.server.iisintegration.2.1.7.nupkg.sha512",
  5673. "microsoft.aspnetcore.server.iisintegration.nuspec"
  5674. ]
  5675. },
  5676. "Microsoft.AspNetCore.Server.Kestrel/2.1.3": {
  5677. "sha512": "+JDnYueC3ptdD98D8QoIddBWwzeWAFQiS0j1f3R0A8O2VulFnm0F8HGPHEOYonuqYI4mcJ1UErf/PQHwduDy+A==",
  5678. "type": "package",
  5679. "path": "microsoft.aspnetcore.server.kestrel/2.1.3",
  5680. "files": [
  5681. ".nupkg.metadata",
  5682. ".signature.p7s",
  5683. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll",
  5684. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.xml",
  5685. "microsoft.aspnetcore.server.kestrel.2.1.3.nupkg.sha512",
  5686. "microsoft.aspnetcore.server.kestrel.nuspec"
  5687. ]
  5688. },
  5689. "Microsoft.AspNetCore.Server.Kestrel.Core/2.1.3": {
  5690. "sha512": "Oz8zNBhSHINGtOVqujnBMKDq9oVv54riu6zIKXcIcJxBfRAfbpAm2Uq9HhHYY0bqHn1XS+lvDJpZbV1++sbCSw==",
  5691. "type": "package",
  5692. "path": "microsoft.aspnetcore.server.kestrel.core/2.1.3",
  5693. "files": [
  5694. ".nupkg.metadata",
  5695. ".signature.p7s",
  5696. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll",
  5697. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.xml",
  5698. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll",
  5699. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.xml",
  5700. "microsoft.aspnetcore.server.kestrel.core.2.1.3.nupkg.sha512",
  5701. "microsoft.aspnetcore.server.kestrel.core.nuspec"
  5702. ]
  5703. },
  5704. "Microsoft.AspNetCore.Server.Kestrel.Https/2.1.3": {
  5705. "sha512": "rR2P+W1zxTZk+W0U6cfnGs5q3ksCXbuvvEtU9RHoLJ2rLz2IDFv9JJf3PGoD0ONu0JzOCbwZzLcsBMxdes/mVA==",
  5706. "type": "package",
  5707. "path": "microsoft.aspnetcore.server.kestrel.https/2.1.3",
  5708. "files": [
  5709. ".nupkg.metadata",
  5710. ".signature.p7s",
  5711. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll",
  5712. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.xml",
  5713. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll",
  5714. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.xml",
  5715. "microsoft.aspnetcore.server.kestrel.https.2.1.3.nupkg.sha512",
  5716. "microsoft.aspnetcore.server.kestrel.https.nuspec"
  5717. ]
  5718. },
  5719. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.1.3": {
  5720. "sha512": "eWuUt5eSDdpBwNRZdFf7FiKcpNBZ/wETKSgf5weAfTxpGKwmfftrViiMJQgCwxlntgLzL1MYCZf51A8O2Xq9Ng==",
  5721. "type": "package",
  5722. "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.1.3",
  5723. "files": [
  5724. ".nupkg.metadata",
  5725. ".signature.p7s",
  5726. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll",
  5727. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.xml",
  5728. "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.1.3.nupkg.sha512",
  5729. "microsoft.aspnetcore.server.kestrel.transport.abstractions.nuspec"
  5730. ]
  5731. },
  5732. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.1.3": {
  5733. "sha512": "qaEW5rAhAoSKNqO6nRWFMHp5CpgSxnz+jk6e4g+AOQhQZroJrS/DtnhY2WxvbyzJ6V7kKv7Mis7vgylTtmcrFg==",
  5734. "type": "package",
  5735. "path": "microsoft.aspnetcore.server.kestrel.transport.sockets/2.1.3",
  5736. "files": [
  5737. ".nupkg.metadata",
  5738. ".signature.p7s",
  5739. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll",
  5740. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml",
  5741. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll",
  5742. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml",
  5743. "microsoft.aspnetcore.server.kestrel.transport.sockets.2.1.3.nupkg.sha512",
  5744. "microsoft.aspnetcore.server.kestrel.transport.sockets.nuspec"
  5745. ]
  5746. },
  5747. "Microsoft.AspNetCore.WebUtilities/2.1.1": {
  5748. "sha512": "PGKIZt4+412Z/XPoSjvYu/QIbTxcAQuEFNoA1Pw8a9mgmO0ZhNBmfaNyhgXFf7Rq62kP0tT/2WXpxdcQhkFUPA==",
  5749. "type": "package",
  5750. "path": "microsoft.aspnetcore.webutilities/2.1.1",
  5751. "files": [
  5752. ".nupkg.metadata",
  5753. ".signature.p7s",
  5754. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll",
  5755. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml",
  5756. "microsoft.aspnetcore.webutilities.2.1.1.nupkg.sha512",
  5757. "microsoft.aspnetcore.webutilities.nuspec"
  5758. ]
  5759. },
  5760. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  5761. "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
  5762. "type": "package",
  5763. "path": "microsoft.codeanalysis.analyzers/1.1.0",
  5764. "hasTools": true,
  5765. "files": [
  5766. ".nupkg.metadata",
  5767. ".signature.p7s",
  5768. "ThirdPartyNotices.rtf",
  5769. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  5770. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  5771. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  5772. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  5773. "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512",
  5774. "microsoft.codeanalysis.analyzers.nuspec",
  5775. "tools/install.ps1",
  5776. "tools/uninstall.ps1"
  5777. ]
  5778. },
  5779. "Microsoft.CodeAnalysis.Common/2.8.0": {
  5780. "sha512": "06AzG7oOLKTCN1EnoVYL1bQz+Zwa10LMpUn7Kc+PdpN8CQXRqXTyhfxuKIz6t0qWfoatBNXdHD0OLcEYp5pOvQ==",
  5781. "type": "package",
  5782. "path": "microsoft.codeanalysis.common/2.8.0",
  5783. "files": [
  5784. ".nupkg.metadata",
  5785. ".signature.p7s",
  5786. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll",
  5787. "lib/netstandard1.3/Microsoft.CodeAnalysis.pdb",
  5788. "lib/netstandard1.3/Microsoft.CodeAnalysis.xml",
  5789. "microsoft.codeanalysis.common.2.8.0.nupkg.sha512",
  5790. "microsoft.codeanalysis.common.nuspec"
  5791. ]
  5792. },
  5793. "Microsoft.CodeAnalysis.CSharp/2.8.0": {
  5794. "sha512": "RizcFXuHgGmeuZhxxE1qQdhFA9lGOHlk0MJlCUt6LOnYsevo72gNikPcbANFHY02YK8L/buNrihchY0TroGvXQ==",
  5795. "type": "package",
  5796. "path": "microsoft.codeanalysis.csharp/2.8.0",
  5797. "files": [
  5798. ".nupkg.metadata",
  5799. ".signature.p7s",
  5800. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll",
  5801. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.pdb",
  5802. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml",
  5803. "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512",
  5804. "microsoft.codeanalysis.csharp.nuspec"
  5805. ]
  5806. },
  5807. "Microsoft.CodeAnalysis.Razor/2.1.1": {
  5808. "sha512": "hc29VUVlF2t2TfOR3c5X2mun3h5KkswkarpWBffEG4iHoSdoEueo82dplwoXg9lH2vw0mK7VYPyawcKy6YHv3A==",
  5809. "type": "package",
  5810. "path": "microsoft.codeanalysis.razor/2.1.1",
  5811. "files": [
  5812. ".nupkg.metadata",
  5813. ".signature.p7s",
  5814. "lib/net46/Microsoft.CodeAnalysis.Razor.dll",
  5815. "lib/net46/Microsoft.CodeAnalysis.Razor.xml",
  5816. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  5817. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.xml",
  5818. "microsoft.codeanalysis.razor.2.1.1.nupkg.sha512",
  5819. "microsoft.codeanalysis.razor.nuspec"
  5820. ]
  5821. },
  5822. "Microsoft.CSharp/4.5.0": {
  5823. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  5824. "type": "package",
  5825. "path": "microsoft.csharp/4.5.0",
  5826. "files": [
  5827. ".nupkg.metadata",
  5828. ".signature.p7s",
  5829. "LICENSE.TXT",
  5830. "THIRD-PARTY-NOTICES.TXT",
  5831. "lib/MonoAndroid10/_._",
  5832. "lib/MonoTouch10/_._",
  5833. "lib/net45/_._",
  5834. "lib/netcore50/Microsoft.CSharp.dll",
  5835. "lib/netcoreapp2.0/_._",
  5836. "lib/netstandard1.3/Microsoft.CSharp.dll",
  5837. "lib/netstandard2.0/Microsoft.CSharp.dll",
  5838. "lib/portable-net45+win8+wp8+wpa81/_._",
  5839. "lib/uap10.0.16299/_._",
  5840. "lib/win8/_._",
  5841. "lib/wp80/_._",
  5842. "lib/wpa81/_._",
  5843. "lib/xamarinios10/_._",
  5844. "lib/xamarinmac20/_._",
  5845. "lib/xamarintvos10/_._",
  5846. "lib/xamarinwatchos10/_._",
  5847. "microsoft.csharp.4.5.0.nupkg.sha512",
  5848. "microsoft.csharp.nuspec",
  5849. "ref/MonoAndroid10/_._",
  5850. "ref/MonoTouch10/_._",
  5851. "ref/net45/_._",
  5852. "ref/netcore50/Microsoft.CSharp.dll",
  5853. "ref/netcore50/Microsoft.CSharp.xml",
  5854. "ref/netcore50/de/Microsoft.CSharp.xml",
  5855. "ref/netcore50/es/Microsoft.CSharp.xml",
  5856. "ref/netcore50/fr/Microsoft.CSharp.xml",
  5857. "ref/netcore50/it/Microsoft.CSharp.xml",
  5858. "ref/netcore50/ja/Microsoft.CSharp.xml",
  5859. "ref/netcore50/ko/Microsoft.CSharp.xml",
  5860. "ref/netcore50/ru/Microsoft.CSharp.xml",
  5861. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  5862. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  5863. "ref/netcoreapp2.0/_._",
  5864. "ref/netstandard1.0/Microsoft.CSharp.dll",
  5865. "ref/netstandard1.0/Microsoft.CSharp.xml",
  5866. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  5867. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  5868. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  5869. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  5870. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  5871. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  5872. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  5873. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  5874. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  5875. "ref/netstandard2.0/Microsoft.CSharp.dll",
  5876. "ref/netstandard2.0/Microsoft.CSharp.xml",
  5877. "ref/portable-net45+win8+wp8+wpa81/_._",
  5878. "ref/uap10.0.16299/_._",
  5879. "ref/win8/_._",
  5880. "ref/wp80/_._",
  5881. "ref/wpa81/_._",
  5882. "ref/xamarinios10/_._",
  5883. "ref/xamarinmac20/_._",
  5884. "ref/xamarintvos10/_._",
  5885. "ref/xamarinwatchos10/_._",
  5886. "useSharedDesignerContext.txt",
  5887. "version.txt"
  5888. ]
  5889. },
  5890. "Microsoft.DiaSymReader.Native/1.7.0": {
  5891. "sha512": "vIzndj0MoWW2Mp/iztUSKvmR9vZTqOVQ6PBvwA57+CDoiz7eUMU15rrAX+/QA0bkmwQ08GRibFBB9LNOl0EiBA==",
  5892. "type": "package",
  5893. "path": "microsoft.diasymreader.native/1.7.0",
  5894. "files": [
  5895. ".nupkg.metadata",
  5896. ".signature.p7s",
  5897. "build/Microsoft.DiaSymReader.Native.props",
  5898. "microsoft.diasymreader.native.1.7.0.nupkg.sha512",
  5899. "microsoft.diasymreader.native.nuspec",
  5900. "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll",
  5901. "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll",
  5902. "runtimes/win/native/Microsoft.DiaSymReader.Native.amd64.dll",
  5903. "runtimes/win/native/Microsoft.DiaSymReader.Native.arm.dll",
  5904. "runtimes/win/native/Microsoft.DiaSymReader.Native.x86.dll",
  5905. "runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll"
  5906. ]
  5907. },
  5908. "Microsoft.DotNet.PlatformAbstractions/2.1.0": {
  5909. "sha512": "9KPDwvb/hLEVXYruVHVZ8BkebC8j17DmPb56LnqRF74HqSPLjCkrlFUjOtFpQPA2DeADBRTI/e69aCfRBfrhxw==",
  5910. "type": "package",
  5911. "path": "microsoft.dotnet.platformabstractions/2.1.0",
  5912. "files": [
  5913. ".nupkg.metadata",
  5914. ".signature.p7s",
  5915. "LICENSE.TXT",
  5916. "THIRD-PARTY-NOTICES.TXT",
  5917. "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll",
  5918. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll",
  5919. "microsoft.dotnet.platformabstractions.2.1.0.nupkg.sha512",
  5920. "microsoft.dotnet.platformabstractions.nuspec"
  5921. ]
  5922. },
  5923. "Microsoft.Extensions.Caching.Abstractions/2.1.1": {
  5924. "sha512": "LbT7Ry1waNBksnngFNdaNmEglQMJ8g7F6tbSoyoqpEW35W/Cj4YwURDVwoRS+jtyf6YKsTdPHV643jMMuJBi9g==",
  5925. "type": "package",
  5926. "path": "microsoft.extensions.caching.abstractions/2.1.1",
  5927. "files": [
  5928. ".nupkg.metadata",
  5929. ".signature.p7s",
  5930. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  5931. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  5932. "microsoft.extensions.caching.abstractions.2.1.1.nupkg.sha512",
  5933. "microsoft.extensions.caching.abstractions.nuspec"
  5934. ]
  5935. },
  5936. "Microsoft.Extensions.Caching.Memory/2.1.1": {
  5937. "sha512": "jR14GhHGmPzq7QChnYa3Uiu+s/QerwxbMPAlA0Ei0shDJlrRoD6FSb9hP8rmSX6oai9Z64SWbXlwBhi3L/vj9g==",
  5938. "type": "package",
  5939. "path": "microsoft.extensions.caching.memory/2.1.1",
  5940. "files": [
  5941. ".nupkg.metadata",
  5942. ".signature.p7s",
  5943. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  5944. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  5945. "microsoft.extensions.caching.memory.2.1.1.nupkg.sha512",
  5946. "microsoft.extensions.caching.memory.nuspec"
  5947. ]
  5948. },
  5949. "Microsoft.Extensions.Configuration/2.1.1": {
  5950. "sha512": "LjVKO6P2y52c5ZhTLX/w8zc5H4Y3J/LJsgqTBj49TtFq/hAtVNue/WA0F6/7GMY90xhD7K0MDZ4qpOeWXbLvzg==",
  5951. "type": "package",
  5952. "path": "microsoft.extensions.configuration/2.1.1",
  5953. "files": [
  5954. ".nupkg.metadata",
  5955. ".signature.p7s",
  5956. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  5957. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  5958. "microsoft.extensions.configuration.2.1.1.nupkg.sha512",
  5959. "microsoft.extensions.configuration.nuspec"
  5960. ]
  5961. },
  5962. "Microsoft.Extensions.Configuration.Abstractions/2.1.1": {
  5963. "sha512": "VfuZJNa0WUshZ/+8BFZAhwFKiKuu/qOUCFntfdLpHj7vcRnsGHqd3G2Hse78DM+pgozczGM63lGPRLmy+uhUOA==",
  5964. "type": "package",
  5965. "path": "microsoft.extensions.configuration.abstractions/2.1.1",
  5966. "files": [
  5967. ".nupkg.metadata",
  5968. ".signature.p7s",
  5969. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  5970. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  5971. "microsoft.extensions.configuration.abstractions.2.1.1.nupkg.sha512",
  5972. "microsoft.extensions.configuration.abstractions.nuspec"
  5973. ]
  5974. },
  5975. "Microsoft.Extensions.Configuration.Binder/2.1.1": {
  5976. "sha512": "fcLCTS03poWE4v9tSNBr3pWn0QwGgAn1vzqHXlXgvqZeOc7LvQNzaWcKRQZTdEc3+YhQKwMsOtm3VKSA2aWQ8w==",
  5977. "type": "package",
  5978. "path": "microsoft.extensions.configuration.binder/2.1.1",
  5979. "files": [
  5980. ".nupkg.metadata",
  5981. ".signature.p7s",
  5982. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  5983. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  5984. "microsoft.extensions.configuration.binder.2.1.1.nupkg.sha512",
  5985. "microsoft.extensions.configuration.binder.nuspec"
  5986. ]
  5987. },
  5988. "Microsoft.Extensions.Configuration.CommandLine/2.1.1": {
  5989. "sha512": "ZFEOXcp9gZdOoINRGg6sUYqEUU6X4HRShPPLbY9tY/r+PTWyVBwucYzuueHLE7k5yxJTNBnIHpxtJ8PMvxjjBQ==",
  5990. "type": "package",
  5991. "path": "microsoft.extensions.configuration.commandline/2.1.1",
  5992. "files": [
  5993. ".nupkg.metadata",
  5994. ".signature.p7s",
  5995. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  5996. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  5997. "microsoft.extensions.configuration.commandline.2.1.1.nupkg.sha512",
  5998. "microsoft.extensions.configuration.commandline.nuspec"
  5999. ]
  6000. },
  6001. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.1.1": {
  6002. "sha512": "6xMxFIfKL+7J/jwlk8zV8I61sF3+DRG19iKQxnSfYQU+iMMjGbcWNCHFF/3MHf3o4sTZPZ8D6Io+GwKFc3TIZA==",
  6003. "type": "package",
  6004. "path": "microsoft.extensions.configuration.environmentvariables/2.1.1",
  6005. "files": [
  6006. ".nupkg.metadata",
  6007. ".signature.p7s",
  6008. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  6009. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  6010. "microsoft.extensions.configuration.environmentvariables.2.1.1.nupkg.sha512",
  6011. "microsoft.extensions.configuration.environmentvariables.nuspec"
  6012. ]
  6013. },
  6014. "Microsoft.Extensions.Configuration.FileExtensions/2.1.1": {
  6015. "sha512": "CDk5CwG0YzlRgvl65J0iK6ahrX12yMRrEat3yVTXjWC+GN9Jg9zHZu2IE4cQIPAMA/IiAI5KjgL08fhP3fPCkw==",
  6016. "type": "package",
  6017. "path": "microsoft.extensions.configuration.fileextensions/2.1.1",
  6018. "files": [
  6019. ".nupkg.metadata",
  6020. ".signature.p7s",
  6021. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  6022. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  6023. "microsoft.extensions.configuration.fileextensions.2.1.1.nupkg.sha512",
  6024. "microsoft.extensions.configuration.fileextensions.nuspec"
  6025. ]
  6026. },
  6027. "Microsoft.Extensions.Configuration.Json/2.1.1": {
  6028. "sha512": "IFpONpvdhVEE3S3F4fTYkpT/GyIHtumy2m0HniQanJ80Pj/pUF3Z4wjrHEp1G78rPD+WTo5fRlhdJfuU1Tv2GQ==",
  6029. "type": "package",
  6030. "path": "microsoft.extensions.configuration.json/2.1.1",
  6031. "files": [
  6032. ".nupkg.metadata",
  6033. ".signature.p7s",
  6034. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  6035. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  6036. "microsoft.extensions.configuration.json.2.1.1.nupkg.sha512",
  6037. "microsoft.extensions.configuration.json.nuspec"
  6038. ]
  6039. },
  6040. "Microsoft.Extensions.Configuration.UserSecrets/2.1.1": {
  6041. "sha512": "/HeMnhc9a6Ou9V+QIdGYHtYuOf0t0RQ//odFUrJ249F6W78pJyVDZY7RnhH4UMF+WLOJpo6hh010DIlW2nqqSA==",
  6042. "type": "package",
  6043. "path": "microsoft.extensions.configuration.usersecrets/2.1.1",
  6044. "files": [
  6045. ".nupkg.metadata",
  6046. ".signature.p7s",
  6047. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  6048. "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  6049. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  6050. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  6051. "microsoft.extensions.configuration.usersecrets.2.1.1.nupkg.sha512",
  6052. "microsoft.extensions.configuration.usersecrets.nuspec"
  6053. ]
  6054. },
  6055. "Microsoft.Extensions.DependencyInjection/2.1.1": {
  6056. "sha512": "RVdgNWT/73M0eCpreGpWv5NmbHFGQzzW+G7nChK8ej84m+d1nzeWrtqcRYnEpKNx3B8V/Uek4tNP0WCaCNjYnQ==",
  6057. "type": "package",
  6058. "path": "microsoft.extensions.dependencyinjection/2.1.1",
  6059. "files": [
  6060. ".nupkg.metadata",
  6061. ".signature.p7s",
  6062. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  6063. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  6064. "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll",
  6065. "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.xml",
  6066. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  6067. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  6068. "microsoft.extensions.dependencyinjection.2.1.1.nupkg.sha512",
  6069. "microsoft.extensions.dependencyinjection.nuspec"
  6070. ]
  6071. },
  6072. "Microsoft.Extensions.DependencyInjection.Abstractions/2.1.1": {
  6073. "sha512": "MgYpU5cwZohUMKKg3sbPhvGG+eAZ/59E9UwPwlrUkyXU+PGzqwZg9yyQNjhxuAWmoNoFReoemeCku50prYSGzA==",
  6074. "type": "package",
  6075. "path": "microsoft.extensions.dependencyinjection.abstractions/2.1.1",
  6076. "files": [
  6077. ".nupkg.metadata",
  6078. ".signature.p7s",
  6079. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  6080. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  6081. "microsoft.extensions.dependencyinjection.abstractions.2.1.1.nupkg.sha512",
  6082. "microsoft.extensions.dependencyinjection.abstractions.nuspec"
  6083. ]
  6084. },
  6085. "Microsoft.Extensions.DependencyModel/2.1.0": {
  6086. "sha512": "nS2XKqi+1A1umnYNLX2Fbm/XnzCxs5i+zXVJ3VC6r9t2z0NZr9FLnJN4VQpKigdcWH/iFTbMuX6M6WQJcTjVIg==",
  6087. "type": "package",
  6088. "path": "microsoft.extensions.dependencymodel/2.1.0",
  6089. "files": [
  6090. ".nupkg.metadata",
  6091. ".signature.p7s",
  6092. "LICENSE.TXT",
  6093. "THIRD-PARTY-NOTICES.TXT",
  6094. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  6095. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  6096. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  6097. "microsoft.extensions.dependencymodel.2.1.0.nupkg.sha512",
  6098. "microsoft.extensions.dependencymodel.nuspec"
  6099. ]
  6100. },
  6101. "Microsoft.Extensions.FileProviders.Abstractions/2.1.1": {
  6102. "sha512": "UEQB5/QPuLYaCvScZQ9llhcks5xyEUKh41D615FoehRAF9UgGVmXHcCSOH8idHHLRoKm+OJJjEy1oywvuaL33w==",
  6103. "type": "package",
  6104. "path": "microsoft.extensions.fileproviders.abstractions/2.1.1",
  6105. "files": [
  6106. ".nupkg.metadata",
  6107. ".signature.p7s",
  6108. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  6109. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  6110. "microsoft.extensions.fileproviders.abstractions.2.1.1.nupkg.sha512",
  6111. "microsoft.extensions.fileproviders.abstractions.nuspec"
  6112. ]
  6113. },
  6114. "Microsoft.Extensions.FileProviders.Composite/2.1.1": {
  6115. "sha512": "fduNXRROUeV1bvFr7xkeRkTU/gVfqu5hmfqxiJiciOjwH3Q+UOADiXAWoPfnQiwpZEmsCC6z+hIIyBOnO4i5Yw==",
  6116. "type": "package",
  6117. "path": "microsoft.extensions.fileproviders.composite/2.1.1",
  6118. "files": [
  6119. ".nupkg.metadata",
  6120. ".signature.p7s",
  6121. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
  6122. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
  6123. "microsoft.extensions.fileproviders.composite.2.1.1.nupkg.sha512",
  6124. "microsoft.extensions.fileproviders.composite.nuspec"
  6125. ]
  6126. },
  6127. "Microsoft.Extensions.FileProviders.Physical/2.1.1": {
  6128. "sha512": "kVCvLm1ePchUgRrQZrno07Mn6knDAzR7vl6eRaI/fem0u6ODg+RTwOYLs4XL39Ttuu+BzEwqzHu3DtDgXT8+vQ==",
  6129. "type": "package",
  6130. "path": "microsoft.extensions.fileproviders.physical/2.1.1",
  6131. "files": [
  6132. ".nupkg.metadata",
  6133. ".signature.p7s",
  6134. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  6135. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  6136. "microsoft.extensions.fileproviders.physical.2.1.1.nupkg.sha512",
  6137. "microsoft.extensions.fileproviders.physical.nuspec"
  6138. ]
  6139. },
  6140. "Microsoft.Extensions.FileSystemGlobbing/2.1.1": {
  6141. "sha512": "4QDzyCN8cJnThY6mK9SnzovyCZ8KCG9jmC9KqHfFGtazJvmNZP1gcyBkPmqMjP0qwbmEUUyqyA9LLn3FrYXTGw==",
  6142. "type": "package",
  6143. "path": "microsoft.extensions.filesystemglobbing/2.1.1",
  6144. "files": [
  6145. ".nupkg.metadata",
  6146. ".signature.p7s",
  6147. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  6148. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  6149. "microsoft.extensions.filesystemglobbing.2.1.1.nupkg.sha512",
  6150. "microsoft.extensions.filesystemglobbing.nuspec"
  6151. ]
  6152. },
  6153. "Microsoft.Extensions.Hosting.Abstractions/2.1.1": {
  6154. "sha512": "kVVdHnOFJbcXxgZzrT6nwkrWZTHL+47LT59S9J2Jp0BNO3EQWNEZHUUZMb/kKFV7LtW+bp+EuAOPNUqEcqI++Q==",
  6155. "type": "package",
  6156. "path": "microsoft.extensions.hosting.abstractions/2.1.1",
  6157. "files": [
  6158. ".nupkg.metadata",
  6159. ".signature.p7s",
  6160. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  6161. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  6162. "microsoft.extensions.hosting.abstractions.2.1.1.nupkg.sha512",
  6163. "microsoft.extensions.hosting.abstractions.nuspec"
  6164. ]
  6165. },
  6166. "Microsoft.Extensions.Localization/2.1.1": {
  6167. "sha512": "6v66lA0RqutBDseLtX6MAZHUcaTBk2xfhnfHpcBeLtlx7jySHg/CNociGLPW7oHJtrJ+POZ8xDEoAyQp5RbWXw==",
  6168. "type": "package",
  6169. "path": "microsoft.extensions.localization/2.1.1",
  6170. "files": [
  6171. ".nupkg.metadata",
  6172. ".signature.p7s",
  6173. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
  6174. "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
  6175. "microsoft.extensions.localization.2.1.1.nupkg.sha512",
  6176. "microsoft.extensions.localization.nuspec"
  6177. ]
  6178. },
  6179. "Microsoft.Extensions.Localization.Abstractions/2.1.1": {
  6180. "sha512": "bsDw+b5BaiFej/Nei6IiJFhsOtiXdDmJCabkU45WC3DQafHOLUWuArpVar8Vv2VxHrXGkOWRA7gX31LASqcaMA==",
  6181. "type": "package",
  6182. "path": "microsoft.extensions.localization.abstractions/2.1.1",
  6183. "files": [
  6184. ".nupkg.metadata",
  6185. ".signature.p7s",
  6186. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
  6187. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
  6188. "microsoft.extensions.localization.abstractions.2.1.1.nupkg.sha512",
  6189. "microsoft.extensions.localization.abstractions.nuspec"
  6190. ]
  6191. },
  6192. "Microsoft.Extensions.Logging/2.1.1": {
  6193. "sha512": "hh+mkOAQDTp6XH80xJt3+wwYVzkbwYQl9XZRCz4Um0JjP/o7N9vHM3rZ6wwwtr+BBe/L6iBO2sz0px6OWBzqZQ==",
  6194. "type": "package",
  6195. "path": "microsoft.extensions.logging/2.1.1",
  6196. "files": [
  6197. ".nupkg.metadata",
  6198. ".signature.p7s",
  6199. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  6200. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  6201. "microsoft.extensions.logging.2.1.1.nupkg.sha512",
  6202. "microsoft.extensions.logging.nuspec"
  6203. ]
  6204. },
  6205. "Microsoft.Extensions.Logging.Abstractions/2.1.1": {
  6206. "sha512": "XRzK7ZF+O6FzdfWrlFTi1Rgj2080ZDsd46vzOjadHUB0Cz5kOvDG8vI7caa5YFrsHQpcfn0DxtjS4E46N4FZsA==",
  6207. "type": "package",
  6208. "path": "microsoft.extensions.logging.abstractions/2.1.1",
  6209. "files": [
  6210. ".nupkg.metadata",
  6211. ".signature.p7s",
  6212. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  6213. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  6214. "microsoft.extensions.logging.abstractions.2.1.1.nupkg.sha512",
  6215. "microsoft.extensions.logging.abstractions.nuspec"
  6216. ]
  6217. },
  6218. "Microsoft.Extensions.Logging.Configuration/2.1.1": {
  6219. "sha512": "Z3AzFM21fL/ux0kZAbTE+HDPQ46vuh0dqzhlBm6w7/029RxZLvV6bUUsAs70i2r4JfShhCjBYZ+bTjR42diFVA==",
  6220. "type": "package",
  6221. "path": "microsoft.extensions.logging.configuration/2.1.1",
  6222. "files": [
  6223. ".nupkg.metadata",
  6224. ".signature.p7s",
  6225. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  6226. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  6227. "microsoft.extensions.logging.configuration.2.1.1.nupkg.sha512",
  6228. "microsoft.extensions.logging.configuration.nuspec"
  6229. ]
  6230. },
  6231. "Microsoft.Extensions.Logging.Console/2.1.1": {
  6232. "sha512": "6dYephpuOacAiXE6eJcWu0myEub8qglrWSgzsYUdzWXGanAAlTVzpms/Wp5yeLpw4hsP8KFey8ySwt5KvVv/uw==",
  6233. "type": "package",
  6234. "path": "microsoft.extensions.logging.console/2.1.1",
  6235. "files": [
  6236. ".nupkg.metadata",
  6237. ".signature.p7s",
  6238. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  6239. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  6240. "microsoft.extensions.logging.console.2.1.1.nupkg.sha512",
  6241. "microsoft.extensions.logging.console.nuspec"
  6242. ]
  6243. },
  6244. "Microsoft.Extensions.Logging.Debug/2.1.1": {
  6245. "sha512": "72k7rBz2DL3ev59gX+uwOmA/pEegGzi5SRZhysPIi7+2+JoyLlIRBPscJ8OzOI344Bq27cTByGHDoYWOrq73vg==",
  6246. "type": "package",
  6247. "path": "microsoft.extensions.logging.debug/2.1.1",
  6248. "files": [
  6249. ".nupkg.metadata",
  6250. ".signature.p7s",
  6251. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
  6252. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
  6253. "microsoft.extensions.logging.debug.2.1.1.nupkg.sha512",
  6254. "microsoft.extensions.logging.debug.nuspec"
  6255. ]
  6256. },
  6257. "Microsoft.Extensions.ObjectPool/2.1.1": {
  6258. "sha512": "SErON45qh4ogDp6lr6UvVmFYW0FERihW+IQ+2JyFv1PUyWktcJytFaWH5zarufJvZwhci7Rf1IyGXr9pVEadTw==",
  6259. "type": "package",
  6260. "path": "microsoft.extensions.objectpool/2.1.1",
  6261. "files": [
  6262. ".nupkg.metadata",
  6263. ".signature.p7s",
  6264. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll",
  6265. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml",
  6266. "microsoft.extensions.objectpool.2.1.1.nupkg.sha512",
  6267. "microsoft.extensions.objectpool.nuspec"
  6268. ]
  6269. },
  6270. "Microsoft.Extensions.Options/2.1.1": {
  6271. "sha512": "V7lXCU78lAbzaulCGFKojcCyG8RTJicEbiBkPJjFqiqXwndEBBIehdXRMWEVU3UtzQ1yDvphiWUL9th6/4gJ7w==",
  6272. "type": "package",
  6273. "path": "microsoft.extensions.options/2.1.1",
  6274. "files": [
  6275. ".nupkg.metadata",
  6276. ".signature.p7s",
  6277. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  6278. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  6279. "microsoft.extensions.options.2.1.1.nupkg.sha512",
  6280. "microsoft.extensions.options.nuspec"
  6281. ]
  6282. },
  6283. "Microsoft.Extensions.Options.ConfigurationExtensions/2.1.1": {
  6284. "sha512": "NpGh3Y/VOBs6hvjKHMsdbtrvGvMO+cBqZ7YT/Rc4iFy0C4ogSnl1lBAq69L1LS6gzlwDBZDZ7WcvzSDzk5zfzA==",
  6285. "type": "package",
  6286. "path": "microsoft.extensions.options.configurationextensions/2.1.1",
  6287. "files": [
  6288. ".nupkg.metadata",
  6289. ".signature.p7s",
  6290. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  6291. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  6292. "microsoft.extensions.options.configurationextensions.2.1.1.nupkg.sha512",
  6293. "microsoft.extensions.options.configurationextensions.nuspec"
  6294. ]
  6295. },
  6296. "Microsoft.Extensions.Primitives/2.1.1": {
  6297. "sha512": "scJ1GZNIxMmjpENh0UZ8XCQ6vzr/LzeF9WvEA51Ix2OQGAs9WPgPu8ABVUdvpKPLuor/t05gm6menJK3PwqOXg==",
  6298. "type": "package",
  6299. "path": "microsoft.extensions.primitives/2.1.1",
  6300. "files": [
  6301. ".nupkg.metadata",
  6302. ".signature.p7s",
  6303. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  6304. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  6305. "microsoft.extensions.primitives.2.1.1.nupkg.sha512",
  6306. "microsoft.extensions.primitives.nuspec"
  6307. ]
  6308. },
  6309. "Microsoft.Extensions.WebEncoders/2.1.1": {
  6310. "sha512": "XIuJXPNUAX/ZV/onarixNoq3kO7Q9/RXXOY8hhYydsDwHI9PqPeJH6WE3LmPJJDmB+7y3+MT6ZmW78gZZDApBA==",
  6311. "type": "package",
  6312. "path": "microsoft.extensions.webencoders/2.1.1",
  6313. "files": [
  6314. ".nupkg.metadata",
  6315. ".signature.p7s",
  6316. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll",
  6317. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.xml",
  6318. "microsoft.extensions.webencoders.2.1.1.nupkg.sha512",
  6319. "microsoft.extensions.webencoders.nuspec"
  6320. ]
  6321. },
  6322. "Microsoft.Net.Http.Headers/2.1.1": {
  6323. "sha512": "lPNIphl8b2EuhOE9dMH6EZDmu7pS882O+HMi5BJNsigxHaWlBrYxZHFZgE18cyaPp6SSZcTkKkuzfjV/RRQKlA==",
  6324. "type": "package",
  6325. "path": "microsoft.net.http.headers/2.1.1",
  6326. "files": [
  6327. ".nupkg.metadata",
  6328. ".signature.p7s",
  6329. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll",
  6330. "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml",
  6331. "microsoft.net.http.headers.2.1.1.nupkg.sha512",
  6332. "microsoft.net.http.headers.nuspec"
  6333. ]
  6334. },
  6335. "Microsoft.Win32.Registry/4.5.0": {
  6336. "sha512": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
  6337. "type": "package",
  6338. "path": "microsoft.win32.registry/4.5.0",
  6339. "files": [
  6340. ".nupkg.metadata",
  6341. ".signature.p7s",
  6342. "LICENSE.TXT",
  6343. "THIRD-PARTY-NOTICES.TXT",
  6344. "lib/net46/Microsoft.Win32.Registry.dll",
  6345. "lib/net461/Microsoft.Win32.Registry.dll",
  6346. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  6347. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  6348. "microsoft.win32.registry.4.5.0.nupkg.sha512",
  6349. "microsoft.win32.registry.nuspec",
  6350. "ref/net46/Microsoft.Win32.Registry.dll",
  6351. "ref/net461/Microsoft.Win32.Registry.dll",
  6352. "ref/net461/Microsoft.Win32.Registry.xml",
  6353. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  6354. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  6355. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  6356. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  6357. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  6358. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  6359. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  6360. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  6361. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  6362. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  6363. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  6364. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  6365. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  6366. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  6367. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  6368. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  6369. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  6370. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  6371. "useSharedDesignerContext.txt",
  6372. "version.txt"
  6373. ]
  6374. },
  6375. "Newtonsoft.Json/11.0.2": {
  6376. "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
  6377. "type": "package",
  6378. "path": "newtonsoft.json/11.0.2",
  6379. "files": [
  6380. ".nupkg.metadata",
  6381. ".signature.p7s",
  6382. "LICENSE.md",
  6383. "lib/net20/Newtonsoft.Json.dll",
  6384. "lib/net20/Newtonsoft.Json.xml",
  6385. "lib/net35/Newtonsoft.Json.dll",
  6386. "lib/net35/Newtonsoft.Json.xml",
  6387. "lib/net40/Newtonsoft.Json.dll",
  6388. "lib/net40/Newtonsoft.Json.xml",
  6389. "lib/net45/Newtonsoft.Json.dll",
  6390. "lib/net45/Newtonsoft.Json.xml",
  6391. "lib/netstandard1.0/Newtonsoft.Json.dll",
  6392. "lib/netstandard1.0/Newtonsoft.Json.xml",
  6393. "lib/netstandard1.3/Newtonsoft.Json.dll",
  6394. "lib/netstandard1.3/Newtonsoft.Json.xml",
  6395. "lib/netstandard2.0/Newtonsoft.Json.dll",
  6396. "lib/netstandard2.0/Newtonsoft.Json.xml",
  6397. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  6398. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  6399. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  6400. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  6401. "newtonsoft.json.11.0.2.nupkg.sha512",
  6402. "newtonsoft.json.nuspec"
  6403. ]
  6404. },
  6405. "Newtonsoft.Json.Bson/1.0.1": {
  6406. "sha512": "5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
  6407. "type": "package",
  6408. "path": "newtonsoft.json.bson/1.0.1",
  6409. "files": [
  6410. ".nupkg.metadata",
  6411. ".signature.p7s",
  6412. "lib/net45/Newtonsoft.Json.Bson.dll",
  6413. "lib/net45/Newtonsoft.Json.Bson.xml",
  6414. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  6415. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  6416. "newtonsoft.json.bson.1.0.1.nupkg.sha512",
  6417. "newtonsoft.json.bson.nuspec"
  6418. ]
  6419. },
  6420. "System.AppContext/4.3.0": {
  6421. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  6422. "type": "package",
  6423. "path": "system.appcontext/4.3.0",
  6424. "files": [
  6425. ".nupkg.metadata",
  6426. ".signature.p7s",
  6427. "ThirdPartyNotices.txt",
  6428. "dotnet_library_license.txt",
  6429. "lib/MonoAndroid10/_._",
  6430. "lib/MonoTouch10/_._",
  6431. "lib/net46/System.AppContext.dll",
  6432. "lib/net463/System.AppContext.dll",
  6433. "lib/netcore50/System.AppContext.dll",
  6434. "lib/netstandard1.6/System.AppContext.dll",
  6435. "lib/xamarinios10/_._",
  6436. "lib/xamarinmac20/_._",
  6437. "lib/xamarintvos10/_._",
  6438. "lib/xamarinwatchos10/_._",
  6439. "ref/MonoAndroid10/_._",
  6440. "ref/MonoTouch10/_._",
  6441. "ref/net46/System.AppContext.dll",
  6442. "ref/net463/System.AppContext.dll",
  6443. "ref/netstandard/_._",
  6444. "ref/netstandard1.3/System.AppContext.dll",
  6445. "ref/netstandard1.3/System.AppContext.xml",
  6446. "ref/netstandard1.3/de/System.AppContext.xml",
  6447. "ref/netstandard1.3/es/System.AppContext.xml",
  6448. "ref/netstandard1.3/fr/System.AppContext.xml",
  6449. "ref/netstandard1.3/it/System.AppContext.xml",
  6450. "ref/netstandard1.3/ja/System.AppContext.xml",
  6451. "ref/netstandard1.3/ko/System.AppContext.xml",
  6452. "ref/netstandard1.3/ru/System.AppContext.xml",
  6453. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  6454. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  6455. "ref/netstandard1.6/System.AppContext.dll",
  6456. "ref/netstandard1.6/System.AppContext.xml",
  6457. "ref/netstandard1.6/de/System.AppContext.xml",
  6458. "ref/netstandard1.6/es/System.AppContext.xml",
  6459. "ref/netstandard1.6/fr/System.AppContext.xml",
  6460. "ref/netstandard1.6/it/System.AppContext.xml",
  6461. "ref/netstandard1.6/ja/System.AppContext.xml",
  6462. "ref/netstandard1.6/ko/System.AppContext.xml",
  6463. "ref/netstandard1.6/ru/System.AppContext.xml",
  6464. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  6465. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  6466. "ref/xamarinios10/_._",
  6467. "ref/xamarinmac20/_._",
  6468. "ref/xamarintvos10/_._",
  6469. "ref/xamarinwatchos10/_._",
  6470. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  6471. "system.appcontext.4.3.0.nupkg.sha512",
  6472. "system.appcontext.nuspec"
  6473. ]
  6474. },
  6475. "System.Buffers/4.5.0": {
  6476. "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
  6477. "type": "package",
  6478. "path": "system.buffers/4.5.0",
  6479. "files": [
  6480. ".nupkg.metadata",
  6481. ".signature.p7s",
  6482. "LICENSE.TXT",
  6483. "THIRD-PARTY-NOTICES.TXT",
  6484. "lib/netcoreapp2.0/_._",
  6485. "lib/netstandard1.1/System.Buffers.dll",
  6486. "lib/netstandard1.1/System.Buffers.xml",
  6487. "lib/netstandard2.0/System.Buffers.dll",
  6488. "lib/netstandard2.0/System.Buffers.xml",
  6489. "lib/uap10.0.16299/_._",
  6490. "ref/net45/System.Buffers.dll",
  6491. "ref/net45/System.Buffers.xml",
  6492. "ref/netcoreapp2.0/_._",
  6493. "ref/netstandard1.1/System.Buffers.dll",
  6494. "ref/netstandard1.1/System.Buffers.xml",
  6495. "ref/netstandard2.0/System.Buffers.dll",
  6496. "ref/netstandard2.0/System.Buffers.xml",
  6497. "ref/uap10.0.16299/_._",
  6498. "system.buffers.4.5.0.nupkg.sha512",
  6499. "system.buffers.nuspec",
  6500. "useSharedDesignerContext.txt",
  6501. "version.txt"
  6502. ]
  6503. },
  6504. "System.Collections/4.3.0": {
  6505. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  6506. "type": "package",
  6507. "path": "system.collections/4.3.0",
  6508. "files": [
  6509. ".nupkg.metadata",
  6510. ".signature.p7s",
  6511. "ThirdPartyNotices.txt",
  6512. "dotnet_library_license.txt",
  6513. "lib/MonoAndroid10/_._",
  6514. "lib/MonoTouch10/_._",
  6515. "lib/net45/_._",
  6516. "lib/portable-net45+win8+wp8+wpa81/_._",
  6517. "lib/win8/_._",
  6518. "lib/wp80/_._",
  6519. "lib/wpa81/_._",
  6520. "lib/xamarinios10/_._",
  6521. "lib/xamarinmac20/_._",
  6522. "lib/xamarintvos10/_._",
  6523. "lib/xamarinwatchos10/_._",
  6524. "ref/MonoAndroid10/_._",
  6525. "ref/MonoTouch10/_._",
  6526. "ref/net45/_._",
  6527. "ref/netcore50/System.Collections.dll",
  6528. "ref/netcore50/System.Collections.xml",
  6529. "ref/netcore50/de/System.Collections.xml",
  6530. "ref/netcore50/es/System.Collections.xml",
  6531. "ref/netcore50/fr/System.Collections.xml",
  6532. "ref/netcore50/it/System.Collections.xml",
  6533. "ref/netcore50/ja/System.Collections.xml",
  6534. "ref/netcore50/ko/System.Collections.xml",
  6535. "ref/netcore50/ru/System.Collections.xml",
  6536. "ref/netcore50/zh-hans/System.Collections.xml",
  6537. "ref/netcore50/zh-hant/System.Collections.xml",
  6538. "ref/netstandard1.0/System.Collections.dll",
  6539. "ref/netstandard1.0/System.Collections.xml",
  6540. "ref/netstandard1.0/de/System.Collections.xml",
  6541. "ref/netstandard1.0/es/System.Collections.xml",
  6542. "ref/netstandard1.0/fr/System.Collections.xml",
  6543. "ref/netstandard1.0/it/System.Collections.xml",
  6544. "ref/netstandard1.0/ja/System.Collections.xml",
  6545. "ref/netstandard1.0/ko/System.Collections.xml",
  6546. "ref/netstandard1.0/ru/System.Collections.xml",
  6547. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  6548. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  6549. "ref/netstandard1.3/System.Collections.dll",
  6550. "ref/netstandard1.3/System.Collections.xml",
  6551. "ref/netstandard1.3/de/System.Collections.xml",
  6552. "ref/netstandard1.3/es/System.Collections.xml",
  6553. "ref/netstandard1.3/fr/System.Collections.xml",
  6554. "ref/netstandard1.3/it/System.Collections.xml",
  6555. "ref/netstandard1.3/ja/System.Collections.xml",
  6556. "ref/netstandard1.3/ko/System.Collections.xml",
  6557. "ref/netstandard1.3/ru/System.Collections.xml",
  6558. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  6559. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  6560. "ref/portable-net45+win8+wp8+wpa81/_._",
  6561. "ref/win8/_._",
  6562. "ref/wp80/_._",
  6563. "ref/wpa81/_._",
  6564. "ref/xamarinios10/_._",
  6565. "ref/xamarinmac20/_._",
  6566. "ref/xamarintvos10/_._",
  6567. "ref/xamarinwatchos10/_._",
  6568. "system.collections.4.3.0.nupkg.sha512",
  6569. "system.collections.nuspec"
  6570. ]
  6571. },
  6572. "System.Collections.Concurrent/4.3.0": {
  6573. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  6574. "type": "package",
  6575. "path": "system.collections.concurrent/4.3.0",
  6576. "files": [
  6577. ".nupkg.metadata",
  6578. ".signature.p7s",
  6579. "ThirdPartyNotices.txt",
  6580. "dotnet_library_license.txt",
  6581. "lib/MonoAndroid10/_._",
  6582. "lib/MonoTouch10/_._",
  6583. "lib/net45/_._",
  6584. "lib/netcore50/System.Collections.Concurrent.dll",
  6585. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  6586. "lib/portable-net45+win8+wpa81/_._",
  6587. "lib/win8/_._",
  6588. "lib/wpa81/_._",
  6589. "lib/xamarinios10/_._",
  6590. "lib/xamarinmac20/_._",
  6591. "lib/xamarintvos10/_._",
  6592. "lib/xamarinwatchos10/_._",
  6593. "ref/MonoAndroid10/_._",
  6594. "ref/MonoTouch10/_._",
  6595. "ref/net45/_._",
  6596. "ref/netcore50/System.Collections.Concurrent.dll",
  6597. "ref/netcore50/System.Collections.Concurrent.xml",
  6598. "ref/netcore50/de/System.Collections.Concurrent.xml",
  6599. "ref/netcore50/es/System.Collections.Concurrent.xml",
  6600. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  6601. "ref/netcore50/it/System.Collections.Concurrent.xml",
  6602. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  6603. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  6604. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  6605. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  6606. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  6607. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  6608. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  6609. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  6610. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  6611. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  6612. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  6613. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  6614. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  6615. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  6616. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  6617. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  6618. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  6619. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  6620. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  6621. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  6622. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  6623. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  6624. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  6625. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  6626. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  6627. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  6628. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  6629. "ref/portable-net45+win8+wpa81/_._",
  6630. "ref/win8/_._",
  6631. "ref/wpa81/_._",
  6632. "ref/xamarinios10/_._",
  6633. "ref/xamarinmac20/_._",
  6634. "ref/xamarintvos10/_._",
  6635. "ref/xamarinwatchos10/_._",
  6636. "system.collections.concurrent.4.3.0.nupkg.sha512",
  6637. "system.collections.concurrent.nuspec"
  6638. ]
  6639. },
  6640. "System.Collections.Immutable/1.5.0": {
  6641. "sha512": "EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==",
  6642. "type": "package",
  6643. "path": "system.collections.immutable/1.5.0",
  6644. "files": [
  6645. ".nupkg.metadata",
  6646. ".signature.p7s",
  6647. "LICENSE.TXT",
  6648. "THIRD-PARTY-NOTICES.TXT",
  6649. "lib/netstandard1.0/System.Collections.Immutable.dll",
  6650. "lib/netstandard1.0/System.Collections.Immutable.xml",
  6651. "lib/netstandard1.3/System.Collections.Immutable.dll",
  6652. "lib/netstandard1.3/System.Collections.Immutable.xml",
  6653. "lib/netstandard2.0/System.Collections.Immutable.dll",
  6654. "lib/netstandard2.0/System.Collections.Immutable.xml",
  6655. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  6656. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  6657. "system.collections.immutable.1.5.0.nupkg.sha512",
  6658. "system.collections.immutable.nuspec",
  6659. "useSharedDesignerContext.txt",
  6660. "version.txt"
  6661. ]
  6662. },
  6663. "System.ComponentModel.Annotations/4.5.0": {
  6664. "sha512": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
  6665. "type": "package",
  6666. "path": "system.componentmodel.annotations/4.5.0",
  6667. "files": [
  6668. ".nupkg.metadata",
  6669. ".signature.p7s",
  6670. "LICENSE.TXT",
  6671. "THIRD-PARTY-NOTICES.TXT",
  6672. "lib/MonoAndroid10/_._",
  6673. "lib/MonoTouch10/_._",
  6674. "lib/net45/_._",
  6675. "lib/net461/System.ComponentModel.Annotations.dll",
  6676. "lib/netcore50/System.ComponentModel.Annotations.dll",
  6677. "lib/netcoreapp2.0/_._",
  6678. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  6679. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  6680. "lib/portable-net45+win8/_._",
  6681. "lib/uap10.0.16299/_._",
  6682. "lib/win8/_._",
  6683. "lib/xamarinios10/_._",
  6684. "lib/xamarinmac20/_._",
  6685. "lib/xamarintvos10/_._",
  6686. "lib/xamarinwatchos10/_._",
  6687. "ref/MonoAndroid10/_._",
  6688. "ref/MonoTouch10/_._",
  6689. "ref/net45/_._",
  6690. "ref/net461/System.ComponentModel.Annotations.dll",
  6691. "ref/net461/System.ComponentModel.Annotations.xml",
  6692. "ref/netcore50/System.ComponentModel.Annotations.dll",
  6693. "ref/netcore50/System.ComponentModel.Annotations.xml",
  6694. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  6695. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  6696. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  6697. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  6698. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  6699. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  6700. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  6701. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  6702. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  6703. "ref/netcoreapp2.0/_._",
  6704. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  6705. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  6706. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  6707. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  6708. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  6709. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  6710. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  6711. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  6712. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  6713. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  6714. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  6715. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  6716. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  6717. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  6718. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  6719. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  6720. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  6721. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  6722. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  6723. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  6724. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  6725. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  6726. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  6727. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  6728. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  6729. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  6730. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  6731. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  6732. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  6733. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  6734. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  6735. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  6736. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  6737. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  6738. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  6739. "ref/portable-net45+win8/_._",
  6740. "ref/uap10.0.16299/_._",
  6741. "ref/win8/_._",
  6742. "ref/xamarinios10/_._",
  6743. "ref/xamarinmac20/_._",
  6744. "ref/xamarintvos10/_._",
  6745. "ref/xamarinwatchos10/_._",
  6746. "system.componentmodel.annotations.4.5.0.nupkg.sha512",
  6747. "system.componentmodel.annotations.nuspec",
  6748. "useSharedDesignerContext.txt",
  6749. "version.txt"
  6750. ]
  6751. },
  6752. "System.Console/4.3.0": {
  6753. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6754. "type": "package",
  6755. "path": "system.console/4.3.0",
  6756. "files": [
  6757. ".nupkg.metadata",
  6758. ".signature.p7s",
  6759. "ThirdPartyNotices.txt",
  6760. "dotnet_library_license.txt",
  6761. "lib/MonoAndroid10/_._",
  6762. "lib/MonoTouch10/_._",
  6763. "lib/net46/System.Console.dll",
  6764. "lib/xamarinios10/_._",
  6765. "lib/xamarinmac20/_._",
  6766. "lib/xamarintvos10/_._",
  6767. "lib/xamarinwatchos10/_._",
  6768. "ref/MonoAndroid10/_._",
  6769. "ref/MonoTouch10/_._",
  6770. "ref/net46/System.Console.dll",
  6771. "ref/netstandard1.3/System.Console.dll",
  6772. "ref/netstandard1.3/System.Console.xml",
  6773. "ref/netstandard1.3/de/System.Console.xml",
  6774. "ref/netstandard1.3/es/System.Console.xml",
  6775. "ref/netstandard1.3/fr/System.Console.xml",
  6776. "ref/netstandard1.3/it/System.Console.xml",
  6777. "ref/netstandard1.3/ja/System.Console.xml",
  6778. "ref/netstandard1.3/ko/System.Console.xml",
  6779. "ref/netstandard1.3/ru/System.Console.xml",
  6780. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6781. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6782. "ref/xamarinios10/_._",
  6783. "ref/xamarinmac20/_._",
  6784. "ref/xamarintvos10/_._",
  6785. "ref/xamarinwatchos10/_._",
  6786. "system.console.4.3.0.nupkg.sha512",
  6787. "system.console.nuspec"
  6788. ]
  6789. },
  6790. "System.Diagnostics.Debug/4.3.0": {
  6791. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6792. "type": "package",
  6793. "path": "system.diagnostics.debug/4.3.0",
  6794. "files": [
  6795. ".nupkg.metadata",
  6796. ".signature.p7s",
  6797. "ThirdPartyNotices.txt",
  6798. "dotnet_library_license.txt",
  6799. "lib/MonoAndroid10/_._",
  6800. "lib/MonoTouch10/_._",
  6801. "lib/net45/_._",
  6802. "lib/portable-net45+win8+wp8+wpa81/_._",
  6803. "lib/win8/_._",
  6804. "lib/wp80/_._",
  6805. "lib/wpa81/_._",
  6806. "lib/xamarinios10/_._",
  6807. "lib/xamarinmac20/_._",
  6808. "lib/xamarintvos10/_._",
  6809. "lib/xamarinwatchos10/_._",
  6810. "ref/MonoAndroid10/_._",
  6811. "ref/MonoTouch10/_._",
  6812. "ref/net45/_._",
  6813. "ref/netcore50/System.Diagnostics.Debug.dll",
  6814. "ref/netcore50/System.Diagnostics.Debug.xml",
  6815. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6816. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6817. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6818. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6819. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6820. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6821. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6822. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6823. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6824. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6825. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6826. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6827. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6828. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6829. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6830. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6831. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6832. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6833. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6834. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6835. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6836. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6837. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6838. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6839. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6840. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6841. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6842. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6843. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6844. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6845. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6846. "ref/portable-net45+win8+wp8+wpa81/_._",
  6847. "ref/win8/_._",
  6848. "ref/wp80/_._",
  6849. "ref/wpa81/_._",
  6850. "ref/xamarinios10/_._",
  6851. "ref/xamarinmac20/_._",
  6852. "ref/xamarintvos10/_._",
  6853. "ref/xamarinwatchos10/_._",
  6854. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6855. "system.diagnostics.debug.nuspec"
  6856. ]
  6857. },
  6858. "System.Diagnostics.DiagnosticSource/4.5.1": {
  6859. "sha512": "zCno/m44ymWhgLFh7tELDG9587q0l/EynPM0m4KgLaWQbz/TEKvNRX2YT5ip2qXW/uayifQ2ZqbnErsKJ4lYrQ==",
  6860. "type": "package",
  6861. "path": "system.diagnostics.diagnosticsource/4.5.1",
  6862. "files": [
  6863. ".nupkg.metadata",
  6864. ".signature.p7s",
  6865. "LICENSE.TXT",
  6866. "THIRD-PARTY-NOTICES.TXT",
  6867. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  6868. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  6869. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  6870. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  6871. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  6872. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  6873. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  6874. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  6875. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  6876. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  6877. "system.diagnostics.diagnosticsource.4.5.1.nupkg.sha512",
  6878. "system.diagnostics.diagnosticsource.nuspec",
  6879. "useSharedDesignerContext.txt",
  6880. "version.txt"
  6881. ]
  6882. },
  6883. "System.Diagnostics.FileVersionInfo/4.3.0": {
  6884. "sha512": "omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==",
  6885. "type": "package",
  6886. "path": "system.diagnostics.fileversioninfo/4.3.0",
  6887. "files": [
  6888. ".nupkg.metadata",
  6889. ".signature.p7s",
  6890. "ThirdPartyNotices.txt",
  6891. "dotnet_library_license.txt",
  6892. "lib/MonoAndroid10/_._",
  6893. "lib/MonoTouch10/_._",
  6894. "lib/net46/System.Diagnostics.FileVersionInfo.dll",
  6895. "lib/xamarinios10/_._",
  6896. "lib/xamarinmac20/_._",
  6897. "lib/xamarintvos10/_._",
  6898. "lib/xamarinwatchos10/_._",
  6899. "ref/MonoAndroid10/_._",
  6900. "ref/MonoTouch10/_._",
  6901. "ref/net46/System.Diagnostics.FileVersionInfo.dll",
  6902. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  6903. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml",
  6904. "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml",
  6905. "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml",
  6906. "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml",
  6907. "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml",
  6908. "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml",
  6909. "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml",
  6910. "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml",
  6911. "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml",
  6912. "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml",
  6913. "ref/xamarinios10/_._",
  6914. "ref/xamarinmac20/_._",
  6915. "ref/xamarintvos10/_._",
  6916. "ref/xamarinwatchos10/_._",
  6917. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  6918. "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll",
  6919. "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll",
  6920. "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  6921. "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512",
  6922. "system.diagnostics.fileversioninfo.nuspec"
  6923. ]
  6924. },
  6925. "System.Diagnostics.StackTrace/4.3.0": {
  6926. "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
  6927. "type": "package",
  6928. "path": "system.diagnostics.stacktrace/4.3.0",
  6929. "files": [
  6930. ".nupkg.metadata",
  6931. ".signature.p7s",
  6932. "ThirdPartyNotices.txt",
  6933. "dotnet_library_license.txt",
  6934. "lib/MonoAndroid10/_._",
  6935. "lib/MonoTouch10/_._",
  6936. "lib/net46/System.Diagnostics.StackTrace.dll",
  6937. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll",
  6938. "lib/xamarinios10/_._",
  6939. "lib/xamarinmac20/_._",
  6940. "lib/xamarintvos10/_._",
  6941. "lib/xamarinwatchos10/_._",
  6942. "ref/MonoAndroid10/_._",
  6943. "ref/MonoTouch10/_._",
  6944. "ref/net46/System.Diagnostics.StackTrace.dll",
  6945. "ref/netstandard1.3/System.Diagnostics.StackTrace.dll",
  6946. "ref/netstandard1.3/System.Diagnostics.StackTrace.xml",
  6947. "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml",
  6948. "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml",
  6949. "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml",
  6950. "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml",
  6951. "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml",
  6952. "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml",
  6953. "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml",
  6954. "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml",
  6955. "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml",
  6956. "ref/xamarinios10/_._",
  6957. "ref/xamarinmac20/_._",
  6958. "ref/xamarintvos10/_._",
  6959. "ref/xamarinwatchos10/_._",
  6960. "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll",
  6961. "system.diagnostics.stacktrace.4.3.0.nupkg.sha512",
  6962. "system.diagnostics.stacktrace.nuspec"
  6963. ]
  6964. },
  6965. "System.Diagnostics.Tools/4.3.0": {
  6966. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6967. "type": "package",
  6968. "path": "system.diagnostics.tools/4.3.0",
  6969. "files": [
  6970. ".nupkg.metadata",
  6971. ".signature.p7s",
  6972. "ThirdPartyNotices.txt",
  6973. "dotnet_library_license.txt",
  6974. "lib/MonoAndroid10/_._",
  6975. "lib/MonoTouch10/_._",
  6976. "lib/net45/_._",
  6977. "lib/portable-net45+win8+wp8+wpa81/_._",
  6978. "lib/win8/_._",
  6979. "lib/wp80/_._",
  6980. "lib/wpa81/_._",
  6981. "lib/xamarinios10/_._",
  6982. "lib/xamarinmac20/_._",
  6983. "lib/xamarintvos10/_._",
  6984. "lib/xamarinwatchos10/_._",
  6985. "ref/MonoAndroid10/_._",
  6986. "ref/MonoTouch10/_._",
  6987. "ref/net45/_._",
  6988. "ref/netcore50/System.Diagnostics.Tools.dll",
  6989. "ref/netcore50/System.Diagnostics.Tools.xml",
  6990. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6991. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6992. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6993. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6994. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6995. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6996. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6997. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6998. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6999. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  7000. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  7001. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  7002. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  7003. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  7004. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  7005. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  7006. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  7007. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  7008. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  7009. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  7010. "ref/portable-net45+win8+wp8+wpa81/_._",
  7011. "ref/win8/_._",
  7012. "ref/wp80/_._",
  7013. "ref/wpa81/_._",
  7014. "ref/xamarinios10/_._",
  7015. "ref/xamarinmac20/_._",
  7016. "ref/xamarintvos10/_._",
  7017. "ref/xamarinwatchos10/_._",
  7018. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  7019. "system.diagnostics.tools.nuspec"
  7020. ]
  7021. },
  7022. "System.Dynamic.Runtime/4.3.0": {
  7023. "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  7024. "type": "package",
  7025. "path": "system.dynamic.runtime/4.3.0",
  7026. "files": [
  7027. ".nupkg.metadata",
  7028. ".signature.p7s",
  7029. "ThirdPartyNotices.txt",
  7030. "dotnet_library_license.txt",
  7031. "lib/MonoAndroid10/_._",
  7032. "lib/MonoTouch10/_._",
  7033. "lib/net45/_._",
  7034. "lib/netcore50/System.Dynamic.Runtime.dll",
  7035. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  7036. "lib/portable-net45+win8+wp8+wpa81/_._",
  7037. "lib/win8/_._",
  7038. "lib/wp80/_._",
  7039. "lib/wpa81/_._",
  7040. "lib/xamarinios10/_._",
  7041. "lib/xamarinmac20/_._",
  7042. "lib/xamarintvos10/_._",
  7043. "lib/xamarinwatchos10/_._",
  7044. "ref/MonoAndroid10/_._",
  7045. "ref/MonoTouch10/_._",
  7046. "ref/net45/_._",
  7047. "ref/netcore50/System.Dynamic.Runtime.dll",
  7048. "ref/netcore50/System.Dynamic.Runtime.xml",
  7049. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  7050. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  7051. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  7052. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  7053. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  7054. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  7055. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  7056. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  7057. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  7058. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  7059. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  7060. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  7061. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  7062. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  7063. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  7064. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  7065. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  7066. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  7067. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  7068. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  7069. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  7070. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  7071. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  7072. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  7073. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  7074. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  7075. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  7076. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  7077. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  7078. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  7079. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  7080. "ref/portable-net45+win8+wp8+wpa81/_._",
  7081. "ref/win8/_._",
  7082. "ref/wp80/_._",
  7083. "ref/wpa81/_._",
  7084. "ref/xamarinios10/_._",
  7085. "ref/xamarinmac20/_._",
  7086. "ref/xamarintvos10/_._",
  7087. "ref/xamarinwatchos10/_._",
  7088. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  7089. "system.dynamic.runtime.4.3.0.nupkg.sha512",
  7090. "system.dynamic.runtime.nuspec"
  7091. ]
  7092. },
  7093. "System.Globalization/4.3.0": {
  7094. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  7095. "type": "package",
  7096. "path": "system.globalization/4.3.0",
  7097. "files": [
  7098. ".nupkg.metadata",
  7099. ".signature.p7s",
  7100. "ThirdPartyNotices.txt",
  7101. "dotnet_library_license.txt",
  7102. "lib/MonoAndroid10/_._",
  7103. "lib/MonoTouch10/_._",
  7104. "lib/net45/_._",
  7105. "lib/portable-net45+win8+wp8+wpa81/_._",
  7106. "lib/win8/_._",
  7107. "lib/wp80/_._",
  7108. "lib/wpa81/_._",
  7109. "lib/xamarinios10/_._",
  7110. "lib/xamarinmac20/_._",
  7111. "lib/xamarintvos10/_._",
  7112. "lib/xamarinwatchos10/_._",
  7113. "ref/MonoAndroid10/_._",
  7114. "ref/MonoTouch10/_._",
  7115. "ref/net45/_._",
  7116. "ref/netcore50/System.Globalization.dll",
  7117. "ref/netcore50/System.Globalization.xml",
  7118. "ref/netcore50/de/System.Globalization.xml",
  7119. "ref/netcore50/es/System.Globalization.xml",
  7120. "ref/netcore50/fr/System.Globalization.xml",
  7121. "ref/netcore50/it/System.Globalization.xml",
  7122. "ref/netcore50/ja/System.Globalization.xml",
  7123. "ref/netcore50/ko/System.Globalization.xml",
  7124. "ref/netcore50/ru/System.Globalization.xml",
  7125. "ref/netcore50/zh-hans/System.Globalization.xml",
  7126. "ref/netcore50/zh-hant/System.Globalization.xml",
  7127. "ref/netstandard1.0/System.Globalization.dll",
  7128. "ref/netstandard1.0/System.Globalization.xml",
  7129. "ref/netstandard1.0/de/System.Globalization.xml",
  7130. "ref/netstandard1.0/es/System.Globalization.xml",
  7131. "ref/netstandard1.0/fr/System.Globalization.xml",
  7132. "ref/netstandard1.0/it/System.Globalization.xml",
  7133. "ref/netstandard1.0/ja/System.Globalization.xml",
  7134. "ref/netstandard1.0/ko/System.Globalization.xml",
  7135. "ref/netstandard1.0/ru/System.Globalization.xml",
  7136. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  7137. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  7138. "ref/netstandard1.3/System.Globalization.dll",
  7139. "ref/netstandard1.3/System.Globalization.xml",
  7140. "ref/netstandard1.3/de/System.Globalization.xml",
  7141. "ref/netstandard1.3/es/System.Globalization.xml",
  7142. "ref/netstandard1.3/fr/System.Globalization.xml",
  7143. "ref/netstandard1.3/it/System.Globalization.xml",
  7144. "ref/netstandard1.3/ja/System.Globalization.xml",
  7145. "ref/netstandard1.3/ko/System.Globalization.xml",
  7146. "ref/netstandard1.3/ru/System.Globalization.xml",
  7147. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  7148. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  7149. "ref/portable-net45+win8+wp8+wpa81/_._",
  7150. "ref/win8/_._",
  7151. "ref/wp80/_._",
  7152. "ref/wpa81/_._",
  7153. "ref/xamarinios10/_._",
  7154. "ref/xamarinmac20/_._",
  7155. "ref/xamarintvos10/_._",
  7156. "ref/xamarinwatchos10/_._",
  7157. "system.globalization.4.3.0.nupkg.sha512",
  7158. "system.globalization.nuspec"
  7159. ]
  7160. },
  7161. "System.IO/4.3.0": {
  7162. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  7163. "type": "package",
  7164. "path": "system.io/4.3.0",
  7165. "files": [
  7166. ".nupkg.metadata",
  7167. ".signature.p7s",
  7168. "ThirdPartyNotices.txt",
  7169. "dotnet_library_license.txt",
  7170. "lib/MonoAndroid10/_._",
  7171. "lib/MonoTouch10/_._",
  7172. "lib/net45/_._",
  7173. "lib/net462/System.IO.dll",
  7174. "lib/portable-net45+win8+wp8+wpa81/_._",
  7175. "lib/win8/_._",
  7176. "lib/wp80/_._",
  7177. "lib/wpa81/_._",
  7178. "lib/xamarinios10/_._",
  7179. "lib/xamarinmac20/_._",
  7180. "lib/xamarintvos10/_._",
  7181. "lib/xamarinwatchos10/_._",
  7182. "ref/MonoAndroid10/_._",
  7183. "ref/MonoTouch10/_._",
  7184. "ref/net45/_._",
  7185. "ref/net462/System.IO.dll",
  7186. "ref/netcore50/System.IO.dll",
  7187. "ref/netcore50/System.IO.xml",
  7188. "ref/netcore50/de/System.IO.xml",
  7189. "ref/netcore50/es/System.IO.xml",
  7190. "ref/netcore50/fr/System.IO.xml",
  7191. "ref/netcore50/it/System.IO.xml",
  7192. "ref/netcore50/ja/System.IO.xml",
  7193. "ref/netcore50/ko/System.IO.xml",
  7194. "ref/netcore50/ru/System.IO.xml",
  7195. "ref/netcore50/zh-hans/System.IO.xml",
  7196. "ref/netcore50/zh-hant/System.IO.xml",
  7197. "ref/netstandard1.0/System.IO.dll",
  7198. "ref/netstandard1.0/System.IO.xml",
  7199. "ref/netstandard1.0/de/System.IO.xml",
  7200. "ref/netstandard1.0/es/System.IO.xml",
  7201. "ref/netstandard1.0/fr/System.IO.xml",
  7202. "ref/netstandard1.0/it/System.IO.xml",
  7203. "ref/netstandard1.0/ja/System.IO.xml",
  7204. "ref/netstandard1.0/ko/System.IO.xml",
  7205. "ref/netstandard1.0/ru/System.IO.xml",
  7206. "ref/netstandard1.0/zh-hans/System.IO.xml",
  7207. "ref/netstandard1.0/zh-hant/System.IO.xml",
  7208. "ref/netstandard1.3/System.IO.dll",
  7209. "ref/netstandard1.3/System.IO.xml",
  7210. "ref/netstandard1.3/de/System.IO.xml",
  7211. "ref/netstandard1.3/es/System.IO.xml",
  7212. "ref/netstandard1.3/fr/System.IO.xml",
  7213. "ref/netstandard1.3/it/System.IO.xml",
  7214. "ref/netstandard1.3/ja/System.IO.xml",
  7215. "ref/netstandard1.3/ko/System.IO.xml",
  7216. "ref/netstandard1.3/ru/System.IO.xml",
  7217. "ref/netstandard1.3/zh-hans/System.IO.xml",
  7218. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7219. "ref/netstandard1.5/System.IO.dll",
  7220. "ref/netstandard1.5/System.IO.xml",
  7221. "ref/netstandard1.5/de/System.IO.xml",
  7222. "ref/netstandard1.5/es/System.IO.xml",
  7223. "ref/netstandard1.5/fr/System.IO.xml",
  7224. "ref/netstandard1.5/it/System.IO.xml",
  7225. "ref/netstandard1.5/ja/System.IO.xml",
  7226. "ref/netstandard1.5/ko/System.IO.xml",
  7227. "ref/netstandard1.5/ru/System.IO.xml",
  7228. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7229. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7230. "ref/portable-net45+win8+wp8+wpa81/_._",
  7231. "ref/win8/_._",
  7232. "ref/wp80/_._",
  7233. "ref/wpa81/_._",
  7234. "ref/xamarinios10/_._",
  7235. "ref/xamarinmac20/_._",
  7236. "ref/xamarintvos10/_._",
  7237. "ref/xamarinwatchos10/_._",
  7238. "system.io.4.3.0.nupkg.sha512",
  7239. "system.io.nuspec"
  7240. ]
  7241. },
  7242. "System.IO.Compression/4.3.0": {
  7243. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  7244. "type": "package",
  7245. "path": "system.io.compression/4.3.0",
  7246. "files": [
  7247. ".nupkg.metadata",
  7248. ".signature.p7s",
  7249. "ThirdPartyNotices.txt",
  7250. "dotnet_library_license.txt",
  7251. "lib/MonoAndroid10/_._",
  7252. "lib/MonoTouch10/_._",
  7253. "lib/net45/_._",
  7254. "lib/net46/System.IO.Compression.dll",
  7255. "lib/portable-net45+win8+wpa81/_._",
  7256. "lib/win8/_._",
  7257. "lib/wpa81/_._",
  7258. "lib/xamarinios10/_._",
  7259. "lib/xamarinmac20/_._",
  7260. "lib/xamarintvos10/_._",
  7261. "lib/xamarinwatchos10/_._",
  7262. "ref/MonoAndroid10/_._",
  7263. "ref/MonoTouch10/_._",
  7264. "ref/net45/_._",
  7265. "ref/net46/System.IO.Compression.dll",
  7266. "ref/netcore50/System.IO.Compression.dll",
  7267. "ref/netcore50/System.IO.Compression.xml",
  7268. "ref/netcore50/de/System.IO.Compression.xml",
  7269. "ref/netcore50/es/System.IO.Compression.xml",
  7270. "ref/netcore50/fr/System.IO.Compression.xml",
  7271. "ref/netcore50/it/System.IO.Compression.xml",
  7272. "ref/netcore50/ja/System.IO.Compression.xml",
  7273. "ref/netcore50/ko/System.IO.Compression.xml",
  7274. "ref/netcore50/ru/System.IO.Compression.xml",
  7275. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  7276. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  7277. "ref/netstandard1.1/System.IO.Compression.dll",
  7278. "ref/netstandard1.1/System.IO.Compression.xml",
  7279. "ref/netstandard1.1/de/System.IO.Compression.xml",
  7280. "ref/netstandard1.1/es/System.IO.Compression.xml",
  7281. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  7282. "ref/netstandard1.1/it/System.IO.Compression.xml",
  7283. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  7284. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  7285. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  7286. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  7287. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  7288. "ref/netstandard1.3/System.IO.Compression.dll",
  7289. "ref/netstandard1.3/System.IO.Compression.xml",
  7290. "ref/netstandard1.3/de/System.IO.Compression.xml",
  7291. "ref/netstandard1.3/es/System.IO.Compression.xml",
  7292. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  7293. "ref/netstandard1.3/it/System.IO.Compression.xml",
  7294. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  7295. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  7296. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  7297. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  7298. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  7299. "ref/portable-net45+win8+wpa81/_._",
  7300. "ref/win8/_._",
  7301. "ref/wpa81/_._",
  7302. "ref/xamarinios10/_._",
  7303. "ref/xamarinmac20/_._",
  7304. "ref/xamarintvos10/_._",
  7305. "ref/xamarinwatchos10/_._",
  7306. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  7307. "runtimes/win/lib/net46/System.IO.Compression.dll",
  7308. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  7309. "system.io.compression.4.3.0.nupkg.sha512",
  7310. "system.io.compression.nuspec"
  7311. ]
  7312. },
  7313. "System.IO.FileSystem/4.3.0": {
  7314. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  7315. "type": "package",
  7316. "path": "system.io.filesystem/4.3.0",
  7317. "files": [
  7318. ".nupkg.metadata",
  7319. ".signature.p7s",
  7320. "ThirdPartyNotices.txt",
  7321. "dotnet_library_license.txt",
  7322. "lib/MonoAndroid10/_._",
  7323. "lib/MonoTouch10/_._",
  7324. "lib/net46/System.IO.FileSystem.dll",
  7325. "lib/xamarinios10/_._",
  7326. "lib/xamarinmac20/_._",
  7327. "lib/xamarintvos10/_._",
  7328. "lib/xamarinwatchos10/_._",
  7329. "ref/MonoAndroid10/_._",
  7330. "ref/MonoTouch10/_._",
  7331. "ref/net46/System.IO.FileSystem.dll",
  7332. "ref/netstandard1.3/System.IO.FileSystem.dll",
  7333. "ref/netstandard1.3/System.IO.FileSystem.xml",
  7334. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  7335. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  7336. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  7337. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  7338. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  7339. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  7340. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  7341. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  7342. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  7343. "ref/xamarinios10/_._",
  7344. "ref/xamarinmac20/_._",
  7345. "ref/xamarintvos10/_._",
  7346. "ref/xamarinwatchos10/_._",
  7347. "system.io.filesystem.4.3.0.nupkg.sha512",
  7348. "system.io.filesystem.nuspec"
  7349. ]
  7350. },
  7351. "System.IO.FileSystem.Primitives/4.3.0": {
  7352. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  7353. "type": "package",
  7354. "path": "system.io.filesystem.primitives/4.3.0",
  7355. "files": [
  7356. ".nupkg.metadata",
  7357. ".signature.p7s",
  7358. "ThirdPartyNotices.txt",
  7359. "dotnet_library_license.txt",
  7360. "lib/MonoAndroid10/_._",
  7361. "lib/MonoTouch10/_._",
  7362. "lib/net46/System.IO.FileSystem.Primitives.dll",
  7363. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7364. "lib/xamarinios10/_._",
  7365. "lib/xamarinmac20/_._",
  7366. "lib/xamarintvos10/_._",
  7367. "lib/xamarinwatchos10/_._",
  7368. "ref/MonoAndroid10/_._",
  7369. "ref/MonoTouch10/_._",
  7370. "ref/net46/System.IO.FileSystem.Primitives.dll",
  7371. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7372. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  7373. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  7374. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  7375. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  7376. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  7377. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  7378. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  7379. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  7380. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  7381. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  7382. "ref/xamarinios10/_._",
  7383. "ref/xamarinmac20/_._",
  7384. "ref/xamarintvos10/_._",
  7385. "ref/xamarinwatchos10/_._",
  7386. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  7387. "system.io.filesystem.primitives.nuspec"
  7388. ]
  7389. },
  7390. "System.IO.Pipelines/4.5.3": {
  7391. "sha512": "k6Ac5MuJ/GbFo7l/bB0Bxg0JxHReDi19eW1wuDGIy/iSIAJob0cNHChvILde/v4fdX1ZNmL2Nr7axKG21wbNLw==",
  7392. "type": "package",
  7393. "path": "system.io.pipelines/4.5.3",
  7394. "files": [
  7395. ".nupkg.metadata",
  7396. ".signature.p7s",
  7397. "LICENSE.TXT",
  7398. "THIRD-PARTY-NOTICES.TXT",
  7399. "lib/netcoreapp2.1/System.IO.Pipelines.dll",
  7400. "lib/netcoreapp2.1/System.IO.Pipelines.xml",
  7401. "lib/netstandard1.3/System.IO.Pipelines.dll",
  7402. "lib/netstandard1.3/System.IO.Pipelines.xml",
  7403. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7404. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7405. "system.io.pipelines.4.5.3.nupkg.sha512",
  7406. "system.io.pipelines.nuspec",
  7407. "useSharedDesignerContext.txt",
  7408. "version.txt"
  7409. ]
  7410. },
  7411. "System.Linq/4.3.0": {
  7412. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7413. "type": "package",
  7414. "path": "system.linq/4.3.0",
  7415. "files": [
  7416. ".nupkg.metadata",
  7417. ".signature.p7s",
  7418. "ThirdPartyNotices.txt",
  7419. "dotnet_library_license.txt",
  7420. "lib/MonoAndroid10/_._",
  7421. "lib/MonoTouch10/_._",
  7422. "lib/net45/_._",
  7423. "lib/net463/System.Linq.dll",
  7424. "lib/netcore50/System.Linq.dll",
  7425. "lib/netstandard1.6/System.Linq.dll",
  7426. "lib/portable-net45+win8+wp8+wpa81/_._",
  7427. "lib/win8/_._",
  7428. "lib/wp80/_._",
  7429. "lib/wpa81/_._",
  7430. "lib/xamarinios10/_._",
  7431. "lib/xamarinmac20/_._",
  7432. "lib/xamarintvos10/_._",
  7433. "lib/xamarinwatchos10/_._",
  7434. "ref/MonoAndroid10/_._",
  7435. "ref/MonoTouch10/_._",
  7436. "ref/net45/_._",
  7437. "ref/net463/System.Linq.dll",
  7438. "ref/netcore50/System.Linq.dll",
  7439. "ref/netcore50/System.Linq.xml",
  7440. "ref/netcore50/de/System.Linq.xml",
  7441. "ref/netcore50/es/System.Linq.xml",
  7442. "ref/netcore50/fr/System.Linq.xml",
  7443. "ref/netcore50/it/System.Linq.xml",
  7444. "ref/netcore50/ja/System.Linq.xml",
  7445. "ref/netcore50/ko/System.Linq.xml",
  7446. "ref/netcore50/ru/System.Linq.xml",
  7447. "ref/netcore50/zh-hans/System.Linq.xml",
  7448. "ref/netcore50/zh-hant/System.Linq.xml",
  7449. "ref/netstandard1.0/System.Linq.dll",
  7450. "ref/netstandard1.0/System.Linq.xml",
  7451. "ref/netstandard1.0/de/System.Linq.xml",
  7452. "ref/netstandard1.0/es/System.Linq.xml",
  7453. "ref/netstandard1.0/fr/System.Linq.xml",
  7454. "ref/netstandard1.0/it/System.Linq.xml",
  7455. "ref/netstandard1.0/ja/System.Linq.xml",
  7456. "ref/netstandard1.0/ko/System.Linq.xml",
  7457. "ref/netstandard1.0/ru/System.Linq.xml",
  7458. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7459. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7460. "ref/netstandard1.6/System.Linq.dll",
  7461. "ref/netstandard1.6/System.Linq.xml",
  7462. "ref/netstandard1.6/de/System.Linq.xml",
  7463. "ref/netstandard1.6/es/System.Linq.xml",
  7464. "ref/netstandard1.6/fr/System.Linq.xml",
  7465. "ref/netstandard1.6/it/System.Linq.xml",
  7466. "ref/netstandard1.6/ja/System.Linq.xml",
  7467. "ref/netstandard1.6/ko/System.Linq.xml",
  7468. "ref/netstandard1.6/ru/System.Linq.xml",
  7469. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7470. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7471. "ref/portable-net45+win8+wp8+wpa81/_._",
  7472. "ref/win8/_._",
  7473. "ref/wp80/_._",
  7474. "ref/wpa81/_._",
  7475. "ref/xamarinios10/_._",
  7476. "ref/xamarinmac20/_._",
  7477. "ref/xamarintvos10/_._",
  7478. "ref/xamarinwatchos10/_._",
  7479. "system.linq.4.3.0.nupkg.sha512",
  7480. "system.linq.nuspec"
  7481. ]
  7482. },
  7483. "System.Linq.Expressions/4.3.0": {
  7484. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7485. "type": "package",
  7486. "path": "system.linq.expressions/4.3.0",
  7487. "files": [
  7488. ".nupkg.metadata",
  7489. ".signature.p7s",
  7490. "ThirdPartyNotices.txt",
  7491. "dotnet_library_license.txt",
  7492. "lib/MonoAndroid10/_._",
  7493. "lib/MonoTouch10/_._",
  7494. "lib/net45/_._",
  7495. "lib/net463/System.Linq.Expressions.dll",
  7496. "lib/netcore50/System.Linq.Expressions.dll",
  7497. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7498. "lib/portable-net45+win8+wp8+wpa81/_._",
  7499. "lib/win8/_._",
  7500. "lib/wp80/_._",
  7501. "lib/wpa81/_._",
  7502. "lib/xamarinios10/_._",
  7503. "lib/xamarinmac20/_._",
  7504. "lib/xamarintvos10/_._",
  7505. "lib/xamarinwatchos10/_._",
  7506. "ref/MonoAndroid10/_._",
  7507. "ref/MonoTouch10/_._",
  7508. "ref/net45/_._",
  7509. "ref/net463/System.Linq.Expressions.dll",
  7510. "ref/netcore50/System.Linq.Expressions.dll",
  7511. "ref/netcore50/System.Linq.Expressions.xml",
  7512. "ref/netcore50/de/System.Linq.Expressions.xml",
  7513. "ref/netcore50/es/System.Linq.Expressions.xml",
  7514. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7515. "ref/netcore50/it/System.Linq.Expressions.xml",
  7516. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7517. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7518. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7519. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7520. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7521. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7522. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7523. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7524. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7525. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7526. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7527. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7528. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7529. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7530. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7531. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7532. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7533. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7534. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7535. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7536. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7537. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7538. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7539. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7540. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7541. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7542. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7543. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7544. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7545. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7546. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7547. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7548. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7549. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7550. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7551. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7552. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7553. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7554. "ref/portable-net45+win8+wp8+wpa81/_._",
  7555. "ref/win8/_._",
  7556. "ref/wp80/_._",
  7557. "ref/wpa81/_._",
  7558. "ref/xamarinios10/_._",
  7559. "ref/xamarinmac20/_._",
  7560. "ref/xamarintvos10/_._",
  7561. "ref/xamarinwatchos10/_._",
  7562. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7563. "system.linq.expressions.4.3.0.nupkg.sha512",
  7564. "system.linq.expressions.nuspec"
  7565. ]
  7566. },
  7567. "System.Memory/4.5.2": {
  7568. "sha512": "fvq1GNmUFwbKv+aLVYYdgu/+gc8Nu9oFujOxIjPrsf+meis9JBzTPDL6aP/eeGOz9yPj6rRLUbOjKMpsMEWpNg==",
  7569. "type": "package",
  7570. "path": "system.memory/4.5.2",
  7571. "files": [
  7572. ".nupkg.metadata",
  7573. ".signature.p7s",
  7574. "LICENSE.TXT",
  7575. "THIRD-PARTY-NOTICES.TXT",
  7576. "lib/netcoreapp2.1/_._",
  7577. "lib/netstandard1.1/System.Memory.dll",
  7578. "lib/netstandard1.1/System.Memory.xml",
  7579. "lib/netstandard2.0/System.Memory.dll",
  7580. "lib/netstandard2.0/System.Memory.xml",
  7581. "ref/netcoreapp2.1/_._",
  7582. "system.memory.4.5.2.nupkg.sha512",
  7583. "system.memory.nuspec",
  7584. "useSharedDesignerContext.txt",
  7585. "version.txt"
  7586. ]
  7587. },
  7588. "System.Numerics.Vectors/4.5.0": {
  7589. "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  7590. "type": "package",
  7591. "path": "system.numerics.vectors/4.5.0",
  7592. "files": [
  7593. ".nupkg.metadata",
  7594. ".signature.p7s",
  7595. "LICENSE.TXT",
  7596. "THIRD-PARTY-NOTICES.TXT",
  7597. "lib/MonoAndroid10/_._",
  7598. "lib/MonoTouch10/_._",
  7599. "lib/net46/System.Numerics.Vectors.dll",
  7600. "lib/net46/System.Numerics.Vectors.xml",
  7601. "lib/netcoreapp2.0/_._",
  7602. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  7603. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  7604. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  7605. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  7606. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  7607. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  7608. "lib/uap10.0.16299/_._",
  7609. "lib/xamarinios10/_._",
  7610. "lib/xamarinmac20/_._",
  7611. "lib/xamarintvos10/_._",
  7612. "lib/xamarinwatchos10/_._",
  7613. "ref/MonoAndroid10/_._",
  7614. "ref/MonoTouch10/_._",
  7615. "ref/net45/System.Numerics.Vectors.dll",
  7616. "ref/net45/System.Numerics.Vectors.xml",
  7617. "ref/net46/System.Numerics.Vectors.dll",
  7618. "ref/net46/System.Numerics.Vectors.xml",
  7619. "ref/netcoreapp2.0/_._",
  7620. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  7621. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  7622. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  7623. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  7624. "ref/uap10.0.16299/_._",
  7625. "ref/xamarinios10/_._",
  7626. "ref/xamarinmac20/_._",
  7627. "ref/xamarintvos10/_._",
  7628. "ref/xamarinwatchos10/_._",
  7629. "system.numerics.vectors.4.5.0.nupkg.sha512",
  7630. "system.numerics.vectors.nuspec",
  7631. "useSharedDesignerContext.txt",
  7632. "version.txt"
  7633. ]
  7634. },
  7635. "System.Reflection/4.3.0": {
  7636. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7637. "type": "package",
  7638. "path": "system.reflection/4.3.0",
  7639. "files": [
  7640. ".nupkg.metadata",
  7641. ".signature.p7s",
  7642. "ThirdPartyNotices.txt",
  7643. "dotnet_library_license.txt",
  7644. "lib/MonoAndroid10/_._",
  7645. "lib/MonoTouch10/_._",
  7646. "lib/net45/_._",
  7647. "lib/net462/System.Reflection.dll",
  7648. "lib/portable-net45+win8+wp8+wpa81/_._",
  7649. "lib/win8/_._",
  7650. "lib/wp80/_._",
  7651. "lib/wpa81/_._",
  7652. "lib/xamarinios10/_._",
  7653. "lib/xamarinmac20/_._",
  7654. "lib/xamarintvos10/_._",
  7655. "lib/xamarinwatchos10/_._",
  7656. "ref/MonoAndroid10/_._",
  7657. "ref/MonoTouch10/_._",
  7658. "ref/net45/_._",
  7659. "ref/net462/System.Reflection.dll",
  7660. "ref/netcore50/System.Reflection.dll",
  7661. "ref/netcore50/System.Reflection.xml",
  7662. "ref/netcore50/de/System.Reflection.xml",
  7663. "ref/netcore50/es/System.Reflection.xml",
  7664. "ref/netcore50/fr/System.Reflection.xml",
  7665. "ref/netcore50/it/System.Reflection.xml",
  7666. "ref/netcore50/ja/System.Reflection.xml",
  7667. "ref/netcore50/ko/System.Reflection.xml",
  7668. "ref/netcore50/ru/System.Reflection.xml",
  7669. "ref/netcore50/zh-hans/System.Reflection.xml",
  7670. "ref/netcore50/zh-hant/System.Reflection.xml",
  7671. "ref/netstandard1.0/System.Reflection.dll",
  7672. "ref/netstandard1.0/System.Reflection.xml",
  7673. "ref/netstandard1.0/de/System.Reflection.xml",
  7674. "ref/netstandard1.0/es/System.Reflection.xml",
  7675. "ref/netstandard1.0/fr/System.Reflection.xml",
  7676. "ref/netstandard1.0/it/System.Reflection.xml",
  7677. "ref/netstandard1.0/ja/System.Reflection.xml",
  7678. "ref/netstandard1.0/ko/System.Reflection.xml",
  7679. "ref/netstandard1.0/ru/System.Reflection.xml",
  7680. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7681. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7682. "ref/netstandard1.3/System.Reflection.dll",
  7683. "ref/netstandard1.3/System.Reflection.xml",
  7684. "ref/netstandard1.3/de/System.Reflection.xml",
  7685. "ref/netstandard1.3/es/System.Reflection.xml",
  7686. "ref/netstandard1.3/fr/System.Reflection.xml",
  7687. "ref/netstandard1.3/it/System.Reflection.xml",
  7688. "ref/netstandard1.3/ja/System.Reflection.xml",
  7689. "ref/netstandard1.3/ko/System.Reflection.xml",
  7690. "ref/netstandard1.3/ru/System.Reflection.xml",
  7691. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7692. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7693. "ref/netstandard1.5/System.Reflection.dll",
  7694. "ref/netstandard1.5/System.Reflection.xml",
  7695. "ref/netstandard1.5/de/System.Reflection.xml",
  7696. "ref/netstandard1.5/es/System.Reflection.xml",
  7697. "ref/netstandard1.5/fr/System.Reflection.xml",
  7698. "ref/netstandard1.5/it/System.Reflection.xml",
  7699. "ref/netstandard1.5/ja/System.Reflection.xml",
  7700. "ref/netstandard1.5/ko/System.Reflection.xml",
  7701. "ref/netstandard1.5/ru/System.Reflection.xml",
  7702. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7703. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7704. "ref/portable-net45+win8+wp8+wpa81/_._",
  7705. "ref/win8/_._",
  7706. "ref/wp80/_._",
  7707. "ref/wpa81/_._",
  7708. "ref/xamarinios10/_._",
  7709. "ref/xamarinmac20/_._",
  7710. "ref/xamarintvos10/_._",
  7711. "ref/xamarinwatchos10/_._",
  7712. "system.reflection.4.3.0.nupkg.sha512",
  7713. "system.reflection.nuspec"
  7714. ]
  7715. },
  7716. "System.Reflection.Metadata/1.6.0": {
  7717. "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  7718. "type": "package",
  7719. "path": "system.reflection.metadata/1.6.0",
  7720. "files": [
  7721. ".nupkg.metadata",
  7722. ".signature.p7s",
  7723. "LICENSE.TXT",
  7724. "THIRD-PARTY-NOTICES.TXT",
  7725. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  7726. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  7727. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  7728. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  7729. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  7730. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  7731. "system.reflection.metadata.1.6.0.nupkg.sha512",
  7732. "system.reflection.metadata.nuspec",
  7733. "useSharedDesignerContext.txt",
  7734. "version.txt"
  7735. ]
  7736. },
  7737. "System.Resources.ResourceManager/4.3.0": {
  7738. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7739. "type": "package",
  7740. "path": "system.resources.resourcemanager/4.3.0",
  7741. "files": [
  7742. ".nupkg.metadata",
  7743. ".signature.p7s",
  7744. "ThirdPartyNotices.txt",
  7745. "dotnet_library_license.txt",
  7746. "lib/MonoAndroid10/_._",
  7747. "lib/MonoTouch10/_._",
  7748. "lib/net45/_._",
  7749. "lib/portable-net45+win8+wp8+wpa81/_._",
  7750. "lib/win8/_._",
  7751. "lib/wp80/_._",
  7752. "lib/wpa81/_._",
  7753. "lib/xamarinios10/_._",
  7754. "lib/xamarinmac20/_._",
  7755. "lib/xamarintvos10/_._",
  7756. "lib/xamarinwatchos10/_._",
  7757. "ref/MonoAndroid10/_._",
  7758. "ref/MonoTouch10/_._",
  7759. "ref/net45/_._",
  7760. "ref/netcore50/System.Resources.ResourceManager.dll",
  7761. "ref/netcore50/System.Resources.ResourceManager.xml",
  7762. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7763. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7764. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7765. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7766. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7767. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7768. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7769. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7770. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7771. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7772. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7773. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7774. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7775. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7776. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7777. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7778. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7779. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7780. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7781. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7782. "ref/portable-net45+win8+wp8+wpa81/_._",
  7783. "ref/win8/_._",
  7784. "ref/wp80/_._",
  7785. "ref/wpa81/_._",
  7786. "ref/xamarinios10/_._",
  7787. "ref/xamarinmac20/_._",
  7788. "ref/xamarintvos10/_._",
  7789. "ref/xamarinwatchos10/_._",
  7790. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7791. "system.resources.resourcemanager.nuspec"
  7792. ]
  7793. },
  7794. "System.Runtime/4.3.0": {
  7795. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7796. "type": "package",
  7797. "path": "system.runtime/4.3.0",
  7798. "files": [
  7799. ".nupkg.metadata",
  7800. ".signature.p7s",
  7801. "ThirdPartyNotices.txt",
  7802. "dotnet_library_license.txt",
  7803. "lib/MonoAndroid10/_._",
  7804. "lib/MonoTouch10/_._",
  7805. "lib/net45/_._",
  7806. "lib/net462/System.Runtime.dll",
  7807. "lib/portable-net45+win8+wp80+wpa81/_._",
  7808. "lib/win8/_._",
  7809. "lib/wp80/_._",
  7810. "lib/wpa81/_._",
  7811. "lib/xamarinios10/_._",
  7812. "lib/xamarinmac20/_._",
  7813. "lib/xamarintvos10/_._",
  7814. "lib/xamarinwatchos10/_._",
  7815. "ref/MonoAndroid10/_._",
  7816. "ref/MonoTouch10/_._",
  7817. "ref/net45/_._",
  7818. "ref/net462/System.Runtime.dll",
  7819. "ref/netcore50/System.Runtime.dll",
  7820. "ref/netcore50/System.Runtime.xml",
  7821. "ref/netcore50/de/System.Runtime.xml",
  7822. "ref/netcore50/es/System.Runtime.xml",
  7823. "ref/netcore50/fr/System.Runtime.xml",
  7824. "ref/netcore50/it/System.Runtime.xml",
  7825. "ref/netcore50/ja/System.Runtime.xml",
  7826. "ref/netcore50/ko/System.Runtime.xml",
  7827. "ref/netcore50/ru/System.Runtime.xml",
  7828. "ref/netcore50/zh-hans/System.Runtime.xml",
  7829. "ref/netcore50/zh-hant/System.Runtime.xml",
  7830. "ref/netstandard1.0/System.Runtime.dll",
  7831. "ref/netstandard1.0/System.Runtime.xml",
  7832. "ref/netstandard1.0/de/System.Runtime.xml",
  7833. "ref/netstandard1.0/es/System.Runtime.xml",
  7834. "ref/netstandard1.0/fr/System.Runtime.xml",
  7835. "ref/netstandard1.0/it/System.Runtime.xml",
  7836. "ref/netstandard1.0/ja/System.Runtime.xml",
  7837. "ref/netstandard1.0/ko/System.Runtime.xml",
  7838. "ref/netstandard1.0/ru/System.Runtime.xml",
  7839. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7840. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7841. "ref/netstandard1.2/System.Runtime.dll",
  7842. "ref/netstandard1.2/System.Runtime.xml",
  7843. "ref/netstandard1.2/de/System.Runtime.xml",
  7844. "ref/netstandard1.2/es/System.Runtime.xml",
  7845. "ref/netstandard1.2/fr/System.Runtime.xml",
  7846. "ref/netstandard1.2/it/System.Runtime.xml",
  7847. "ref/netstandard1.2/ja/System.Runtime.xml",
  7848. "ref/netstandard1.2/ko/System.Runtime.xml",
  7849. "ref/netstandard1.2/ru/System.Runtime.xml",
  7850. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7851. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7852. "ref/netstandard1.3/System.Runtime.dll",
  7853. "ref/netstandard1.3/System.Runtime.xml",
  7854. "ref/netstandard1.3/de/System.Runtime.xml",
  7855. "ref/netstandard1.3/es/System.Runtime.xml",
  7856. "ref/netstandard1.3/fr/System.Runtime.xml",
  7857. "ref/netstandard1.3/it/System.Runtime.xml",
  7858. "ref/netstandard1.3/ja/System.Runtime.xml",
  7859. "ref/netstandard1.3/ko/System.Runtime.xml",
  7860. "ref/netstandard1.3/ru/System.Runtime.xml",
  7861. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7862. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7863. "ref/netstandard1.5/System.Runtime.dll",
  7864. "ref/netstandard1.5/System.Runtime.xml",
  7865. "ref/netstandard1.5/de/System.Runtime.xml",
  7866. "ref/netstandard1.5/es/System.Runtime.xml",
  7867. "ref/netstandard1.5/fr/System.Runtime.xml",
  7868. "ref/netstandard1.5/it/System.Runtime.xml",
  7869. "ref/netstandard1.5/ja/System.Runtime.xml",
  7870. "ref/netstandard1.5/ko/System.Runtime.xml",
  7871. "ref/netstandard1.5/ru/System.Runtime.xml",
  7872. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7873. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7874. "ref/portable-net45+win8+wp80+wpa81/_._",
  7875. "ref/win8/_._",
  7876. "ref/wp80/_._",
  7877. "ref/wpa81/_._",
  7878. "ref/xamarinios10/_._",
  7879. "ref/xamarinmac20/_._",
  7880. "ref/xamarintvos10/_._",
  7881. "ref/xamarinwatchos10/_._",
  7882. "system.runtime.4.3.0.nupkg.sha512",
  7883. "system.runtime.nuspec"
  7884. ]
  7885. },
  7886. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  7887. "sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==",
  7888. "type": "package",
  7889. "path": "system.runtime.compilerservices.unsafe/4.5.2",
  7890. "files": [
  7891. ".nupkg.metadata",
  7892. ".signature.p7s",
  7893. "LICENSE.TXT",
  7894. "THIRD-PARTY-NOTICES.TXT",
  7895. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7896. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7897. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7898. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7899. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7900. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7901. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  7902. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  7903. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  7904. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  7905. "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512",
  7906. "system.runtime.compilerservices.unsafe.nuspec",
  7907. "useSharedDesignerContext.txt",
  7908. "version.txt"
  7909. ]
  7910. },
  7911. "System.Runtime.Extensions/4.3.0": {
  7912. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  7913. "type": "package",
  7914. "path": "system.runtime.extensions/4.3.0",
  7915. "files": [
  7916. ".nupkg.metadata",
  7917. ".signature.p7s",
  7918. "ThirdPartyNotices.txt",
  7919. "dotnet_library_license.txt",
  7920. "lib/MonoAndroid10/_._",
  7921. "lib/MonoTouch10/_._",
  7922. "lib/net45/_._",
  7923. "lib/net462/System.Runtime.Extensions.dll",
  7924. "lib/portable-net45+win8+wp8+wpa81/_._",
  7925. "lib/win8/_._",
  7926. "lib/wp80/_._",
  7927. "lib/wpa81/_._",
  7928. "lib/xamarinios10/_._",
  7929. "lib/xamarinmac20/_._",
  7930. "lib/xamarintvos10/_._",
  7931. "lib/xamarinwatchos10/_._",
  7932. "ref/MonoAndroid10/_._",
  7933. "ref/MonoTouch10/_._",
  7934. "ref/net45/_._",
  7935. "ref/net462/System.Runtime.Extensions.dll",
  7936. "ref/netcore50/System.Runtime.Extensions.dll",
  7937. "ref/netcore50/System.Runtime.Extensions.xml",
  7938. "ref/netcore50/de/System.Runtime.Extensions.xml",
  7939. "ref/netcore50/es/System.Runtime.Extensions.xml",
  7940. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  7941. "ref/netcore50/it/System.Runtime.Extensions.xml",
  7942. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  7943. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  7944. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  7945. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  7946. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  7947. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  7948. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  7949. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  7950. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  7951. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  7952. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  7953. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  7954. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  7955. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  7956. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  7957. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  7958. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  7959. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  7960. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  7961. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  7962. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  7963. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  7964. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  7965. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  7966. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  7967. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  7968. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  7969. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  7970. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  7971. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  7972. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  7973. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  7974. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  7975. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  7976. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  7977. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  7978. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  7979. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  7980. "ref/portable-net45+win8+wp8+wpa81/_._",
  7981. "ref/win8/_._",
  7982. "ref/wp80/_._",
  7983. "ref/wpa81/_._",
  7984. "ref/xamarinios10/_._",
  7985. "ref/xamarinmac20/_._",
  7986. "ref/xamarintvos10/_._",
  7987. "ref/xamarinwatchos10/_._",
  7988. "system.runtime.extensions.4.3.0.nupkg.sha512",
  7989. "system.runtime.extensions.nuspec"
  7990. ]
  7991. },
  7992. "System.Runtime.InteropServices/4.3.0": {
  7993. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  7994. "type": "package",
  7995. "path": "system.runtime.interopservices/4.3.0",
  7996. "files": [
  7997. ".nupkg.metadata",
  7998. ".signature.p7s",
  7999. "ThirdPartyNotices.txt",
  8000. "dotnet_library_license.txt",
  8001. "lib/MonoAndroid10/_._",
  8002. "lib/MonoTouch10/_._",
  8003. "lib/net45/_._",
  8004. "lib/net462/System.Runtime.InteropServices.dll",
  8005. "lib/net463/System.Runtime.InteropServices.dll",
  8006. "lib/portable-net45+win8+wpa81/_._",
  8007. "lib/win8/_._",
  8008. "lib/wpa81/_._",
  8009. "lib/xamarinios10/_._",
  8010. "lib/xamarinmac20/_._",
  8011. "lib/xamarintvos10/_._",
  8012. "lib/xamarinwatchos10/_._",
  8013. "ref/MonoAndroid10/_._",
  8014. "ref/MonoTouch10/_._",
  8015. "ref/net45/_._",
  8016. "ref/net462/System.Runtime.InteropServices.dll",
  8017. "ref/net463/System.Runtime.InteropServices.dll",
  8018. "ref/netcore50/System.Runtime.InteropServices.dll",
  8019. "ref/netcore50/System.Runtime.InteropServices.xml",
  8020. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8021. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8022. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8023. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8024. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8025. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8026. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8027. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8028. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8029. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8030. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8031. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8032. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8033. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8034. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8035. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8036. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8037. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8038. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8039. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8040. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8041. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8042. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8043. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8044. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8045. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8046. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8047. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8048. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8049. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8050. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8051. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8052. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8053. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8054. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8055. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8056. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8057. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8058. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8059. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8060. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8061. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8062. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8063. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8064. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8065. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8066. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8067. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8068. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8069. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8070. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8071. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8072. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8073. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8074. "ref/portable-net45+win8+wpa81/_._",
  8075. "ref/win8/_._",
  8076. "ref/wpa81/_._",
  8077. "ref/xamarinios10/_._",
  8078. "ref/xamarinmac20/_._",
  8079. "ref/xamarintvos10/_._",
  8080. "ref/xamarinwatchos10/_._",
  8081. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8082. "system.runtime.interopservices.nuspec"
  8083. ]
  8084. },
  8085. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8086. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8087. "type": "package",
  8088. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8089. "files": [
  8090. ".nupkg.metadata",
  8091. ".signature.p7s",
  8092. "ThirdPartyNotices.txt",
  8093. "dotnet_library_license.txt",
  8094. "lib/MonoAndroid10/_._",
  8095. "lib/MonoTouch10/_._",
  8096. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8097. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8098. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8099. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8100. "lib/xamarinios10/_._",
  8101. "lib/xamarinmac20/_._",
  8102. "lib/xamarintvos10/_._",
  8103. "lib/xamarinwatchos10/_._",
  8104. "ref/MonoAndroid10/_._",
  8105. "ref/MonoTouch10/_._",
  8106. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8107. "ref/xamarinios10/_._",
  8108. "ref/xamarinmac20/_._",
  8109. "ref/xamarintvos10/_._",
  8110. "ref/xamarinwatchos10/_._",
  8111. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8112. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8113. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8114. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8115. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8116. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  8117. "system.runtime.interopservices.runtimeinformation.nuspec"
  8118. ]
  8119. },
  8120. "System.Runtime.Numerics/4.3.0": {
  8121. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8122. "type": "package",
  8123. "path": "system.runtime.numerics/4.3.0",
  8124. "files": [
  8125. ".nupkg.metadata",
  8126. ".signature.p7s",
  8127. "ThirdPartyNotices.txt",
  8128. "dotnet_library_license.txt",
  8129. "lib/MonoAndroid10/_._",
  8130. "lib/MonoTouch10/_._",
  8131. "lib/net45/_._",
  8132. "lib/netcore50/System.Runtime.Numerics.dll",
  8133. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8134. "lib/portable-net45+win8+wpa81/_._",
  8135. "lib/win8/_._",
  8136. "lib/wpa81/_._",
  8137. "lib/xamarinios10/_._",
  8138. "lib/xamarinmac20/_._",
  8139. "lib/xamarintvos10/_._",
  8140. "lib/xamarinwatchos10/_._",
  8141. "ref/MonoAndroid10/_._",
  8142. "ref/MonoTouch10/_._",
  8143. "ref/net45/_._",
  8144. "ref/netcore50/System.Runtime.Numerics.dll",
  8145. "ref/netcore50/System.Runtime.Numerics.xml",
  8146. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8147. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8148. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8149. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8150. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8151. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8152. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8153. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8154. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8155. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8156. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8157. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8158. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8159. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8160. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8161. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8162. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8163. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8164. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8165. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8166. "ref/portable-net45+win8+wpa81/_._",
  8167. "ref/win8/_._",
  8168. "ref/wpa81/_._",
  8169. "ref/xamarinios10/_._",
  8170. "ref/xamarinmac20/_._",
  8171. "ref/xamarintvos10/_._",
  8172. "ref/xamarinwatchos10/_._",
  8173. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8174. "system.runtime.numerics.nuspec"
  8175. ]
  8176. },
  8177. "System.Security.AccessControl/4.5.0": {
  8178. "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
  8179. "type": "package",
  8180. "path": "system.security.accesscontrol/4.5.0",
  8181. "files": [
  8182. ".nupkg.metadata",
  8183. ".signature.p7s",
  8184. "LICENSE.TXT",
  8185. "THIRD-PARTY-NOTICES.TXT",
  8186. "lib/net46/System.Security.AccessControl.dll",
  8187. "lib/net461/System.Security.AccessControl.dll",
  8188. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8189. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8190. "lib/uap10.0.16299/_._",
  8191. "ref/net46/System.Security.AccessControl.dll",
  8192. "ref/net461/System.Security.AccessControl.dll",
  8193. "ref/net461/System.Security.AccessControl.xml",
  8194. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8195. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8196. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8197. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8198. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8199. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8200. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8201. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8202. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8203. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8204. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8205. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8206. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8207. "ref/uap10.0.16299/_._",
  8208. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8209. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8210. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8211. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8212. "runtimes/win/lib/uap10.0.16299/_._",
  8213. "system.security.accesscontrol.4.5.0.nupkg.sha512",
  8214. "system.security.accesscontrol.nuspec",
  8215. "useSharedDesignerContext.txt",
  8216. "version.txt"
  8217. ]
  8218. },
  8219. "System.Security.Cryptography.Algorithms/4.3.0": {
  8220. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  8221. "type": "package",
  8222. "path": "system.security.cryptography.algorithms/4.3.0",
  8223. "files": [
  8224. ".nupkg.metadata",
  8225. ".signature.p7s",
  8226. "ThirdPartyNotices.txt",
  8227. "dotnet_library_license.txt",
  8228. "lib/MonoAndroid10/_._",
  8229. "lib/MonoTouch10/_._",
  8230. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8231. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8232. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8233. "lib/xamarinios10/_._",
  8234. "lib/xamarinmac20/_._",
  8235. "lib/xamarintvos10/_._",
  8236. "lib/xamarinwatchos10/_._",
  8237. "ref/MonoAndroid10/_._",
  8238. "ref/MonoTouch10/_._",
  8239. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8240. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8241. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8242. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8243. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8244. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8245. "ref/xamarinios10/_._",
  8246. "ref/xamarinmac20/_._",
  8247. "ref/xamarintvos10/_._",
  8248. "ref/xamarinwatchos10/_._",
  8249. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8250. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8251. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8252. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8253. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8254. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8255. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8256. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  8257. "system.security.cryptography.algorithms.nuspec"
  8258. ]
  8259. },
  8260. "System.Security.Cryptography.Cng/4.5.0": {
  8261. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  8262. "type": "package",
  8263. "path": "system.security.cryptography.cng/4.5.0",
  8264. "files": [
  8265. ".nupkg.metadata",
  8266. ".signature.p7s",
  8267. "LICENSE.TXT",
  8268. "THIRD-PARTY-NOTICES.TXT",
  8269. "lib/MonoAndroid10/_._",
  8270. "lib/MonoTouch10/_._",
  8271. "lib/net46/System.Security.Cryptography.Cng.dll",
  8272. "lib/net461/System.Security.Cryptography.Cng.dll",
  8273. "lib/net462/System.Security.Cryptography.Cng.dll",
  8274. "lib/net47/System.Security.Cryptography.Cng.dll",
  8275. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8276. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8277. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8278. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8279. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8280. "lib/uap10.0.16299/_._",
  8281. "lib/xamarinios10/_._",
  8282. "lib/xamarinmac20/_._",
  8283. "lib/xamarintvos10/_._",
  8284. "lib/xamarinwatchos10/_._",
  8285. "ref/MonoAndroid10/_._",
  8286. "ref/MonoTouch10/_._",
  8287. "ref/net46/System.Security.Cryptography.Cng.dll",
  8288. "ref/net461/System.Security.Cryptography.Cng.dll",
  8289. "ref/net461/System.Security.Cryptography.Cng.xml",
  8290. "ref/net462/System.Security.Cryptography.Cng.dll",
  8291. "ref/net462/System.Security.Cryptography.Cng.xml",
  8292. "ref/net47/System.Security.Cryptography.Cng.dll",
  8293. "ref/net47/System.Security.Cryptography.Cng.xml",
  8294. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8295. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8296. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8297. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8298. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8299. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8300. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8301. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8302. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8303. "ref/uap10.0.16299/_._",
  8304. "ref/xamarinios10/_._",
  8305. "ref/xamarinmac20/_._",
  8306. "ref/xamarintvos10/_._",
  8307. "ref/xamarinwatchos10/_._",
  8308. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8309. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8310. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8311. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8312. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8313. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8314. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8315. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8316. "runtimes/win/lib/uap10.0.16299/_._",
  8317. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  8318. "system.security.cryptography.cng.nuspec",
  8319. "useSharedDesignerContext.txt",
  8320. "version.txt"
  8321. ]
  8322. },
  8323. "System.Security.Cryptography.Encoding/4.3.0": {
  8324. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8325. "type": "package",
  8326. "path": "system.security.cryptography.encoding/4.3.0",
  8327. "files": [
  8328. ".nupkg.metadata",
  8329. ".signature.p7s",
  8330. "ThirdPartyNotices.txt",
  8331. "dotnet_library_license.txt",
  8332. "lib/MonoAndroid10/_._",
  8333. "lib/MonoTouch10/_._",
  8334. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8335. "lib/xamarinios10/_._",
  8336. "lib/xamarinmac20/_._",
  8337. "lib/xamarintvos10/_._",
  8338. "lib/xamarinwatchos10/_._",
  8339. "ref/MonoAndroid10/_._",
  8340. "ref/MonoTouch10/_._",
  8341. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8342. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8343. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8344. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8345. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8346. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8347. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8348. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8349. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8350. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8351. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8352. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8353. "ref/xamarinios10/_._",
  8354. "ref/xamarinmac20/_._",
  8355. "ref/xamarintvos10/_._",
  8356. "ref/xamarinwatchos10/_._",
  8357. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8358. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8359. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8360. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8361. "system.security.cryptography.encoding.nuspec"
  8362. ]
  8363. },
  8364. "System.Security.Cryptography.Primitives/4.3.0": {
  8365. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8366. "type": "package",
  8367. "path": "system.security.cryptography.primitives/4.3.0",
  8368. "files": [
  8369. ".nupkg.metadata",
  8370. ".signature.p7s",
  8371. "ThirdPartyNotices.txt",
  8372. "dotnet_library_license.txt",
  8373. "lib/MonoAndroid10/_._",
  8374. "lib/MonoTouch10/_._",
  8375. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8376. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8377. "lib/xamarinios10/_._",
  8378. "lib/xamarinmac20/_._",
  8379. "lib/xamarintvos10/_._",
  8380. "lib/xamarinwatchos10/_._",
  8381. "ref/MonoAndroid10/_._",
  8382. "ref/MonoTouch10/_._",
  8383. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8384. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8385. "ref/xamarinios10/_._",
  8386. "ref/xamarinmac20/_._",
  8387. "ref/xamarintvos10/_._",
  8388. "ref/xamarinwatchos10/_._",
  8389. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8390. "system.security.cryptography.primitives.nuspec"
  8391. ]
  8392. },
  8393. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8394. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8395. "type": "package",
  8396. "path": "system.security.cryptography.x509certificates/4.3.0",
  8397. "files": [
  8398. ".nupkg.metadata",
  8399. ".signature.p7s",
  8400. "ThirdPartyNotices.txt",
  8401. "dotnet_library_license.txt",
  8402. "lib/MonoAndroid10/_._",
  8403. "lib/MonoTouch10/_._",
  8404. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8405. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8406. "lib/xamarinios10/_._",
  8407. "lib/xamarinmac20/_._",
  8408. "lib/xamarintvos10/_._",
  8409. "lib/xamarinwatchos10/_._",
  8410. "ref/MonoAndroid10/_._",
  8411. "ref/MonoTouch10/_._",
  8412. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8413. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8414. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8415. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8416. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8417. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8418. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8419. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8420. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8421. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8422. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8423. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8424. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8425. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8426. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8427. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8428. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8429. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8430. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8431. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8432. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8433. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8434. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8435. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8436. "ref/xamarinios10/_._",
  8437. "ref/xamarinmac20/_._",
  8438. "ref/xamarintvos10/_._",
  8439. "ref/xamarinwatchos10/_._",
  8440. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8441. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8442. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8443. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8444. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8445. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8446. "system.security.cryptography.x509certificates.nuspec"
  8447. ]
  8448. },
  8449. "System.Security.Cryptography.Xml/4.5.0": {
  8450. "sha512": "i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==",
  8451. "type": "package",
  8452. "path": "system.security.cryptography.xml/4.5.0",
  8453. "files": [
  8454. ".nupkg.metadata",
  8455. ".signature.p7s",
  8456. "LICENSE.TXT",
  8457. "THIRD-PARTY-NOTICES.TXT",
  8458. "lib/net461/System.Security.Cryptography.Xml.dll",
  8459. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
  8460. "ref/net461/System.Security.Cryptography.Xml.dll",
  8461. "ref/net461/System.Security.Cryptography.Xml.xml",
  8462. "ref/netstandard2.0/System.Security.Cryptography.Xml.dll",
  8463. "ref/netstandard2.0/System.Security.Cryptography.Xml.xml",
  8464. "system.security.cryptography.xml.4.5.0.nupkg.sha512",
  8465. "system.security.cryptography.xml.nuspec",
  8466. "useSharedDesignerContext.txt",
  8467. "version.txt"
  8468. ]
  8469. },
  8470. "System.Security.Permissions/4.5.0": {
  8471. "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
  8472. "type": "package",
  8473. "path": "system.security.permissions/4.5.0",
  8474. "files": [
  8475. ".nupkg.metadata",
  8476. ".signature.p7s",
  8477. "LICENSE.TXT",
  8478. "THIRD-PARTY-NOTICES.TXT",
  8479. "lib/net461/System.Security.Permissions.dll",
  8480. "lib/netstandard2.0/System.Security.Permissions.dll",
  8481. "ref/net461/System.Security.Permissions.dll",
  8482. "ref/net461/System.Security.Permissions.xml",
  8483. "ref/netstandard2.0/System.Security.Permissions.dll",
  8484. "ref/netstandard2.0/System.Security.Permissions.xml",
  8485. "system.security.permissions.4.5.0.nupkg.sha512",
  8486. "system.security.permissions.nuspec",
  8487. "useSharedDesignerContext.txt",
  8488. "version.txt"
  8489. ]
  8490. },
  8491. "System.Security.Principal.Windows/4.5.1": {
  8492. "sha512": "L3R/xk1s+AJB/ZRrwXyjXMmKp+RNgLP92LSidWEM0iCouznJoiiBloDCxRTjmo8hTDAKSWaMrltsttUzg1RhjA==",
  8493. "type": "package",
  8494. "path": "system.security.principal.windows/4.5.1",
  8495. "files": [
  8496. ".nupkg.metadata",
  8497. ".signature.p7s",
  8498. "LICENSE.TXT",
  8499. "THIRD-PARTY-NOTICES.TXT",
  8500. "lib/net46/System.Security.Principal.Windows.dll",
  8501. "lib/net461/System.Security.Principal.Windows.dll",
  8502. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8503. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8504. "lib/uap10.0.16299/_._",
  8505. "ref/net46/System.Security.Principal.Windows.dll",
  8506. "ref/net461/System.Security.Principal.Windows.dll",
  8507. "ref/net461/System.Security.Principal.Windows.xml",
  8508. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8509. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8510. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8511. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8512. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8513. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8514. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8515. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8516. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8517. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8518. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8519. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8520. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8521. "ref/uap10.0.16299/_._",
  8522. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8523. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8524. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8525. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8526. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8527. "runtimes/win/lib/uap10.0.16299/_._",
  8528. "system.security.principal.windows.4.5.1.nupkg.sha512",
  8529. "system.security.principal.windows.nuspec",
  8530. "useSharedDesignerContext.txt",
  8531. "version.txt"
  8532. ]
  8533. },
  8534. "System.Text.Encoding/4.3.0": {
  8535. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8536. "type": "package",
  8537. "path": "system.text.encoding/4.3.0",
  8538. "files": [
  8539. ".nupkg.metadata",
  8540. ".signature.p7s",
  8541. "ThirdPartyNotices.txt",
  8542. "dotnet_library_license.txt",
  8543. "lib/MonoAndroid10/_._",
  8544. "lib/MonoTouch10/_._",
  8545. "lib/net45/_._",
  8546. "lib/portable-net45+win8+wp8+wpa81/_._",
  8547. "lib/win8/_._",
  8548. "lib/wp80/_._",
  8549. "lib/wpa81/_._",
  8550. "lib/xamarinios10/_._",
  8551. "lib/xamarinmac20/_._",
  8552. "lib/xamarintvos10/_._",
  8553. "lib/xamarinwatchos10/_._",
  8554. "ref/MonoAndroid10/_._",
  8555. "ref/MonoTouch10/_._",
  8556. "ref/net45/_._",
  8557. "ref/netcore50/System.Text.Encoding.dll",
  8558. "ref/netcore50/System.Text.Encoding.xml",
  8559. "ref/netcore50/de/System.Text.Encoding.xml",
  8560. "ref/netcore50/es/System.Text.Encoding.xml",
  8561. "ref/netcore50/fr/System.Text.Encoding.xml",
  8562. "ref/netcore50/it/System.Text.Encoding.xml",
  8563. "ref/netcore50/ja/System.Text.Encoding.xml",
  8564. "ref/netcore50/ko/System.Text.Encoding.xml",
  8565. "ref/netcore50/ru/System.Text.Encoding.xml",
  8566. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8567. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8568. "ref/netstandard1.0/System.Text.Encoding.dll",
  8569. "ref/netstandard1.0/System.Text.Encoding.xml",
  8570. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8571. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8572. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8573. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8574. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8575. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8576. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8577. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8578. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8579. "ref/netstandard1.3/System.Text.Encoding.dll",
  8580. "ref/netstandard1.3/System.Text.Encoding.xml",
  8581. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8582. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8583. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8584. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8585. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8586. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8587. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8588. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8589. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8590. "ref/portable-net45+win8+wp8+wpa81/_._",
  8591. "ref/win8/_._",
  8592. "ref/wp80/_._",
  8593. "ref/wpa81/_._",
  8594. "ref/xamarinios10/_._",
  8595. "ref/xamarinmac20/_._",
  8596. "ref/xamarintvos10/_._",
  8597. "ref/xamarinwatchos10/_._",
  8598. "system.text.encoding.4.3.0.nupkg.sha512",
  8599. "system.text.encoding.nuspec"
  8600. ]
  8601. },
  8602. "System.Text.Encoding.CodePages/4.3.0": {
  8603. "sha512": "IRiEFUa5b/Gs5Egg8oqBVoywhtOeaO2KOx3j0RfcYY/raxqBuEK7NXRDgOwtYM8qbi+7S4RPXUbNt+ZxyY0/NQ==",
  8604. "type": "package",
  8605. "path": "system.text.encoding.codepages/4.3.0",
  8606. "files": [
  8607. ".nupkg.metadata",
  8608. ".signature.p7s",
  8609. "ThirdPartyNotices.txt",
  8610. "dotnet_library_license.txt",
  8611. "lib/MonoAndroid10/_._",
  8612. "lib/MonoTouch10/_._",
  8613. "lib/net46/System.Text.Encoding.CodePages.dll",
  8614. "lib/xamarinios10/_._",
  8615. "lib/xamarinmac20/_._",
  8616. "lib/xamarintvos10/_._",
  8617. "lib/xamarinwatchos10/_._",
  8618. "ref/MonoAndroid10/_._",
  8619. "ref/MonoTouch10/_._",
  8620. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8621. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  8622. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  8623. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  8624. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  8625. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  8626. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  8627. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  8628. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  8629. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  8630. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  8631. "ref/xamarinios10/_._",
  8632. "ref/xamarinmac20/_._",
  8633. "ref/xamarintvos10/_._",
  8634. "ref/xamarinwatchos10/_._",
  8635. "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8636. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8637. "system.text.encoding.codepages.4.3.0.nupkg.sha512",
  8638. "system.text.encoding.codepages.nuspec"
  8639. ]
  8640. },
  8641. "System.Text.Encoding.Extensions/4.3.0": {
  8642. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  8643. "type": "package",
  8644. "path": "system.text.encoding.extensions/4.3.0",
  8645. "files": [
  8646. ".nupkg.metadata",
  8647. ".signature.p7s",
  8648. "ThirdPartyNotices.txt",
  8649. "dotnet_library_license.txt",
  8650. "lib/MonoAndroid10/_._",
  8651. "lib/MonoTouch10/_._",
  8652. "lib/net45/_._",
  8653. "lib/portable-net45+win8+wp8+wpa81/_._",
  8654. "lib/win8/_._",
  8655. "lib/wp80/_._",
  8656. "lib/wpa81/_._",
  8657. "lib/xamarinios10/_._",
  8658. "lib/xamarinmac20/_._",
  8659. "lib/xamarintvos10/_._",
  8660. "lib/xamarinwatchos10/_._",
  8661. "ref/MonoAndroid10/_._",
  8662. "ref/MonoTouch10/_._",
  8663. "ref/net45/_._",
  8664. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  8665. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  8666. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  8667. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  8668. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  8669. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  8670. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  8671. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  8672. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  8673. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  8674. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  8675. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  8676. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  8677. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  8678. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  8679. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  8680. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  8681. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  8682. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  8683. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  8684. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  8685. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  8686. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  8687. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  8688. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  8689. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  8690. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  8691. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  8692. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  8693. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  8694. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  8695. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  8696. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  8697. "ref/portable-net45+win8+wp8+wpa81/_._",
  8698. "ref/win8/_._",
  8699. "ref/wp80/_._",
  8700. "ref/wpa81/_._",
  8701. "ref/xamarinios10/_._",
  8702. "ref/xamarinmac20/_._",
  8703. "ref/xamarintvos10/_._",
  8704. "ref/xamarinwatchos10/_._",
  8705. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  8706. "system.text.encoding.extensions.nuspec"
  8707. ]
  8708. },
  8709. "System.Text.Encodings.Web/4.5.0": {
  8710. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  8711. "type": "package",
  8712. "path": "system.text.encodings.web/4.5.0",
  8713. "files": [
  8714. ".nupkg.metadata",
  8715. ".signature.p7s",
  8716. "LICENSE.TXT",
  8717. "THIRD-PARTY-NOTICES.TXT",
  8718. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  8719. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  8720. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8721. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8722. "system.text.encodings.web.4.5.0.nupkg.sha512",
  8723. "system.text.encodings.web.nuspec",
  8724. "useSharedDesignerContext.txt",
  8725. "version.txt"
  8726. ]
  8727. },
  8728. "System.Threading/4.3.0": {
  8729. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8730. "type": "package",
  8731. "path": "system.threading/4.3.0",
  8732. "files": [
  8733. ".nupkg.metadata",
  8734. ".signature.p7s",
  8735. "ThirdPartyNotices.txt",
  8736. "dotnet_library_license.txt",
  8737. "lib/MonoAndroid10/_._",
  8738. "lib/MonoTouch10/_._",
  8739. "lib/net45/_._",
  8740. "lib/netcore50/System.Threading.dll",
  8741. "lib/netstandard1.3/System.Threading.dll",
  8742. "lib/portable-net45+win8+wp8+wpa81/_._",
  8743. "lib/win8/_._",
  8744. "lib/wp80/_._",
  8745. "lib/wpa81/_._",
  8746. "lib/xamarinios10/_._",
  8747. "lib/xamarinmac20/_._",
  8748. "lib/xamarintvos10/_._",
  8749. "lib/xamarinwatchos10/_._",
  8750. "ref/MonoAndroid10/_._",
  8751. "ref/MonoTouch10/_._",
  8752. "ref/net45/_._",
  8753. "ref/netcore50/System.Threading.dll",
  8754. "ref/netcore50/System.Threading.xml",
  8755. "ref/netcore50/de/System.Threading.xml",
  8756. "ref/netcore50/es/System.Threading.xml",
  8757. "ref/netcore50/fr/System.Threading.xml",
  8758. "ref/netcore50/it/System.Threading.xml",
  8759. "ref/netcore50/ja/System.Threading.xml",
  8760. "ref/netcore50/ko/System.Threading.xml",
  8761. "ref/netcore50/ru/System.Threading.xml",
  8762. "ref/netcore50/zh-hans/System.Threading.xml",
  8763. "ref/netcore50/zh-hant/System.Threading.xml",
  8764. "ref/netstandard1.0/System.Threading.dll",
  8765. "ref/netstandard1.0/System.Threading.xml",
  8766. "ref/netstandard1.0/de/System.Threading.xml",
  8767. "ref/netstandard1.0/es/System.Threading.xml",
  8768. "ref/netstandard1.0/fr/System.Threading.xml",
  8769. "ref/netstandard1.0/it/System.Threading.xml",
  8770. "ref/netstandard1.0/ja/System.Threading.xml",
  8771. "ref/netstandard1.0/ko/System.Threading.xml",
  8772. "ref/netstandard1.0/ru/System.Threading.xml",
  8773. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8774. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8775. "ref/netstandard1.3/System.Threading.dll",
  8776. "ref/netstandard1.3/System.Threading.xml",
  8777. "ref/netstandard1.3/de/System.Threading.xml",
  8778. "ref/netstandard1.3/es/System.Threading.xml",
  8779. "ref/netstandard1.3/fr/System.Threading.xml",
  8780. "ref/netstandard1.3/it/System.Threading.xml",
  8781. "ref/netstandard1.3/ja/System.Threading.xml",
  8782. "ref/netstandard1.3/ko/System.Threading.xml",
  8783. "ref/netstandard1.3/ru/System.Threading.xml",
  8784. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8785. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8786. "ref/portable-net45+win8+wp8+wpa81/_._",
  8787. "ref/win8/_._",
  8788. "ref/wp80/_._",
  8789. "ref/wpa81/_._",
  8790. "ref/xamarinios10/_._",
  8791. "ref/xamarinmac20/_._",
  8792. "ref/xamarintvos10/_._",
  8793. "ref/xamarinwatchos10/_._",
  8794. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8795. "system.threading.4.3.0.nupkg.sha512",
  8796. "system.threading.nuspec"
  8797. ]
  8798. },
  8799. "System.Threading.Tasks/4.3.0": {
  8800. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8801. "type": "package",
  8802. "path": "system.threading.tasks/4.3.0",
  8803. "files": [
  8804. ".nupkg.metadata",
  8805. ".signature.p7s",
  8806. "ThirdPartyNotices.txt",
  8807. "dotnet_library_license.txt",
  8808. "lib/MonoAndroid10/_._",
  8809. "lib/MonoTouch10/_._",
  8810. "lib/net45/_._",
  8811. "lib/portable-net45+win8+wp8+wpa81/_._",
  8812. "lib/win8/_._",
  8813. "lib/wp80/_._",
  8814. "lib/wpa81/_._",
  8815. "lib/xamarinios10/_._",
  8816. "lib/xamarinmac20/_._",
  8817. "lib/xamarintvos10/_._",
  8818. "lib/xamarinwatchos10/_._",
  8819. "ref/MonoAndroid10/_._",
  8820. "ref/MonoTouch10/_._",
  8821. "ref/net45/_._",
  8822. "ref/netcore50/System.Threading.Tasks.dll",
  8823. "ref/netcore50/System.Threading.Tasks.xml",
  8824. "ref/netcore50/de/System.Threading.Tasks.xml",
  8825. "ref/netcore50/es/System.Threading.Tasks.xml",
  8826. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8827. "ref/netcore50/it/System.Threading.Tasks.xml",
  8828. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8829. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8830. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8831. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8832. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8833. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8834. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8835. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8836. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8837. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8838. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8839. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8840. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8841. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8842. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8843. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8844. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8845. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8846. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8847. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8848. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8849. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8850. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8851. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8852. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8853. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8854. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8855. "ref/portable-net45+win8+wp8+wpa81/_._",
  8856. "ref/win8/_._",
  8857. "ref/wp80/_._",
  8858. "ref/wpa81/_._",
  8859. "ref/xamarinios10/_._",
  8860. "ref/xamarinmac20/_._",
  8861. "ref/xamarintvos10/_._",
  8862. "ref/xamarinwatchos10/_._",
  8863. "system.threading.tasks.4.3.0.nupkg.sha512",
  8864. "system.threading.tasks.nuspec"
  8865. ]
  8866. },
  8867. "System.Threading.Tasks.Extensions/4.5.1": {
  8868. "sha512": "WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==",
  8869. "type": "package",
  8870. "path": "system.threading.tasks.extensions/4.5.1",
  8871. "files": [
  8872. ".nupkg.metadata",
  8873. ".signature.p7s",
  8874. "LICENSE.TXT",
  8875. "THIRD-PARTY-NOTICES.TXT",
  8876. "lib/MonoAndroid10/_._",
  8877. "lib/MonoTouch10/_._",
  8878. "lib/netcoreapp2.1/_._",
  8879. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8880. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8881. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  8882. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  8883. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8884. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8885. "lib/xamarinios10/_._",
  8886. "lib/xamarinmac20/_._",
  8887. "lib/xamarintvos10/_._",
  8888. "lib/xamarinwatchos10/_._",
  8889. "ref/MonoAndroid10/_._",
  8890. "ref/MonoTouch10/_._",
  8891. "ref/netcoreapp2.1/_._",
  8892. "ref/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8893. "ref/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8894. "ref/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  8895. "ref/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  8896. "ref/xamarinios10/_._",
  8897. "ref/xamarinmac20/_._",
  8898. "ref/xamarintvos10/_._",
  8899. "ref/xamarinwatchos10/_._",
  8900. "system.threading.tasks.extensions.4.5.1.nupkg.sha512",
  8901. "system.threading.tasks.extensions.nuspec",
  8902. "useSharedDesignerContext.txt",
  8903. "version.txt"
  8904. ]
  8905. },
  8906. "System.Threading.Tasks.Parallel/4.3.0": {
  8907. "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
  8908. "type": "package",
  8909. "path": "system.threading.tasks.parallel/4.3.0",
  8910. "files": [
  8911. ".nupkg.metadata",
  8912. ".signature.p7s",
  8913. "ThirdPartyNotices.txt",
  8914. "dotnet_library_license.txt",
  8915. "lib/MonoAndroid10/_._",
  8916. "lib/MonoTouch10/_._",
  8917. "lib/net45/_._",
  8918. "lib/netcore50/System.Threading.Tasks.Parallel.dll",
  8919. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll",
  8920. "lib/portable-net45+win8+wpa81/_._",
  8921. "lib/win8/_._",
  8922. "lib/wpa81/_._",
  8923. "lib/xamarinios10/_._",
  8924. "lib/xamarinmac20/_._",
  8925. "lib/xamarintvos10/_._",
  8926. "lib/xamarinwatchos10/_._",
  8927. "ref/MonoAndroid10/_._",
  8928. "ref/MonoTouch10/_._",
  8929. "ref/net45/_._",
  8930. "ref/netcore50/System.Threading.Tasks.Parallel.dll",
  8931. "ref/netcore50/System.Threading.Tasks.Parallel.xml",
  8932. "ref/netcore50/de/System.Threading.Tasks.Parallel.xml",
  8933. "ref/netcore50/es/System.Threading.Tasks.Parallel.xml",
  8934. "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml",
  8935. "ref/netcore50/it/System.Threading.Tasks.Parallel.xml",
  8936. "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml",
  8937. "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml",
  8938. "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml",
  8939. "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml",
  8940. "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml",
  8941. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll",
  8942. "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml",
  8943. "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml",
  8944. "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml",
  8945. "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml",
  8946. "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml",
  8947. "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml",
  8948. "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml",
  8949. "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml",
  8950. "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml",
  8951. "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml",
  8952. "ref/portable-net45+win8+wpa81/_._",
  8953. "ref/win8/_._",
  8954. "ref/wpa81/_._",
  8955. "ref/xamarinios10/_._",
  8956. "ref/xamarinmac20/_._",
  8957. "ref/xamarintvos10/_._",
  8958. "ref/xamarinwatchos10/_._",
  8959. "system.threading.tasks.parallel.4.3.0.nupkg.sha512",
  8960. "system.threading.tasks.parallel.nuspec"
  8961. ]
  8962. },
  8963. "System.Threading.Thread/4.3.0": {
  8964. "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
  8965. "type": "package",
  8966. "path": "system.threading.thread/4.3.0",
  8967. "files": [
  8968. ".nupkg.metadata",
  8969. ".signature.p7s",
  8970. "ThirdPartyNotices.txt",
  8971. "dotnet_library_license.txt",
  8972. "lib/MonoAndroid10/_._",
  8973. "lib/MonoTouch10/_._",
  8974. "lib/net46/System.Threading.Thread.dll",
  8975. "lib/netcore50/_._",
  8976. "lib/netstandard1.3/System.Threading.Thread.dll",
  8977. "lib/xamarinios10/_._",
  8978. "lib/xamarinmac20/_._",
  8979. "lib/xamarintvos10/_._",
  8980. "lib/xamarinwatchos10/_._",
  8981. "ref/MonoAndroid10/_._",
  8982. "ref/MonoTouch10/_._",
  8983. "ref/net46/System.Threading.Thread.dll",
  8984. "ref/netstandard1.3/System.Threading.Thread.dll",
  8985. "ref/netstandard1.3/System.Threading.Thread.xml",
  8986. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  8987. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  8988. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  8989. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  8990. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  8991. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  8992. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  8993. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  8994. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  8995. "ref/xamarinios10/_._",
  8996. "ref/xamarinmac20/_._",
  8997. "ref/xamarintvos10/_._",
  8998. "ref/xamarinwatchos10/_._",
  8999. "system.threading.thread.4.3.0.nupkg.sha512",
  9000. "system.threading.thread.nuspec"
  9001. ]
  9002. },
  9003. "System.ValueTuple/4.3.0": {
  9004. "sha512": "cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==",
  9005. "type": "package",
  9006. "path": "system.valuetuple/4.3.0",
  9007. "files": [
  9008. ".nupkg.metadata",
  9009. ".signature.p7s",
  9010. "ThirdPartyNotices.txt",
  9011. "dotnet_library_license.txt",
  9012. "lib/netstandard1.0/.xml",
  9013. "lib/netstandard1.0/System.ValueTuple.dll",
  9014. "lib/portable-net40+sl4+win8+wp8/.xml",
  9015. "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
  9016. "system.valuetuple.4.3.0.nupkg.sha512",
  9017. "system.valuetuple.nuspec"
  9018. ]
  9019. },
  9020. "System.Xml.ReaderWriter/4.3.0": {
  9021. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  9022. "type": "package",
  9023. "path": "system.xml.readerwriter/4.3.0",
  9024. "files": [
  9025. ".nupkg.metadata",
  9026. ".signature.p7s",
  9027. "ThirdPartyNotices.txt",
  9028. "dotnet_library_license.txt",
  9029. "lib/MonoAndroid10/_._",
  9030. "lib/MonoTouch10/_._",
  9031. "lib/net45/_._",
  9032. "lib/net46/System.Xml.ReaderWriter.dll",
  9033. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9034. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9035. "lib/portable-net45+win8+wp8+wpa81/_._",
  9036. "lib/win8/_._",
  9037. "lib/wp80/_._",
  9038. "lib/wpa81/_._",
  9039. "lib/xamarinios10/_._",
  9040. "lib/xamarinmac20/_._",
  9041. "lib/xamarintvos10/_._",
  9042. "lib/xamarinwatchos10/_._",
  9043. "ref/MonoAndroid10/_._",
  9044. "ref/MonoTouch10/_._",
  9045. "ref/net45/_._",
  9046. "ref/net46/System.Xml.ReaderWriter.dll",
  9047. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9048. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9049. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9050. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9051. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9052. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9053. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9054. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9055. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9056. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9057. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9058. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9059. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9060. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9061. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9062. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9063. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9064. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9065. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9066. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9067. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9068. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9069. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9070. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9071. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9072. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9073. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9074. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9075. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9076. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9077. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9078. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9079. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9080. "ref/portable-net45+win8+wp8+wpa81/_._",
  9081. "ref/win8/_._",
  9082. "ref/wp80/_._",
  9083. "ref/wpa81/_._",
  9084. "ref/xamarinios10/_._",
  9085. "ref/xamarinmac20/_._",
  9086. "ref/xamarintvos10/_._",
  9087. "ref/xamarinwatchos10/_._",
  9088. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9089. "system.xml.readerwriter.nuspec"
  9090. ]
  9091. },
  9092. "System.Xml.XDocument/4.3.0": {
  9093. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9094. "type": "package",
  9095. "path": "system.xml.xdocument/4.3.0",
  9096. "files": [
  9097. ".nupkg.metadata",
  9098. ".signature.p7s",
  9099. "ThirdPartyNotices.txt",
  9100. "dotnet_library_license.txt",
  9101. "lib/MonoAndroid10/_._",
  9102. "lib/MonoTouch10/_._",
  9103. "lib/net45/_._",
  9104. "lib/netcore50/System.Xml.XDocument.dll",
  9105. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9106. "lib/portable-net45+win8+wp8+wpa81/_._",
  9107. "lib/win8/_._",
  9108. "lib/wp80/_._",
  9109. "lib/wpa81/_._",
  9110. "lib/xamarinios10/_._",
  9111. "lib/xamarinmac20/_._",
  9112. "lib/xamarintvos10/_._",
  9113. "lib/xamarinwatchos10/_._",
  9114. "ref/MonoAndroid10/_._",
  9115. "ref/MonoTouch10/_._",
  9116. "ref/net45/_._",
  9117. "ref/netcore50/System.Xml.XDocument.dll",
  9118. "ref/netcore50/System.Xml.XDocument.xml",
  9119. "ref/netcore50/de/System.Xml.XDocument.xml",
  9120. "ref/netcore50/es/System.Xml.XDocument.xml",
  9121. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9122. "ref/netcore50/it/System.Xml.XDocument.xml",
  9123. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9124. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9125. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9126. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9127. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9128. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9129. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9130. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9131. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9132. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9133. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9134. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9135. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9136. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9137. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9138. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9139. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9140. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9141. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9142. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9143. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9144. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9145. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9146. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9147. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9148. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9149. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9150. "ref/portable-net45+win8+wp8+wpa81/_._",
  9151. "ref/win8/_._",
  9152. "ref/wp80/_._",
  9153. "ref/wpa81/_._",
  9154. "ref/xamarinios10/_._",
  9155. "ref/xamarinmac20/_._",
  9156. "ref/xamarintvos10/_._",
  9157. "ref/xamarinwatchos10/_._",
  9158. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9159. "system.xml.xdocument.nuspec"
  9160. ]
  9161. },
  9162. "System.Xml.XmlDocument/4.3.0": {
  9163. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  9164. "type": "package",
  9165. "path": "system.xml.xmldocument/4.3.0",
  9166. "files": [
  9167. ".nupkg.metadata",
  9168. ".signature.p7s",
  9169. "ThirdPartyNotices.txt",
  9170. "dotnet_library_license.txt",
  9171. "lib/MonoAndroid10/_._",
  9172. "lib/MonoTouch10/_._",
  9173. "lib/net46/System.Xml.XmlDocument.dll",
  9174. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  9175. "lib/xamarinios10/_._",
  9176. "lib/xamarinmac20/_._",
  9177. "lib/xamarintvos10/_._",
  9178. "lib/xamarinwatchos10/_._",
  9179. "ref/MonoAndroid10/_._",
  9180. "ref/MonoTouch10/_._",
  9181. "ref/net46/System.Xml.XmlDocument.dll",
  9182. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  9183. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  9184. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  9185. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  9186. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  9187. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  9188. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  9189. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  9190. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  9191. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  9192. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  9193. "ref/xamarinios10/_._",
  9194. "ref/xamarinmac20/_._",
  9195. "ref/xamarintvos10/_._",
  9196. "ref/xamarinwatchos10/_._",
  9197. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  9198. "system.xml.xmldocument.nuspec"
  9199. ]
  9200. },
  9201. "System.Xml.XPath/4.3.0": {
  9202. "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
  9203. "type": "package",
  9204. "path": "system.xml.xpath/4.3.0",
  9205. "files": [
  9206. ".nupkg.metadata",
  9207. ".signature.p7s",
  9208. "ThirdPartyNotices.txt",
  9209. "dotnet_library_license.txt",
  9210. "lib/MonoAndroid10/_._",
  9211. "lib/MonoTouch10/_._",
  9212. "lib/net46/System.Xml.XPath.dll",
  9213. "lib/netstandard1.3/System.Xml.XPath.dll",
  9214. "lib/xamarinios10/_._",
  9215. "lib/xamarinmac20/_._",
  9216. "lib/xamarintvos10/_._",
  9217. "lib/xamarinwatchos10/_._",
  9218. "ref/MonoAndroid10/_._",
  9219. "ref/MonoTouch10/_._",
  9220. "ref/net46/System.Xml.XPath.dll",
  9221. "ref/netstandard1.3/System.Xml.XPath.dll",
  9222. "ref/netstandard1.3/System.Xml.XPath.xml",
  9223. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  9224. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  9225. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  9226. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  9227. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  9228. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  9229. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  9230. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  9231. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  9232. "ref/xamarinios10/_._",
  9233. "ref/xamarinmac20/_._",
  9234. "ref/xamarintvos10/_._",
  9235. "ref/xamarinwatchos10/_._",
  9236. "system.xml.xpath.4.3.0.nupkg.sha512",
  9237. "system.xml.xpath.nuspec"
  9238. ]
  9239. },
  9240. "System.Xml.XPath.XDocument/4.3.0": {
  9241. "sha512": "jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==",
  9242. "type": "package",
  9243. "path": "system.xml.xpath.xdocument/4.3.0",
  9244. "files": [
  9245. ".nupkg.metadata",
  9246. ".signature.p7s",
  9247. "ThirdPartyNotices.txt",
  9248. "dotnet_library_license.txt",
  9249. "lib/MonoAndroid10/_._",
  9250. "lib/MonoTouch10/_._",
  9251. "lib/net46/System.Xml.XPath.XDocument.dll",
  9252. "lib/netstandard1.3/System.Xml.XPath.XDocument.dll",
  9253. "lib/xamarinios10/_._",
  9254. "lib/xamarinmac20/_._",
  9255. "lib/xamarintvos10/_._",
  9256. "lib/xamarinwatchos10/_._",
  9257. "ref/MonoAndroid10/_._",
  9258. "ref/MonoTouch10/_._",
  9259. "ref/net46/System.Xml.XPath.XDocument.dll",
  9260. "ref/netstandard1.3/System.Xml.XPath.XDocument.dll",
  9261. "ref/netstandard1.3/System.Xml.XPath.XDocument.xml",
  9262. "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml",
  9263. "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml",
  9264. "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml",
  9265. "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml",
  9266. "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml",
  9267. "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml",
  9268. "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml",
  9269. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml",
  9270. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml",
  9271. "ref/xamarinios10/_._",
  9272. "ref/xamarinmac20/_._",
  9273. "ref/xamarintvos10/_._",
  9274. "ref/xamarinwatchos10/_._",
  9275. "system.xml.xpath.xdocument.4.3.0.nupkg.sha512",
  9276. "system.xml.xpath.xdocument.nuspec"
  9277. ]
  9278. }
  9279. },
  9280. "projectFileDependencyGroups": {
  9281. ".NETFramework,Version=v4.8": [
  9282. "Microsoft.AspNetCore >= 2.1.7",
  9283. "Microsoft.AspNetCore.HttpsPolicy >= 2.1.1",
  9284. "Microsoft.AspNetCore.Mvc >= 2.1.3"
  9285. ]
  9286. },
  9287. "packageFolders": {
  9288. "C:\\Users\\OpenValue\\.nuget\\packages\\": {},
  9289. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  9290. },
  9291. "project": {
  9292. "version": "1.0.0",
  9293. "restore": {
  9294. "projectUniqueName": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Service\\AipGateway.Service.csproj",
  9295. "projectName": "AipGateway.Service",
  9296. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Service\\AipGateway.Service.csproj",
  9297. "packagesPath": "C:\\Users\\OpenValue\\.nuget\\packages\\",
  9298. "outputPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Service\\obj\\",
  9299. "projectStyle": "PackageReference",
  9300. "fallbackFolders": [
  9301. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  9302. ],
  9303. "configFilePaths": [
  9304. "C:\\Users\\OpenValue\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9305. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9306. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  9307. ],
  9308. "originalTargetFrameworks": [
  9309. "net48"
  9310. ],
  9311. "sources": {
  9312. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9313. "C:\\Program Files\\dotnet\\library-packs": {},
  9314. "https://api.nuget.org/v3/index.json": {}
  9315. },
  9316. "frameworks": {
  9317. "net48": {
  9318. "targetAlias": "net48",
  9319. "projectReferences": {}
  9320. }
  9321. },
  9322. "warningProperties": {
  9323. "warnAsError": [
  9324. "NU1605"
  9325. ]
  9326. },
  9327. "restoreAuditProperties": {
  9328. "enableAudit": "true",
  9329. "auditLevel": "low",
  9330. "auditMode": "direct"
  9331. }
  9332. },
  9333. "frameworks": {
  9334. "net48": {
  9335. "targetAlias": "net48",
  9336. "dependencies": {
  9337. "Microsoft.AspNetCore": {
  9338. "target": "Package",
  9339. "version": "[2.1.7, )"
  9340. },
  9341. "Microsoft.AspNetCore.HttpsPolicy": {
  9342. "target": "Package",
  9343. "version": "[2.1.1, )"
  9344. },
  9345. "Microsoft.AspNetCore.Mvc": {
  9346. "target": "Package",
  9347. "version": "[2.1.3, )"
  9348. }
  9349. },
  9350. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202\\RuntimeIdentifierGraph.json"
  9351. }
  9352. },
  9353. "runtimes": {
  9354. "win7-x86": {
  9355. "#import": []
  9356. }
  9357. }
  9358. }
  9359. }