project.assets.json 189 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0": {
  5. "coverlet.collector/3.1.2": {
  6. "type": "package",
  7. "build": {
  8. "build/netstandard1.0/coverlet.collector.targets": {}
  9. }
  10. },
  11. "Microsoft.CodeCoverage/17.1.0": {
  12. "type": "package",
  13. "compile": {
  14. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  15. },
  16. "runtime": {
  17. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  18. },
  19. "build": {
  20. "build/netstandard1.0/Microsoft.CodeCoverage.props": {},
  21. "build/netstandard1.0/Microsoft.CodeCoverage.targets": {}
  22. }
  23. },
  24. "Microsoft.CSharp/4.0.1": {
  25. "type": "package",
  26. "dependencies": {
  27. "System.Collections": "4.0.11",
  28. "System.Diagnostics.Debug": "4.0.11",
  29. "System.Dynamic.Runtime": "4.0.11",
  30. "System.Globalization": "4.0.11",
  31. "System.Linq": "4.1.0",
  32. "System.Linq.Expressions": "4.1.0",
  33. "System.ObjectModel": "4.0.12",
  34. "System.Reflection": "4.1.0",
  35. "System.Reflection.Extensions": "4.0.1",
  36. "System.Reflection.Primitives": "4.0.1",
  37. "System.Reflection.TypeExtensions": "4.1.0",
  38. "System.Resources.ResourceManager": "4.0.1",
  39. "System.Runtime": "4.1.0",
  40. "System.Runtime.Extensions": "4.1.0",
  41. "System.Runtime.InteropServices": "4.1.0",
  42. "System.Threading": "4.0.11"
  43. },
  44. "compile": {
  45. "ref/netstandard1.0/Microsoft.CSharp.dll": {
  46. "related": ".xml"
  47. }
  48. },
  49. "runtime": {
  50. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  51. }
  52. },
  53. "Microsoft.NET.Test.Sdk/17.1.0": {
  54. "type": "package",
  55. "dependencies": {
  56. "Microsoft.CodeCoverage": "17.1.0",
  57. "Microsoft.TestPlatform.TestHost": "17.1.0"
  58. },
  59. "compile": {
  60. "lib/netcoreapp2.1/_._": {}
  61. },
  62. "runtime": {
  63. "lib/netcoreapp2.1/_._": {}
  64. },
  65. "build": {
  66. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {},
  67. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {}
  68. },
  69. "buildMultiTargeting": {
  70. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {}
  71. }
  72. },
  73. "Microsoft.NETCore.Platforms/1.1.0": {
  74. "type": "package",
  75. "compile": {
  76. "lib/netstandard1.0/_._": {}
  77. },
  78. "runtime": {
  79. "lib/netstandard1.0/_._": {}
  80. }
  81. },
  82. "Microsoft.NETCore.Targets/1.0.1": {
  83. "type": "package",
  84. "compile": {
  85. "lib/netstandard1.0/_._": {}
  86. },
  87. "runtime": {
  88. "lib/netstandard1.0/_._": {}
  89. }
  90. },
  91. "Microsoft.TestPlatform.ObjectModel/17.1.0": {
  92. "type": "package",
  93. "dependencies": {
  94. "NuGet.Frameworks": "5.11.0",
  95. "System.Reflection.Metadata": "1.6.0"
  96. },
  97. "compile": {
  98. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  99. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  100. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  101. },
  102. "runtime": {
  103. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  104. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  105. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  106. },
  107. "resource": {
  108. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  109. "locale": "cs"
  110. },
  111. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  112. "locale": "cs"
  113. },
  114. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  115. "locale": "de"
  116. },
  117. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  118. "locale": "de"
  119. },
  120. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  121. "locale": "es"
  122. },
  123. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  124. "locale": "es"
  125. },
  126. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  127. "locale": "fr"
  128. },
  129. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  130. "locale": "fr"
  131. },
  132. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  133. "locale": "it"
  134. },
  135. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  136. "locale": "it"
  137. },
  138. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  139. "locale": "ja"
  140. },
  141. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  142. "locale": "ja"
  143. },
  144. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  145. "locale": "ko"
  146. },
  147. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  148. "locale": "ko"
  149. },
  150. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  151. "locale": "pl"
  152. },
  153. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  154. "locale": "pl"
  155. },
  156. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  157. "locale": "pt-BR"
  158. },
  159. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  160. "locale": "pt-BR"
  161. },
  162. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  163. "locale": "ru"
  164. },
  165. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  166. "locale": "ru"
  167. },
  168. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  169. "locale": "tr"
  170. },
  171. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  172. "locale": "tr"
  173. },
  174. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  175. "locale": "zh-Hans"
  176. },
  177. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  178. "locale": "zh-Hans"
  179. },
  180. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  181. "locale": "zh-Hant"
  182. },
  183. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  184. "locale": "zh-Hant"
  185. }
  186. }
  187. },
  188. "Microsoft.TestPlatform.TestHost/17.1.0": {
  189. "type": "package",
  190. "dependencies": {
  191. "Microsoft.TestPlatform.ObjectModel": "17.1.0",
  192. "Newtonsoft.Json": "9.0.1"
  193. },
  194. "compile": {
  195. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  196. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  197. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  198. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  199. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
  200. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  201. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
  202. "lib/netcoreapp2.1/testhost.dll": {
  203. "related": ".deps.json"
  204. }
  205. },
  206. "runtime": {
  207. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  208. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  209. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  210. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  211. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
  212. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  213. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
  214. "lib/netcoreapp2.1/testhost.dll": {
  215. "related": ".deps.json"
  216. }
  217. },
  218. "resource": {
  219. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  220. "locale": "cs"
  221. },
  222. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  223. "locale": "cs"
  224. },
  225. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  226. "locale": "cs"
  227. },
  228. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  229. "locale": "de"
  230. },
  231. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  232. "locale": "de"
  233. },
  234. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  235. "locale": "de"
  236. },
  237. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  238. "locale": "es"
  239. },
  240. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  241. "locale": "es"
  242. },
  243. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  244. "locale": "es"
  245. },
  246. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  247. "locale": "fr"
  248. },
  249. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  250. "locale": "fr"
  251. },
  252. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  253. "locale": "fr"
  254. },
  255. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  256. "locale": "it"
  257. },
  258. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  259. "locale": "it"
  260. },
  261. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  262. "locale": "it"
  263. },
  264. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  265. "locale": "ja"
  266. },
  267. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  268. "locale": "ja"
  269. },
  270. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  271. "locale": "ja"
  272. },
  273. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  274. "locale": "ko"
  275. },
  276. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  277. "locale": "ko"
  278. },
  279. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  280. "locale": "ko"
  281. },
  282. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  283. "locale": "pl"
  284. },
  285. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  286. "locale": "pl"
  287. },
  288. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  289. "locale": "pl"
  290. },
  291. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  292. "locale": "pt-BR"
  293. },
  294. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  295. "locale": "pt-BR"
  296. },
  297. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  298. "locale": "pt-BR"
  299. },
  300. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  301. "locale": "ru"
  302. },
  303. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  304. "locale": "ru"
  305. },
  306. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  307. "locale": "ru"
  308. },
  309. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  310. "locale": "tr"
  311. },
  312. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  313. "locale": "tr"
  314. },
  315. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  316. "locale": "tr"
  317. },
  318. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  319. "locale": "zh-Hans"
  320. },
  321. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  322. "locale": "zh-Hans"
  323. },
  324. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  325. "locale": "zh-Hans"
  326. },
  327. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  328. "locale": "zh-Hant"
  329. },
  330. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  331. "locale": "zh-Hant"
  332. },
  333. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  334. "locale": "zh-Hant"
  335. }
  336. },
  337. "build": {
  338. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {}
  339. }
  340. },
  341. "NETStandard.Library/2.0.0": {
  342. "type": "package",
  343. "dependencies": {
  344. "Microsoft.NETCore.Platforms": "1.1.0"
  345. },
  346. "compile": {
  347. "lib/netstandard1.0/_._": {}
  348. },
  349. "runtime": {
  350. "lib/netstandard1.0/_._": {}
  351. },
  352. "build": {
  353. "build/netstandard2.0/NETStandard.Library.targets": {}
  354. }
  355. },
  356. "Newtonsoft.Json/9.0.1": {
  357. "type": "package",
  358. "dependencies": {
  359. "Microsoft.CSharp": "4.0.1",
  360. "System.Collections": "4.0.11",
  361. "System.Diagnostics.Debug": "4.0.11",
  362. "System.Dynamic.Runtime": "4.0.11",
  363. "System.Globalization": "4.0.11",
  364. "System.IO": "4.1.0",
  365. "System.Linq": "4.1.0",
  366. "System.Linq.Expressions": "4.1.0",
  367. "System.ObjectModel": "4.0.12",
  368. "System.Reflection": "4.1.0",
  369. "System.Reflection.Extensions": "4.0.1",
  370. "System.Resources.ResourceManager": "4.0.1",
  371. "System.Runtime": "4.1.0",
  372. "System.Runtime.Extensions": "4.1.0",
  373. "System.Runtime.Serialization.Primitives": "4.1.1",
  374. "System.Text.Encoding": "4.0.11",
  375. "System.Text.Encoding.Extensions": "4.0.11",
  376. "System.Text.RegularExpressions": "4.1.0",
  377. "System.Threading": "4.0.11",
  378. "System.Threading.Tasks": "4.0.11",
  379. "System.Xml.ReaderWriter": "4.0.11",
  380. "System.Xml.XDocument": "4.0.11"
  381. },
  382. "compile": {
  383. "lib/netstandard1.0/Newtonsoft.Json.dll": {
  384. "related": ".xml"
  385. }
  386. },
  387. "runtime": {
  388. "lib/netstandard1.0/Newtonsoft.Json.dll": {
  389. "related": ".xml"
  390. }
  391. }
  392. },
  393. "NuGet.Frameworks/5.11.0": {
  394. "type": "package",
  395. "compile": {
  396. "lib/netstandard2.0/NuGet.Frameworks.dll": {
  397. "related": ".xml"
  398. }
  399. },
  400. "runtime": {
  401. "lib/netstandard2.0/NuGet.Frameworks.dll": {
  402. "related": ".xml"
  403. }
  404. }
  405. },
  406. "NUnit/3.13.3": {
  407. "type": "package",
  408. "dependencies": {
  409. "NETStandard.Library": "2.0.0"
  410. },
  411. "compile": {
  412. "lib/netstandard2.0/nunit.framework.dll": {
  413. "related": ".xml"
  414. }
  415. },
  416. "runtime": {
  417. "lib/netstandard2.0/nunit.framework.dll": {
  418. "related": ".xml"
  419. }
  420. },
  421. "build": {
  422. "build/NUnit.props": {}
  423. }
  424. },
  425. "NUnit.Analyzers/3.3.0": {
  426. "type": "package"
  427. },
  428. "NUnit3TestAdapter/4.2.1": {
  429. "type": "package",
  430. "build": {
  431. "build/netcoreapp2.1/NUnit3TestAdapter.props": {}
  432. }
  433. },
  434. "System.Collections/4.0.11": {
  435. "type": "package",
  436. "dependencies": {
  437. "Microsoft.NETCore.Platforms": "1.0.1",
  438. "Microsoft.NETCore.Targets": "1.0.1",
  439. "System.Runtime": "4.1.0"
  440. },
  441. "compile": {
  442. "ref/netstandard1.3/System.Collections.dll": {
  443. "related": ".xml"
  444. }
  445. }
  446. },
  447. "System.Diagnostics.Debug/4.0.11": {
  448. "type": "package",
  449. "dependencies": {
  450. "Microsoft.NETCore.Platforms": "1.0.1",
  451. "Microsoft.NETCore.Targets": "1.0.1",
  452. "System.Runtime": "4.1.0"
  453. },
  454. "compile": {
  455. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  456. "related": ".xml"
  457. }
  458. }
  459. },
  460. "System.Diagnostics.Tools/4.0.1": {
  461. "type": "package",
  462. "dependencies": {
  463. "Microsoft.NETCore.Platforms": "1.0.1",
  464. "Microsoft.NETCore.Targets": "1.0.1",
  465. "System.Runtime": "4.1.0"
  466. },
  467. "compile": {
  468. "ref/netstandard1.0/_._": {
  469. "related": ".xml"
  470. }
  471. }
  472. },
  473. "System.Dynamic.Runtime/4.0.11": {
  474. "type": "package",
  475. "dependencies": {
  476. "System.Collections": "4.0.11",
  477. "System.Diagnostics.Debug": "4.0.11",
  478. "System.Globalization": "4.0.11",
  479. "System.Linq": "4.1.0",
  480. "System.Linq.Expressions": "4.1.0",
  481. "System.ObjectModel": "4.0.12",
  482. "System.Reflection": "4.1.0",
  483. "System.Reflection.Emit": "4.0.1",
  484. "System.Reflection.Emit.ILGeneration": "4.0.1",
  485. "System.Reflection.Primitives": "4.0.1",
  486. "System.Reflection.TypeExtensions": "4.1.0",
  487. "System.Resources.ResourceManager": "4.0.1",
  488. "System.Runtime": "4.1.0",
  489. "System.Runtime.Extensions": "4.1.0",
  490. "System.Threading": "4.0.11"
  491. },
  492. "compile": {
  493. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  494. "related": ".xml"
  495. }
  496. },
  497. "runtime": {
  498. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  499. }
  500. },
  501. "System.Globalization/4.0.11": {
  502. "type": "package",
  503. "dependencies": {
  504. "Microsoft.NETCore.Platforms": "1.0.1",
  505. "Microsoft.NETCore.Targets": "1.0.1",
  506. "System.Runtime": "4.1.0"
  507. },
  508. "compile": {
  509. "ref/netstandard1.3/System.Globalization.dll": {
  510. "related": ".xml"
  511. }
  512. }
  513. },
  514. "System.IO/4.1.0": {
  515. "type": "package",
  516. "dependencies": {
  517. "Microsoft.NETCore.Platforms": "1.0.1",
  518. "Microsoft.NETCore.Targets": "1.0.1",
  519. "System.Runtime": "4.1.0",
  520. "System.Text.Encoding": "4.0.11",
  521. "System.Threading.Tasks": "4.0.11"
  522. },
  523. "compile": {
  524. "ref/netstandard1.5/System.IO.dll": {
  525. "related": ".xml"
  526. }
  527. }
  528. },
  529. "System.IO.FileSystem/4.0.1": {
  530. "type": "package",
  531. "dependencies": {
  532. "Microsoft.NETCore.Platforms": "1.0.1",
  533. "Microsoft.NETCore.Targets": "1.0.1",
  534. "System.IO": "4.1.0",
  535. "System.IO.FileSystem.Primitives": "4.0.1",
  536. "System.Runtime": "4.1.0",
  537. "System.Runtime.Handles": "4.0.1",
  538. "System.Text.Encoding": "4.0.11",
  539. "System.Threading.Tasks": "4.0.11"
  540. },
  541. "compile": {
  542. "ref/netstandard1.3/_._": {
  543. "related": ".xml"
  544. }
  545. }
  546. },
  547. "System.IO.FileSystem.Primitives/4.0.1": {
  548. "type": "package",
  549. "dependencies": {
  550. "System.Runtime": "4.1.0"
  551. },
  552. "compile": {
  553. "ref/netstandard1.3/_._": {
  554. "related": ".xml"
  555. }
  556. },
  557. "runtime": {
  558. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  559. }
  560. },
  561. "System.Linq/4.1.0": {
  562. "type": "package",
  563. "dependencies": {
  564. "System.Collections": "4.0.11",
  565. "System.Diagnostics.Debug": "4.0.11",
  566. "System.Resources.ResourceManager": "4.0.1",
  567. "System.Runtime": "4.1.0",
  568. "System.Runtime.Extensions": "4.1.0"
  569. },
  570. "compile": {
  571. "ref/netstandard1.6/System.Linq.dll": {
  572. "related": ".xml"
  573. }
  574. },
  575. "runtime": {
  576. "lib/netstandard1.6/System.Linq.dll": {}
  577. }
  578. },
  579. "System.Linq.Expressions/4.1.0": {
  580. "type": "package",
  581. "dependencies": {
  582. "System.Collections": "4.0.11",
  583. "System.Diagnostics.Debug": "4.0.11",
  584. "System.Globalization": "4.0.11",
  585. "System.IO": "4.1.0",
  586. "System.Linq": "4.1.0",
  587. "System.ObjectModel": "4.0.12",
  588. "System.Reflection": "4.1.0",
  589. "System.Reflection.Emit": "4.0.1",
  590. "System.Reflection.Emit.ILGeneration": "4.0.1",
  591. "System.Reflection.Emit.Lightweight": "4.0.1",
  592. "System.Reflection.Extensions": "4.0.1",
  593. "System.Reflection.Primitives": "4.0.1",
  594. "System.Reflection.TypeExtensions": "4.1.0",
  595. "System.Resources.ResourceManager": "4.0.1",
  596. "System.Runtime": "4.1.0",
  597. "System.Runtime.Extensions": "4.1.0",
  598. "System.Threading": "4.0.11"
  599. },
  600. "compile": {
  601. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  602. "related": ".xml"
  603. }
  604. },
  605. "runtime": {
  606. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  607. }
  608. },
  609. "System.ObjectModel/4.0.12": {
  610. "type": "package",
  611. "dependencies": {
  612. "System.Collections": "4.0.11",
  613. "System.Diagnostics.Debug": "4.0.11",
  614. "System.Resources.ResourceManager": "4.0.1",
  615. "System.Runtime": "4.1.0",
  616. "System.Threading": "4.0.11"
  617. },
  618. "compile": {
  619. "ref/netstandard1.3/System.ObjectModel.dll": {
  620. "related": ".xml"
  621. }
  622. },
  623. "runtime": {
  624. "lib/netstandard1.3/System.ObjectModel.dll": {}
  625. }
  626. },
  627. "System.Reflection/4.1.0": {
  628. "type": "package",
  629. "dependencies": {
  630. "Microsoft.NETCore.Platforms": "1.0.1",
  631. "Microsoft.NETCore.Targets": "1.0.1",
  632. "System.IO": "4.1.0",
  633. "System.Reflection.Primitives": "4.0.1",
  634. "System.Runtime": "4.1.0"
  635. },
  636. "compile": {
  637. "ref/netstandard1.5/System.Reflection.dll": {
  638. "related": ".xml"
  639. }
  640. }
  641. },
  642. "System.Reflection.Emit/4.0.1": {
  643. "type": "package",
  644. "dependencies": {
  645. "System.IO": "4.1.0",
  646. "System.Reflection": "4.1.0",
  647. "System.Reflection.Emit.ILGeneration": "4.0.1",
  648. "System.Reflection.Primitives": "4.0.1",
  649. "System.Runtime": "4.1.0"
  650. },
  651. "compile": {
  652. "ref/netstandard1.1/_._": {
  653. "related": ".xml"
  654. }
  655. },
  656. "runtime": {
  657. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  658. }
  659. },
  660. "System.Reflection.Emit.ILGeneration/4.0.1": {
  661. "type": "package",
  662. "dependencies": {
  663. "System.Reflection": "4.1.0",
  664. "System.Reflection.Primitives": "4.0.1",
  665. "System.Runtime": "4.1.0"
  666. },
  667. "compile": {
  668. "ref/netstandard1.0/_._": {
  669. "related": ".xml"
  670. }
  671. },
  672. "runtime": {
  673. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  674. }
  675. },
  676. "System.Reflection.Emit.Lightweight/4.0.1": {
  677. "type": "package",
  678. "dependencies": {
  679. "System.Reflection": "4.1.0",
  680. "System.Reflection.Emit.ILGeneration": "4.0.1",
  681. "System.Reflection.Primitives": "4.0.1",
  682. "System.Runtime": "4.1.0"
  683. },
  684. "compile": {
  685. "ref/netstandard1.0/_._": {
  686. "related": ".xml"
  687. }
  688. },
  689. "runtime": {
  690. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  691. }
  692. },
  693. "System.Reflection.Extensions/4.0.1": {
  694. "type": "package",
  695. "dependencies": {
  696. "Microsoft.NETCore.Platforms": "1.0.1",
  697. "Microsoft.NETCore.Targets": "1.0.1",
  698. "System.Reflection": "4.1.0",
  699. "System.Runtime": "4.1.0"
  700. },
  701. "compile": {
  702. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  703. "related": ".xml"
  704. }
  705. }
  706. },
  707. "System.Reflection.Metadata/1.6.0": {
  708. "type": "package",
  709. "compile": {
  710. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  711. "related": ".xml"
  712. }
  713. },
  714. "runtime": {
  715. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  716. "related": ".xml"
  717. }
  718. }
  719. },
  720. "System.Reflection.Primitives/4.0.1": {
  721. "type": "package",
  722. "dependencies": {
  723. "Microsoft.NETCore.Platforms": "1.0.1",
  724. "Microsoft.NETCore.Targets": "1.0.1",
  725. "System.Runtime": "4.1.0"
  726. },
  727. "compile": {
  728. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  729. "related": ".xml"
  730. }
  731. }
  732. },
  733. "System.Reflection.TypeExtensions/4.1.0": {
  734. "type": "package",
  735. "dependencies": {
  736. "System.Reflection": "4.1.0",
  737. "System.Runtime": "4.1.0"
  738. },
  739. "compile": {
  740. "ref/netstandard1.5/_._": {
  741. "related": ".xml"
  742. }
  743. },
  744. "runtime": {
  745. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  746. }
  747. },
  748. "System.Resources.ResourceManager/4.0.1": {
  749. "type": "package",
  750. "dependencies": {
  751. "Microsoft.NETCore.Platforms": "1.0.1",
  752. "Microsoft.NETCore.Targets": "1.0.1",
  753. "System.Globalization": "4.0.11",
  754. "System.Reflection": "4.1.0",
  755. "System.Runtime": "4.1.0"
  756. },
  757. "compile": {
  758. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  759. "related": ".xml"
  760. }
  761. }
  762. },
  763. "System.Runtime/4.1.0": {
  764. "type": "package",
  765. "dependencies": {
  766. "Microsoft.NETCore.Platforms": "1.0.1",
  767. "Microsoft.NETCore.Targets": "1.0.1"
  768. },
  769. "compile": {
  770. "ref/netstandard1.5/System.Runtime.dll": {
  771. "related": ".xml"
  772. }
  773. }
  774. },
  775. "System.Runtime.Extensions/4.1.0": {
  776. "type": "package",
  777. "dependencies": {
  778. "Microsoft.NETCore.Platforms": "1.0.1",
  779. "Microsoft.NETCore.Targets": "1.0.1",
  780. "System.Runtime": "4.1.0"
  781. },
  782. "compile": {
  783. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  784. "related": ".xml"
  785. }
  786. }
  787. },
  788. "System.Runtime.Handles/4.0.1": {
  789. "type": "package",
  790. "dependencies": {
  791. "Microsoft.NETCore.Platforms": "1.0.1",
  792. "Microsoft.NETCore.Targets": "1.0.1",
  793. "System.Runtime": "4.1.0"
  794. },
  795. "compile": {
  796. "ref/netstandard1.3/_._": {
  797. "related": ".xml"
  798. }
  799. }
  800. },
  801. "System.Runtime.InteropServices/4.1.0": {
  802. "type": "package",
  803. "dependencies": {
  804. "Microsoft.NETCore.Platforms": "1.0.1",
  805. "Microsoft.NETCore.Targets": "1.0.1",
  806. "System.Reflection": "4.1.0",
  807. "System.Reflection.Primitives": "4.0.1",
  808. "System.Runtime": "4.1.0",
  809. "System.Runtime.Handles": "4.0.1"
  810. },
  811. "compile": {
  812. "ref/netstandard1.5/_._": {
  813. "related": ".xml"
  814. }
  815. }
  816. },
  817. "System.Runtime.Serialization.Primitives/4.1.1": {
  818. "type": "package",
  819. "dependencies": {
  820. "System.Resources.ResourceManager": "4.0.1",
  821. "System.Runtime": "4.1.0"
  822. },
  823. "compile": {
  824. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  825. "related": ".xml"
  826. }
  827. },
  828. "runtime": {
  829. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  830. }
  831. },
  832. "System.Text.Encoding/4.0.11": {
  833. "type": "package",
  834. "dependencies": {
  835. "Microsoft.NETCore.Platforms": "1.0.1",
  836. "Microsoft.NETCore.Targets": "1.0.1",
  837. "System.Runtime": "4.1.0"
  838. },
  839. "compile": {
  840. "ref/netstandard1.3/System.Text.Encoding.dll": {
  841. "related": ".xml"
  842. }
  843. }
  844. },
  845. "System.Text.Encoding.Extensions/4.0.11": {
  846. "type": "package",
  847. "dependencies": {
  848. "Microsoft.NETCore.Platforms": "1.0.1",
  849. "Microsoft.NETCore.Targets": "1.0.1",
  850. "System.Runtime": "4.1.0",
  851. "System.Text.Encoding": "4.0.11"
  852. },
  853. "compile": {
  854. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  855. "related": ".xml"
  856. }
  857. }
  858. },
  859. "System.Text.RegularExpressions/4.1.0": {
  860. "type": "package",
  861. "dependencies": {
  862. "System.Collections": "4.0.11",
  863. "System.Globalization": "4.0.11",
  864. "System.Resources.ResourceManager": "4.0.1",
  865. "System.Runtime": "4.1.0",
  866. "System.Runtime.Extensions": "4.1.0",
  867. "System.Threading": "4.0.11"
  868. },
  869. "compile": {
  870. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {
  871. "related": ".xml"
  872. }
  873. },
  874. "runtime": {
  875. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  876. }
  877. },
  878. "System.Threading/4.0.11": {
  879. "type": "package",
  880. "dependencies": {
  881. "System.Runtime": "4.1.0",
  882. "System.Threading.Tasks": "4.0.11"
  883. },
  884. "compile": {
  885. "ref/netstandard1.3/System.Threading.dll": {
  886. "related": ".xml"
  887. }
  888. },
  889. "runtime": {
  890. "lib/netstandard1.3/System.Threading.dll": {}
  891. }
  892. },
  893. "System.Threading.Tasks/4.0.11": {
  894. "type": "package",
  895. "dependencies": {
  896. "Microsoft.NETCore.Platforms": "1.0.1",
  897. "Microsoft.NETCore.Targets": "1.0.1",
  898. "System.Runtime": "4.1.0"
  899. },
  900. "compile": {
  901. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  902. "related": ".xml"
  903. }
  904. }
  905. },
  906. "System.Threading.Tasks.Extensions/4.0.0": {
  907. "type": "package",
  908. "dependencies": {
  909. "System.Collections": "4.0.11",
  910. "System.Runtime": "4.1.0",
  911. "System.Threading.Tasks": "4.0.11"
  912. },
  913. "compile": {
  914. "lib/netstandard1.0/_._": {
  915. "related": ".xml"
  916. }
  917. },
  918. "runtime": {
  919. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  920. "related": ".xml"
  921. }
  922. }
  923. },
  924. "System.Xml.ReaderWriter/4.0.11": {
  925. "type": "package",
  926. "dependencies": {
  927. "System.Collections": "4.0.11",
  928. "System.Diagnostics.Debug": "4.0.11",
  929. "System.Globalization": "4.0.11",
  930. "System.IO": "4.1.0",
  931. "System.IO.FileSystem": "4.0.1",
  932. "System.IO.FileSystem.Primitives": "4.0.1",
  933. "System.Resources.ResourceManager": "4.0.1",
  934. "System.Runtime": "4.1.0",
  935. "System.Runtime.Extensions": "4.1.0",
  936. "System.Runtime.InteropServices": "4.1.0",
  937. "System.Text.Encoding": "4.0.11",
  938. "System.Text.Encoding.Extensions": "4.0.11",
  939. "System.Text.RegularExpressions": "4.1.0",
  940. "System.Threading.Tasks": "4.0.11",
  941. "System.Threading.Tasks.Extensions": "4.0.0"
  942. },
  943. "compile": {
  944. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  945. "related": ".xml"
  946. }
  947. },
  948. "runtime": {
  949. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  950. }
  951. },
  952. "System.Xml.XDocument/4.0.11": {
  953. "type": "package",
  954. "dependencies": {
  955. "System.Collections": "4.0.11",
  956. "System.Diagnostics.Debug": "4.0.11",
  957. "System.Diagnostics.Tools": "4.0.1",
  958. "System.Globalization": "4.0.11",
  959. "System.IO": "4.1.0",
  960. "System.Reflection": "4.1.0",
  961. "System.Resources.ResourceManager": "4.0.1",
  962. "System.Runtime": "4.1.0",
  963. "System.Runtime.Extensions": "4.1.0",
  964. "System.Text.Encoding": "4.0.11",
  965. "System.Threading": "4.0.11",
  966. "System.Xml.ReaderWriter": "4.0.11"
  967. },
  968. "compile": {
  969. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  970. "related": ".xml"
  971. }
  972. },
  973. "runtime": {
  974. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  975. }
  976. },
  977. "ConsoleApp4/1.0.0": {
  978. "type": "project",
  979. "framework": ".NETCoreApp,Version=v6.0",
  980. "compile": {
  981. "bin/placeholder/ConsoleApp4.dll": {}
  982. },
  983. "runtime": {
  984. "bin/placeholder/ConsoleApp4.dll": {}
  985. }
  986. }
  987. }
  988. },
  989. "libraries": {
  990. "coverlet.collector/3.1.2": {
  991. "sha512": "wuLDIDKD5XMt0A7lE31JPenT7QQwZPFkP5rRpdJeblyXZ9MGLI8rYjvm5fvAKln+2/X+4IxxQDxBtwdrqKNLZw==",
  992. "type": "package",
  993. "path": "coverlet.collector/3.1.2",
  994. "files": [
  995. ".nupkg.metadata",
  996. ".signature.p7s",
  997. "build/netstandard1.0/Microsoft.CSharp.dll",
  998. "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll",
  999. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  1000. "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll",
  1001. "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll",
  1002. "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  1003. "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  1004. "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1005. "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1006. "build/netstandard1.0/Mono.Cecil.Mdb.dll",
  1007. "build/netstandard1.0/Mono.Cecil.Pdb.dll",
  1008. "build/netstandard1.0/Mono.Cecil.Rocks.dll",
  1009. "build/netstandard1.0/Mono.Cecil.dll",
  1010. "build/netstandard1.0/Newtonsoft.Json.dll",
  1011. "build/netstandard1.0/NuGet.Frameworks.dll",
  1012. "build/netstandard1.0/System.AppContext.dll",
  1013. "build/netstandard1.0/System.Collections.Immutable.dll",
  1014. "build/netstandard1.0/System.Dynamic.Runtime.dll",
  1015. "build/netstandard1.0/System.IO.FileSystem.Primitives.dll",
  1016. "build/netstandard1.0/System.Linq.Expressions.dll",
  1017. "build/netstandard1.0/System.Linq.dll",
  1018. "build/netstandard1.0/System.ObjectModel.dll",
  1019. "build/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  1020. "build/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  1021. "build/netstandard1.0/System.Reflection.Emit.dll",
  1022. "build/netstandard1.0/System.Reflection.Metadata.dll",
  1023. "build/netstandard1.0/System.Reflection.TypeExtensions.dll",
  1024. "build/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  1025. "build/netstandard1.0/System.Text.RegularExpressions.dll",
  1026. "build/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  1027. "build/netstandard1.0/System.Threading.dll",
  1028. "build/netstandard1.0/System.Xml.ReaderWriter.dll",
  1029. "build/netstandard1.0/System.Xml.XDocument.dll",
  1030. "build/netstandard1.0/coverlet.collector.deps.json",
  1031. "build/netstandard1.0/coverlet.collector.dll",
  1032. "build/netstandard1.0/coverlet.collector.pdb",
  1033. "build/netstandard1.0/coverlet.collector.targets",
  1034. "build/netstandard1.0/coverlet.core.dll",
  1035. "build/netstandard1.0/coverlet.core.pdb",
  1036. "coverlet-icon.png",
  1037. "coverlet.collector.3.1.2.nupkg.sha512",
  1038. "coverlet.collector.nuspec"
  1039. ]
  1040. },
  1041. "Microsoft.CodeCoverage/17.1.0": {
  1042. "sha512": "0N/ZJ71ncCxQWhgtkEYKOgu2oMHa8h1tsOUbhmIKXF8UwtSUCe4vHAsJ3DVcNWRwNfQzSTy263ZE+QF6MdIhhQ==",
  1043. "type": "package",
  1044. "path": "microsoft.codecoverage/17.1.0",
  1045. "files": [
  1046. ".nupkg.metadata",
  1047. ".signature.p7s",
  1048. "Icon.png",
  1049. "LICENSE_NET.txt",
  1050. "ThirdPartyNotices.txt",
  1051. "build/netstandard1.0/CodeCoverage/CodeCoverage.config",
  1052. "build/netstandard1.0/CodeCoverage/CodeCoverage.exe",
  1053. "build/netstandard1.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config",
  1054. "build/netstandard1.0/CodeCoverage/amd64/CodeCoverage.exe",
  1055. "build/netstandard1.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config",
  1056. "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll",
  1057. "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll",
  1058. "build/netstandard1.0/CodeCoverage/amd64/msvcdis140.dll",
  1059. "build/netstandard1.0/CodeCoverage/amd64/msvcp140.dll",
  1060. "build/netstandard1.0/CodeCoverage/amd64/msvcp140_atomic_wait.dll",
  1061. "build/netstandard1.0/CodeCoverage/amd64/vcruntime140.dll",
  1062. "build/netstandard1.0/CodeCoverage/amd64/vcruntime140_1.dll",
  1063. "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll",
  1064. "build/netstandard1.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  1065. "build/netstandard1.0/CodeCoverage/covrun32.dll",
  1066. "build/netstandard1.0/CodeCoverage/msdia140.dll",
  1067. "build/netstandard1.0/CodeCoverage/msvcdis140.dll",
  1068. "build/netstandard1.0/CodeCoverage/msvcp140.dll",
  1069. "build/netstandard1.0/CodeCoverage/msvcp140_atomic_wait.dll",
  1070. "build/netstandard1.0/CodeCoverage/vcruntime140.dll",
  1071. "build/netstandard1.0/InstrumentationEngine/alpine/x64/VanguardInstrumentationProfiler_x64.config",
  1072. "build/netstandard1.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so",
  1073. "build/netstandard1.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so",
  1074. "build/netstandard1.0/InstrumentationEngine/macos/x64/VanguardInstrumentationProfiler_x64.config",
  1075. "build/netstandard1.0/InstrumentationEngine/macos/x64/libCoverageInstrumentationMethod.dylib",
  1076. "build/netstandard1.0/InstrumentationEngine/macos/x64/libInstrumentationEngine.dylib",
  1077. "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/VanguardInstrumentationProfiler_x64.config",
  1078. "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so",
  1079. "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so",
  1080. "build/netstandard1.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll",
  1081. "build/netstandard1.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll",
  1082. "build/netstandard1.0/Microsoft.CodeCoverage.props",
  1083. "build/netstandard1.0/Microsoft.CodeCoverage.targets",
  1084. "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Core.dll",
  1085. "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Instrumentation.dll",
  1086. "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Interprocess.dll",
  1087. "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll",
  1088. "build/netstandard1.0/Mono.Cecil.Pdb.dll",
  1089. "build/netstandard1.0/Mono.Cecil.dll",
  1090. "build/netstandard1.0/ThirdPartyNotices.txt",
  1091. "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1092. "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1093. "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1094. "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1095. "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1096. "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1097. "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1098. "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1099. "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1100. "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1101. "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1102. "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1103. "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  1104. "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  1105. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  1106. "microsoft.codecoverage.17.1.0.nupkg.sha512",
  1107. "microsoft.codecoverage.nuspec"
  1108. ]
  1109. },
  1110. "Microsoft.CSharp/4.0.1": {
  1111. "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
  1112. "type": "package",
  1113. "path": "microsoft.csharp/4.0.1",
  1114. "files": [
  1115. ".nupkg.metadata",
  1116. ".signature.p7s",
  1117. "ThirdPartyNotices.txt",
  1118. "dotnet_library_license.txt",
  1119. "lib/MonoAndroid10/_._",
  1120. "lib/MonoTouch10/_._",
  1121. "lib/net45/_._",
  1122. "lib/netcore50/Microsoft.CSharp.dll",
  1123. "lib/netstandard1.3/Microsoft.CSharp.dll",
  1124. "lib/portable-net45+win8+wp8+wpa81/_._",
  1125. "lib/win8/_._",
  1126. "lib/wp80/_._",
  1127. "lib/wpa81/_._",
  1128. "lib/xamarinios10/_._",
  1129. "lib/xamarinmac20/_._",
  1130. "lib/xamarintvos10/_._",
  1131. "lib/xamarinwatchos10/_._",
  1132. "microsoft.csharp.4.0.1.nupkg.sha512",
  1133. "microsoft.csharp.nuspec",
  1134. "ref/MonoAndroid10/_._",
  1135. "ref/MonoTouch10/_._",
  1136. "ref/net45/_._",
  1137. "ref/netcore50/Microsoft.CSharp.dll",
  1138. "ref/netcore50/Microsoft.CSharp.xml",
  1139. "ref/netcore50/de/Microsoft.CSharp.xml",
  1140. "ref/netcore50/es/Microsoft.CSharp.xml",
  1141. "ref/netcore50/fr/Microsoft.CSharp.xml",
  1142. "ref/netcore50/it/Microsoft.CSharp.xml",
  1143. "ref/netcore50/ja/Microsoft.CSharp.xml",
  1144. "ref/netcore50/ko/Microsoft.CSharp.xml",
  1145. "ref/netcore50/ru/Microsoft.CSharp.xml",
  1146. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  1147. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  1148. "ref/netstandard1.0/Microsoft.CSharp.dll",
  1149. "ref/netstandard1.0/Microsoft.CSharp.xml",
  1150. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  1151. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  1152. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  1153. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  1154. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  1155. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  1156. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  1157. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  1158. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  1159. "ref/portable-net45+win8+wp8+wpa81/_._",
  1160. "ref/win8/_._",
  1161. "ref/wp80/_._",
  1162. "ref/wpa81/_._",
  1163. "ref/xamarinios10/_._",
  1164. "ref/xamarinmac20/_._",
  1165. "ref/xamarintvos10/_._",
  1166. "ref/xamarinwatchos10/_._"
  1167. ]
  1168. },
  1169. "Microsoft.NET.Test.Sdk/17.1.0": {
  1170. "sha512": "MVKvOsHIfrZrvg+8aqOF5dknO/qWrR1sWZjMPQ1N42MKMlL/zQL30FQFZxPeWfmVKWUWAOmAHYsqB5OerTKziw==",
  1171. "type": "package",
  1172. "path": "microsoft.net.test.sdk/17.1.0",
  1173. "files": [
  1174. ".nupkg.metadata",
  1175. ".signature.p7s",
  1176. "Icon.png",
  1177. "LICENSE_NET.txt",
  1178. "build/net40/Microsoft.NET.Test.Sdk.props",
  1179. "build/net40/Microsoft.NET.Test.Sdk.targets",
  1180. "build/net45/Microsoft.NET.Test.Sdk.props",
  1181. "build/net45/Microsoft.NET.Test.Sdk.targets",
  1182. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs",
  1183. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs",
  1184. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb",
  1185. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props",
  1186. "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets",
  1187. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs",
  1188. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs",
  1189. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb",
  1190. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props",
  1191. "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets",
  1192. "build/uap10.0/Microsoft.NET.Test.Sdk.props",
  1193. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props",
  1194. "lib/net40/_._",
  1195. "lib/net45/_._",
  1196. "lib/netcoreapp1.0/_._",
  1197. "lib/netcoreapp2.1/_._",
  1198. "lib/uap10.0/_._",
  1199. "microsoft.net.test.sdk.17.1.0.nupkg.sha512",
  1200. "microsoft.net.test.sdk.nuspec"
  1201. ]
  1202. },
  1203. "Microsoft.NETCore.Platforms/1.1.0": {
  1204. "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  1205. "type": "package",
  1206. "path": "microsoft.netcore.platforms/1.1.0",
  1207. "files": [
  1208. ".nupkg.metadata",
  1209. ".signature.p7s",
  1210. "ThirdPartyNotices.txt",
  1211. "dotnet_library_license.txt",
  1212. "lib/netstandard1.0/_._",
  1213. "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
  1214. "microsoft.netcore.platforms.nuspec",
  1215. "runtime.json"
  1216. ]
  1217. },
  1218. "Microsoft.NETCore.Targets/1.0.1": {
  1219. "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==",
  1220. "type": "package",
  1221. "path": "microsoft.netcore.targets/1.0.1",
  1222. "files": [
  1223. ".nupkg.metadata",
  1224. ".signature.p7s",
  1225. "ThirdPartyNotices.txt",
  1226. "dotnet_library_license.txt",
  1227. "lib/netstandard1.0/_._",
  1228. "microsoft.netcore.targets.1.0.1.nupkg.sha512",
  1229. "microsoft.netcore.targets.nuspec",
  1230. "runtime.json"
  1231. ]
  1232. },
  1233. "Microsoft.TestPlatform.ObjectModel/17.1.0": {
  1234. "sha512": "OMo/FYnKGy3lZEK0gfitskRM3ga/YBt6MyCyFPq0xNLeybGOQ6HnYNAAvzyePo5WPuMiw3LX+HiuRWNjnas1fA==",
  1235. "type": "package",
  1236. "path": "microsoft.testplatform.objectmodel/17.1.0",
  1237. "files": [
  1238. ".nupkg.metadata",
  1239. ".signature.p7s",
  1240. "Icon.png",
  1241. "LICENSE_NET.txt",
  1242. "lib/net45/Microsoft.TestPlatform.CoreUtilities.dll",
  1243. "lib/net45/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1244. "lib/net45/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1245. "lib/net45/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1246. "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1247. "lib/net45/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1248. "lib/net45/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1249. "lib/net45/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1250. "lib/net45/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1251. "lib/net45/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1252. "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1253. "lib/net45/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1254. "lib/net45/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1255. "lib/net45/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1256. "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1257. "lib/net45/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1258. "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1259. "lib/net45/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1260. "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1261. "lib/net45/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1262. "lib/net45/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1263. "lib/net45/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1264. "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1265. "lib/net45/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1266. "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1267. "lib/net45/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1268. "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1269. "lib/net45/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1270. "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1271. "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll",
  1272. "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1273. "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1274. "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1275. "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1276. "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1277. "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1278. "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1279. "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1280. "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1281. "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1282. "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1283. "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1284. "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1285. "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1286. "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1287. "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1288. "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1289. "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1290. "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1291. "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1292. "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1293. "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1294. "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1295. "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1296. "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1297. "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1298. "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1299. "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1300. "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  1301. "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1302. "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1303. "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1304. "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1305. "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1306. "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1307. "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1308. "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1309. "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1310. "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1311. "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1312. "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1313. "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1314. "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1315. "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1316. "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1317. "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1318. "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1319. "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1320. "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1321. "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1322. "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1323. "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1324. "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1325. "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1326. "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1327. "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1328. "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1329. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll",
  1330. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1331. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1332. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1333. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1334. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1335. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1336. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1337. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1338. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1339. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1340. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1341. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1342. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1343. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1344. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1345. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1346. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1347. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1348. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1349. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1350. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1351. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1352. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1353. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1354. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1355. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1356. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1357. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1358. "lib/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  1359. "lib/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1360. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1361. "lib/netstandard1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1362. "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1363. "lib/netstandard1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1364. "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1365. "lib/netstandard1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1366. "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1367. "lib/netstandard1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1368. "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1369. "lib/netstandard1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1370. "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1371. "lib/netstandard1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1372. "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1373. "lib/netstandard1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1374. "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1375. "lib/netstandard1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1376. "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1377. "lib/netstandard1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1378. "lib/netstandard1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1379. "lib/netstandard1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1380. "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1381. "lib/netstandard1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1382. "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1383. "lib/netstandard1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1384. "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1385. "lib/netstandard1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1386. "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1387. "lib/netstandard1.3/Microsoft.TestPlatform.CoreUtilities.dll",
  1388. "lib/netstandard1.3/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1389. "lib/netstandard1.3/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1390. "lib/netstandard1.3/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1391. "lib/netstandard1.3/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1392. "lib/netstandard1.3/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1393. "lib/netstandard1.3/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1394. "lib/netstandard1.3/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1395. "lib/netstandard1.3/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1396. "lib/netstandard1.3/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1397. "lib/netstandard1.3/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1398. "lib/netstandard1.3/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1399. "lib/netstandard1.3/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1400. "lib/netstandard1.3/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1401. "lib/netstandard1.3/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1402. "lib/netstandard1.3/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1403. "lib/netstandard1.3/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1404. "lib/netstandard1.3/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1405. "lib/netstandard1.3/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1406. "lib/netstandard1.3/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1407. "lib/netstandard1.3/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1408. "lib/netstandard1.3/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1409. "lib/netstandard1.3/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1410. "lib/netstandard1.3/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1411. "lib/netstandard1.3/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1412. "lib/netstandard1.3/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1413. "lib/netstandard1.3/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1414. "lib/netstandard1.3/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1415. "lib/netstandard1.3/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1416. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll",
  1417. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1418. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1419. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1420. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1421. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1422. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1423. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1424. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1425. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1426. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1427. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1428. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1429. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1430. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1431. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1432. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1433. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1434. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1435. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1436. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1437. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1438. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1439. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1440. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1441. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1442. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1443. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1444. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1445. "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll",
  1446. "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1447. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1448. "lib/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1449. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1450. "lib/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1451. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1452. "lib/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1453. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1454. "lib/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1455. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1456. "lib/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1457. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1458. "lib/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1459. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1460. "lib/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1461. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1462. "lib/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1463. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1464. "lib/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1465. "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1466. "lib/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1467. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1468. "lib/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1469. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1470. "lib/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1471. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1472. "lib/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1473. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1474. "microsoft.testplatform.objectmodel.17.1.0.nupkg.sha512",
  1475. "microsoft.testplatform.objectmodel.nuspec"
  1476. ]
  1477. },
  1478. "Microsoft.TestPlatform.TestHost/17.1.0": {
  1479. "sha512": "JS0JDLniDhIzkSPLHz7N/x1CG8ywJOtwInFDYA3KQvbz+ojGoT5MT2YDVReL1b86zmNRV8339vsTSm/zh0RcMg==",
  1480. "type": "package",
  1481. "path": "microsoft.testplatform.testhost/17.1.0",
  1482. "files": [
  1483. ".nupkg.metadata",
  1484. ".signature.p7s",
  1485. "Icon.png",
  1486. "LICENSE_NET.txt",
  1487. "ThirdPartyNotices.txt",
  1488. "build/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1489. "build/netcoreapp1.0/Microsoft.TestPlatform.TestHost.props",
  1490. "build/netcoreapp1.0/x64/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1491. "build/netcoreapp1.0/x64/testhost.dll",
  1492. "build/netcoreapp1.0/x64/testhost.exe",
  1493. "build/netcoreapp1.0/x86/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1494. "build/netcoreapp1.0/x86/testhost.x86.dll",
  1495. "build/netcoreapp1.0/x86/testhost.x86.exe",
  1496. "build/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1497. "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props",
  1498. "build/netcoreapp2.1/x64/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1499. "build/netcoreapp2.1/x64/testhost.dll",
  1500. "build/netcoreapp2.1/x64/testhost.exe",
  1501. "build/netcoreapp2.1/x86/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1502. "build/netcoreapp2.1/x86/testhost.x86.dll",
  1503. "build/netcoreapp2.1/x86/testhost.x86.exe",
  1504. "build/uap10.0/Microsoft.TestPlatform.TestHost.props",
  1505. "build/uap10.0/Microsoft.TestPlatform.TestHost.targets",
  1506. "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1507. "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1508. "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1509. "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll",
  1510. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1511. "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1512. "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1513. "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1514. "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1515. "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll",
  1516. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1517. "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1518. "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1519. "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1520. "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1521. "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll",
  1522. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1523. "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1524. "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1525. "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1526. "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1527. "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll",
  1528. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1529. "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1530. "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1531. "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1532. "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1533. "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll",
  1534. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1535. "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1536. "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1537. "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1538. "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1539. "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll",
  1540. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1541. "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1542. "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1543. "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1544. "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1545. "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll",
  1546. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1547. "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1548. "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1549. "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1550. "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1551. "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll",
  1552. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1553. "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1554. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1555. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1556. "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1557. "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll",
  1558. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1559. "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1560. "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1561. "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1562. "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1563. "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll",
  1564. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1565. "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1566. "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1567. "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1568. "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1569. "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll",
  1570. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1571. "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1572. "build/uap10.0/x64/msdia140.dll",
  1573. "build/uap10.0/x86/msdia140.dll",
  1574. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1575. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1576. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1577. "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll",
  1578. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1579. "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1580. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1581. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1582. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1583. "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll",
  1584. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1585. "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1586. "lib/net45/_._",
  1587. "lib/netcoreapp1.0/Microsoft.TestPlatform.CommunicationUtilities.dll",
  1588. "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll",
  1589. "lib/netcoreapp1.0/Microsoft.TestPlatform.CrossPlatEngine.dll",
  1590. "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1591. "lib/netcoreapp1.0/Microsoft.TestPlatform.Utilities.dll",
  1592. "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.Common.dll",
  1593. "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1594. "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1595. "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1596. "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1597. "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1598. "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1599. "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1600. "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1601. "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1602. "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1603. "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1604. "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1605. "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1606. "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1607. "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1608. "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1609. "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1610. "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1611. "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1612. "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1613. "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1614. "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1615. "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1616. "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1617. "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1618. "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1619. "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1620. "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1621. "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1622. "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1623. "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1624. "lib/netcoreapp1.0/testhost.deps.json",
  1625. "lib/netcoreapp1.0/testhost.dll",
  1626. "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1627. "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1628. "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1629. "lib/netcoreapp1.0/x64/msdia140.dll",
  1630. "lib/netcoreapp1.0/x86/msdia140.dll",
  1631. "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1632. "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1633. "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1634. "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1635. "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1636. "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1637. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll",
  1638. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll",
  1639. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll",
  1640. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1641. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll",
  1642. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll",
  1643. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1644. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1645. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1646. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1647. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1648. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1649. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1650. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1651. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1652. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1653. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1654. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1655. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1656. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1657. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1658. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1659. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1660. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1661. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1662. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1663. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1664. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1665. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1666. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1667. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1668. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1669. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1670. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1671. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1672. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1673. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1674. "lib/netcoreapp2.1/testhost.deps.json",
  1675. "lib/netcoreapp2.1/testhost.dll",
  1676. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1677. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1678. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1679. "lib/netcoreapp2.1/x64/msdia140.dll",
  1680. "lib/netcoreapp2.1/x86/msdia140.dll",
  1681. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1682. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1683. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1684. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1685. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1686. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1687. "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll",
  1688. "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll",
  1689. "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll",
  1690. "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1691. "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll",
  1692. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll",
  1693. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1694. "lib/uap10.0/testhost.dll",
  1695. "microsoft.testplatform.testhost.17.1.0.nupkg.sha512",
  1696. "microsoft.testplatform.testhost.nuspec"
  1697. ]
  1698. },
  1699. "NETStandard.Library/2.0.0": {
  1700. "sha512": "7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==",
  1701. "type": "package",
  1702. "path": "netstandard.library/2.0.0",
  1703. "files": [
  1704. ".nupkg.metadata",
  1705. ".signature.p7s",
  1706. "LICENSE.TXT",
  1707. "THIRD-PARTY-NOTICES.TXT",
  1708. "build/NETStandard.Library.targets",
  1709. "build/netstandard2.0/NETStandard.Library.targets",
  1710. "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
  1711. "build/netstandard2.0/ref/System.AppContext.dll",
  1712. "build/netstandard2.0/ref/System.Collections.Concurrent.dll",
  1713. "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
  1714. "build/netstandard2.0/ref/System.Collections.Specialized.dll",
  1715. "build/netstandard2.0/ref/System.Collections.dll",
  1716. "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
  1717. "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
  1718. "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
  1719. "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
  1720. "build/netstandard2.0/ref/System.ComponentModel.dll",
  1721. "build/netstandard2.0/ref/System.Console.dll",
  1722. "build/netstandard2.0/ref/System.Core.dll",
  1723. "build/netstandard2.0/ref/System.Data.Common.dll",
  1724. "build/netstandard2.0/ref/System.Data.dll",
  1725. "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
  1726. "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
  1727. "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
  1728. "build/netstandard2.0/ref/System.Diagnostics.Process.dll",
  1729. "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
  1730. "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
  1731. "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
  1732. "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
  1733. "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
  1734. "build/netstandard2.0/ref/System.Drawing.Primitives.dll",
  1735. "build/netstandard2.0/ref/System.Drawing.dll",
  1736. "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
  1737. "build/netstandard2.0/ref/System.Globalization.Calendars.dll",
  1738. "build/netstandard2.0/ref/System.Globalization.Extensions.dll",
  1739. "build/netstandard2.0/ref/System.Globalization.dll",
  1740. "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
  1741. "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
  1742. "build/netstandard2.0/ref/System.IO.Compression.dll",
  1743. "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
  1744. "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
  1745. "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
  1746. "build/netstandard2.0/ref/System.IO.FileSystem.dll",
  1747. "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
  1748. "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
  1749. "build/netstandard2.0/ref/System.IO.Pipes.dll",
  1750. "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
  1751. "build/netstandard2.0/ref/System.IO.dll",
  1752. "build/netstandard2.0/ref/System.Linq.Expressions.dll",
  1753. "build/netstandard2.0/ref/System.Linq.Parallel.dll",
  1754. "build/netstandard2.0/ref/System.Linq.Queryable.dll",
  1755. "build/netstandard2.0/ref/System.Linq.dll",
  1756. "build/netstandard2.0/ref/System.Net.Http.dll",
  1757. "build/netstandard2.0/ref/System.Net.NameResolution.dll",
  1758. "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
  1759. "build/netstandard2.0/ref/System.Net.Ping.dll",
  1760. "build/netstandard2.0/ref/System.Net.Primitives.dll",
  1761. "build/netstandard2.0/ref/System.Net.Requests.dll",
  1762. "build/netstandard2.0/ref/System.Net.Security.dll",
  1763. "build/netstandard2.0/ref/System.Net.Sockets.dll",
  1764. "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
  1765. "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
  1766. "build/netstandard2.0/ref/System.Net.WebSockets.dll",
  1767. "build/netstandard2.0/ref/System.Net.dll",
  1768. "build/netstandard2.0/ref/System.Numerics.dll",
  1769. "build/netstandard2.0/ref/System.ObjectModel.dll",
  1770. "build/netstandard2.0/ref/System.Reflection.Extensions.dll",
  1771. "build/netstandard2.0/ref/System.Reflection.Primitives.dll",
  1772. "build/netstandard2.0/ref/System.Reflection.dll",
  1773. "build/netstandard2.0/ref/System.Resources.Reader.dll",
  1774. "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
  1775. "build/netstandard2.0/ref/System.Resources.Writer.dll",
  1776. "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
  1777. "build/netstandard2.0/ref/System.Runtime.Extensions.dll",
  1778. "build/netstandard2.0/ref/System.Runtime.Handles.dll",
  1779. "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
  1780. "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
  1781. "build/netstandard2.0/ref/System.Runtime.Numerics.dll",
  1782. "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
  1783. "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
  1784. "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
  1785. "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
  1786. "build/netstandard2.0/ref/System.Runtime.Serialization.dll",
  1787. "build/netstandard2.0/ref/System.Runtime.dll",
  1788. "build/netstandard2.0/ref/System.Security.Claims.dll",
  1789. "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
  1790. "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
  1791. "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
  1792. "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
  1793. "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
  1794. "build/netstandard2.0/ref/System.Security.Principal.dll",
  1795. "build/netstandard2.0/ref/System.Security.SecureString.dll",
  1796. "build/netstandard2.0/ref/System.ServiceModel.Web.dll",
  1797. "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
  1798. "build/netstandard2.0/ref/System.Text.Encoding.dll",
  1799. "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
  1800. "build/netstandard2.0/ref/System.Threading.Overlapped.dll",
  1801. "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
  1802. "build/netstandard2.0/ref/System.Threading.Tasks.dll",
  1803. "build/netstandard2.0/ref/System.Threading.Thread.dll",
  1804. "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
  1805. "build/netstandard2.0/ref/System.Threading.Timer.dll",
  1806. "build/netstandard2.0/ref/System.Threading.dll",
  1807. "build/netstandard2.0/ref/System.Transactions.dll",
  1808. "build/netstandard2.0/ref/System.ValueTuple.dll",
  1809. "build/netstandard2.0/ref/System.Web.dll",
  1810. "build/netstandard2.0/ref/System.Windows.dll",
  1811. "build/netstandard2.0/ref/System.Xml.Linq.dll",
  1812. "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
  1813. "build/netstandard2.0/ref/System.Xml.Serialization.dll",
  1814. "build/netstandard2.0/ref/System.Xml.XDocument.dll",
  1815. "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
  1816. "build/netstandard2.0/ref/System.Xml.XPath.dll",
  1817. "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
  1818. "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
  1819. "build/netstandard2.0/ref/System.Xml.dll",
  1820. "build/netstandard2.0/ref/System.dll",
  1821. "build/netstandard2.0/ref/mscorlib.dll",
  1822. "build/netstandard2.0/ref/netstandard.dll",
  1823. "build/netstandard2.0/ref/netstandard.xml",
  1824. "lib/netstandard1.0/_._",
  1825. "netstandard.library.2.0.0.nupkg.sha512",
  1826. "netstandard.library.nuspec"
  1827. ]
  1828. },
  1829. "Newtonsoft.Json/9.0.1": {
  1830. "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
  1831. "type": "package",
  1832. "path": "newtonsoft.json/9.0.1",
  1833. "hasTools": true,
  1834. "files": [
  1835. ".nupkg.metadata",
  1836. ".signature.p7s",
  1837. "lib/net20/Newtonsoft.Json.dll",
  1838. "lib/net20/Newtonsoft.Json.xml",
  1839. "lib/net35/Newtonsoft.Json.dll",
  1840. "lib/net35/Newtonsoft.Json.xml",
  1841. "lib/net40/Newtonsoft.Json.dll",
  1842. "lib/net40/Newtonsoft.Json.xml",
  1843. "lib/net45/Newtonsoft.Json.dll",
  1844. "lib/net45/Newtonsoft.Json.xml",
  1845. "lib/netstandard1.0/Newtonsoft.Json.dll",
  1846. "lib/netstandard1.0/Newtonsoft.Json.xml",
  1847. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
  1848. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
  1849. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
  1850. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
  1851. "newtonsoft.json.9.0.1.nupkg.sha512",
  1852. "newtonsoft.json.nuspec",
  1853. "tools/install.ps1"
  1854. ]
  1855. },
  1856. "NuGet.Frameworks/5.11.0": {
  1857. "sha512": "eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==",
  1858. "type": "package",
  1859. "path": "nuget.frameworks/5.11.0",
  1860. "files": [
  1861. ".nupkg.metadata",
  1862. ".signature.p7s",
  1863. "icon.png",
  1864. "lib/net40/NuGet.Frameworks.dll",
  1865. "lib/net40/NuGet.Frameworks.xml",
  1866. "lib/net472/NuGet.Frameworks.dll",
  1867. "lib/net472/NuGet.Frameworks.xml",
  1868. "lib/netstandard2.0/NuGet.Frameworks.dll",
  1869. "lib/netstandard2.0/NuGet.Frameworks.xml",
  1870. "nuget.frameworks.5.11.0.nupkg.sha512",
  1871. "nuget.frameworks.nuspec"
  1872. ]
  1873. },
  1874. "NUnit/3.13.3": {
  1875. "sha512": "KNPDpls6EfHwC3+nnA67fh5wpxeLb3VLFAfLxrug6JMYDLHH6InaQIWR7Sc3y75d/9IKzMksH/gi08W7XWbmnQ==",
  1876. "type": "package",
  1877. "path": "nunit/3.13.3",
  1878. "files": [
  1879. ".nupkg.metadata",
  1880. ".signature.p7s",
  1881. "CHANGES.md",
  1882. "LICENSE.txt",
  1883. "NOTICES.txt",
  1884. "build/NUnit.props",
  1885. "icon.png",
  1886. "lib/net35/nunit.framework.dll",
  1887. "lib/net35/nunit.framework.xml",
  1888. "lib/net40/nunit.framework.dll",
  1889. "lib/net40/nunit.framework.xml",
  1890. "lib/net45/nunit.framework.dll",
  1891. "lib/net45/nunit.framework.xml",
  1892. "lib/netstandard2.0/nunit.framework.dll",
  1893. "lib/netstandard2.0/nunit.framework.xml",
  1894. "nunit.3.13.3.nupkg.sha512",
  1895. "nunit.nuspec"
  1896. ]
  1897. },
  1898. "NUnit.Analyzers/3.3.0": {
  1899. "sha512": "gyRc0qmXUIjHaTcHTWZDHK5ccOF6cLEOGQJ6Fj5JWKh8/W1XzPFC6zGXRu5sDNSxfKaNeQRmkdz3M73ArQkY1A==",
  1900. "type": "package",
  1901. "path": "nunit.analyzers/3.3.0",
  1902. "hasTools": true,
  1903. "files": [
  1904. ".nupkg.metadata",
  1905. ".signature.p7s",
  1906. "analyzers/dotnet/cs/nunit.analyzers.dll",
  1907. "images/nunit_256.png",
  1908. "license.txt",
  1909. "nunit.analyzers.3.3.0.nupkg.sha512",
  1910. "nunit.analyzers.nuspec",
  1911. "tools/install.ps1",
  1912. "tools/uninstall.ps1"
  1913. ]
  1914. },
  1915. "NUnit3TestAdapter/4.2.1": {
  1916. "sha512": "kgH8VKsrcZZgNGQXRpVCrM7TnNz9li3b/snH+YmnXUNqsaWa1Xw9EQWHpbzq4Li2FbTjTE/E5N5HdLNXzZ8BpQ==",
  1917. "type": "package",
  1918. "path": "nunit3testadapter/4.2.1",
  1919. "files": [
  1920. ".nupkg.metadata",
  1921. ".signature.p7s",
  1922. "build/net35/NUnit3.TestAdapter.dll",
  1923. "build/net35/NUnit3.TestAdapter.pdb",
  1924. "build/net35/NUnit3TestAdapter.props",
  1925. "build/net35/nunit.engine.api.dll",
  1926. "build/net35/nunit.engine.core.dll",
  1927. "build/net35/nunit.engine.dll",
  1928. "build/net35/testcentric.engine.metadata.dll",
  1929. "build/netcoreapp2.1/NUnit3.TestAdapter.dll",
  1930. "build/netcoreapp2.1/NUnit3.TestAdapter.pdb",
  1931. "build/netcoreapp2.1/NUnit3TestAdapter.props",
  1932. "build/netcoreapp2.1/nunit.engine.api.dll",
  1933. "build/netcoreapp2.1/nunit.engine.core.dll",
  1934. "build/netcoreapp2.1/nunit.engine.dll",
  1935. "build/netcoreapp2.1/testcentric.engine.metadata.dll",
  1936. "nunit3testadapter.4.2.1.nupkg.sha512",
  1937. "nunit3testadapter.nuspec"
  1938. ]
  1939. },
  1940. "System.Collections/4.0.11": {
  1941. "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  1942. "type": "package",
  1943. "path": "system.collections/4.0.11",
  1944. "files": [
  1945. ".nupkg.metadata",
  1946. ".signature.p7s",
  1947. "ThirdPartyNotices.txt",
  1948. "dotnet_library_license.txt",
  1949. "lib/MonoAndroid10/_._",
  1950. "lib/MonoTouch10/_._",
  1951. "lib/net45/_._",
  1952. "lib/portable-net45+win8+wp8+wpa81/_._",
  1953. "lib/win8/_._",
  1954. "lib/wp80/_._",
  1955. "lib/wpa81/_._",
  1956. "lib/xamarinios10/_._",
  1957. "lib/xamarinmac20/_._",
  1958. "lib/xamarintvos10/_._",
  1959. "lib/xamarinwatchos10/_._",
  1960. "ref/MonoAndroid10/_._",
  1961. "ref/MonoTouch10/_._",
  1962. "ref/net45/_._",
  1963. "ref/netcore50/System.Collections.dll",
  1964. "ref/netcore50/System.Collections.xml",
  1965. "ref/netcore50/de/System.Collections.xml",
  1966. "ref/netcore50/es/System.Collections.xml",
  1967. "ref/netcore50/fr/System.Collections.xml",
  1968. "ref/netcore50/it/System.Collections.xml",
  1969. "ref/netcore50/ja/System.Collections.xml",
  1970. "ref/netcore50/ko/System.Collections.xml",
  1971. "ref/netcore50/ru/System.Collections.xml",
  1972. "ref/netcore50/zh-hans/System.Collections.xml",
  1973. "ref/netcore50/zh-hant/System.Collections.xml",
  1974. "ref/netstandard1.0/System.Collections.dll",
  1975. "ref/netstandard1.0/System.Collections.xml",
  1976. "ref/netstandard1.0/de/System.Collections.xml",
  1977. "ref/netstandard1.0/es/System.Collections.xml",
  1978. "ref/netstandard1.0/fr/System.Collections.xml",
  1979. "ref/netstandard1.0/it/System.Collections.xml",
  1980. "ref/netstandard1.0/ja/System.Collections.xml",
  1981. "ref/netstandard1.0/ko/System.Collections.xml",
  1982. "ref/netstandard1.0/ru/System.Collections.xml",
  1983. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  1984. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  1985. "ref/netstandard1.3/System.Collections.dll",
  1986. "ref/netstandard1.3/System.Collections.xml",
  1987. "ref/netstandard1.3/de/System.Collections.xml",
  1988. "ref/netstandard1.3/es/System.Collections.xml",
  1989. "ref/netstandard1.3/fr/System.Collections.xml",
  1990. "ref/netstandard1.3/it/System.Collections.xml",
  1991. "ref/netstandard1.3/ja/System.Collections.xml",
  1992. "ref/netstandard1.3/ko/System.Collections.xml",
  1993. "ref/netstandard1.3/ru/System.Collections.xml",
  1994. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  1995. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  1996. "ref/portable-net45+win8+wp8+wpa81/_._",
  1997. "ref/win8/_._",
  1998. "ref/wp80/_._",
  1999. "ref/wpa81/_._",
  2000. "ref/xamarinios10/_._",
  2001. "ref/xamarinmac20/_._",
  2002. "ref/xamarintvos10/_._",
  2003. "ref/xamarinwatchos10/_._",
  2004. "system.collections.4.0.11.nupkg.sha512",
  2005. "system.collections.nuspec"
  2006. ]
  2007. },
  2008. "System.Diagnostics.Debug/4.0.11": {
  2009. "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  2010. "type": "package",
  2011. "path": "system.diagnostics.debug/4.0.11",
  2012. "files": [
  2013. ".nupkg.metadata",
  2014. ".signature.p7s",
  2015. "ThirdPartyNotices.txt",
  2016. "dotnet_library_license.txt",
  2017. "lib/MonoAndroid10/_._",
  2018. "lib/MonoTouch10/_._",
  2019. "lib/net45/_._",
  2020. "lib/portable-net45+win8+wp8+wpa81/_._",
  2021. "lib/win8/_._",
  2022. "lib/wp80/_._",
  2023. "lib/wpa81/_._",
  2024. "lib/xamarinios10/_._",
  2025. "lib/xamarinmac20/_._",
  2026. "lib/xamarintvos10/_._",
  2027. "lib/xamarinwatchos10/_._",
  2028. "ref/MonoAndroid10/_._",
  2029. "ref/MonoTouch10/_._",
  2030. "ref/net45/_._",
  2031. "ref/netcore50/System.Diagnostics.Debug.dll",
  2032. "ref/netcore50/System.Diagnostics.Debug.xml",
  2033. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  2034. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  2035. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  2036. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  2037. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  2038. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  2039. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  2040. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  2041. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  2042. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  2043. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  2044. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  2045. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  2046. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  2047. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  2048. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  2049. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  2050. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  2051. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  2052. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  2053. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  2054. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  2055. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  2056. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  2057. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  2058. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  2059. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  2060. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  2061. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  2062. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  2063. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  2064. "ref/portable-net45+win8+wp8+wpa81/_._",
  2065. "ref/win8/_._",
  2066. "ref/wp80/_._",
  2067. "ref/wpa81/_._",
  2068. "ref/xamarinios10/_._",
  2069. "ref/xamarinmac20/_._",
  2070. "ref/xamarintvos10/_._",
  2071. "ref/xamarinwatchos10/_._",
  2072. "system.diagnostics.debug.4.0.11.nupkg.sha512",
  2073. "system.diagnostics.debug.nuspec"
  2074. ]
  2075. },
  2076. "System.Diagnostics.Tools/4.0.1": {
  2077. "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  2078. "type": "package",
  2079. "path": "system.diagnostics.tools/4.0.1",
  2080. "files": [
  2081. ".nupkg.metadata",
  2082. ".signature.p7s",
  2083. "ThirdPartyNotices.txt",
  2084. "dotnet_library_license.txt",
  2085. "lib/MonoAndroid10/_._",
  2086. "lib/MonoTouch10/_._",
  2087. "lib/net45/_._",
  2088. "lib/portable-net45+win8+wp8+wpa81/_._",
  2089. "lib/win8/_._",
  2090. "lib/wp80/_._",
  2091. "lib/wpa81/_._",
  2092. "lib/xamarinios10/_._",
  2093. "lib/xamarinmac20/_._",
  2094. "lib/xamarintvos10/_._",
  2095. "lib/xamarinwatchos10/_._",
  2096. "ref/MonoAndroid10/_._",
  2097. "ref/MonoTouch10/_._",
  2098. "ref/net45/_._",
  2099. "ref/netcore50/System.Diagnostics.Tools.dll",
  2100. "ref/netcore50/System.Diagnostics.Tools.xml",
  2101. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  2102. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  2103. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  2104. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  2105. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  2106. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  2107. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  2108. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  2109. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  2110. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  2111. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  2112. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  2113. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  2114. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  2115. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  2116. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  2117. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  2118. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  2119. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  2120. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  2121. "ref/portable-net45+win8+wp8+wpa81/_._",
  2122. "ref/win8/_._",
  2123. "ref/wp80/_._",
  2124. "ref/wpa81/_._",
  2125. "ref/xamarinios10/_._",
  2126. "ref/xamarinmac20/_._",
  2127. "ref/xamarintvos10/_._",
  2128. "ref/xamarinwatchos10/_._",
  2129. "system.diagnostics.tools.4.0.1.nupkg.sha512",
  2130. "system.diagnostics.tools.nuspec"
  2131. ]
  2132. },
  2133. "System.Dynamic.Runtime/4.0.11": {
  2134. "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
  2135. "type": "package",
  2136. "path": "system.dynamic.runtime/4.0.11",
  2137. "files": [
  2138. ".nupkg.metadata",
  2139. ".signature.p7s",
  2140. "ThirdPartyNotices.txt",
  2141. "dotnet_library_license.txt",
  2142. "lib/MonoAndroid10/_._",
  2143. "lib/MonoTouch10/_._",
  2144. "lib/net45/_._",
  2145. "lib/netcore50/System.Dynamic.Runtime.dll",
  2146. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  2147. "lib/portable-net45+win8+wp8+wpa81/_._",
  2148. "lib/win8/_._",
  2149. "lib/wp80/_._",
  2150. "lib/wpa81/_._",
  2151. "lib/xamarinios10/_._",
  2152. "lib/xamarinmac20/_._",
  2153. "lib/xamarintvos10/_._",
  2154. "lib/xamarinwatchos10/_._",
  2155. "ref/MonoAndroid10/_._",
  2156. "ref/MonoTouch10/_._",
  2157. "ref/net45/_._",
  2158. "ref/netcore50/System.Dynamic.Runtime.dll",
  2159. "ref/netcore50/System.Dynamic.Runtime.xml",
  2160. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  2161. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  2162. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  2163. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  2164. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  2165. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  2166. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  2167. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  2168. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  2169. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  2170. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  2171. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  2172. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  2173. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  2174. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  2175. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  2176. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  2177. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  2178. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  2179. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  2180. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  2181. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  2182. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  2183. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  2184. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  2185. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  2186. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  2187. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  2188. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  2189. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  2190. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  2191. "ref/portable-net45+win8+wp8+wpa81/_._",
  2192. "ref/win8/_._",
  2193. "ref/wp80/_._",
  2194. "ref/wpa81/_._",
  2195. "ref/xamarinios10/_._",
  2196. "ref/xamarinmac20/_._",
  2197. "ref/xamarintvos10/_._",
  2198. "ref/xamarinwatchos10/_._",
  2199. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  2200. "system.dynamic.runtime.4.0.11.nupkg.sha512",
  2201. "system.dynamic.runtime.nuspec"
  2202. ]
  2203. },
  2204. "System.Globalization/4.0.11": {
  2205. "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  2206. "type": "package",
  2207. "path": "system.globalization/4.0.11",
  2208. "files": [
  2209. ".nupkg.metadata",
  2210. ".signature.p7s",
  2211. "ThirdPartyNotices.txt",
  2212. "dotnet_library_license.txt",
  2213. "lib/MonoAndroid10/_._",
  2214. "lib/MonoTouch10/_._",
  2215. "lib/net45/_._",
  2216. "lib/portable-net45+win8+wp8+wpa81/_._",
  2217. "lib/win8/_._",
  2218. "lib/wp80/_._",
  2219. "lib/wpa81/_._",
  2220. "lib/xamarinios10/_._",
  2221. "lib/xamarinmac20/_._",
  2222. "lib/xamarintvos10/_._",
  2223. "lib/xamarinwatchos10/_._",
  2224. "ref/MonoAndroid10/_._",
  2225. "ref/MonoTouch10/_._",
  2226. "ref/net45/_._",
  2227. "ref/netcore50/System.Globalization.dll",
  2228. "ref/netcore50/System.Globalization.xml",
  2229. "ref/netcore50/de/System.Globalization.xml",
  2230. "ref/netcore50/es/System.Globalization.xml",
  2231. "ref/netcore50/fr/System.Globalization.xml",
  2232. "ref/netcore50/it/System.Globalization.xml",
  2233. "ref/netcore50/ja/System.Globalization.xml",
  2234. "ref/netcore50/ko/System.Globalization.xml",
  2235. "ref/netcore50/ru/System.Globalization.xml",
  2236. "ref/netcore50/zh-hans/System.Globalization.xml",
  2237. "ref/netcore50/zh-hant/System.Globalization.xml",
  2238. "ref/netstandard1.0/System.Globalization.dll",
  2239. "ref/netstandard1.0/System.Globalization.xml",
  2240. "ref/netstandard1.0/de/System.Globalization.xml",
  2241. "ref/netstandard1.0/es/System.Globalization.xml",
  2242. "ref/netstandard1.0/fr/System.Globalization.xml",
  2243. "ref/netstandard1.0/it/System.Globalization.xml",
  2244. "ref/netstandard1.0/ja/System.Globalization.xml",
  2245. "ref/netstandard1.0/ko/System.Globalization.xml",
  2246. "ref/netstandard1.0/ru/System.Globalization.xml",
  2247. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  2248. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  2249. "ref/netstandard1.3/System.Globalization.dll",
  2250. "ref/netstandard1.3/System.Globalization.xml",
  2251. "ref/netstandard1.3/de/System.Globalization.xml",
  2252. "ref/netstandard1.3/es/System.Globalization.xml",
  2253. "ref/netstandard1.3/fr/System.Globalization.xml",
  2254. "ref/netstandard1.3/it/System.Globalization.xml",
  2255. "ref/netstandard1.3/ja/System.Globalization.xml",
  2256. "ref/netstandard1.3/ko/System.Globalization.xml",
  2257. "ref/netstandard1.3/ru/System.Globalization.xml",
  2258. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  2259. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  2260. "ref/portable-net45+win8+wp8+wpa81/_._",
  2261. "ref/win8/_._",
  2262. "ref/wp80/_._",
  2263. "ref/wpa81/_._",
  2264. "ref/xamarinios10/_._",
  2265. "ref/xamarinmac20/_._",
  2266. "ref/xamarintvos10/_._",
  2267. "ref/xamarinwatchos10/_._",
  2268. "system.globalization.4.0.11.nupkg.sha512",
  2269. "system.globalization.nuspec"
  2270. ]
  2271. },
  2272. "System.IO/4.1.0": {
  2273. "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
  2274. "type": "package",
  2275. "path": "system.io/4.1.0",
  2276. "files": [
  2277. ".nupkg.metadata",
  2278. ".signature.p7s",
  2279. "ThirdPartyNotices.txt",
  2280. "dotnet_library_license.txt",
  2281. "lib/MonoAndroid10/_._",
  2282. "lib/MonoTouch10/_._",
  2283. "lib/net45/_._",
  2284. "lib/net462/System.IO.dll",
  2285. "lib/portable-net45+win8+wp8+wpa81/_._",
  2286. "lib/win8/_._",
  2287. "lib/wp80/_._",
  2288. "lib/wpa81/_._",
  2289. "lib/xamarinios10/_._",
  2290. "lib/xamarinmac20/_._",
  2291. "lib/xamarintvos10/_._",
  2292. "lib/xamarinwatchos10/_._",
  2293. "ref/MonoAndroid10/_._",
  2294. "ref/MonoTouch10/_._",
  2295. "ref/net45/_._",
  2296. "ref/net462/System.IO.dll",
  2297. "ref/netcore50/System.IO.dll",
  2298. "ref/netcore50/System.IO.xml",
  2299. "ref/netcore50/de/System.IO.xml",
  2300. "ref/netcore50/es/System.IO.xml",
  2301. "ref/netcore50/fr/System.IO.xml",
  2302. "ref/netcore50/it/System.IO.xml",
  2303. "ref/netcore50/ja/System.IO.xml",
  2304. "ref/netcore50/ko/System.IO.xml",
  2305. "ref/netcore50/ru/System.IO.xml",
  2306. "ref/netcore50/zh-hans/System.IO.xml",
  2307. "ref/netcore50/zh-hant/System.IO.xml",
  2308. "ref/netstandard1.0/System.IO.dll",
  2309. "ref/netstandard1.0/System.IO.xml",
  2310. "ref/netstandard1.0/de/System.IO.xml",
  2311. "ref/netstandard1.0/es/System.IO.xml",
  2312. "ref/netstandard1.0/fr/System.IO.xml",
  2313. "ref/netstandard1.0/it/System.IO.xml",
  2314. "ref/netstandard1.0/ja/System.IO.xml",
  2315. "ref/netstandard1.0/ko/System.IO.xml",
  2316. "ref/netstandard1.0/ru/System.IO.xml",
  2317. "ref/netstandard1.0/zh-hans/System.IO.xml",
  2318. "ref/netstandard1.0/zh-hant/System.IO.xml",
  2319. "ref/netstandard1.3/System.IO.dll",
  2320. "ref/netstandard1.3/System.IO.xml",
  2321. "ref/netstandard1.3/de/System.IO.xml",
  2322. "ref/netstandard1.3/es/System.IO.xml",
  2323. "ref/netstandard1.3/fr/System.IO.xml",
  2324. "ref/netstandard1.3/it/System.IO.xml",
  2325. "ref/netstandard1.3/ja/System.IO.xml",
  2326. "ref/netstandard1.3/ko/System.IO.xml",
  2327. "ref/netstandard1.3/ru/System.IO.xml",
  2328. "ref/netstandard1.3/zh-hans/System.IO.xml",
  2329. "ref/netstandard1.3/zh-hant/System.IO.xml",
  2330. "ref/netstandard1.5/System.IO.dll",
  2331. "ref/netstandard1.5/System.IO.xml",
  2332. "ref/netstandard1.5/de/System.IO.xml",
  2333. "ref/netstandard1.5/es/System.IO.xml",
  2334. "ref/netstandard1.5/fr/System.IO.xml",
  2335. "ref/netstandard1.5/it/System.IO.xml",
  2336. "ref/netstandard1.5/ja/System.IO.xml",
  2337. "ref/netstandard1.5/ko/System.IO.xml",
  2338. "ref/netstandard1.5/ru/System.IO.xml",
  2339. "ref/netstandard1.5/zh-hans/System.IO.xml",
  2340. "ref/netstandard1.5/zh-hant/System.IO.xml",
  2341. "ref/portable-net45+win8+wp8+wpa81/_._",
  2342. "ref/win8/_._",
  2343. "ref/wp80/_._",
  2344. "ref/wpa81/_._",
  2345. "ref/xamarinios10/_._",
  2346. "ref/xamarinmac20/_._",
  2347. "ref/xamarintvos10/_._",
  2348. "ref/xamarinwatchos10/_._",
  2349. "system.io.4.1.0.nupkg.sha512",
  2350. "system.io.nuspec"
  2351. ]
  2352. },
  2353. "System.IO.FileSystem/4.0.1": {
  2354. "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  2355. "type": "package",
  2356. "path": "system.io.filesystem/4.0.1",
  2357. "files": [
  2358. ".nupkg.metadata",
  2359. ".signature.p7s",
  2360. "ThirdPartyNotices.txt",
  2361. "dotnet_library_license.txt",
  2362. "lib/MonoAndroid10/_._",
  2363. "lib/MonoTouch10/_._",
  2364. "lib/net46/System.IO.FileSystem.dll",
  2365. "lib/xamarinios10/_._",
  2366. "lib/xamarinmac20/_._",
  2367. "lib/xamarintvos10/_._",
  2368. "lib/xamarinwatchos10/_._",
  2369. "ref/MonoAndroid10/_._",
  2370. "ref/MonoTouch10/_._",
  2371. "ref/net46/System.IO.FileSystem.dll",
  2372. "ref/netstandard1.3/System.IO.FileSystem.dll",
  2373. "ref/netstandard1.3/System.IO.FileSystem.xml",
  2374. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  2375. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  2376. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  2377. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  2378. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  2379. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  2380. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  2381. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  2382. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  2383. "ref/xamarinios10/_._",
  2384. "ref/xamarinmac20/_._",
  2385. "ref/xamarintvos10/_._",
  2386. "ref/xamarinwatchos10/_._",
  2387. "system.io.filesystem.4.0.1.nupkg.sha512",
  2388. "system.io.filesystem.nuspec"
  2389. ]
  2390. },
  2391. "System.IO.FileSystem.Primitives/4.0.1": {
  2392. "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  2393. "type": "package",
  2394. "path": "system.io.filesystem.primitives/4.0.1",
  2395. "files": [
  2396. ".nupkg.metadata",
  2397. ".signature.p7s",
  2398. "ThirdPartyNotices.txt",
  2399. "dotnet_library_license.txt",
  2400. "lib/MonoAndroid10/_._",
  2401. "lib/MonoTouch10/_._",
  2402. "lib/net46/System.IO.FileSystem.Primitives.dll",
  2403. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  2404. "lib/xamarinios10/_._",
  2405. "lib/xamarinmac20/_._",
  2406. "lib/xamarintvos10/_._",
  2407. "lib/xamarinwatchos10/_._",
  2408. "ref/MonoAndroid10/_._",
  2409. "ref/MonoTouch10/_._",
  2410. "ref/net46/System.IO.FileSystem.Primitives.dll",
  2411. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  2412. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  2413. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  2414. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  2415. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  2416. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  2417. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  2418. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  2419. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  2420. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  2421. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  2422. "ref/xamarinios10/_._",
  2423. "ref/xamarinmac20/_._",
  2424. "ref/xamarintvos10/_._",
  2425. "ref/xamarinwatchos10/_._",
  2426. "system.io.filesystem.primitives.4.0.1.nupkg.sha512",
  2427. "system.io.filesystem.primitives.nuspec"
  2428. ]
  2429. },
  2430. "System.Linq/4.1.0": {
  2431. "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  2432. "type": "package",
  2433. "path": "system.linq/4.1.0",
  2434. "files": [
  2435. ".nupkg.metadata",
  2436. ".signature.p7s",
  2437. "ThirdPartyNotices.txt",
  2438. "dotnet_library_license.txt",
  2439. "lib/MonoAndroid10/_._",
  2440. "lib/MonoTouch10/_._",
  2441. "lib/net45/_._",
  2442. "lib/net463/System.Linq.dll",
  2443. "lib/netcore50/System.Linq.dll",
  2444. "lib/netstandard1.6/System.Linq.dll",
  2445. "lib/portable-net45+win8+wp8+wpa81/_._",
  2446. "lib/win8/_._",
  2447. "lib/wp80/_._",
  2448. "lib/wpa81/_._",
  2449. "lib/xamarinios10/_._",
  2450. "lib/xamarinmac20/_._",
  2451. "lib/xamarintvos10/_._",
  2452. "lib/xamarinwatchos10/_._",
  2453. "ref/MonoAndroid10/_._",
  2454. "ref/MonoTouch10/_._",
  2455. "ref/net45/_._",
  2456. "ref/net463/System.Linq.dll",
  2457. "ref/netcore50/System.Linq.dll",
  2458. "ref/netcore50/System.Linq.xml",
  2459. "ref/netcore50/de/System.Linq.xml",
  2460. "ref/netcore50/es/System.Linq.xml",
  2461. "ref/netcore50/fr/System.Linq.xml",
  2462. "ref/netcore50/it/System.Linq.xml",
  2463. "ref/netcore50/ja/System.Linq.xml",
  2464. "ref/netcore50/ko/System.Linq.xml",
  2465. "ref/netcore50/ru/System.Linq.xml",
  2466. "ref/netcore50/zh-hans/System.Linq.xml",
  2467. "ref/netcore50/zh-hant/System.Linq.xml",
  2468. "ref/netstandard1.0/System.Linq.dll",
  2469. "ref/netstandard1.0/System.Linq.xml",
  2470. "ref/netstandard1.0/de/System.Linq.xml",
  2471. "ref/netstandard1.0/es/System.Linq.xml",
  2472. "ref/netstandard1.0/fr/System.Linq.xml",
  2473. "ref/netstandard1.0/it/System.Linq.xml",
  2474. "ref/netstandard1.0/ja/System.Linq.xml",
  2475. "ref/netstandard1.0/ko/System.Linq.xml",
  2476. "ref/netstandard1.0/ru/System.Linq.xml",
  2477. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  2478. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  2479. "ref/netstandard1.6/System.Linq.dll",
  2480. "ref/netstandard1.6/System.Linq.xml",
  2481. "ref/netstandard1.6/de/System.Linq.xml",
  2482. "ref/netstandard1.6/es/System.Linq.xml",
  2483. "ref/netstandard1.6/fr/System.Linq.xml",
  2484. "ref/netstandard1.6/it/System.Linq.xml",
  2485. "ref/netstandard1.6/ja/System.Linq.xml",
  2486. "ref/netstandard1.6/ko/System.Linq.xml",
  2487. "ref/netstandard1.6/ru/System.Linq.xml",
  2488. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  2489. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  2490. "ref/portable-net45+win8+wp8+wpa81/_._",
  2491. "ref/win8/_._",
  2492. "ref/wp80/_._",
  2493. "ref/wpa81/_._",
  2494. "ref/xamarinios10/_._",
  2495. "ref/xamarinmac20/_._",
  2496. "ref/xamarintvos10/_._",
  2497. "ref/xamarinwatchos10/_._",
  2498. "system.linq.4.1.0.nupkg.sha512",
  2499. "system.linq.nuspec"
  2500. ]
  2501. },
  2502. "System.Linq.Expressions/4.1.0": {
  2503. "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  2504. "type": "package",
  2505. "path": "system.linq.expressions/4.1.0",
  2506. "files": [
  2507. ".nupkg.metadata",
  2508. ".signature.p7s",
  2509. "ThirdPartyNotices.txt",
  2510. "dotnet_library_license.txt",
  2511. "lib/MonoAndroid10/_._",
  2512. "lib/MonoTouch10/_._",
  2513. "lib/net45/_._",
  2514. "lib/net463/System.Linq.Expressions.dll",
  2515. "lib/netcore50/System.Linq.Expressions.dll",
  2516. "lib/netstandard1.6/System.Linq.Expressions.dll",
  2517. "lib/portable-net45+win8+wp8+wpa81/_._",
  2518. "lib/win8/_._",
  2519. "lib/wp80/_._",
  2520. "lib/wpa81/_._",
  2521. "lib/xamarinios10/_._",
  2522. "lib/xamarinmac20/_._",
  2523. "lib/xamarintvos10/_._",
  2524. "lib/xamarinwatchos10/_._",
  2525. "ref/MonoAndroid10/_._",
  2526. "ref/MonoTouch10/_._",
  2527. "ref/net45/_._",
  2528. "ref/net463/System.Linq.Expressions.dll",
  2529. "ref/netcore50/System.Linq.Expressions.dll",
  2530. "ref/netcore50/System.Linq.Expressions.xml",
  2531. "ref/netcore50/de/System.Linq.Expressions.xml",
  2532. "ref/netcore50/es/System.Linq.Expressions.xml",
  2533. "ref/netcore50/fr/System.Linq.Expressions.xml",
  2534. "ref/netcore50/it/System.Linq.Expressions.xml",
  2535. "ref/netcore50/ja/System.Linq.Expressions.xml",
  2536. "ref/netcore50/ko/System.Linq.Expressions.xml",
  2537. "ref/netcore50/ru/System.Linq.Expressions.xml",
  2538. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  2539. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  2540. "ref/netstandard1.0/System.Linq.Expressions.dll",
  2541. "ref/netstandard1.0/System.Linq.Expressions.xml",
  2542. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  2543. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  2544. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  2545. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  2546. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  2547. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  2548. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  2549. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  2550. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  2551. "ref/netstandard1.3/System.Linq.Expressions.dll",
  2552. "ref/netstandard1.3/System.Linq.Expressions.xml",
  2553. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  2554. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  2555. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  2556. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  2557. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  2558. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  2559. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  2560. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  2561. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  2562. "ref/netstandard1.6/System.Linq.Expressions.dll",
  2563. "ref/netstandard1.6/System.Linq.Expressions.xml",
  2564. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  2565. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  2566. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  2567. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  2568. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  2569. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  2570. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  2571. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  2572. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  2573. "ref/portable-net45+win8+wp8+wpa81/_._",
  2574. "ref/win8/_._",
  2575. "ref/wp80/_._",
  2576. "ref/wpa81/_._",
  2577. "ref/xamarinios10/_._",
  2578. "ref/xamarinmac20/_._",
  2579. "ref/xamarintvos10/_._",
  2580. "ref/xamarinwatchos10/_._",
  2581. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  2582. "system.linq.expressions.4.1.0.nupkg.sha512",
  2583. "system.linq.expressions.nuspec"
  2584. ]
  2585. },
  2586. "System.ObjectModel/4.0.12": {
  2587. "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  2588. "type": "package",
  2589. "path": "system.objectmodel/4.0.12",
  2590. "files": [
  2591. ".nupkg.metadata",
  2592. ".signature.p7s",
  2593. "ThirdPartyNotices.txt",
  2594. "dotnet_library_license.txt",
  2595. "lib/MonoAndroid10/_._",
  2596. "lib/MonoTouch10/_._",
  2597. "lib/net45/_._",
  2598. "lib/netcore50/System.ObjectModel.dll",
  2599. "lib/netstandard1.3/System.ObjectModel.dll",
  2600. "lib/portable-net45+win8+wp8+wpa81/_._",
  2601. "lib/win8/_._",
  2602. "lib/wp80/_._",
  2603. "lib/wpa81/_._",
  2604. "lib/xamarinios10/_._",
  2605. "lib/xamarinmac20/_._",
  2606. "lib/xamarintvos10/_._",
  2607. "lib/xamarinwatchos10/_._",
  2608. "ref/MonoAndroid10/_._",
  2609. "ref/MonoTouch10/_._",
  2610. "ref/net45/_._",
  2611. "ref/netcore50/System.ObjectModel.dll",
  2612. "ref/netcore50/System.ObjectModel.xml",
  2613. "ref/netcore50/de/System.ObjectModel.xml",
  2614. "ref/netcore50/es/System.ObjectModel.xml",
  2615. "ref/netcore50/fr/System.ObjectModel.xml",
  2616. "ref/netcore50/it/System.ObjectModel.xml",
  2617. "ref/netcore50/ja/System.ObjectModel.xml",
  2618. "ref/netcore50/ko/System.ObjectModel.xml",
  2619. "ref/netcore50/ru/System.ObjectModel.xml",
  2620. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  2621. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  2622. "ref/netstandard1.0/System.ObjectModel.dll",
  2623. "ref/netstandard1.0/System.ObjectModel.xml",
  2624. "ref/netstandard1.0/de/System.ObjectModel.xml",
  2625. "ref/netstandard1.0/es/System.ObjectModel.xml",
  2626. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  2627. "ref/netstandard1.0/it/System.ObjectModel.xml",
  2628. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  2629. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  2630. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  2631. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  2632. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  2633. "ref/netstandard1.3/System.ObjectModel.dll",
  2634. "ref/netstandard1.3/System.ObjectModel.xml",
  2635. "ref/netstandard1.3/de/System.ObjectModel.xml",
  2636. "ref/netstandard1.3/es/System.ObjectModel.xml",
  2637. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  2638. "ref/netstandard1.3/it/System.ObjectModel.xml",
  2639. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  2640. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  2641. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  2642. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  2643. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  2644. "ref/portable-net45+win8+wp8+wpa81/_._",
  2645. "ref/win8/_._",
  2646. "ref/wp80/_._",
  2647. "ref/wpa81/_._",
  2648. "ref/xamarinios10/_._",
  2649. "ref/xamarinmac20/_._",
  2650. "ref/xamarintvos10/_._",
  2651. "ref/xamarinwatchos10/_._",
  2652. "system.objectmodel.4.0.12.nupkg.sha512",
  2653. "system.objectmodel.nuspec"
  2654. ]
  2655. },
  2656. "System.Reflection/4.1.0": {
  2657. "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
  2658. "type": "package",
  2659. "path": "system.reflection/4.1.0",
  2660. "files": [
  2661. ".nupkg.metadata",
  2662. ".signature.p7s",
  2663. "ThirdPartyNotices.txt",
  2664. "dotnet_library_license.txt",
  2665. "lib/MonoAndroid10/_._",
  2666. "lib/MonoTouch10/_._",
  2667. "lib/net45/_._",
  2668. "lib/net462/System.Reflection.dll",
  2669. "lib/portable-net45+win8+wp8+wpa81/_._",
  2670. "lib/win8/_._",
  2671. "lib/wp80/_._",
  2672. "lib/wpa81/_._",
  2673. "lib/xamarinios10/_._",
  2674. "lib/xamarinmac20/_._",
  2675. "lib/xamarintvos10/_._",
  2676. "lib/xamarinwatchos10/_._",
  2677. "ref/MonoAndroid10/_._",
  2678. "ref/MonoTouch10/_._",
  2679. "ref/net45/_._",
  2680. "ref/net462/System.Reflection.dll",
  2681. "ref/netcore50/System.Reflection.dll",
  2682. "ref/netcore50/System.Reflection.xml",
  2683. "ref/netcore50/de/System.Reflection.xml",
  2684. "ref/netcore50/es/System.Reflection.xml",
  2685. "ref/netcore50/fr/System.Reflection.xml",
  2686. "ref/netcore50/it/System.Reflection.xml",
  2687. "ref/netcore50/ja/System.Reflection.xml",
  2688. "ref/netcore50/ko/System.Reflection.xml",
  2689. "ref/netcore50/ru/System.Reflection.xml",
  2690. "ref/netcore50/zh-hans/System.Reflection.xml",
  2691. "ref/netcore50/zh-hant/System.Reflection.xml",
  2692. "ref/netstandard1.0/System.Reflection.dll",
  2693. "ref/netstandard1.0/System.Reflection.xml",
  2694. "ref/netstandard1.0/de/System.Reflection.xml",
  2695. "ref/netstandard1.0/es/System.Reflection.xml",
  2696. "ref/netstandard1.0/fr/System.Reflection.xml",
  2697. "ref/netstandard1.0/it/System.Reflection.xml",
  2698. "ref/netstandard1.0/ja/System.Reflection.xml",
  2699. "ref/netstandard1.0/ko/System.Reflection.xml",
  2700. "ref/netstandard1.0/ru/System.Reflection.xml",
  2701. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  2702. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  2703. "ref/netstandard1.3/System.Reflection.dll",
  2704. "ref/netstandard1.3/System.Reflection.xml",
  2705. "ref/netstandard1.3/de/System.Reflection.xml",
  2706. "ref/netstandard1.3/es/System.Reflection.xml",
  2707. "ref/netstandard1.3/fr/System.Reflection.xml",
  2708. "ref/netstandard1.3/it/System.Reflection.xml",
  2709. "ref/netstandard1.3/ja/System.Reflection.xml",
  2710. "ref/netstandard1.3/ko/System.Reflection.xml",
  2711. "ref/netstandard1.3/ru/System.Reflection.xml",
  2712. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  2713. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  2714. "ref/netstandard1.5/System.Reflection.dll",
  2715. "ref/netstandard1.5/System.Reflection.xml",
  2716. "ref/netstandard1.5/de/System.Reflection.xml",
  2717. "ref/netstandard1.5/es/System.Reflection.xml",
  2718. "ref/netstandard1.5/fr/System.Reflection.xml",
  2719. "ref/netstandard1.5/it/System.Reflection.xml",
  2720. "ref/netstandard1.5/ja/System.Reflection.xml",
  2721. "ref/netstandard1.5/ko/System.Reflection.xml",
  2722. "ref/netstandard1.5/ru/System.Reflection.xml",
  2723. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  2724. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  2725. "ref/portable-net45+win8+wp8+wpa81/_._",
  2726. "ref/win8/_._",
  2727. "ref/wp80/_._",
  2728. "ref/wpa81/_._",
  2729. "ref/xamarinios10/_._",
  2730. "ref/xamarinmac20/_._",
  2731. "ref/xamarintvos10/_._",
  2732. "ref/xamarinwatchos10/_._",
  2733. "system.reflection.4.1.0.nupkg.sha512",
  2734. "system.reflection.nuspec"
  2735. ]
  2736. },
  2737. "System.Reflection.Emit/4.0.1": {
  2738. "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
  2739. "type": "package",
  2740. "path": "system.reflection.emit/4.0.1",
  2741. "files": [
  2742. ".nupkg.metadata",
  2743. ".signature.p7s",
  2744. "ThirdPartyNotices.txt",
  2745. "dotnet_library_license.txt",
  2746. "lib/MonoAndroid10/_._",
  2747. "lib/net45/_._",
  2748. "lib/netcore50/System.Reflection.Emit.dll",
  2749. "lib/netstandard1.3/System.Reflection.Emit.dll",
  2750. "lib/xamarinmac20/_._",
  2751. "ref/MonoAndroid10/_._",
  2752. "ref/net45/_._",
  2753. "ref/netstandard1.1/System.Reflection.Emit.dll",
  2754. "ref/netstandard1.1/System.Reflection.Emit.xml",
  2755. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  2756. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  2757. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  2758. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  2759. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  2760. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  2761. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  2762. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  2763. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  2764. "ref/xamarinmac20/_._",
  2765. "system.reflection.emit.4.0.1.nupkg.sha512",
  2766. "system.reflection.emit.nuspec"
  2767. ]
  2768. },
  2769. "System.Reflection.Emit.ILGeneration/4.0.1": {
  2770. "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  2771. "type": "package",
  2772. "path": "system.reflection.emit.ilgeneration/4.0.1",
  2773. "files": [
  2774. ".nupkg.metadata",
  2775. ".signature.p7s",
  2776. "ThirdPartyNotices.txt",
  2777. "dotnet_library_license.txt",
  2778. "lib/net45/_._",
  2779. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  2780. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  2781. "lib/portable-net45+wp8/_._",
  2782. "lib/wp80/_._",
  2783. "ref/net45/_._",
  2784. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  2785. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  2786. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  2787. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  2788. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  2789. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  2790. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  2791. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  2792. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  2793. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  2794. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  2795. "ref/portable-net45+wp8/_._",
  2796. "ref/wp80/_._",
  2797. "runtimes/aot/lib/netcore50/_._",
  2798. "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512",
  2799. "system.reflection.emit.ilgeneration.nuspec"
  2800. ]
  2801. },
  2802. "System.Reflection.Emit.Lightweight/4.0.1": {
  2803. "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  2804. "type": "package",
  2805. "path": "system.reflection.emit.lightweight/4.0.1",
  2806. "files": [
  2807. ".nupkg.metadata",
  2808. ".signature.p7s",
  2809. "ThirdPartyNotices.txt",
  2810. "dotnet_library_license.txt",
  2811. "lib/net45/_._",
  2812. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  2813. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  2814. "lib/portable-net45+wp8/_._",
  2815. "lib/wp80/_._",
  2816. "ref/net45/_._",
  2817. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  2818. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  2819. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  2820. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  2821. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  2822. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  2823. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  2824. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  2825. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  2826. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  2827. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  2828. "ref/portable-net45+wp8/_._",
  2829. "ref/wp80/_._",
  2830. "runtimes/aot/lib/netcore50/_._",
  2831. "system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
  2832. "system.reflection.emit.lightweight.nuspec"
  2833. ]
  2834. },
  2835. "System.Reflection.Extensions/4.0.1": {
  2836. "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  2837. "type": "package",
  2838. "path": "system.reflection.extensions/4.0.1",
  2839. "files": [
  2840. ".nupkg.metadata",
  2841. ".signature.p7s",
  2842. "ThirdPartyNotices.txt",
  2843. "dotnet_library_license.txt",
  2844. "lib/MonoAndroid10/_._",
  2845. "lib/MonoTouch10/_._",
  2846. "lib/net45/_._",
  2847. "lib/portable-net45+win8+wp8+wpa81/_._",
  2848. "lib/win8/_._",
  2849. "lib/wp80/_._",
  2850. "lib/wpa81/_._",
  2851. "lib/xamarinios10/_._",
  2852. "lib/xamarinmac20/_._",
  2853. "lib/xamarintvos10/_._",
  2854. "lib/xamarinwatchos10/_._",
  2855. "ref/MonoAndroid10/_._",
  2856. "ref/MonoTouch10/_._",
  2857. "ref/net45/_._",
  2858. "ref/netcore50/System.Reflection.Extensions.dll",
  2859. "ref/netcore50/System.Reflection.Extensions.xml",
  2860. "ref/netcore50/de/System.Reflection.Extensions.xml",
  2861. "ref/netcore50/es/System.Reflection.Extensions.xml",
  2862. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  2863. "ref/netcore50/it/System.Reflection.Extensions.xml",
  2864. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  2865. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  2866. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  2867. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  2868. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  2869. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  2870. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  2871. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  2872. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  2873. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  2874. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  2875. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  2876. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  2877. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  2878. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  2879. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  2880. "ref/portable-net45+win8+wp8+wpa81/_._",
  2881. "ref/win8/_._",
  2882. "ref/wp80/_._",
  2883. "ref/wpa81/_._",
  2884. "ref/xamarinios10/_._",
  2885. "ref/xamarinmac20/_._",
  2886. "ref/xamarintvos10/_._",
  2887. "ref/xamarinwatchos10/_._",
  2888. "system.reflection.extensions.4.0.1.nupkg.sha512",
  2889. "system.reflection.extensions.nuspec"
  2890. ]
  2891. },
  2892. "System.Reflection.Metadata/1.6.0": {
  2893. "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  2894. "type": "package",
  2895. "path": "system.reflection.metadata/1.6.0",
  2896. "files": [
  2897. ".nupkg.metadata",
  2898. ".signature.p7s",
  2899. "LICENSE.TXT",
  2900. "THIRD-PARTY-NOTICES.TXT",
  2901. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  2902. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  2903. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  2904. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  2905. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  2906. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  2907. "system.reflection.metadata.1.6.0.nupkg.sha512",
  2908. "system.reflection.metadata.nuspec",
  2909. "useSharedDesignerContext.txt",
  2910. "version.txt"
  2911. ]
  2912. },
  2913. "System.Reflection.Primitives/4.0.1": {
  2914. "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
  2915. "type": "package",
  2916. "path": "system.reflection.primitives/4.0.1",
  2917. "files": [
  2918. ".nupkg.metadata",
  2919. ".signature.p7s",
  2920. "ThirdPartyNotices.txt",
  2921. "dotnet_library_license.txt",
  2922. "lib/MonoAndroid10/_._",
  2923. "lib/MonoTouch10/_._",
  2924. "lib/net45/_._",
  2925. "lib/portable-net45+win8+wp8+wpa81/_._",
  2926. "lib/win8/_._",
  2927. "lib/wp80/_._",
  2928. "lib/wpa81/_._",
  2929. "lib/xamarinios10/_._",
  2930. "lib/xamarinmac20/_._",
  2931. "lib/xamarintvos10/_._",
  2932. "lib/xamarinwatchos10/_._",
  2933. "ref/MonoAndroid10/_._",
  2934. "ref/MonoTouch10/_._",
  2935. "ref/net45/_._",
  2936. "ref/netcore50/System.Reflection.Primitives.dll",
  2937. "ref/netcore50/System.Reflection.Primitives.xml",
  2938. "ref/netcore50/de/System.Reflection.Primitives.xml",
  2939. "ref/netcore50/es/System.Reflection.Primitives.xml",
  2940. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  2941. "ref/netcore50/it/System.Reflection.Primitives.xml",
  2942. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  2943. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  2944. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  2945. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  2946. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  2947. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  2948. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  2949. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  2950. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  2951. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  2952. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  2953. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  2954. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  2955. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  2956. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  2957. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  2958. "ref/portable-net45+win8+wp8+wpa81/_._",
  2959. "ref/win8/_._",
  2960. "ref/wp80/_._",
  2961. "ref/wpa81/_._",
  2962. "ref/xamarinios10/_._",
  2963. "ref/xamarinmac20/_._",
  2964. "ref/xamarintvos10/_._",
  2965. "ref/xamarinwatchos10/_._",
  2966. "system.reflection.primitives.4.0.1.nupkg.sha512",
  2967. "system.reflection.primitives.nuspec"
  2968. ]
  2969. },
  2970. "System.Reflection.TypeExtensions/4.1.0": {
  2971. "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  2972. "type": "package",
  2973. "path": "system.reflection.typeextensions/4.1.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.Reflection.TypeExtensions.dll",
  2982. "lib/net462/System.Reflection.TypeExtensions.dll",
  2983. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  2984. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  2985. "lib/xamarinios10/_._",
  2986. "lib/xamarinmac20/_._",
  2987. "lib/xamarintvos10/_._",
  2988. "lib/xamarinwatchos10/_._",
  2989. "ref/MonoAndroid10/_._",
  2990. "ref/MonoTouch10/_._",
  2991. "ref/net46/System.Reflection.TypeExtensions.dll",
  2992. "ref/net462/System.Reflection.TypeExtensions.dll",
  2993. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  2994. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  2995. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  2996. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  2997. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  2998. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  2999. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  3000. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  3001. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  3002. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  3003. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  3004. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  3005. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  3006. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  3007. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  3008. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  3009. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  3010. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  3011. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  3012. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  3013. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  3014. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  3015. "ref/xamarinios10/_._",
  3016. "ref/xamarinmac20/_._",
  3017. "ref/xamarintvos10/_._",
  3018. "ref/xamarinwatchos10/_._",
  3019. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  3020. "system.reflection.typeextensions.4.1.0.nupkg.sha512",
  3021. "system.reflection.typeextensions.nuspec"
  3022. ]
  3023. },
  3024. "System.Resources.ResourceManager/4.0.1": {
  3025. "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  3026. "type": "package",
  3027. "path": "system.resources.resourcemanager/4.0.1",
  3028. "files": [
  3029. ".nupkg.metadata",
  3030. ".signature.p7s",
  3031. "ThirdPartyNotices.txt",
  3032. "dotnet_library_license.txt",
  3033. "lib/MonoAndroid10/_._",
  3034. "lib/MonoTouch10/_._",
  3035. "lib/net45/_._",
  3036. "lib/portable-net45+win8+wp8+wpa81/_._",
  3037. "lib/win8/_._",
  3038. "lib/wp80/_._",
  3039. "lib/wpa81/_._",
  3040. "lib/xamarinios10/_._",
  3041. "lib/xamarinmac20/_._",
  3042. "lib/xamarintvos10/_._",
  3043. "lib/xamarinwatchos10/_._",
  3044. "ref/MonoAndroid10/_._",
  3045. "ref/MonoTouch10/_._",
  3046. "ref/net45/_._",
  3047. "ref/netcore50/System.Resources.ResourceManager.dll",
  3048. "ref/netcore50/System.Resources.ResourceManager.xml",
  3049. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  3050. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  3051. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  3052. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  3053. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  3054. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  3055. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  3056. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  3057. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  3058. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  3059. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  3060. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  3061. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  3062. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  3063. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  3064. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  3065. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  3066. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  3067. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  3068. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  3069. "ref/portable-net45+win8+wp8+wpa81/_._",
  3070. "ref/win8/_._",
  3071. "ref/wp80/_._",
  3072. "ref/wpa81/_._",
  3073. "ref/xamarinios10/_._",
  3074. "ref/xamarinmac20/_._",
  3075. "ref/xamarintvos10/_._",
  3076. "ref/xamarinwatchos10/_._",
  3077. "system.resources.resourcemanager.4.0.1.nupkg.sha512",
  3078. "system.resources.resourcemanager.nuspec"
  3079. ]
  3080. },
  3081. "System.Runtime/4.1.0": {
  3082. "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
  3083. "type": "package",
  3084. "path": "system.runtime/4.1.0",
  3085. "files": [
  3086. ".nupkg.metadata",
  3087. ".signature.p7s",
  3088. "ThirdPartyNotices.txt",
  3089. "dotnet_library_license.txt",
  3090. "lib/MonoAndroid10/_._",
  3091. "lib/MonoTouch10/_._",
  3092. "lib/net45/_._",
  3093. "lib/net462/System.Runtime.dll",
  3094. "lib/portable-net45+win8+wp80+wpa81/_._",
  3095. "lib/win8/_._",
  3096. "lib/wp80/_._",
  3097. "lib/wpa81/_._",
  3098. "lib/xamarinios10/_._",
  3099. "lib/xamarinmac20/_._",
  3100. "lib/xamarintvos10/_._",
  3101. "lib/xamarinwatchos10/_._",
  3102. "ref/MonoAndroid10/_._",
  3103. "ref/MonoTouch10/_._",
  3104. "ref/net45/_._",
  3105. "ref/net462/System.Runtime.dll",
  3106. "ref/netcore50/System.Runtime.dll",
  3107. "ref/netcore50/System.Runtime.xml",
  3108. "ref/netcore50/de/System.Runtime.xml",
  3109. "ref/netcore50/es/System.Runtime.xml",
  3110. "ref/netcore50/fr/System.Runtime.xml",
  3111. "ref/netcore50/it/System.Runtime.xml",
  3112. "ref/netcore50/ja/System.Runtime.xml",
  3113. "ref/netcore50/ko/System.Runtime.xml",
  3114. "ref/netcore50/ru/System.Runtime.xml",
  3115. "ref/netcore50/zh-hans/System.Runtime.xml",
  3116. "ref/netcore50/zh-hant/System.Runtime.xml",
  3117. "ref/netstandard1.0/System.Runtime.dll",
  3118. "ref/netstandard1.0/System.Runtime.xml",
  3119. "ref/netstandard1.0/de/System.Runtime.xml",
  3120. "ref/netstandard1.0/es/System.Runtime.xml",
  3121. "ref/netstandard1.0/fr/System.Runtime.xml",
  3122. "ref/netstandard1.0/it/System.Runtime.xml",
  3123. "ref/netstandard1.0/ja/System.Runtime.xml",
  3124. "ref/netstandard1.0/ko/System.Runtime.xml",
  3125. "ref/netstandard1.0/ru/System.Runtime.xml",
  3126. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  3127. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  3128. "ref/netstandard1.2/System.Runtime.dll",
  3129. "ref/netstandard1.2/System.Runtime.xml",
  3130. "ref/netstandard1.2/de/System.Runtime.xml",
  3131. "ref/netstandard1.2/es/System.Runtime.xml",
  3132. "ref/netstandard1.2/fr/System.Runtime.xml",
  3133. "ref/netstandard1.2/it/System.Runtime.xml",
  3134. "ref/netstandard1.2/ja/System.Runtime.xml",
  3135. "ref/netstandard1.2/ko/System.Runtime.xml",
  3136. "ref/netstandard1.2/ru/System.Runtime.xml",
  3137. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  3138. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  3139. "ref/netstandard1.3/System.Runtime.dll",
  3140. "ref/netstandard1.3/System.Runtime.xml",
  3141. "ref/netstandard1.3/de/System.Runtime.xml",
  3142. "ref/netstandard1.3/es/System.Runtime.xml",
  3143. "ref/netstandard1.3/fr/System.Runtime.xml",
  3144. "ref/netstandard1.3/it/System.Runtime.xml",
  3145. "ref/netstandard1.3/ja/System.Runtime.xml",
  3146. "ref/netstandard1.3/ko/System.Runtime.xml",
  3147. "ref/netstandard1.3/ru/System.Runtime.xml",
  3148. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  3149. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  3150. "ref/netstandard1.5/System.Runtime.dll",
  3151. "ref/netstandard1.5/System.Runtime.xml",
  3152. "ref/netstandard1.5/de/System.Runtime.xml",
  3153. "ref/netstandard1.5/es/System.Runtime.xml",
  3154. "ref/netstandard1.5/fr/System.Runtime.xml",
  3155. "ref/netstandard1.5/it/System.Runtime.xml",
  3156. "ref/netstandard1.5/ja/System.Runtime.xml",
  3157. "ref/netstandard1.5/ko/System.Runtime.xml",
  3158. "ref/netstandard1.5/ru/System.Runtime.xml",
  3159. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  3160. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  3161. "ref/portable-net45+win8+wp80+wpa81/_._",
  3162. "ref/win8/_._",
  3163. "ref/wp80/_._",
  3164. "ref/wpa81/_._",
  3165. "ref/xamarinios10/_._",
  3166. "ref/xamarinmac20/_._",
  3167. "ref/xamarintvos10/_._",
  3168. "ref/xamarinwatchos10/_._",
  3169. "system.runtime.4.1.0.nupkg.sha512",
  3170. "system.runtime.nuspec"
  3171. ]
  3172. },
  3173. "System.Runtime.Extensions/4.1.0": {
  3174. "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  3175. "type": "package",
  3176. "path": "system.runtime.extensions/4.1.0",
  3177. "files": [
  3178. ".nupkg.metadata",
  3179. ".signature.p7s",
  3180. "ThirdPartyNotices.txt",
  3181. "dotnet_library_license.txt",
  3182. "lib/MonoAndroid10/_._",
  3183. "lib/MonoTouch10/_._",
  3184. "lib/net45/_._",
  3185. "lib/net462/System.Runtime.Extensions.dll",
  3186. "lib/portable-net45+win8+wp8+wpa81/_._",
  3187. "lib/win8/_._",
  3188. "lib/wp80/_._",
  3189. "lib/wpa81/_._",
  3190. "lib/xamarinios10/_._",
  3191. "lib/xamarinmac20/_._",
  3192. "lib/xamarintvos10/_._",
  3193. "lib/xamarinwatchos10/_._",
  3194. "ref/MonoAndroid10/_._",
  3195. "ref/MonoTouch10/_._",
  3196. "ref/net45/_._",
  3197. "ref/net462/System.Runtime.Extensions.dll",
  3198. "ref/netcore50/System.Runtime.Extensions.dll",
  3199. "ref/netcore50/System.Runtime.Extensions.xml",
  3200. "ref/netcore50/de/System.Runtime.Extensions.xml",
  3201. "ref/netcore50/es/System.Runtime.Extensions.xml",
  3202. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  3203. "ref/netcore50/it/System.Runtime.Extensions.xml",
  3204. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  3205. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  3206. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  3207. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  3208. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  3209. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  3210. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  3211. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  3212. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  3213. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  3214. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  3215. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  3216. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  3217. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  3218. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  3219. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  3220. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  3221. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  3222. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  3223. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  3224. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  3225. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  3226. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  3227. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  3228. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  3229. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  3230. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  3231. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  3232. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  3233. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  3234. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  3235. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  3236. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  3237. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  3238. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  3239. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  3240. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  3241. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  3242. "ref/portable-net45+win8+wp8+wpa81/_._",
  3243. "ref/win8/_._",
  3244. "ref/wp80/_._",
  3245. "ref/wpa81/_._",
  3246. "ref/xamarinios10/_._",
  3247. "ref/xamarinmac20/_._",
  3248. "ref/xamarintvos10/_._",
  3249. "ref/xamarinwatchos10/_._",
  3250. "system.runtime.extensions.4.1.0.nupkg.sha512",
  3251. "system.runtime.extensions.nuspec"
  3252. ]
  3253. },
  3254. "System.Runtime.Handles/4.0.1": {
  3255. "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  3256. "type": "package",
  3257. "path": "system.runtime.handles/4.0.1",
  3258. "files": [
  3259. ".nupkg.metadata",
  3260. ".signature.p7s",
  3261. "ThirdPartyNotices.txt",
  3262. "dotnet_library_license.txt",
  3263. "lib/MonoAndroid10/_._",
  3264. "lib/MonoTouch10/_._",
  3265. "lib/net46/_._",
  3266. "lib/xamarinios10/_._",
  3267. "lib/xamarinmac20/_._",
  3268. "lib/xamarintvos10/_._",
  3269. "lib/xamarinwatchos10/_._",
  3270. "ref/MonoAndroid10/_._",
  3271. "ref/MonoTouch10/_._",
  3272. "ref/net46/_._",
  3273. "ref/netstandard1.3/System.Runtime.Handles.dll",
  3274. "ref/netstandard1.3/System.Runtime.Handles.xml",
  3275. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  3276. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  3277. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  3278. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  3279. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  3280. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  3281. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  3282. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  3283. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  3284. "ref/xamarinios10/_._",
  3285. "ref/xamarinmac20/_._",
  3286. "ref/xamarintvos10/_._",
  3287. "ref/xamarinwatchos10/_._",
  3288. "system.runtime.handles.4.0.1.nupkg.sha512",
  3289. "system.runtime.handles.nuspec"
  3290. ]
  3291. },
  3292. "System.Runtime.InteropServices/4.1.0": {
  3293. "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  3294. "type": "package",
  3295. "path": "system.runtime.interopservices/4.1.0",
  3296. "files": [
  3297. ".nupkg.metadata",
  3298. ".signature.p7s",
  3299. "ThirdPartyNotices.txt",
  3300. "dotnet_library_license.txt",
  3301. "lib/MonoAndroid10/_._",
  3302. "lib/MonoTouch10/_._",
  3303. "lib/net45/_._",
  3304. "lib/net462/System.Runtime.InteropServices.dll",
  3305. "lib/portable-net45+win8+wpa81/_._",
  3306. "lib/win8/_._",
  3307. "lib/wpa81/_._",
  3308. "lib/xamarinios10/_._",
  3309. "lib/xamarinmac20/_._",
  3310. "lib/xamarintvos10/_._",
  3311. "lib/xamarinwatchos10/_._",
  3312. "ref/MonoAndroid10/_._",
  3313. "ref/MonoTouch10/_._",
  3314. "ref/net45/_._",
  3315. "ref/net462/System.Runtime.InteropServices.dll",
  3316. "ref/netcore50/System.Runtime.InteropServices.dll",
  3317. "ref/netcore50/System.Runtime.InteropServices.xml",
  3318. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  3319. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  3320. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  3321. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  3322. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  3323. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  3324. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  3325. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  3326. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  3327. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  3328. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  3329. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  3330. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  3331. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  3332. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  3333. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  3334. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  3335. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  3336. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  3337. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  3338. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  3339. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  3340. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  3341. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  3342. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  3343. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  3344. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  3345. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  3346. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  3347. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  3348. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  3349. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  3350. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  3351. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  3352. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  3353. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  3354. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  3355. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  3356. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  3357. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  3358. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  3359. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  3360. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  3361. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  3362. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  3363. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  3364. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  3365. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  3366. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  3367. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  3368. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  3369. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  3370. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  3371. "ref/portable-net45+win8+wpa81/_._",
  3372. "ref/win8/_._",
  3373. "ref/wpa81/_._",
  3374. "ref/xamarinios10/_._",
  3375. "ref/xamarinmac20/_._",
  3376. "ref/xamarintvos10/_._",
  3377. "ref/xamarinwatchos10/_._",
  3378. "system.runtime.interopservices.4.1.0.nupkg.sha512",
  3379. "system.runtime.interopservices.nuspec"
  3380. ]
  3381. },
  3382. "System.Runtime.Serialization.Primitives/4.1.1": {
  3383. "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
  3384. "type": "package",
  3385. "path": "system.runtime.serialization.primitives/4.1.1",
  3386. "files": [
  3387. ".nupkg.metadata",
  3388. ".signature.p7s",
  3389. "ThirdPartyNotices.txt",
  3390. "dotnet_library_license.txt",
  3391. "lib/MonoAndroid10/_._",
  3392. "lib/MonoTouch10/_._",
  3393. "lib/net45/_._",
  3394. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  3395. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  3396. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  3397. "lib/portable-net45+win8+wp8+wpa81/_._",
  3398. "lib/win8/_._",
  3399. "lib/wp80/_._",
  3400. "lib/wpa81/_._",
  3401. "lib/xamarinios10/_._",
  3402. "lib/xamarinmac20/_._",
  3403. "lib/xamarintvos10/_._",
  3404. "lib/xamarinwatchos10/_._",
  3405. "ref/MonoAndroid10/_._",
  3406. "ref/MonoTouch10/_._",
  3407. "ref/net45/_._",
  3408. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  3409. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  3410. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  3411. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  3412. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  3413. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  3414. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  3415. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  3416. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  3417. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  3418. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  3419. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  3420. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  3421. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  3422. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  3423. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  3424. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  3425. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  3426. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  3427. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  3428. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  3429. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  3430. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  3431. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  3432. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  3433. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  3434. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  3435. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  3436. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  3437. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  3438. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  3439. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  3440. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  3441. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  3442. "ref/portable-net45+win8+wp8+wpa81/_._",
  3443. "ref/win8/_._",
  3444. "ref/wp80/_._",
  3445. "ref/wpa81/_._",
  3446. "ref/xamarinios10/_._",
  3447. "ref/xamarinmac20/_._",
  3448. "ref/xamarintvos10/_._",
  3449. "ref/xamarinwatchos10/_._",
  3450. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  3451. "system.runtime.serialization.primitives.4.1.1.nupkg.sha512",
  3452. "system.runtime.serialization.primitives.nuspec"
  3453. ]
  3454. },
  3455. "System.Text.Encoding/4.0.11": {
  3456. "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
  3457. "type": "package",
  3458. "path": "system.text.encoding/4.0.11",
  3459. "files": [
  3460. ".nupkg.metadata",
  3461. ".signature.p7s",
  3462. "ThirdPartyNotices.txt",
  3463. "dotnet_library_license.txt",
  3464. "lib/MonoAndroid10/_._",
  3465. "lib/MonoTouch10/_._",
  3466. "lib/net45/_._",
  3467. "lib/portable-net45+win8+wp8+wpa81/_._",
  3468. "lib/win8/_._",
  3469. "lib/wp80/_._",
  3470. "lib/wpa81/_._",
  3471. "lib/xamarinios10/_._",
  3472. "lib/xamarinmac20/_._",
  3473. "lib/xamarintvos10/_._",
  3474. "lib/xamarinwatchos10/_._",
  3475. "ref/MonoAndroid10/_._",
  3476. "ref/MonoTouch10/_._",
  3477. "ref/net45/_._",
  3478. "ref/netcore50/System.Text.Encoding.dll",
  3479. "ref/netcore50/System.Text.Encoding.xml",
  3480. "ref/netcore50/de/System.Text.Encoding.xml",
  3481. "ref/netcore50/es/System.Text.Encoding.xml",
  3482. "ref/netcore50/fr/System.Text.Encoding.xml",
  3483. "ref/netcore50/it/System.Text.Encoding.xml",
  3484. "ref/netcore50/ja/System.Text.Encoding.xml",
  3485. "ref/netcore50/ko/System.Text.Encoding.xml",
  3486. "ref/netcore50/ru/System.Text.Encoding.xml",
  3487. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  3488. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  3489. "ref/netstandard1.0/System.Text.Encoding.dll",
  3490. "ref/netstandard1.0/System.Text.Encoding.xml",
  3491. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  3492. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  3493. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  3494. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  3495. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  3496. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  3497. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  3498. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  3499. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  3500. "ref/netstandard1.3/System.Text.Encoding.dll",
  3501. "ref/netstandard1.3/System.Text.Encoding.xml",
  3502. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  3503. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  3504. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  3505. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  3506. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  3507. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  3508. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  3509. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  3510. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  3511. "ref/portable-net45+win8+wp8+wpa81/_._",
  3512. "ref/win8/_._",
  3513. "ref/wp80/_._",
  3514. "ref/wpa81/_._",
  3515. "ref/xamarinios10/_._",
  3516. "ref/xamarinmac20/_._",
  3517. "ref/xamarintvos10/_._",
  3518. "ref/xamarinwatchos10/_._",
  3519. "system.text.encoding.4.0.11.nupkg.sha512",
  3520. "system.text.encoding.nuspec"
  3521. ]
  3522. },
  3523. "System.Text.Encoding.Extensions/4.0.11": {
  3524. "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  3525. "type": "package",
  3526. "path": "system.text.encoding.extensions/4.0.11",
  3527. "files": [
  3528. ".nupkg.metadata",
  3529. ".signature.p7s",
  3530. "ThirdPartyNotices.txt",
  3531. "dotnet_library_license.txt",
  3532. "lib/MonoAndroid10/_._",
  3533. "lib/MonoTouch10/_._",
  3534. "lib/net45/_._",
  3535. "lib/portable-net45+win8+wp8+wpa81/_._",
  3536. "lib/win8/_._",
  3537. "lib/wp80/_._",
  3538. "lib/wpa81/_._",
  3539. "lib/xamarinios10/_._",
  3540. "lib/xamarinmac20/_._",
  3541. "lib/xamarintvos10/_._",
  3542. "lib/xamarinwatchos10/_._",
  3543. "ref/MonoAndroid10/_._",
  3544. "ref/MonoTouch10/_._",
  3545. "ref/net45/_._",
  3546. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  3547. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  3548. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  3549. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  3550. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  3551. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  3552. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  3553. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  3554. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  3555. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  3556. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  3557. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  3558. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  3559. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  3560. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  3561. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  3562. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  3563. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  3564. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  3565. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  3566. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  3567. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  3568. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  3569. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  3570. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  3571. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  3572. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  3573. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  3574. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  3575. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  3576. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  3577. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  3578. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  3579. "ref/portable-net45+win8+wp8+wpa81/_._",
  3580. "ref/win8/_._",
  3581. "ref/wp80/_._",
  3582. "ref/wpa81/_._",
  3583. "ref/xamarinios10/_._",
  3584. "ref/xamarinmac20/_._",
  3585. "ref/xamarintvos10/_._",
  3586. "ref/xamarinwatchos10/_._",
  3587. "system.text.encoding.extensions.4.0.11.nupkg.sha512",
  3588. "system.text.encoding.extensions.nuspec"
  3589. ]
  3590. },
  3591. "System.Text.RegularExpressions/4.1.0": {
  3592. "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
  3593. "type": "package",
  3594. "path": "system.text.regularexpressions/4.1.0",
  3595. "files": [
  3596. ".nupkg.metadata",
  3597. ".signature.p7s",
  3598. "ThirdPartyNotices.txt",
  3599. "dotnet_library_license.txt",
  3600. "lib/MonoAndroid10/_._",
  3601. "lib/MonoTouch10/_._",
  3602. "lib/net45/_._",
  3603. "lib/net463/System.Text.RegularExpressions.dll",
  3604. "lib/netcore50/System.Text.RegularExpressions.dll",
  3605. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  3606. "lib/portable-net45+win8+wp8+wpa81/_._",
  3607. "lib/win8/_._",
  3608. "lib/wp80/_._",
  3609. "lib/wpa81/_._",
  3610. "lib/xamarinios10/_._",
  3611. "lib/xamarinmac20/_._",
  3612. "lib/xamarintvos10/_._",
  3613. "lib/xamarinwatchos10/_._",
  3614. "ref/MonoAndroid10/_._",
  3615. "ref/MonoTouch10/_._",
  3616. "ref/net45/_._",
  3617. "ref/net463/System.Text.RegularExpressions.dll",
  3618. "ref/netcore50/System.Text.RegularExpressions.dll",
  3619. "ref/netcore50/System.Text.RegularExpressions.xml",
  3620. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  3621. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  3622. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  3623. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  3624. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  3625. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  3626. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  3627. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  3628. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  3629. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  3630. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  3631. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  3632. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  3633. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  3634. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  3635. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  3636. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  3637. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  3638. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  3639. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  3640. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  3641. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  3642. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  3643. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  3644. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  3645. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  3646. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  3647. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  3648. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  3649. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  3650. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  3651. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  3652. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  3653. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  3654. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  3655. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  3656. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  3657. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  3658. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  3659. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  3660. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  3661. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  3662. "ref/portable-net45+win8+wp8+wpa81/_._",
  3663. "ref/win8/_._",
  3664. "ref/wp80/_._",
  3665. "ref/wpa81/_._",
  3666. "ref/xamarinios10/_._",
  3667. "ref/xamarinmac20/_._",
  3668. "ref/xamarintvos10/_._",
  3669. "ref/xamarinwatchos10/_._",
  3670. "system.text.regularexpressions.4.1.0.nupkg.sha512",
  3671. "system.text.regularexpressions.nuspec"
  3672. ]
  3673. },
  3674. "System.Threading/4.0.11": {
  3675. "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  3676. "type": "package",
  3677. "path": "system.threading/4.0.11",
  3678. "files": [
  3679. ".nupkg.metadata",
  3680. ".signature.p7s",
  3681. "ThirdPartyNotices.txt",
  3682. "dotnet_library_license.txt",
  3683. "lib/MonoAndroid10/_._",
  3684. "lib/MonoTouch10/_._",
  3685. "lib/net45/_._",
  3686. "lib/netcore50/System.Threading.dll",
  3687. "lib/netstandard1.3/System.Threading.dll",
  3688. "lib/portable-net45+win8+wp8+wpa81/_._",
  3689. "lib/win8/_._",
  3690. "lib/wp80/_._",
  3691. "lib/wpa81/_._",
  3692. "lib/xamarinios10/_._",
  3693. "lib/xamarinmac20/_._",
  3694. "lib/xamarintvos10/_._",
  3695. "lib/xamarinwatchos10/_._",
  3696. "ref/MonoAndroid10/_._",
  3697. "ref/MonoTouch10/_._",
  3698. "ref/net45/_._",
  3699. "ref/netcore50/System.Threading.dll",
  3700. "ref/netcore50/System.Threading.xml",
  3701. "ref/netcore50/de/System.Threading.xml",
  3702. "ref/netcore50/es/System.Threading.xml",
  3703. "ref/netcore50/fr/System.Threading.xml",
  3704. "ref/netcore50/it/System.Threading.xml",
  3705. "ref/netcore50/ja/System.Threading.xml",
  3706. "ref/netcore50/ko/System.Threading.xml",
  3707. "ref/netcore50/ru/System.Threading.xml",
  3708. "ref/netcore50/zh-hans/System.Threading.xml",
  3709. "ref/netcore50/zh-hant/System.Threading.xml",
  3710. "ref/netstandard1.0/System.Threading.dll",
  3711. "ref/netstandard1.0/System.Threading.xml",
  3712. "ref/netstandard1.0/de/System.Threading.xml",
  3713. "ref/netstandard1.0/es/System.Threading.xml",
  3714. "ref/netstandard1.0/fr/System.Threading.xml",
  3715. "ref/netstandard1.0/it/System.Threading.xml",
  3716. "ref/netstandard1.0/ja/System.Threading.xml",
  3717. "ref/netstandard1.0/ko/System.Threading.xml",
  3718. "ref/netstandard1.0/ru/System.Threading.xml",
  3719. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  3720. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  3721. "ref/netstandard1.3/System.Threading.dll",
  3722. "ref/netstandard1.3/System.Threading.xml",
  3723. "ref/netstandard1.3/de/System.Threading.xml",
  3724. "ref/netstandard1.3/es/System.Threading.xml",
  3725. "ref/netstandard1.3/fr/System.Threading.xml",
  3726. "ref/netstandard1.3/it/System.Threading.xml",
  3727. "ref/netstandard1.3/ja/System.Threading.xml",
  3728. "ref/netstandard1.3/ko/System.Threading.xml",
  3729. "ref/netstandard1.3/ru/System.Threading.xml",
  3730. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  3731. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  3732. "ref/portable-net45+win8+wp8+wpa81/_._",
  3733. "ref/win8/_._",
  3734. "ref/wp80/_._",
  3735. "ref/wpa81/_._",
  3736. "ref/xamarinios10/_._",
  3737. "ref/xamarinmac20/_._",
  3738. "ref/xamarintvos10/_._",
  3739. "ref/xamarinwatchos10/_._",
  3740. "runtimes/aot/lib/netcore50/System.Threading.dll",
  3741. "system.threading.4.0.11.nupkg.sha512",
  3742. "system.threading.nuspec"
  3743. ]
  3744. },
  3745. "System.Threading.Tasks/4.0.11": {
  3746. "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
  3747. "type": "package",
  3748. "path": "system.threading.tasks/4.0.11",
  3749. "files": [
  3750. ".nupkg.metadata",
  3751. ".signature.p7s",
  3752. "ThirdPartyNotices.txt",
  3753. "dotnet_library_license.txt",
  3754. "lib/MonoAndroid10/_._",
  3755. "lib/MonoTouch10/_._",
  3756. "lib/net45/_._",
  3757. "lib/portable-net45+win8+wp8+wpa81/_._",
  3758. "lib/win8/_._",
  3759. "lib/wp80/_._",
  3760. "lib/wpa81/_._",
  3761. "lib/xamarinios10/_._",
  3762. "lib/xamarinmac20/_._",
  3763. "lib/xamarintvos10/_._",
  3764. "lib/xamarinwatchos10/_._",
  3765. "ref/MonoAndroid10/_._",
  3766. "ref/MonoTouch10/_._",
  3767. "ref/net45/_._",
  3768. "ref/netcore50/System.Threading.Tasks.dll",
  3769. "ref/netcore50/System.Threading.Tasks.xml",
  3770. "ref/netcore50/de/System.Threading.Tasks.xml",
  3771. "ref/netcore50/es/System.Threading.Tasks.xml",
  3772. "ref/netcore50/fr/System.Threading.Tasks.xml",
  3773. "ref/netcore50/it/System.Threading.Tasks.xml",
  3774. "ref/netcore50/ja/System.Threading.Tasks.xml",
  3775. "ref/netcore50/ko/System.Threading.Tasks.xml",
  3776. "ref/netcore50/ru/System.Threading.Tasks.xml",
  3777. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  3778. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  3779. "ref/netstandard1.0/System.Threading.Tasks.dll",
  3780. "ref/netstandard1.0/System.Threading.Tasks.xml",
  3781. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  3782. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  3783. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  3784. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  3785. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  3786. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  3787. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  3788. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  3789. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  3790. "ref/netstandard1.3/System.Threading.Tasks.dll",
  3791. "ref/netstandard1.3/System.Threading.Tasks.xml",
  3792. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  3793. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  3794. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  3795. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  3796. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  3797. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  3798. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  3799. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  3800. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  3801. "ref/portable-net45+win8+wp8+wpa81/_._",
  3802. "ref/win8/_._",
  3803. "ref/wp80/_._",
  3804. "ref/wpa81/_._",
  3805. "ref/xamarinios10/_._",
  3806. "ref/xamarinmac20/_._",
  3807. "ref/xamarintvos10/_._",
  3808. "ref/xamarinwatchos10/_._",
  3809. "system.threading.tasks.4.0.11.nupkg.sha512",
  3810. "system.threading.tasks.nuspec"
  3811. ]
  3812. },
  3813. "System.Threading.Tasks.Extensions/4.0.0": {
  3814. "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
  3815. "type": "package",
  3816. "path": "system.threading.tasks.extensions/4.0.0",
  3817. "files": [
  3818. ".nupkg.metadata",
  3819. ".signature.p7s",
  3820. "ThirdPartyNotices.txt",
  3821. "dotnet_library_license.txt",
  3822. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  3823. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  3824. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  3825. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  3826. "system.threading.tasks.extensions.4.0.0.nupkg.sha512",
  3827. "system.threading.tasks.extensions.nuspec"
  3828. ]
  3829. },
  3830. "System.Xml.ReaderWriter/4.0.11": {
  3831. "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
  3832. "type": "package",
  3833. "path": "system.xml.readerwriter/4.0.11",
  3834. "files": [
  3835. ".nupkg.metadata",
  3836. ".signature.p7s",
  3837. "ThirdPartyNotices.txt",
  3838. "dotnet_library_license.txt",
  3839. "lib/MonoAndroid10/_._",
  3840. "lib/MonoTouch10/_._",
  3841. "lib/net45/_._",
  3842. "lib/netcore50/System.Xml.ReaderWriter.dll",
  3843. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  3844. "lib/portable-net45+win8+wp8+wpa81/_._",
  3845. "lib/win8/_._",
  3846. "lib/wp80/_._",
  3847. "lib/wpa81/_._",
  3848. "lib/xamarinios10/_._",
  3849. "lib/xamarinmac20/_._",
  3850. "lib/xamarintvos10/_._",
  3851. "lib/xamarinwatchos10/_._",
  3852. "ref/MonoAndroid10/_._",
  3853. "ref/MonoTouch10/_._",
  3854. "ref/net45/_._",
  3855. "ref/netcore50/System.Xml.ReaderWriter.dll",
  3856. "ref/netcore50/System.Xml.ReaderWriter.xml",
  3857. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  3858. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  3859. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  3860. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  3861. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  3862. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  3863. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  3864. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  3865. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  3866. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  3867. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  3868. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  3869. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  3870. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  3871. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  3872. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  3873. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  3874. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  3875. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  3876. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  3877. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  3878. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  3879. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  3880. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  3881. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  3882. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  3883. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  3884. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  3885. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  3886. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  3887. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  3888. "ref/portable-net45+win8+wp8+wpa81/_._",
  3889. "ref/win8/_._",
  3890. "ref/wp80/_._",
  3891. "ref/wpa81/_._",
  3892. "ref/xamarinios10/_._",
  3893. "ref/xamarinmac20/_._",
  3894. "ref/xamarintvos10/_._",
  3895. "ref/xamarinwatchos10/_._",
  3896. "system.xml.readerwriter.4.0.11.nupkg.sha512",
  3897. "system.xml.readerwriter.nuspec"
  3898. ]
  3899. },
  3900. "System.Xml.XDocument/4.0.11": {
  3901. "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  3902. "type": "package",
  3903. "path": "system.xml.xdocument/4.0.11",
  3904. "files": [
  3905. ".nupkg.metadata",
  3906. ".signature.p7s",
  3907. "ThirdPartyNotices.txt",
  3908. "dotnet_library_license.txt",
  3909. "lib/MonoAndroid10/_._",
  3910. "lib/MonoTouch10/_._",
  3911. "lib/net45/_._",
  3912. "lib/netcore50/System.Xml.XDocument.dll",
  3913. "lib/netstandard1.3/System.Xml.XDocument.dll",
  3914. "lib/portable-net45+win8+wp8+wpa81/_._",
  3915. "lib/win8/_._",
  3916. "lib/wp80/_._",
  3917. "lib/wpa81/_._",
  3918. "lib/xamarinios10/_._",
  3919. "lib/xamarinmac20/_._",
  3920. "lib/xamarintvos10/_._",
  3921. "lib/xamarinwatchos10/_._",
  3922. "ref/MonoAndroid10/_._",
  3923. "ref/MonoTouch10/_._",
  3924. "ref/net45/_._",
  3925. "ref/netcore50/System.Xml.XDocument.dll",
  3926. "ref/netcore50/System.Xml.XDocument.xml",
  3927. "ref/netcore50/de/System.Xml.XDocument.xml",
  3928. "ref/netcore50/es/System.Xml.XDocument.xml",
  3929. "ref/netcore50/fr/System.Xml.XDocument.xml",
  3930. "ref/netcore50/it/System.Xml.XDocument.xml",
  3931. "ref/netcore50/ja/System.Xml.XDocument.xml",
  3932. "ref/netcore50/ko/System.Xml.XDocument.xml",
  3933. "ref/netcore50/ru/System.Xml.XDocument.xml",
  3934. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  3935. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  3936. "ref/netstandard1.0/System.Xml.XDocument.dll",
  3937. "ref/netstandard1.0/System.Xml.XDocument.xml",
  3938. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  3939. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  3940. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  3941. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  3942. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  3943. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  3944. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  3945. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  3946. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  3947. "ref/netstandard1.3/System.Xml.XDocument.dll",
  3948. "ref/netstandard1.3/System.Xml.XDocument.xml",
  3949. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  3950. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  3951. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  3952. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  3953. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  3954. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  3955. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  3956. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  3957. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  3958. "ref/portable-net45+win8+wp8+wpa81/_._",
  3959. "ref/win8/_._",
  3960. "ref/wp80/_._",
  3961. "ref/wpa81/_._",
  3962. "ref/xamarinios10/_._",
  3963. "ref/xamarinmac20/_._",
  3964. "ref/xamarintvos10/_._",
  3965. "ref/xamarinwatchos10/_._",
  3966. "system.xml.xdocument.4.0.11.nupkg.sha512",
  3967. "system.xml.xdocument.nuspec"
  3968. ]
  3969. },
  3970. "ConsoleApp4/1.0.0": {
  3971. "type": "project",
  3972. "path": "../ConsoleApp4/ConsoleApp4.csproj",
  3973. "msbuildProject": "../ConsoleApp4/ConsoleApp4.csproj"
  3974. }
  3975. },
  3976. "projectFileDependencyGroups": {
  3977. "net6.0": [
  3978. "ConsoleApp4 >= 1.0.0",
  3979. "Microsoft.NET.Test.Sdk >= 17.1.0",
  3980. "NUnit >= 3.13.3",
  3981. "NUnit.Analyzers >= 3.3.0",
  3982. "NUnit3TestAdapter >= 4.2.1",
  3983. "coverlet.collector >= 3.1.2"
  3984. ]
  3985. },
  3986. "packageFolders": {
  3987. "C:\\Users\\sasha\\.nuget\\packages\\": {}
  3988. },
  3989. "project": {
  3990. "version": "1.0.0",
  3991. "restore": {
  3992. "projectUniqueName": "E:\\Collage\\ConsoleApp4\\TestProject1\\TestProject1.csproj",
  3993. "projectName": "TestProject1",
  3994. "projectPath": "E:\\Collage\\ConsoleApp4\\TestProject1\\TestProject1.csproj",
  3995. "packagesPath": "C:\\Users\\sasha\\.nuget\\packages\\",
  3996. "outputPath": "E:\\Collage\\ConsoleApp4\\TestProject1\\obj\\",
  3997. "projectStyle": "PackageReference",
  3998. "configFilePaths": [
  3999. "C:\\Users\\sasha\\AppData\\Roaming\\NuGet\\NuGet.Config"
  4000. ],
  4001. "originalTargetFrameworks": [
  4002. "net6.0"
  4003. ],
  4004. "sources": {
  4005. "https://api.nuget.org/v3/index.json": {}
  4006. },
  4007. "frameworks": {
  4008. "net6.0": {
  4009. "targetAlias": "net6.0",
  4010. "projectReferences": {
  4011. "E:\\Collage\\ConsoleApp4\\ConsoleApp4\\ConsoleApp4.csproj": {
  4012. "projectPath": "E:\\Collage\\ConsoleApp4\\ConsoleApp4\\ConsoleApp4.csproj"
  4013. }
  4014. }
  4015. }
  4016. },
  4017. "warningProperties": {
  4018. "warnAsError": [
  4019. "NU1605"
  4020. ]
  4021. }
  4022. },
  4023. "frameworks": {
  4024. "net6.0": {
  4025. "targetAlias": "net6.0",
  4026. "dependencies": {
  4027. "Microsoft.NET.Test.Sdk": {
  4028. "target": "Package",
  4029. "version": "[17.1.0, )"
  4030. },
  4031. "NUnit": {
  4032. "target": "Package",
  4033. "version": "[3.13.3, )"
  4034. },
  4035. "NUnit.Analyzers": {
  4036. "target": "Package",
  4037. "version": "[3.3.0, )"
  4038. },
  4039. "NUnit3TestAdapter": {
  4040. "target": "Package",
  4041. "version": "[4.2.1, )"
  4042. },
  4043. "coverlet.collector": {
  4044. "target": "Package",
  4045. "version": "[3.1.2, )"
  4046. }
  4047. },
  4048. "imports": [
  4049. "net461",
  4050. "net462",
  4051. "net47",
  4052. "net471",
  4053. "net472",
  4054. "net48",
  4055. "net481"
  4056. ],
  4057. "assetTargetFallback": true,
  4058. "warn": true,
  4059. "frameworkReferences": {
  4060. "Microsoft.NETCore.App": {
  4061. "privateAssets": "all"
  4062. }
  4063. },
  4064. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.406\\RuntimeIdentifierGraph.json"
  4065. }
  4066. }
  4067. }
  4068. }