project.assets.json 245 KB

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