@fossa-app/bridge 0.1.0

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