project.assets.json 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0": {
  5. "coverlet.collector/6.0.2": {
  6. "type": "package",
  7. "build": {
  8. "build/netstandard2.0/coverlet.collector.targets": {}
  9. }
  10. },
  11. "Microsoft.ApplicationInsights/2.21.0": {
  12. "type": "package",
  13. "dependencies": {
  14. "System.Diagnostics.DiagnosticSource": "5.0.0"
  15. },
  16. "compile": {
  17. "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
  18. "related": ".pdb;.xml"
  19. }
  20. },
  21. "runtime": {
  22. "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
  23. "related": ".pdb;.xml"
  24. }
  25. }
  26. },
  27. "Microsoft.CodeCoverage/17.9.0": {
  28. "type": "package",
  29. "compile": {
  30. "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  31. },
  32. "runtime": {
  33. "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
  34. },
  35. "build": {
  36. "build/netstandard2.0/Microsoft.CodeCoverage.props": {},
  37. "build/netstandard2.0/Microsoft.CodeCoverage.targets": {}
  38. }
  39. },
  40. "Microsoft.NET.Test.Sdk/17.9.0": {
  41. "type": "package",
  42. "dependencies": {
  43. "Microsoft.CodeCoverage": "17.9.0",
  44. "Microsoft.TestPlatform.TestHost": "17.9.0"
  45. },
  46. "compile": {
  47. "lib/netcoreapp3.1/_._": {}
  48. },
  49. "runtime": {
  50. "lib/netcoreapp3.1/_._": {}
  51. },
  52. "build": {
  53. "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props": {},
  54. "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets": {}
  55. },
  56. "buildMultiTargeting": {
  57. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {}
  58. }
  59. },
  60. "Microsoft.Testing.Extensions.Telemetry/1.0.2": {
  61. "type": "package",
  62. "dependencies": {
  63. "Microsoft.ApplicationInsights": "2.21.0",
  64. "Microsoft.Testing.Platform": "1.0.2"
  65. },
  66. "compile": {
  67. "lib/net6.0/Microsoft.Testing.Extensions.Telemetry.dll": {
  68. "related": ".xml"
  69. }
  70. },
  71. "runtime": {
  72. "lib/net6.0/Microsoft.Testing.Extensions.Telemetry.dll": {
  73. "related": ".xml"
  74. }
  75. },
  76. "resource": {
  77. "lib/net6.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
  78. "locale": "cs"
  79. },
  80. "lib/net6.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
  81. "locale": "de"
  82. },
  83. "lib/net6.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
  84. "locale": "es"
  85. },
  86. "lib/net6.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
  87. "locale": "fr"
  88. },
  89. "lib/net6.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
  90. "locale": "it"
  91. },
  92. "lib/net6.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
  93. "locale": "ja"
  94. },
  95. "lib/net6.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
  96. "locale": "ko"
  97. },
  98. "lib/net6.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
  99. "locale": "pl"
  100. },
  101. "lib/net6.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
  102. "locale": "pt-BR"
  103. },
  104. "lib/net6.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
  105. "locale": "ru"
  106. },
  107. "lib/net6.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
  108. "locale": "tr"
  109. },
  110. "lib/net6.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
  111. "locale": "zh-Hans"
  112. },
  113. "lib/net6.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
  114. "locale": "zh-Hant"
  115. }
  116. },
  117. "build": {
  118. "buildTransitive/net6.0/Microsoft.Testing.Extensions.Telemetry.props": {}
  119. },
  120. "buildMultiTargeting": {
  121. "buildMultiTargeting/Microsoft.Testing.Extensions.Telemetry.props": {}
  122. }
  123. },
  124. "Microsoft.Testing.Extensions.TrxReport.Abstractions/1.0.2": {
  125. "type": "package",
  126. "dependencies": {
  127. "Microsoft.Testing.Platform": "1.0.2"
  128. },
  129. "compile": {
  130. "lib/net6.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll": {
  131. "related": ".xml"
  132. }
  133. },
  134. "runtime": {
  135. "lib/net6.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll": {
  136. "related": ".xml"
  137. }
  138. }
  139. },
  140. "Microsoft.Testing.Extensions.VSTestBridge/1.0.2": {
  141. "type": "package",
  142. "dependencies": {
  143. "Microsoft.TestPlatform.ObjectModel": "17.5.0",
  144. "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.0.2",
  145. "Microsoft.Testing.Platform": "1.0.2"
  146. },
  147. "compile": {
  148. "lib/net6.0/Microsoft.Testing.Extensions.VSTestBridge.dll": {
  149. "related": ".xml"
  150. }
  151. },
  152. "runtime": {
  153. "lib/net6.0/Microsoft.Testing.Extensions.VSTestBridge.dll": {
  154. "related": ".xml"
  155. }
  156. },
  157. "resource": {
  158. "lib/net6.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
  159. "locale": "cs"
  160. },
  161. "lib/net6.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
  162. "locale": "de"
  163. },
  164. "lib/net6.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
  165. "locale": "es"
  166. },
  167. "lib/net6.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
  168. "locale": "fr"
  169. },
  170. "lib/net6.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
  171. "locale": "it"
  172. },
  173. "lib/net6.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
  174. "locale": "ja"
  175. },
  176. "lib/net6.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
  177. "locale": "ko"
  178. },
  179. "lib/net6.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
  180. "locale": "pl"
  181. },
  182. "lib/net6.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
  183. "locale": "pt-BR"
  184. },
  185. "lib/net6.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
  186. "locale": "ru"
  187. },
  188. "lib/net6.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
  189. "locale": "tr"
  190. },
  191. "lib/net6.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
  192. "locale": "zh-Hans"
  193. },
  194. "lib/net6.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
  195. "locale": "zh-Hant"
  196. }
  197. }
  198. },
  199. "Microsoft.Testing.Platform/1.0.2": {
  200. "type": "package",
  201. "compile": {
  202. "lib/net6.0/Microsoft.Testing.Platform.dll": {
  203. "related": ".xml"
  204. }
  205. },
  206. "runtime": {
  207. "lib/net6.0/Microsoft.Testing.Platform.dll": {
  208. "related": ".xml"
  209. }
  210. },
  211. "resource": {
  212. "lib/net6.0/cs/Microsoft.Testing.Platform.resources.dll": {
  213. "locale": "cs"
  214. },
  215. "lib/net6.0/de/Microsoft.Testing.Platform.resources.dll": {
  216. "locale": "de"
  217. },
  218. "lib/net6.0/es/Microsoft.Testing.Platform.resources.dll": {
  219. "locale": "es"
  220. },
  221. "lib/net6.0/fr/Microsoft.Testing.Platform.resources.dll": {
  222. "locale": "fr"
  223. },
  224. "lib/net6.0/it/Microsoft.Testing.Platform.resources.dll": {
  225. "locale": "it"
  226. },
  227. "lib/net6.0/ja/Microsoft.Testing.Platform.resources.dll": {
  228. "locale": "ja"
  229. },
  230. "lib/net6.0/ko/Microsoft.Testing.Platform.resources.dll": {
  231. "locale": "ko"
  232. },
  233. "lib/net6.0/pl/Microsoft.Testing.Platform.resources.dll": {
  234. "locale": "pl"
  235. },
  236. "lib/net6.0/pt-BR/Microsoft.Testing.Platform.resources.dll": {
  237. "locale": "pt-BR"
  238. },
  239. "lib/net6.0/ru/Microsoft.Testing.Platform.resources.dll": {
  240. "locale": "ru"
  241. },
  242. "lib/net6.0/tr/Microsoft.Testing.Platform.resources.dll": {
  243. "locale": "tr"
  244. },
  245. "lib/net6.0/zh-Hans/Microsoft.Testing.Platform.resources.dll": {
  246. "locale": "zh-Hans"
  247. },
  248. "lib/net6.0/zh-Hant/Microsoft.Testing.Platform.resources.dll": {
  249. "locale": "zh-Hant"
  250. }
  251. }
  252. },
  253. "Microsoft.Testing.Platform.MSBuild/1.0.2": {
  254. "type": "package",
  255. "dependencies": {
  256. "Microsoft.Testing.Platform": "1.0.2"
  257. },
  258. "compile": {
  259. "lib/net6.0/Microsoft.Testing.Platform.MSBuild.dll": {
  260. "related": ".xml"
  261. },
  262. "lib/net6.0/Microsoft.Testing.Platform.dll": {
  263. "related": ".MSBuild.xml"
  264. }
  265. },
  266. "runtime": {
  267. "lib/net6.0/Microsoft.Testing.Platform.MSBuild.dll": {
  268. "related": ".xml"
  269. },
  270. "lib/net6.0/Microsoft.Testing.Platform.dll": {
  271. "related": ".MSBuild.xml"
  272. }
  273. },
  274. "resource": {
  275. "lib/net6.0/cs/Microsoft.Testing.Platform.MSBuild.resources.dll": {
  276. "locale": "cs"
  277. },
  278. "lib/net6.0/de/Microsoft.Testing.Platform.MSBuild.resources.dll": {
  279. "locale": "de"
  280. },
  281. "lib/net6.0/es/Microsoft.Testing.Platform.MSBuild.resources.dll": {
  282. "locale": "es"
  283. },
  284. "lib/net6.0/fr/Microsoft.Testing.Platform.MSBuild.resources.dll": {
  285. "locale": "fr"
  286. },
  287. "lib/net6.0/it/Microsoft.Testing.Platform.MSBuild.resources.dll": {
  288. "locale": "it"
  289. },
  290. "lib/net6.0/ja/Microsoft.Testing.Platform.MSBuild.resources.dll": {
  291. "locale": "ja"
  292. },
  293. "lib/net6.0/ko/Microsoft.Testing.Platform.MSBuild.resources.dll": {
  294. "locale": "ko"
  295. },
  296. "lib/net6.0/pl/Microsoft.Testing.Platform.MSBuild.resources.dll": {
  297. "locale": "pl"
  298. },
  299. "lib/net6.0/pt-BR/Microsoft.Testing.Platform.MSBuild.resources.dll": {
  300. "locale": "pt-BR"
  301. },
  302. "lib/net6.0/ru/Microsoft.Testing.Platform.MSBuild.resources.dll": {
  303. "locale": "ru"
  304. },
  305. "lib/net6.0/tr/Microsoft.Testing.Platform.MSBuild.resources.dll": {
  306. "locale": "tr"
  307. },
  308. "lib/net6.0/zh-Hans/Microsoft.Testing.Platform.MSBuild.resources.dll": {
  309. "locale": "zh-Hans"
  310. },
  311. "lib/net6.0/zh-Hant/Microsoft.Testing.Platform.MSBuild.resources.dll": {
  312. "locale": "zh-Hant"
  313. }
  314. },
  315. "build": {
  316. "buildTransitive/net6.0/Microsoft.Testing.Platform.MSBuild.props": {},
  317. "buildTransitive/net6.0/Microsoft.Testing.Platform.MSBuild.targets": {}
  318. },
  319. "buildMultiTargeting": {
  320. "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.props": {},
  321. "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.targets": {}
  322. }
  323. },
  324. "Microsoft.TestPlatform.ObjectModel/17.9.0": {
  325. "type": "package",
  326. "dependencies": {
  327. "System.Reflection.Metadata": "1.6.0"
  328. },
  329. "compile": {
  330. "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  331. "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  332. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  333. },
  334. "runtime": {
  335. "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  336. "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  337. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
  338. },
  339. "resource": {
  340. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  341. "locale": "cs"
  342. },
  343. "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  344. "locale": "cs"
  345. },
  346. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  347. "locale": "de"
  348. },
  349. "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  350. "locale": "de"
  351. },
  352. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  353. "locale": "es"
  354. },
  355. "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  356. "locale": "es"
  357. },
  358. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  359. "locale": "fr"
  360. },
  361. "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  362. "locale": "fr"
  363. },
  364. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  365. "locale": "it"
  366. },
  367. "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  368. "locale": "it"
  369. },
  370. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  371. "locale": "ja"
  372. },
  373. "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  374. "locale": "ja"
  375. },
  376. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  377. "locale": "ko"
  378. },
  379. "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  380. "locale": "ko"
  381. },
  382. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  383. "locale": "pl"
  384. },
  385. "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  386. "locale": "pl"
  387. },
  388. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  389. "locale": "pt-BR"
  390. },
  391. "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  392. "locale": "pt-BR"
  393. },
  394. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  395. "locale": "ru"
  396. },
  397. "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  398. "locale": "ru"
  399. },
  400. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  401. "locale": "tr"
  402. },
  403. "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  404. "locale": "tr"
  405. },
  406. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  407. "locale": "zh-Hans"
  408. },
  409. "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  410. "locale": "zh-Hans"
  411. },
  412. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  413. "locale": "zh-Hant"
  414. },
  415. "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  416. "locale": "zh-Hant"
  417. }
  418. }
  419. },
  420. "Microsoft.TestPlatform.TestHost/17.9.0": {
  421. "type": "package",
  422. "dependencies": {
  423. "Microsoft.TestPlatform.ObjectModel": "17.9.0",
  424. "Newtonsoft.Json": "13.0.1"
  425. },
  426. "compile": {
  427. "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  428. "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  429. "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  430. "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  431. "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {},
  432. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  433. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
  434. "lib/netcoreapp3.1/testhost.dll": {
  435. "related": ".deps.json"
  436. }
  437. },
  438. "runtime": {
  439. "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
  440. "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
  441. "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
  442. "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
  443. "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {},
  444. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
  445. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
  446. "lib/netcoreapp3.1/testhost.dll": {
  447. "related": ".deps.json"
  448. }
  449. },
  450. "resource": {
  451. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  452. "locale": "cs"
  453. },
  454. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  455. "locale": "cs"
  456. },
  457. "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  458. "locale": "cs"
  459. },
  460. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  461. "locale": "de"
  462. },
  463. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  464. "locale": "de"
  465. },
  466. "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  467. "locale": "de"
  468. },
  469. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  470. "locale": "es"
  471. },
  472. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  473. "locale": "es"
  474. },
  475. "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  476. "locale": "es"
  477. },
  478. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  479. "locale": "fr"
  480. },
  481. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  482. "locale": "fr"
  483. },
  484. "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  485. "locale": "fr"
  486. },
  487. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  488. "locale": "it"
  489. },
  490. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  491. "locale": "it"
  492. },
  493. "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  494. "locale": "it"
  495. },
  496. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  497. "locale": "ja"
  498. },
  499. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  500. "locale": "ja"
  501. },
  502. "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  503. "locale": "ja"
  504. },
  505. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  506. "locale": "ko"
  507. },
  508. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  509. "locale": "ko"
  510. },
  511. "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  512. "locale": "ko"
  513. },
  514. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  515. "locale": "pl"
  516. },
  517. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  518. "locale": "pl"
  519. },
  520. "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  521. "locale": "pl"
  522. },
  523. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  524. "locale": "pt-BR"
  525. },
  526. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  527. "locale": "pt-BR"
  528. },
  529. "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  530. "locale": "pt-BR"
  531. },
  532. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  533. "locale": "ru"
  534. },
  535. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  536. "locale": "ru"
  537. },
  538. "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  539. "locale": "ru"
  540. },
  541. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  542. "locale": "tr"
  543. },
  544. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  545. "locale": "tr"
  546. },
  547. "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  548. "locale": "tr"
  549. },
  550. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  551. "locale": "zh-Hans"
  552. },
  553. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  554. "locale": "zh-Hans"
  555. },
  556. "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  557. "locale": "zh-Hans"
  558. },
  559. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  560. "locale": "zh-Hant"
  561. },
  562. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  563. "locale": "zh-Hant"
  564. },
  565. "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  566. "locale": "zh-Hant"
  567. }
  568. },
  569. "build": {
  570. "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props": {}
  571. }
  572. },
  573. "MSTest.TestAdapter/3.2.2": {
  574. "type": "package",
  575. "dependencies": {
  576. "Microsoft.Testing.Extensions.Telemetry": "1.0.2",
  577. "Microsoft.Testing.Extensions.VSTestBridge": "1.0.2",
  578. "Microsoft.Testing.Platform.MSBuild": "1.0.2"
  579. },
  580. "build": {
  581. "build/net6.0/MSTest.TestAdapter.props": {},
  582. "build/net6.0/MSTest.TestAdapter.targets": {}
  583. }
  584. },
  585. "MSTest.TestFramework/3.2.2": {
  586. "type": "package",
  587. "compile": {
  588. "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {
  589. "related": ".xml"
  590. }
  591. },
  592. "runtime": {
  593. "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {
  594. "related": ".xml"
  595. }
  596. },
  597. "resource": {
  598. "lib/net6.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  599. "locale": "cs"
  600. },
  601. "lib/net6.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  602. "locale": "de"
  603. },
  604. "lib/net6.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  605. "locale": "es"
  606. },
  607. "lib/net6.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  608. "locale": "fr"
  609. },
  610. "lib/net6.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  611. "locale": "it"
  612. },
  613. "lib/net6.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  614. "locale": "ja"
  615. },
  616. "lib/net6.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  617. "locale": "ko"
  618. },
  619. "lib/net6.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  620. "locale": "pl"
  621. },
  622. "lib/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  623. "locale": "pt-BR"
  624. },
  625. "lib/net6.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  626. "locale": "ru"
  627. },
  628. "lib/net6.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  629. "locale": "tr"
  630. },
  631. "lib/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  632. "locale": "zh-Hans"
  633. },
  634. "lib/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll": {
  635. "locale": "zh-Hant"
  636. }
  637. },
  638. "build": {
  639. "build/net6.0/MSTest.TestFramework.targets": {}
  640. }
  641. },
  642. "Newtonsoft.Json/13.0.1": {
  643. "type": "package",
  644. "compile": {
  645. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  646. "related": ".xml"
  647. }
  648. },
  649. "runtime": {
  650. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  651. "related": ".xml"
  652. }
  653. }
  654. },
  655. "System.Diagnostics.DiagnosticSource/5.0.0": {
  656. "type": "package",
  657. "compile": {
  658. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  659. "related": ".xml"
  660. }
  661. },
  662. "runtime": {
  663. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  664. "related": ".xml"
  665. }
  666. }
  667. },
  668. "System.Reflection.Metadata/1.6.0": {
  669. "type": "package",
  670. "compile": {
  671. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  672. "related": ".xml"
  673. }
  674. },
  675. "runtime": {
  676. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  677. "related": ".xml"
  678. }
  679. }
  680. },
  681. "ConsoleApp2/1.0.0": {
  682. "type": "project",
  683. "framework": ".NETCoreApp,Version=v6.0",
  684. "compile": {
  685. "bin/placeholder/ConsoleApp2.dll": {}
  686. },
  687. "runtime": {
  688. "bin/placeholder/ConsoleApp2.dll": {}
  689. }
  690. }
  691. }
  692. },
  693. "libraries": {
  694. "coverlet.collector/6.0.2": {
  695. "sha512": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==",
  696. "type": "package",
  697. "path": "coverlet.collector/6.0.2",
  698. "files": [
  699. ".nupkg.metadata",
  700. ".signature.p7s",
  701. "VSTestIntegration.md",
  702. "build/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  703. "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  704. "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  705. "build/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  706. "build/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  707. "build/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll",
  708. "build/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  709. "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  710. "build/netstandard2.0/Mono.Cecil.Mdb.dll",
  711. "build/netstandard2.0/Mono.Cecil.Pdb.dll",
  712. "build/netstandard2.0/Mono.Cecil.Rocks.dll",
  713. "build/netstandard2.0/Mono.Cecil.dll",
  714. "build/netstandard2.0/Newtonsoft.Json.dll",
  715. "build/netstandard2.0/NuGet.Frameworks.dll",
  716. "build/netstandard2.0/NuGet.Versioning.dll",
  717. "build/netstandard2.0/System.Buffers.dll",
  718. "build/netstandard2.0/System.Collections.Immutable.dll",
  719. "build/netstandard2.0/System.Memory.dll",
  720. "build/netstandard2.0/System.Numerics.Vectors.dll",
  721. "build/netstandard2.0/System.Reflection.Metadata.dll",
  722. "build/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  723. "build/netstandard2.0/System.Text.Encodings.Web.dll",
  724. "build/netstandard2.0/System.Text.Json.dll",
  725. "build/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  726. "build/netstandard2.0/coverlet.collector.deps.json",
  727. "build/netstandard2.0/coverlet.collector.dll",
  728. "build/netstandard2.0/coverlet.collector.pdb",
  729. "build/netstandard2.0/coverlet.collector.targets",
  730. "build/netstandard2.0/coverlet.core.dll",
  731. "build/netstandard2.0/coverlet.core.pdb",
  732. "build/netstandard2.0/coverlet.core.xml",
  733. "build/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  734. "build/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  735. "build/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  736. "build/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  737. "build/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  738. "build/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  739. "build/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  740. "build/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  741. "build/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  742. "build/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  743. "build/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  744. "build/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  745. "build/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  746. "build/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  747. "build/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  748. "build/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  749. "build/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  750. "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  751. "build/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  752. "build/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  753. "build/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  754. "build/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  755. "build/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  756. "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  757. "build/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  758. "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  759. "coverlet-icon.png",
  760. "coverlet.collector.6.0.2.nupkg.sha512",
  761. "coverlet.collector.nuspec"
  762. ]
  763. },
  764. "Microsoft.ApplicationInsights/2.21.0": {
  765. "sha512": "btZEDWAFNo9CoYliMCriSMTX3ruRGZTtYw4mo2XyyfLlowFicYVM2Xszi5evDG95QRYV7MbbH3D2RqVwfZlJHw==",
  766. "type": "package",
  767. "path": "microsoft.applicationinsights/2.21.0",
  768. "files": [
  769. ".nupkg.metadata",
  770. ".signature.p7s",
  771. "icon.png",
  772. "lib/net452/Microsoft.ApplicationInsights.dll",
  773. "lib/net452/Microsoft.ApplicationInsights.pdb",
  774. "lib/net452/Microsoft.ApplicationInsights.xml",
  775. "lib/net46/Microsoft.ApplicationInsights.dll",
  776. "lib/net46/Microsoft.ApplicationInsights.pdb",
  777. "lib/net46/Microsoft.ApplicationInsights.xml",
  778. "lib/netstandard2.0/Microsoft.ApplicationInsights.dll",
  779. "lib/netstandard2.0/Microsoft.ApplicationInsights.pdb",
  780. "lib/netstandard2.0/Microsoft.ApplicationInsights.xml",
  781. "microsoft.applicationinsights.2.21.0.nupkg.sha512",
  782. "microsoft.applicationinsights.nuspec"
  783. ]
  784. },
  785. "Microsoft.CodeCoverage/17.9.0": {
  786. "sha512": "RGD37ZSrratfScYXm7M0HjvxMxZyWZL4jm+XgMZbkIY1UPgjUpbNA/t+WTGj/rC/0Hm9A3IrH3ywbKZkOCnoZA==",
  787. "type": "package",
  788. "path": "microsoft.codecoverage/17.9.0",
  789. "files": [
  790. ".nupkg.metadata",
  791. ".signature.p7s",
  792. "Icon.png",
  793. "LICENSE_MIT.txt",
  794. "ThirdPartyNotices.txt",
  795. "build/netstandard2.0/CodeCoverage/CodeCoverage.config",
  796. "build/netstandard2.0/CodeCoverage/CodeCoverage.exe",
  797. "build/netstandard2.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config",
  798. "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe",
  799. "build/netstandard2.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config",
  800. "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll",
  801. "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll",
  802. "build/netstandard2.0/CodeCoverage/arm64/VanguardInstrumentationProfiler_arm64.config",
  803. "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll",
  804. "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll",
  805. "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll",
  806. "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  807. "build/netstandard2.0/CodeCoverage/covrun32.dll",
  808. "build/netstandard2.0/CodeCoverage/msdia140.dll",
  809. "build/netstandard2.0/InstrumentationEngine/alpine/x64/VanguardInstrumentationProfiler_x64.config",
  810. "build/netstandard2.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so",
  811. "build/netstandard2.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so",
  812. "build/netstandard2.0/InstrumentationEngine/arm64/MicrosoftInstrumentationEngine_arm64.dll",
  813. "build/netstandard2.0/InstrumentationEngine/macos/x64/VanguardInstrumentationProfiler_x64.config",
  814. "build/netstandard2.0/InstrumentationEngine/macos/x64/libCoverageInstrumentationMethod.dylib",
  815. "build/netstandard2.0/InstrumentationEngine/macos/x64/libInstrumentationEngine.dylib",
  816. "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/VanguardInstrumentationProfiler_x64.config",
  817. "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so",
  818. "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so",
  819. "build/netstandard2.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll",
  820. "build/netstandard2.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll",
  821. "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll",
  822. "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll",
  823. "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll",
  824. "build/netstandard2.0/Microsoft.CodeCoverage.props",
  825. "build/netstandard2.0/Microsoft.CodeCoverage.targets",
  826. "build/netstandard2.0/Microsoft.DiaSymReader.dll",
  827. "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll",
  828. "build/netstandard2.0/Mono.Cecil.Pdb.dll",
  829. "build/netstandard2.0/Mono.Cecil.Rocks.dll",
  830. "build/netstandard2.0/Mono.Cecil.dll",
  831. "build/netstandard2.0/ThirdPartyNotices.txt",
  832. "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  833. "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  834. "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  835. "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  836. "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  837. "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  838. "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  839. "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  840. "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  841. "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  842. "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  843. "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  844. "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
  845. "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  846. "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
  847. "microsoft.codecoverage.17.9.0.nupkg.sha512",
  848. "microsoft.codecoverage.nuspec"
  849. ]
  850. },
  851. "Microsoft.NET.Test.Sdk/17.9.0": {
  852. "sha512": "7GUNAUbJYn644jzwLm5BD3a2p9C1dmP8Hr6fDPDxgItQk9hBs1Svdxzz07KQ/UphMSmgza9AbijBJGmw5D658A==",
  853. "type": "package",
  854. "path": "microsoft.net.test.sdk/17.9.0",
  855. "files": [
  856. ".nupkg.metadata",
  857. ".signature.p7s",
  858. "Icon.png",
  859. "LICENSE_MIT.txt",
  860. "build/net462/Microsoft.NET.Test.Sdk.props",
  861. "build/net462/Microsoft.NET.Test.Sdk.targets",
  862. "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.cs",
  863. "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.fs",
  864. "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.vb",
  865. "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props",
  866. "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets",
  867. "buildMultiTargeting/Microsoft.NET.Test.Sdk.props",
  868. "lib/net462/_._",
  869. "lib/netcoreapp3.1/_._",
  870. "microsoft.net.test.sdk.17.9.0.nupkg.sha512",
  871. "microsoft.net.test.sdk.nuspec"
  872. ]
  873. },
  874. "Microsoft.Testing.Extensions.Telemetry/1.0.2": {
  875. "sha512": "32YnySeewFl0IAgI27bTbFZdfA+Tvmg5p7kxgPcFAPKLjW1HTNKlKMrEYFgCIIT1Onak2Iod0tvsHYqXzV3a+w==",
  876. "type": "package",
  877. "path": "microsoft.testing.extensions.telemetry/1.0.2",
  878. "files": [
  879. ".nupkg.metadata",
  880. ".signature.p7s",
  881. "Icon.png",
  882. "License.txt",
  883. "PACKAGE.md",
  884. "build/net6.0/Microsoft.Testing.Extensions.Telemetry.props",
  885. "build/net7.0/Microsoft.Testing.Extensions.Telemetry.props",
  886. "build/net8.0/Microsoft.Testing.Extensions.Telemetry.props",
  887. "build/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.props",
  888. "buildMultiTargeting/Microsoft.Testing.Extensions.Telemetry.props",
  889. "buildTransitive/net6.0/Microsoft.Testing.Extensions.Telemetry.props",
  890. "buildTransitive/net7.0/Microsoft.Testing.Extensions.Telemetry.props",
  891. "buildTransitive/net8.0/Microsoft.Testing.Extensions.Telemetry.props",
  892. "buildTransitive/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.props",
  893. "lib/net6.0/Microsoft.Testing.Extensions.Telemetry.dll",
  894. "lib/net6.0/Microsoft.Testing.Extensions.Telemetry.xml",
  895. "lib/net6.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  896. "lib/net6.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  897. "lib/net6.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  898. "lib/net6.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  899. "lib/net6.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  900. "lib/net6.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  901. "lib/net6.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  902. "lib/net6.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  903. "lib/net6.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  904. "lib/net6.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  905. "lib/net6.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  906. "lib/net6.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  907. "lib/net6.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  908. "lib/net7.0/Microsoft.Testing.Extensions.Telemetry.dll",
  909. "lib/net7.0/Microsoft.Testing.Extensions.Telemetry.xml",
  910. "lib/net7.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  911. "lib/net7.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  912. "lib/net7.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  913. "lib/net7.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  914. "lib/net7.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  915. "lib/net7.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  916. "lib/net7.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  917. "lib/net7.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  918. "lib/net7.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  919. "lib/net7.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  920. "lib/net7.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  921. "lib/net7.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  922. "lib/net7.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  923. "lib/net8.0/Microsoft.Testing.Extensions.Telemetry.dll",
  924. "lib/net8.0/Microsoft.Testing.Extensions.Telemetry.xml",
  925. "lib/net8.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  926. "lib/net8.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  927. "lib/net8.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  928. "lib/net8.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  929. "lib/net8.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  930. "lib/net8.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  931. "lib/net8.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  932. "lib/net8.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  933. "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  934. "lib/net8.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  935. "lib/net8.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  936. "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  937. "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  938. "lib/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.dll",
  939. "lib/netstandard2.0/Microsoft.Testing.Extensions.Telemetry.xml",
  940. "lib/netstandard2.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  941. "lib/netstandard2.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  942. "lib/netstandard2.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  943. "lib/netstandard2.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  944. "lib/netstandard2.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  945. "lib/netstandard2.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  946. "lib/netstandard2.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  947. "lib/netstandard2.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  948. "lib/netstandard2.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  949. "lib/netstandard2.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  950. "lib/netstandard2.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  951. "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  952. "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll",
  953. "microsoft.testing.extensions.telemetry.1.0.2.nupkg.sha512",
  954. "microsoft.testing.extensions.telemetry.nuspec"
  955. ]
  956. },
  957. "Microsoft.Testing.Extensions.TrxReport.Abstractions/1.0.2": {
  958. "sha512": "MPHXtnoaf3lESF7eXbYSzvb12K1SZslEpQ1evf3GZAvtfXXyBeFwpcSMd+l3jW8z+zhmniC2gAc6jq/GEgFW2Q==",
  959. "type": "package",
  960. "path": "microsoft.testing.extensions.trxreport.abstractions/1.0.2",
  961. "files": [
  962. ".nupkg.metadata",
  963. ".signature.p7s",
  964. "Icon.png",
  965. "License.txt",
  966. "PACKAGE.md",
  967. "lib/net6.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll",
  968. "lib/net6.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml",
  969. "lib/net7.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll",
  970. "lib/net7.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml",
  971. "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll",
  972. "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml",
  973. "lib/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll",
  974. "lib/netstandard2.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.xml",
  975. "microsoft.testing.extensions.trxreport.abstractions.1.0.2.nupkg.sha512",
  976. "microsoft.testing.extensions.trxreport.abstractions.nuspec"
  977. ]
  978. },
  979. "Microsoft.Testing.Extensions.VSTestBridge/1.0.2": {
  980. "sha512": "68/CZ2mmtdNx8QrMenQ90HVb0gYGpFP54GLRwvMyaDgnhwYgN55TDU+ypBS3X5xThJda42mckfFhBqpjjeYz+A==",
  981. "type": "package",
  982. "path": "microsoft.testing.extensions.vstestbridge/1.0.2",
  983. "files": [
  984. ".nupkg.metadata",
  985. ".signature.p7s",
  986. "Icon.png",
  987. "License.txt",
  988. "PACKAGE.md",
  989. "lib/net6.0/Microsoft.Testing.Extensions.VSTestBridge.dll",
  990. "lib/net6.0/Microsoft.Testing.Extensions.VSTestBridge.xml",
  991. "lib/net6.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  992. "lib/net6.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  993. "lib/net6.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  994. "lib/net6.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  995. "lib/net6.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  996. "lib/net6.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  997. "lib/net6.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  998. "lib/net6.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  999. "lib/net6.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1000. "lib/net6.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1001. "lib/net6.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1002. "lib/net6.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1003. "lib/net6.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1004. "lib/net7.0/Microsoft.Testing.Extensions.VSTestBridge.dll",
  1005. "lib/net7.0/Microsoft.Testing.Extensions.VSTestBridge.xml",
  1006. "lib/net7.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1007. "lib/net7.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1008. "lib/net7.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1009. "lib/net7.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1010. "lib/net7.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1011. "lib/net7.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1012. "lib/net7.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1013. "lib/net7.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1014. "lib/net7.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1015. "lib/net7.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1016. "lib/net7.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1017. "lib/net7.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1018. "lib/net7.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1019. "lib/net8.0/Microsoft.Testing.Extensions.VSTestBridge.dll",
  1020. "lib/net8.0/Microsoft.Testing.Extensions.VSTestBridge.xml",
  1021. "lib/net8.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1022. "lib/net8.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1023. "lib/net8.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1024. "lib/net8.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1025. "lib/net8.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1026. "lib/net8.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1027. "lib/net8.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1028. "lib/net8.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1029. "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1030. "lib/net8.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1031. "lib/net8.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1032. "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1033. "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1034. "lib/netstandard2.0/Microsoft.Testing.Extensions.VSTestBridge.dll",
  1035. "lib/netstandard2.0/Microsoft.Testing.Extensions.VSTestBridge.xml",
  1036. "lib/netstandard2.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1037. "lib/netstandard2.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1038. "lib/netstandard2.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1039. "lib/netstandard2.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1040. "lib/netstandard2.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1041. "lib/netstandard2.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1042. "lib/netstandard2.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1043. "lib/netstandard2.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1044. "lib/netstandard2.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1045. "lib/netstandard2.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1046. "lib/netstandard2.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1047. "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1048. "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1049. "microsoft.testing.extensions.vstestbridge.1.0.2.nupkg.sha512",
  1050. "microsoft.testing.extensions.vstestbridge.nuspec"
  1051. ]
  1052. },
  1053. "Microsoft.Testing.Platform/1.0.2": {
  1054. "sha512": "pVZqxU3LsZLF7Cle0GH+j1+uz5FhmcxEe9sS5sZvONeqgv/EP/p7aI3bIaeoVs0YAVH3UmlqDAsWP5oXcT294A==",
  1055. "type": "package",
  1056. "path": "microsoft.testing.platform/1.0.2",
  1057. "files": [
  1058. ".nupkg.metadata",
  1059. ".signature.p7s",
  1060. "Icon.png",
  1061. "PACKAGE.md",
  1062. "lib/net6.0/Microsoft.Testing.Platform.dll",
  1063. "lib/net6.0/Microsoft.Testing.Platform.xml",
  1064. "lib/net6.0/cs/Microsoft.Testing.Platform.resources.dll",
  1065. "lib/net6.0/de/Microsoft.Testing.Platform.resources.dll",
  1066. "lib/net6.0/es/Microsoft.Testing.Platform.resources.dll",
  1067. "lib/net6.0/fr/Microsoft.Testing.Platform.resources.dll",
  1068. "lib/net6.0/it/Microsoft.Testing.Platform.resources.dll",
  1069. "lib/net6.0/ja/Microsoft.Testing.Platform.resources.dll",
  1070. "lib/net6.0/ko/Microsoft.Testing.Platform.resources.dll",
  1071. "lib/net6.0/pl/Microsoft.Testing.Platform.resources.dll",
  1072. "lib/net6.0/pt-BR/Microsoft.Testing.Platform.resources.dll",
  1073. "lib/net6.0/ru/Microsoft.Testing.Platform.resources.dll",
  1074. "lib/net6.0/tr/Microsoft.Testing.Platform.resources.dll",
  1075. "lib/net6.0/zh-Hans/Microsoft.Testing.Platform.resources.dll",
  1076. "lib/net6.0/zh-Hant/Microsoft.Testing.Platform.resources.dll",
  1077. "lib/net7.0/Microsoft.Testing.Platform.dll",
  1078. "lib/net7.0/Microsoft.Testing.Platform.xml",
  1079. "lib/net7.0/cs/Microsoft.Testing.Platform.resources.dll",
  1080. "lib/net7.0/de/Microsoft.Testing.Platform.resources.dll",
  1081. "lib/net7.0/es/Microsoft.Testing.Platform.resources.dll",
  1082. "lib/net7.0/fr/Microsoft.Testing.Platform.resources.dll",
  1083. "lib/net7.0/it/Microsoft.Testing.Platform.resources.dll",
  1084. "lib/net7.0/ja/Microsoft.Testing.Platform.resources.dll",
  1085. "lib/net7.0/ko/Microsoft.Testing.Platform.resources.dll",
  1086. "lib/net7.0/pl/Microsoft.Testing.Platform.resources.dll",
  1087. "lib/net7.0/pt-BR/Microsoft.Testing.Platform.resources.dll",
  1088. "lib/net7.0/ru/Microsoft.Testing.Platform.resources.dll",
  1089. "lib/net7.0/tr/Microsoft.Testing.Platform.resources.dll",
  1090. "lib/net7.0/zh-Hans/Microsoft.Testing.Platform.resources.dll",
  1091. "lib/net7.0/zh-Hant/Microsoft.Testing.Platform.resources.dll",
  1092. "lib/net8.0/Microsoft.Testing.Platform.dll",
  1093. "lib/net8.0/Microsoft.Testing.Platform.xml",
  1094. "lib/net8.0/cs/Microsoft.Testing.Platform.resources.dll",
  1095. "lib/net8.0/de/Microsoft.Testing.Platform.resources.dll",
  1096. "lib/net8.0/es/Microsoft.Testing.Platform.resources.dll",
  1097. "lib/net8.0/fr/Microsoft.Testing.Platform.resources.dll",
  1098. "lib/net8.0/it/Microsoft.Testing.Platform.resources.dll",
  1099. "lib/net8.0/ja/Microsoft.Testing.Platform.resources.dll",
  1100. "lib/net8.0/ko/Microsoft.Testing.Platform.resources.dll",
  1101. "lib/net8.0/pl/Microsoft.Testing.Platform.resources.dll",
  1102. "lib/net8.0/pt-BR/Microsoft.Testing.Platform.resources.dll",
  1103. "lib/net8.0/ru/Microsoft.Testing.Platform.resources.dll",
  1104. "lib/net8.0/tr/Microsoft.Testing.Platform.resources.dll",
  1105. "lib/net8.0/zh-Hans/Microsoft.Testing.Platform.resources.dll",
  1106. "lib/net8.0/zh-Hant/Microsoft.Testing.Platform.resources.dll",
  1107. "lib/netstandard2.0/Microsoft.Testing.Platform.dll",
  1108. "lib/netstandard2.0/Microsoft.Testing.Platform.xml",
  1109. "lib/netstandard2.0/cs/Microsoft.Testing.Platform.resources.dll",
  1110. "lib/netstandard2.0/de/Microsoft.Testing.Platform.resources.dll",
  1111. "lib/netstandard2.0/es/Microsoft.Testing.Platform.resources.dll",
  1112. "lib/netstandard2.0/fr/Microsoft.Testing.Platform.resources.dll",
  1113. "lib/netstandard2.0/it/Microsoft.Testing.Platform.resources.dll",
  1114. "lib/netstandard2.0/ja/Microsoft.Testing.Platform.resources.dll",
  1115. "lib/netstandard2.0/ko/Microsoft.Testing.Platform.resources.dll",
  1116. "lib/netstandard2.0/pl/Microsoft.Testing.Platform.resources.dll",
  1117. "lib/netstandard2.0/pt-BR/Microsoft.Testing.Platform.resources.dll",
  1118. "lib/netstandard2.0/ru/Microsoft.Testing.Platform.resources.dll",
  1119. "lib/netstandard2.0/tr/Microsoft.Testing.Platform.resources.dll",
  1120. "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Platform.resources.dll",
  1121. "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Platform.resources.dll",
  1122. "microsoft.testing.platform.1.0.2.nupkg.sha512",
  1123. "microsoft.testing.platform.nuspec"
  1124. ]
  1125. },
  1126. "Microsoft.Testing.Platform.MSBuild/1.0.2": {
  1127. "sha512": "9f5JiIEEEkI/MvCi9zCxbX8k9D4xtyqJkaWKtDIt4R/CAJEYN5op3LcUyfbMAKhsFUTn1D+DGTfu5XPoh6fwJw==",
  1128. "type": "package",
  1129. "path": "microsoft.testing.platform.msbuild/1.0.2",
  1130. "files": [
  1131. ".nupkg.metadata",
  1132. ".signature.p7s",
  1133. "Icon.png",
  1134. "License.txt",
  1135. "PACKAGE.md",
  1136. "build/net6.0/Microsoft.Testing.Platform.MSBuild.props",
  1137. "build/net6.0/Microsoft.Testing.Platform.MSBuild.targets",
  1138. "build/net7.0/Microsoft.Testing.Platform.MSBuild.props",
  1139. "build/net7.0/Microsoft.Testing.Platform.MSBuild.targets",
  1140. "build/net8.0/Microsoft.Testing.Platform.MSBuild.props",
  1141. "build/net8.0/Microsoft.Testing.Platform.MSBuild.targets",
  1142. "build/netstandard2.0/Microsoft.Testing.Platform.MSBuild.props",
  1143. "build/netstandard2.0/Microsoft.Testing.Platform.MSBuild.targets",
  1144. "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.VSTest.targets",
  1145. "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.props",
  1146. "buildMultiTargeting/Microsoft.Testing.Platform.MSBuild.targets",
  1147. "buildTransitive/net6.0/Microsoft.Testing.Platform.MSBuild.props",
  1148. "buildTransitive/net6.0/Microsoft.Testing.Platform.MSBuild.targets",
  1149. "buildTransitive/net7.0/Microsoft.Testing.Platform.MSBuild.props",
  1150. "buildTransitive/net7.0/Microsoft.Testing.Platform.MSBuild.targets",
  1151. "buildTransitive/net8.0/Microsoft.Testing.Platform.MSBuild.props",
  1152. "buildTransitive/net8.0/Microsoft.Testing.Platform.MSBuild.targets",
  1153. "buildTransitive/netstandard2.0/Microsoft.Testing.Platform.MSBuild.props",
  1154. "buildTransitive/netstandard2.0/Microsoft.Testing.Platform.MSBuild.targets",
  1155. "lib/net6.0/Microsoft.Testing.Platform.MSBuild.dll",
  1156. "lib/net6.0/Microsoft.Testing.Platform.MSBuild.xml",
  1157. "lib/net6.0/Microsoft.Testing.Platform.dll",
  1158. "lib/net6.0/cs/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1159. "lib/net6.0/de/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1160. "lib/net6.0/es/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1161. "lib/net6.0/fr/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1162. "lib/net6.0/it/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1163. "lib/net6.0/ja/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1164. "lib/net6.0/ko/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1165. "lib/net6.0/pl/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1166. "lib/net6.0/pt-BR/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1167. "lib/net6.0/ru/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1168. "lib/net6.0/tr/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1169. "lib/net6.0/zh-Hans/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1170. "lib/net6.0/zh-Hant/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1171. "lib/net7.0/Microsoft.Testing.Platform.MSBuild.dll",
  1172. "lib/net7.0/Microsoft.Testing.Platform.MSBuild.xml",
  1173. "lib/net7.0/Microsoft.Testing.Platform.dll",
  1174. "lib/net7.0/cs/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1175. "lib/net7.0/de/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1176. "lib/net7.0/es/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1177. "lib/net7.0/fr/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1178. "lib/net7.0/it/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1179. "lib/net7.0/ja/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1180. "lib/net7.0/ko/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1181. "lib/net7.0/pl/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1182. "lib/net7.0/pt-BR/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1183. "lib/net7.0/ru/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1184. "lib/net7.0/tr/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1185. "lib/net7.0/zh-Hans/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1186. "lib/net7.0/zh-Hant/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1187. "lib/net8.0/Microsoft.Testing.Platform.MSBuild.dll",
  1188. "lib/net8.0/Microsoft.Testing.Platform.MSBuild.xml",
  1189. "lib/net8.0/Microsoft.Testing.Platform.dll",
  1190. "lib/net8.0/cs/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1191. "lib/net8.0/de/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1192. "lib/net8.0/es/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1193. "lib/net8.0/fr/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1194. "lib/net8.0/it/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1195. "lib/net8.0/ja/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1196. "lib/net8.0/ko/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1197. "lib/net8.0/pl/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1198. "lib/net8.0/pt-BR/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1199. "lib/net8.0/ru/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1200. "lib/net8.0/tr/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1201. "lib/net8.0/zh-Hans/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1202. "lib/net8.0/zh-Hant/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1203. "lib/netstandard2.0/Microsoft.Testing.Platform.MSBuild.dll",
  1204. "lib/netstandard2.0/Microsoft.Testing.Platform.MSBuild.xml",
  1205. "lib/netstandard2.0/Microsoft.Testing.Platform.dll",
  1206. "lib/netstandard2.0/cs/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1207. "lib/netstandard2.0/de/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1208. "lib/netstandard2.0/es/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1209. "lib/netstandard2.0/fr/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1210. "lib/netstandard2.0/it/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1211. "lib/netstandard2.0/ja/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1212. "lib/netstandard2.0/ko/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1213. "lib/netstandard2.0/pl/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1214. "lib/netstandard2.0/pt-BR/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1215. "lib/netstandard2.0/ru/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1216. "lib/netstandard2.0/tr/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1217. "lib/netstandard2.0/zh-Hans/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1218. "lib/netstandard2.0/zh-Hant/Microsoft.Testing.Platform.MSBuild.resources.dll",
  1219. "microsoft.testing.platform.msbuild.1.0.2.nupkg.sha512",
  1220. "microsoft.testing.platform.msbuild.nuspec"
  1221. ]
  1222. },
  1223. "Microsoft.TestPlatform.ObjectModel/17.9.0": {
  1224. "sha512": "1ilw/8vgmjLyKU+2SKXKXaOqpYFJCQfGqGz+x0cosl981VzjrY74Sv6qAJv+neZMZ9ZMxF3ArN6kotaQ4uvEBw==",
  1225. "type": "package",
  1226. "path": "microsoft.testplatform.objectmodel/17.9.0",
  1227. "files": [
  1228. ".nupkg.metadata",
  1229. ".signature.p7s",
  1230. "Icon.png",
  1231. "LICENSE_MIT.txt",
  1232. "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll",
  1233. "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1234. "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1235. "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1236. "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1237. "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1238. "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1239. "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1240. "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1241. "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1242. "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1243. "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1244. "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1245. "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1246. "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1247. "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1248. "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1249. "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1250. "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1251. "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1252. "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1253. "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1254. "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1255. "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1256. "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1257. "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1258. "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1259. "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1260. "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1261. "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll",
  1262. "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1263. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1264. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1265. "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1266. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1267. "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1268. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1269. "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1270. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1271. "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1272. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1273. "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1274. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1275. "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1276. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1277. "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1278. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1279. "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1280. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1281. "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1282. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1283. "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1284. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1285. "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1286. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1287. "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1288. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1289. "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1290. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll",
  1291. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1292. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1293. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1294. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1295. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1296. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1297. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1298. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1299. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1300. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1301. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1302. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1303. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1304. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1305. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1306. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1307. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1308. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1309. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1310. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1311. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1312. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1313. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1314. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1315. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1316. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1317. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1318. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1319. "microsoft.testplatform.objectmodel.17.9.0.nupkg.sha512",
  1320. "microsoft.testplatform.objectmodel.nuspec"
  1321. ]
  1322. },
  1323. "Microsoft.TestPlatform.TestHost/17.9.0": {
  1324. "sha512": "Spmg7Wx49Ya3SxBjyeAR+nQpjMTKZwTwpZ7KyeOTIqI/WHNPnBU4HUvl5kuHPQAwGWqMy4FGZja1HvEwvoaDiA==",
  1325. "type": "package",
  1326. "path": "microsoft.testplatform.testhost/17.9.0",
  1327. "files": [
  1328. ".nupkg.metadata",
  1329. ".signature.p7s",
  1330. "Icon.png",
  1331. "LICENSE_MIT.txt",
  1332. "ThirdPartyNotices.txt",
  1333. "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props",
  1334. "build/netcoreapp3.1/x64/testhost.dll",
  1335. "build/netcoreapp3.1/x64/testhost.exe",
  1336. "build/netcoreapp3.1/x86/testhost.x86.dll",
  1337. "build/netcoreapp3.1/x86/testhost.x86.exe",
  1338. "lib/net462/_._",
  1339. "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll",
  1340. "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll",
  1341. "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll",
  1342. "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll",
  1343. "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll",
  1344. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll",
  1345. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
  1346. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1347. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1348. "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1349. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1350. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1351. "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1352. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1353. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1354. "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1355. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1356. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1357. "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1358. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1359. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1360. "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1361. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1362. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1363. "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1364. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1365. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1366. "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1367. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1368. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1369. "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1370. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1371. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1372. "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1373. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1374. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1375. "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1376. "lib/netcoreapp3.1/testhost.deps.json",
  1377. "lib/netcoreapp3.1/testhost.dll",
  1378. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1379. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1380. "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1381. "lib/netcoreapp3.1/x64/msdia140.dll",
  1382. "lib/netcoreapp3.1/x86/msdia140.dll",
  1383. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1384. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1385. "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1386. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
  1387. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
  1388. "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
  1389. "microsoft.testplatform.testhost.17.9.0.nupkg.sha512",
  1390. "microsoft.testplatform.testhost.nuspec"
  1391. ]
  1392. },
  1393. "MSTest.TestAdapter/3.2.2": {
  1394. "sha512": "E3dnR9KTNCP61O4yIRBPV0KFXQszW2IJv3O+LqNIK6rUrXNSsXc9QeZBnFYBYwA21uTv3e27xDyreddqe9eUHg==",
  1395. "type": "package",
  1396. "path": "mstest.testadapter/3.2.2",
  1397. "files": [
  1398. ".nupkg.metadata",
  1399. ".signature.p7s",
  1400. "Icon.png",
  1401. "PACKAGE.md",
  1402. "build/_localization/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1403. "build/_localization/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1404. "build/_localization/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1405. "build/_localization/cs/Microsoft.Testing.Platform.resources.dll",
  1406. "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1407. "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1408. "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1409. "build/_localization/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1410. "build/_localization/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1411. "build/_localization/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1412. "build/_localization/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1413. "build/_localization/de/Microsoft.Testing.Platform.resources.dll",
  1414. "build/_localization/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1415. "build/_localization/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1416. "build/_localization/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1417. "build/_localization/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1418. "build/_localization/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1419. "build/_localization/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1420. "build/_localization/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1421. "build/_localization/es/Microsoft.Testing.Platform.resources.dll",
  1422. "build/_localization/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1423. "build/_localization/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1424. "build/_localization/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1425. "build/_localization/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1426. "build/_localization/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1427. "build/_localization/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1428. "build/_localization/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1429. "build/_localization/fr/Microsoft.Testing.Platform.resources.dll",
  1430. "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1431. "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1432. "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1433. "build/_localization/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1434. "build/_localization/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1435. "build/_localization/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1436. "build/_localization/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1437. "build/_localization/it/Microsoft.Testing.Platform.resources.dll",
  1438. "build/_localization/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1439. "build/_localization/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1440. "build/_localization/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1441. "build/_localization/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1442. "build/_localization/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1443. "build/_localization/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1444. "build/_localization/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1445. "build/_localization/ja/Microsoft.Testing.Platform.resources.dll",
  1446. "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1447. "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1448. "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1449. "build/_localization/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1450. "build/_localization/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1451. "build/_localization/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1452. "build/_localization/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1453. "build/_localization/ko/Microsoft.Testing.Platform.resources.dll",
  1454. "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1455. "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1456. "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1457. "build/_localization/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1458. "build/_localization/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1459. "build/_localization/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1460. "build/_localization/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1461. "build/_localization/pl/Microsoft.Testing.Platform.resources.dll",
  1462. "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1463. "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1464. "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1465. "build/_localization/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1466. "build/_localization/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1467. "build/_localization/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1468. "build/_localization/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1469. "build/_localization/pt-BR/Microsoft.Testing.Platform.resources.dll",
  1470. "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1471. "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1472. "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1473. "build/_localization/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1474. "build/_localization/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1475. "build/_localization/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1476. "build/_localization/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1477. "build/_localization/ru/Microsoft.Testing.Platform.resources.dll",
  1478. "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1479. "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1480. "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1481. "build/_localization/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1482. "build/_localization/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1483. "build/_localization/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1484. "build/_localization/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1485. "build/_localization/tr/Microsoft.Testing.Platform.resources.dll",
  1486. "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1487. "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1488. "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1489. "build/_localization/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1490. "build/_localization/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1491. "build/_localization/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1492. "build/_localization/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1493. "build/_localization/zh-Hans/Microsoft.Testing.Platform.resources.dll",
  1494. "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1495. "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1496. "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1497. "build/_localization/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1498. "build/_localization/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll",
  1499. "build/_localization/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
  1500. "build/_localization/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll",
  1501. "build/_localization/zh-Hant/Microsoft.Testing.Platform.resources.dll",
  1502. "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll",
  1503. "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll",
  1504. "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
  1505. "build/_localization/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1506. "build/net462/MSTest.TestAdapter.props",
  1507. "build/net462/MSTest.TestAdapter.targets",
  1508. "build/net462/Microsoft.TestPlatform.AdapterUtilities.dll",
  1509. "build/net462/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  1510. "build/net462/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  1511. "build/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1512. "build/net6.0/MSTest.TestAdapter.props",
  1513. "build/net6.0/MSTest.TestAdapter.targets",
  1514. "build/net6.0/Microsoft.TestPlatform.AdapterUtilities.dll",
  1515. "build/net6.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  1516. "build/net6.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  1517. "build/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1518. "build/net6.0/winui/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  1519. "build/net7.0/MSTest.TestAdapter.props",
  1520. "build/net7.0/MSTest.TestAdapter.targets",
  1521. "build/net7.0/Microsoft.TestPlatform.AdapterUtilities.dll",
  1522. "build/net7.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  1523. "build/net7.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  1524. "build/net7.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1525. "build/net8.0/MSTest.TestAdapter.props",
  1526. "build/net8.0/MSTest.TestAdapter.targets",
  1527. "build/net8.0/Microsoft.TestPlatform.AdapterUtilities.dll",
  1528. "build/net8.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  1529. "build/net8.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  1530. "build/net8.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1531. "build/netcoreapp3.1/MSTest.TestAdapter.props",
  1532. "build/netcoreapp3.1/MSTest.TestAdapter.targets",
  1533. "build/netcoreapp3.1/Microsoft.TestPlatform.AdapterUtilities.dll",
  1534. "build/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  1535. "build/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  1536. "build/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1537. "build/netstandard2.0/MSTest.TestAdapter.props",
  1538. "build/netstandard2.0/MSTest.TestAdapter.targets",
  1539. "build/netstandard2.0/Microsoft.TestPlatform.AdapterUtilities.dll",
  1540. "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  1541. "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  1542. "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1543. "build/uap10.0/MSTest.TestAdapter.props",
  1544. "build/uap10.0/MSTest.TestAdapter.targets",
  1545. "build/uap10.0/Microsoft.TestPlatform.AdapterUtilities.dll",
  1546. "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll",
  1547. "build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll",
  1548. "build/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1549. "mstest.testadapter.3.2.2.nupkg.sha512",
  1550. "mstest.testadapter.nuspec"
  1551. ]
  1552. },
  1553. "MSTest.TestFramework/3.2.2": {
  1554. "sha512": "t3o8wfuMvjq1ETxsX6qBIOJMpnNpRoBjf2+0ZEKURSH+xHnpLM7yojNkLgJbir7vQGzQh7JaAUBO1MkszBvVrw==",
  1555. "type": "package",
  1556. "path": "mstest.testframework/3.2.2",
  1557. "files": [
  1558. ".nupkg.metadata",
  1559. ".signature.p7s",
  1560. "Icon.png",
  1561. "PACKAGE.md",
  1562. "build/net6.0/MSTest.TestFramework.targets",
  1563. "build/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  1564. "build/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  1565. "build/net6.0/winui/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  1566. "build/net6.0/winui/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  1567. "build/net7.0/MSTest.TestFramework.targets",
  1568. "build/net7.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  1569. "build/net7.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  1570. "build/net8.0/MSTest.TestFramework.targets",
  1571. "build/net8.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  1572. "build/net8.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  1573. "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  1574. "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  1575. "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1576. "lib/net462/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  1577. "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1578. "lib/net462/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1579. "lib/net462/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1580. "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1581. "lib/net462/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1582. "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1583. "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1584. "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1585. "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1586. "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1587. "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1588. "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1589. "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1590. "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1591. "lib/net6.0/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  1592. "lib/net6.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1593. "lib/net6.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1594. "lib/net6.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1595. "lib/net6.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1596. "lib/net6.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1597. "lib/net6.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1598. "lib/net6.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1599. "lib/net6.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1600. "lib/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1601. "lib/net6.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1602. "lib/net6.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1603. "lib/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1604. "lib/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1605. "lib/net7.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1606. "lib/net7.0/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  1607. "lib/net7.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1608. "lib/net7.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1609. "lib/net7.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1610. "lib/net7.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1611. "lib/net7.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1612. "lib/net7.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1613. "lib/net7.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1614. "lib/net7.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1615. "lib/net7.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1616. "lib/net7.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1617. "lib/net7.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1618. "lib/net7.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1619. "lib/net7.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1620. "lib/net8.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1621. "lib/net8.0/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  1622. "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1623. "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1624. "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1625. "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1626. "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1627. "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1628. "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1629. "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1630. "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1631. "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1632. "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1633. "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1634. "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1635. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  1636. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  1637. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1638. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  1639. "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1640. "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1641. "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1642. "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1643. "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1644. "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1645. "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1646. "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1647. "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1648. "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1649. "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1650. "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1651. "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1652. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  1653. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  1654. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1655. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  1656. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1657. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1658. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1659. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1660. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1661. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1662. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1663. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1664. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1665. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1666. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1667. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1668. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1669. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll",
  1670. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml",
  1671. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll",
  1672. "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.xml",
  1673. "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1674. "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1675. "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1676. "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1677. "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1678. "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1679. "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1680. "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1681. "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1682. "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1683. "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1684. "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1685. "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll",
  1686. "mstest.testframework.3.2.2.nupkg.sha512",
  1687. "mstest.testframework.nuspec"
  1688. ]
  1689. },
  1690. "Newtonsoft.Json/13.0.1": {
  1691. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  1692. "type": "package",
  1693. "path": "newtonsoft.json/13.0.1",
  1694. "files": [
  1695. ".nupkg.metadata",
  1696. ".signature.p7s",
  1697. "LICENSE.md",
  1698. "lib/net20/Newtonsoft.Json.dll",
  1699. "lib/net20/Newtonsoft.Json.xml",
  1700. "lib/net35/Newtonsoft.Json.dll",
  1701. "lib/net35/Newtonsoft.Json.xml",
  1702. "lib/net40/Newtonsoft.Json.dll",
  1703. "lib/net40/Newtonsoft.Json.xml",
  1704. "lib/net45/Newtonsoft.Json.dll",
  1705. "lib/net45/Newtonsoft.Json.xml",
  1706. "lib/netstandard1.0/Newtonsoft.Json.dll",
  1707. "lib/netstandard1.0/Newtonsoft.Json.xml",
  1708. "lib/netstandard1.3/Newtonsoft.Json.dll",
  1709. "lib/netstandard1.3/Newtonsoft.Json.xml",
  1710. "lib/netstandard2.0/Newtonsoft.Json.dll",
  1711. "lib/netstandard2.0/Newtonsoft.Json.xml",
  1712. "newtonsoft.json.13.0.1.nupkg.sha512",
  1713. "newtonsoft.json.nuspec",
  1714. "packageIcon.png"
  1715. ]
  1716. },
  1717. "System.Diagnostics.DiagnosticSource/5.0.0": {
  1718. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  1719. "type": "package",
  1720. "path": "system.diagnostics.diagnosticsource/5.0.0",
  1721. "files": [
  1722. ".nupkg.metadata",
  1723. ".signature.p7s",
  1724. "Icon.png",
  1725. "LICENSE.TXT",
  1726. "THIRD-PARTY-NOTICES.TXT",
  1727. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  1728. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  1729. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  1730. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  1731. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  1732. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  1733. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  1734. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  1735. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  1736. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  1737. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  1738. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  1739. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  1740. "system.diagnostics.diagnosticsource.nuspec",
  1741. "useSharedDesignerContext.txt",
  1742. "version.txt"
  1743. ]
  1744. },
  1745. "System.Reflection.Metadata/1.6.0": {
  1746. "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  1747. "type": "package",
  1748. "path": "system.reflection.metadata/1.6.0",
  1749. "files": [
  1750. ".nupkg.metadata",
  1751. ".signature.p7s",
  1752. "LICENSE.TXT",
  1753. "THIRD-PARTY-NOTICES.TXT",
  1754. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  1755. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  1756. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  1757. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  1758. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  1759. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  1760. "system.reflection.metadata.1.6.0.nupkg.sha512",
  1761. "system.reflection.metadata.nuspec",
  1762. "useSharedDesignerContext.txt",
  1763. "version.txt"
  1764. ]
  1765. },
  1766. "ConsoleApp2/1.0.0": {
  1767. "type": "project",
  1768. "path": "../ConsoleApp2/ConsoleApp2.csproj",
  1769. "msbuildProject": "../ConsoleApp2/ConsoleApp2.csproj"
  1770. }
  1771. },
  1772. "projectFileDependencyGroups": {
  1773. "net6.0": [
  1774. "ConsoleApp2 >= 1.0.0",
  1775. "MSTest.TestAdapter >= 3.2.2",
  1776. "MSTest.TestFramework >= 3.2.2",
  1777. "Microsoft.NET.Test.Sdk >= 17.9.0",
  1778. "coverlet.collector >= 6.0.2"
  1779. ]
  1780. },
  1781. "packageFolders": {
  1782. "C:\\Users\\колиниченкоес\\.nuget\\packages\\": {}
  1783. },
  1784. "project": {
  1785. "version": "1.0.0",
  1786. "restore": {
  1787. "projectUniqueName": "C:\\Users\\колиниченкоес\\source\\repos\\UnitTests\\TestProject1\\TestProject1.csproj",
  1788. "projectName": "TestProject1",
  1789. "projectPath": "C:\\Users\\колиниченкоес\\source\\repos\\UnitTests\\TestProject1\\TestProject1.csproj",
  1790. "packagesPath": "C:\\Users\\колиниченкоес\\.nuget\\packages\\",
  1791. "outputPath": "C:\\Users\\колиниченкоес\\source\\repos\\UnitTests\\TestProject1\\obj\\",
  1792. "projectStyle": "PackageReference",
  1793. "configFilePaths": [
  1794. "C:\\Users\\колиниченкоес\\AppData\\Roaming\\NuGet\\NuGet.Config",
  1795. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  1796. ],
  1797. "originalTargetFrameworks": [
  1798. "net6.0"
  1799. ],
  1800. "sources": {
  1801. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  1802. "https://api.nuget.org/v3/index.json": {}
  1803. },
  1804. "frameworks": {
  1805. "net6.0": {
  1806. "targetAlias": "net6.0",
  1807. "projectReferences": {
  1808. "C:\\Users\\колиниченкоес\\source\\repos\\UnitTests\\ConsoleApp2\\ConsoleApp2.csproj": {
  1809. "projectPath": "C:\\Users\\колиниченкоес\\source\\repos\\UnitTests\\ConsoleApp2\\ConsoleApp2.csproj"
  1810. }
  1811. }
  1812. }
  1813. },
  1814. "warningProperties": {
  1815. "warnAsError": [
  1816. "NU1605"
  1817. ]
  1818. }
  1819. },
  1820. "frameworks": {
  1821. "net6.0": {
  1822. "targetAlias": "net6.0",
  1823. "dependencies": {
  1824. "MSTest.TestAdapter": {
  1825. "target": "Package",
  1826. "version": "[3.2.2, )"
  1827. },
  1828. "MSTest.TestFramework": {
  1829. "target": "Package",
  1830. "version": "[3.2.2, )"
  1831. },
  1832. "Microsoft.NET.Test.Sdk": {
  1833. "target": "Package",
  1834. "version": "[17.9.0, )"
  1835. },
  1836. "coverlet.collector": {
  1837. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  1838. "suppressParent": "All",
  1839. "target": "Package",
  1840. "version": "[6.0.2, )"
  1841. }
  1842. },
  1843. "imports": [
  1844. "net461",
  1845. "net462",
  1846. "net47",
  1847. "net471",
  1848. "net472",
  1849. "net48",
  1850. "net481"
  1851. ],
  1852. "assetTargetFallback": true,
  1853. "warn": true,
  1854. "frameworkReferences": {
  1855. "Microsoft.NETCore.App": {
  1856. "privateAssets": "all"
  1857. }
  1858. },
  1859. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.306\\RuntimeIdentifierGraph.json"
  1860. }
  1861. }
  1862. }
  1863. }