project.assets.json 306 KB

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