project.assets.json 188 KB

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