project.assets.json 240 KB

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