@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,806 @@
1
+ {
2
+ "runtimeTarget": {
3
+ "name": ".NETCoreApp,Version=v8.0",
4
+ "signature": ""
5
+ },
6
+ "compilationOptions": {},
7
+ "targets": {
8
+ ".NETCoreApp,Version=v8.0": {
9
+ "Fossa.Bridge.Tests/1.0.0": {
10
+ "dependencies": {
11
+ "Expecto": "10.2.3",
12
+ "FSharp.Core": "10.0.103",
13
+ "Fossa.Bridge": "1.0.0",
14
+ "Microsoft.NET.Test.Sdk": "18.3.0",
15
+ "YoloDev.Expecto.TestSdk": "0.15.5"
16
+ },
17
+ "runtime": {
18
+ "Fossa.Bridge.Tests.dll": {}
19
+ }
20
+ },
21
+ "Expecto/10.2.3": {
22
+ "dependencies": {
23
+ "FSharp.Core": "10.0.103",
24
+ "Mono.Cecil": "0.11.4"
25
+ },
26
+ "runtime": {
27
+ "lib/net6.0/Expecto.dll": {
28
+ "assemblyVersion": "10.2.3.0",
29
+ "fileVersion": "10.2.3.0"
30
+ }
31
+ }
32
+ },
33
+ "Fable.Core/4.5.0": {
34
+ "runtime": {
35
+ "lib/netstandard2.0/Fable.Core.dll": {
36
+ "assemblyVersion": "4.5.0.0",
37
+ "fileVersion": "4.5.0.0"
38
+ }
39
+ }
40
+ },
41
+ "FSharp.Core/10.0.103": {
42
+ "runtime": {
43
+ "lib/netstandard2.1/FSharp.Core.dll": {
44
+ "assemblyVersion": "10.0.0.0",
45
+ "fileVersion": "10.1.326.7603"
46
+ }
47
+ },
48
+ "resources": {
49
+ "lib/netstandard2.1/cs/FSharp.Core.resources.dll": {
50
+ "locale": "cs"
51
+ },
52
+ "lib/netstandard2.1/de/FSharp.Core.resources.dll": {
53
+ "locale": "de"
54
+ },
55
+ "lib/netstandard2.1/es/FSharp.Core.resources.dll": {
56
+ "locale": "es"
57
+ },
58
+ "lib/netstandard2.1/fr/FSharp.Core.resources.dll": {
59
+ "locale": "fr"
60
+ },
61
+ "lib/netstandard2.1/it/FSharp.Core.resources.dll": {
62
+ "locale": "it"
63
+ },
64
+ "lib/netstandard2.1/ja/FSharp.Core.resources.dll": {
65
+ "locale": "ja"
66
+ },
67
+ "lib/netstandard2.1/ko/FSharp.Core.resources.dll": {
68
+ "locale": "ko"
69
+ },
70
+ "lib/netstandard2.1/pl/FSharp.Core.resources.dll": {
71
+ "locale": "pl"
72
+ },
73
+ "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll": {
74
+ "locale": "pt-BR"
75
+ },
76
+ "lib/netstandard2.1/ru/FSharp.Core.resources.dll": {
77
+ "locale": "ru"
78
+ },
79
+ "lib/netstandard2.1/tr/FSharp.Core.resources.dll": {
80
+ "locale": "tr"
81
+ },
82
+ "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll": {
83
+ "locale": "zh-Hans"
84
+ },
85
+ "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll": {
86
+ "locale": "zh-Hant"
87
+ }
88
+ }
89
+ },
90
+ "Microsoft.ApplicationInsights/2.23.0": {
91
+ "runtime": {
92
+ "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
93
+ "assemblyVersion": "2.23.0.29",
94
+ "fileVersion": "2.23.0.29"
95
+ }
96
+ }
97
+ },
98
+ "Microsoft.CodeCoverage/18.3.0": {
99
+ "runtime": {
100
+ "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {
101
+ "assemblyVersion": "15.0.0.0",
102
+ "fileVersion": "18.300.126.5501"
103
+ }
104
+ }
105
+ },
106
+ "Microsoft.NET.Test.Sdk/18.3.0": {
107
+ "dependencies": {
108
+ "Microsoft.CodeCoverage": "18.3.0",
109
+ "Microsoft.TestPlatform.TestHost": "18.3.0"
110
+ }
111
+ },
112
+ "Microsoft.Testing.Extensions.Telemetry/1.9.0": {
113
+ "dependencies": {
114
+ "Microsoft.ApplicationInsights": "2.23.0",
115
+ "Microsoft.Testing.Platform": "1.9.0"
116
+ },
117
+ "runtime": {
118
+ "lib/net8.0/Microsoft.Testing.Extensions.Telemetry.dll": {
119
+ "assemblyVersion": "1.9.0.0",
120
+ "fileVersion": "1.900.25.50105"
121
+ }
122
+ },
123
+ "resources": {
124
+ "lib/net8.0/cs/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
125
+ "locale": "cs"
126
+ },
127
+ "lib/net8.0/de/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
128
+ "locale": "de"
129
+ },
130
+ "lib/net8.0/es/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
131
+ "locale": "es"
132
+ },
133
+ "lib/net8.0/fr/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
134
+ "locale": "fr"
135
+ },
136
+ "lib/net8.0/it/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
137
+ "locale": "it"
138
+ },
139
+ "lib/net8.0/ja/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
140
+ "locale": "ja"
141
+ },
142
+ "lib/net8.0/ko/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
143
+ "locale": "ko"
144
+ },
145
+ "lib/net8.0/pl/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
146
+ "locale": "pl"
147
+ },
148
+ "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
149
+ "locale": "pt-BR"
150
+ },
151
+ "lib/net8.0/ru/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
152
+ "locale": "ru"
153
+ },
154
+ "lib/net8.0/tr/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
155
+ "locale": "tr"
156
+ },
157
+ "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
158
+ "locale": "zh-Hans"
159
+ },
160
+ "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.Telemetry.resources.dll": {
161
+ "locale": "zh-Hant"
162
+ }
163
+ }
164
+ },
165
+ "Microsoft.Testing.Extensions.TrxReport.Abstractions/1.9.0": {
166
+ "dependencies": {
167
+ "Microsoft.Testing.Platform": "1.9.0"
168
+ },
169
+ "runtime": {
170
+ "lib/net8.0/Microsoft.Testing.Extensions.TrxReport.Abstractions.dll": {
171
+ "assemblyVersion": "1.9.0.0",
172
+ "fileVersion": "1.900.25.50105"
173
+ }
174
+ }
175
+ },
176
+ "Microsoft.Testing.Extensions.VSTestBridge/1.9.0": {
177
+ "dependencies": {
178
+ "Microsoft.TestPlatform.AdapterUtilities": "17.13.0",
179
+ "Microsoft.TestPlatform.ObjectModel": "18.3.0",
180
+ "Microsoft.Testing.Extensions.Telemetry": "1.9.0",
181
+ "Microsoft.Testing.Extensions.TrxReport.Abstractions": "1.9.0",
182
+ "Microsoft.Testing.Platform": "1.9.0"
183
+ },
184
+ "runtime": {
185
+ "lib/net8.0/Microsoft.Testing.Extensions.VSTestBridge.dll": {
186
+ "assemblyVersion": "1.9.0.0",
187
+ "fileVersion": "1.900.25.50105"
188
+ }
189
+ },
190
+ "resources": {
191
+ "lib/net8.0/cs/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
192
+ "locale": "cs"
193
+ },
194
+ "lib/net8.0/de/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
195
+ "locale": "de"
196
+ },
197
+ "lib/net8.0/es/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
198
+ "locale": "es"
199
+ },
200
+ "lib/net8.0/fr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
201
+ "locale": "fr"
202
+ },
203
+ "lib/net8.0/it/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
204
+ "locale": "it"
205
+ },
206
+ "lib/net8.0/ja/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
207
+ "locale": "ja"
208
+ },
209
+ "lib/net8.0/ko/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
210
+ "locale": "ko"
211
+ },
212
+ "lib/net8.0/pl/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
213
+ "locale": "pl"
214
+ },
215
+ "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
216
+ "locale": "pt-BR"
217
+ },
218
+ "lib/net8.0/ru/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
219
+ "locale": "ru"
220
+ },
221
+ "lib/net8.0/tr/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
222
+ "locale": "tr"
223
+ },
224
+ "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
225
+ "locale": "zh-Hans"
226
+ },
227
+ "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.VSTestBridge.resources.dll": {
228
+ "locale": "zh-Hant"
229
+ }
230
+ }
231
+ },
232
+ "Microsoft.Testing.Platform/1.9.0": {
233
+ "runtime": {
234
+ "lib/net8.0/Microsoft.Testing.Platform.dll": {
235
+ "assemblyVersion": "1.9.0.0",
236
+ "fileVersion": "1.900.25.50105"
237
+ }
238
+ },
239
+ "resources": {
240
+ "lib/net8.0/cs/Microsoft.Testing.Platform.resources.dll": {
241
+ "locale": "cs"
242
+ },
243
+ "lib/net8.0/de/Microsoft.Testing.Platform.resources.dll": {
244
+ "locale": "de"
245
+ },
246
+ "lib/net8.0/es/Microsoft.Testing.Platform.resources.dll": {
247
+ "locale": "es"
248
+ },
249
+ "lib/net8.0/fr/Microsoft.Testing.Platform.resources.dll": {
250
+ "locale": "fr"
251
+ },
252
+ "lib/net8.0/it/Microsoft.Testing.Platform.resources.dll": {
253
+ "locale": "it"
254
+ },
255
+ "lib/net8.0/ja/Microsoft.Testing.Platform.resources.dll": {
256
+ "locale": "ja"
257
+ },
258
+ "lib/net8.0/ko/Microsoft.Testing.Platform.resources.dll": {
259
+ "locale": "ko"
260
+ },
261
+ "lib/net8.0/pl/Microsoft.Testing.Platform.resources.dll": {
262
+ "locale": "pl"
263
+ },
264
+ "lib/net8.0/pt-BR/Microsoft.Testing.Platform.resources.dll": {
265
+ "locale": "pt-BR"
266
+ },
267
+ "lib/net8.0/ru/Microsoft.Testing.Platform.resources.dll": {
268
+ "locale": "ru"
269
+ },
270
+ "lib/net8.0/tr/Microsoft.Testing.Platform.resources.dll": {
271
+ "locale": "tr"
272
+ },
273
+ "lib/net8.0/zh-Hans/Microsoft.Testing.Platform.resources.dll": {
274
+ "locale": "zh-Hans"
275
+ },
276
+ "lib/net8.0/zh-Hant/Microsoft.Testing.Platform.resources.dll": {
277
+ "locale": "zh-Hant"
278
+ }
279
+ }
280
+ },
281
+ "Microsoft.Testing.Platform.MSBuild/1.9.0": {
282
+ "dependencies": {
283
+ "Microsoft.Testing.Platform": "1.9.0"
284
+ },
285
+ "runtime": {
286
+ "lib/net8.0/Microsoft.Testing.Extensions.MSBuild.dll": {
287
+ "assemblyVersion": "1.9.0.0",
288
+ "fileVersion": "1.900.25.50105"
289
+ }
290
+ },
291
+ "resources": {
292
+ "lib/net8.0/cs/Microsoft.Testing.Extensions.MSBuild.resources.dll": {
293
+ "locale": "cs"
294
+ },
295
+ "lib/net8.0/de/Microsoft.Testing.Extensions.MSBuild.resources.dll": {
296
+ "locale": "de"
297
+ },
298
+ "lib/net8.0/es/Microsoft.Testing.Extensions.MSBuild.resources.dll": {
299
+ "locale": "es"
300
+ },
301
+ "lib/net8.0/fr/Microsoft.Testing.Extensions.MSBuild.resources.dll": {
302
+ "locale": "fr"
303
+ },
304
+ "lib/net8.0/it/Microsoft.Testing.Extensions.MSBuild.resources.dll": {
305
+ "locale": "it"
306
+ },
307
+ "lib/net8.0/ja/Microsoft.Testing.Extensions.MSBuild.resources.dll": {
308
+ "locale": "ja"
309
+ },
310
+ "lib/net8.0/ko/Microsoft.Testing.Extensions.MSBuild.resources.dll": {
311
+ "locale": "ko"
312
+ },
313
+ "lib/net8.0/pl/Microsoft.Testing.Extensions.MSBuild.resources.dll": {
314
+ "locale": "pl"
315
+ },
316
+ "lib/net8.0/pt-BR/Microsoft.Testing.Extensions.MSBuild.resources.dll": {
317
+ "locale": "pt-BR"
318
+ },
319
+ "lib/net8.0/ru/Microsoft.Testing.Extensions.MSBuild.resources.dll": {
320
+ "locale": "ru"
321
+ },
322
+ "lib/net8.0/tr/Microsoft.Testing.Extensions.MSBuild.resources.dll": {
323
+ "locale": "tr"
324
+ },
325
+ "lib/net8.0/zh-Hans/Microsoft.Testing.Extensions.MSBuild.resources.dll": {
326
+ "locale": "zh-Hans"
327
+ },
328
+ "lib/net8.0/zh-Hant/Microsoft.Testing.Extensions.MSBuild.resources.dll": {
329
+ "locale": "zh-Hant"
330
+ }
331
+ }
332
+ },
333
+ "Microsoft.TestPlatform.AdapterUtilities/17.13.0": {
334
+ "runtime": {
335
+ "lib/net8.0/Microsoft.TestPlatform.AdapterUtilities.dll": {
336
+ "assemblyVersion": "15.0.0.0",
337
+ "fileVersion": "17.1300.25.10604"
338
+ }
339
+ },
340
+ "resources": {
341
+ "lib/net8.0/cs/Microsoft.TestPlatform.AdapterUtilities.resources.dll": {
342
+ "locale": "cs"
343
+ },
344
+ "lib/net8.0/de/Microsoft.TestPlatform.AdapterUtilities.resources.dll": {
345
+ "locale": "de"
346
+ },
347
+ "lib/net8.0/es/Microsoft.TestPlatform.AdapterUtilities.resources.dll": {
348
+ "locale": "es"
349
+ },
350
+ "lib/net8.0/fr/Microsoft.TestPlatform.AdapterUtilities.resources.dll": {
351
+ "locale": "fr"
352
+ },
353
+ "lib/net8.0/it/Microsoft.TestPlatform.AdapterUtilities.resources.dll": {
354
+ "locale": "it"
355
+ },
356
+ "lib/net8.0/ja/Microsoft.TestPlatform.AdapterUtilities.resources.dll": {
357
+ "locale": "ja"
358
+ },
359
+ "lib/net8.0/ko/Microsoft.TestPlatform.AdapterUtilities.resources.dll": {
360
+ "locale": "ko"
361
+ },
362
+ "lib/net8.0/pl/Microsoft.TestPlatform.AdapterUtilities.resources.dll": {
363
+ "locale": "pl"
364
+ },
365
+ "lib/net8.0/pt-BR/Microsoft.TestPlatform.AdapterUtilities.resources.dll": {
366
+ "locale": "pt-BR"
367
+ },
368
+ "lib/net8.0/ru/Microsoft.TestPlatform.AdapterUtilities.resources.dll": {
369
+ "locale": "ru"
370
+ },
371
+ "lib/net8.0/tr/Microsoft.TestPlatform.AdapterUtilities.resources.dll": {
372
+ "locale": "tr"
373
+ },
374
+ "lib/net8.0/zh-Hans/Microsoft.TestPlatform.AdapterUtilities.resources.dll": {
375
+ "locale": "zh-Hans"
376
+ },
377
+ "lib/net8.0/zh-Hant/Microsoft.TestPlatform.AdapterUtilities.resources.dll": {
378
+ "locale": "zh-Hant"
379
+ }
380
+ }
381
+ },
382
+ "Microsoft.TestPlatform.ObjectModel/18.3.0": {
383
+ "runtime": {
384
+ "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {
385
+ "assemblyVersion": "15.0.0.0",
386
+ "fileVersion": "18.300.26.12003"
387
+ },
388
+ "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {
389
+ "assemblyVersion": "15.0.0.0",
390
+ "fileVersion": "18.300.26.12003"
391
+ },
392
+ "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {
393
+ "assemblyVersion": "15.0.0.0",
394
+ "fileVersion": "18.300.26.12003"
395
+ }
396
+ },
397
+ "resources": {
398
+ "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
399
+ "locale": "cs"
400
+ },
401
+ "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
402
+ "locale": "cs"
403
+ },
404
+ "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
405
+ "locale": "de"
406
+ },
407
+ "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
408
+ "locale": "de"
409
+ },
410
+ "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
411
+ "locale": "es"
412
+ },
413
+ "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
414
+ "locale": "es"
415
+ },
416
+ "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
417
+ "locale": "fr"
418
+ },
419
+ "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
420
+ "locale": "fr"
421
+ },
422
+ "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
423
+ "locale": "it"
424
+ },
425
+ "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
426
+ "locale": "it"
427
+ },
428
+ "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
429
+ "locale": "ja"
430
+ },
431
+ "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
432
+ "locale": "ja"
433
+ },
434
+ "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
435
+ "locale": "ko"
436
+ },
437
+ "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
438
+ "locale": "ko"
439
+ },
440
+ "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
441
+ "locale": "pl"
442
+ },
443
+ "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
444
+ "locale": "pl"
445
+ },
446
+ "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
447
+ "locale": "pt-BR"
448
+ },
449
+ "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
450
+ "locale": "pt-BR"
451
+ },
452
+ "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
453
+ "locale": "ru"
454
+ },
455
+ "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
456
+ "locale": "ru"
457
+ },
458
+ "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
459
+ "locale": "tr"
460
+ },
461
+ "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
462
+ "locale": "tr"
463
+ },
464
+ "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
465
+ "locale": "zh-Hans"
466
+ },
467
+ "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
468
+ "locale": "zh-Hans"
469
+ },
470
+ "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
471
+ "locale": "zh-Hant"
472
+ },
473
+ "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
474
+ "locale": "zh-Hant"
475
+ }
476
+ }
477
+ },
478
+ "Microsoft.TestPlatform.TestHost/18.3.0": {
479
+ "dependencies": {
480
+ "Microsoft.TestPlatform.ObjectModel": "18.3.0",
481
+ "Newtonsoft.Json": "13.0.3"
482
+ },
483
+ "runtime": {
484
+ "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": {
485
+ "assemblyVersion": "15.0.0.0",
486
+ "fileVersion": "18.300.26.12003"
487
+ },
488
+ "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": {
489
+ "assemblyVersion": "15.0.0.0",
490
+ "fileVersion": "18.300.26.12003"
491
+ },
492
+ "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": {
493
+ "assemblyVersion": "15.0.0.0",
494
+ "fileVersion": "18.300.26.12003"
495
+ },
496
+ "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": {
497
+ "assemblyVersion": "15.0.0.0",
498
+ "fileVersion": "18.300.26.12003"
499
+ },
500
+ "lib/net8.0/testhost.dll": {
501
+ "assemblyVersion": "15.0.0.0",
502
+ "fileVersion": "18.300.26.12003"
503
+ }
504
+ },
505
+ "resources": {
506
+ "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
507
+ "locale": "cs"
508
+ },
509
+ "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
510
+ "locale": "cs"
511
+ },
512
+ "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
513
+ "locale": "cs"
514
+ },
515
+ "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
516
+ "locale": "de"
517
+ },
518
+ "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
519
+ "locale": "de"
520
+ },
521
+ "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
522
+ "locale": "de"
523
+ },
524
+ "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
525
+ "locale": "es"
526
+ },
527
+ "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
528
+ "locale": "es"
529
+ },
530
+ "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
531
+ "locale": "es"
532
+ },
533
+ "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
534
+ "locale": "fr"
535
+ },
536
+ "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
537
+ "locale": "fr"
538
+ },
539
+ "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
540
+ "locale": "fr"
541
+ },
542
+ "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
543
+ "locale": "it"
544
+ },
545
+ "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
546
+ "locale": "it"
547
+ },
548
+ "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
549
+ "locale": "it"
550
+ },
551
+ "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
552
+ "locale": "ja"
553
+ },
554
+ "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
555
+ "locale": "ja"
556
+ },
557
+ "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
558
+ "locale": "ja"
559
+ },
560
+ "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
561
+ "locale": "ko"
562
+ },
563
+ "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
564
+ "locale": "ko"
565
+ },
566
+ "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
567
+ "locale": "ko"
568
+ },
569
+ "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
570
+ "locale": "pl"
571
+ },
572
+ "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
573
+ "locale": "pl"
574
+ },
575
+ "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
576
+ "locale": "pl"
577
+ },
578
+ "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
579
+ "locale": "pt-BR"
580
+ },
581
+ "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
582
+ "locale": "pt-BR"
583
+ },
584
+ "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
585
+ "locale": "pt-BR"
586
+ },
587
+ "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
588
+ "locale": "ru"
589
+ },
590
+ "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
591
+ "locale": "ru"
592
+ },
593
+ "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
594
+ "locale": "ru"
595
+ },
596
+ "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
597
+ "locale": "tr"
598
+ },
599
+ "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
600
+ "locale": "tr"
601
+ },
602
+ "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
603
+ "locale": "tr"
604
+ },
605
+ "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
606
+ "locale": "zh-Hans"
607
+ },
608
+ "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
609
+ "locale": "zh-Hans"
610
+ },
611
+ "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
612
+ "locale": "zh-Hans"
613
+ },
614
+ "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
615
+ "locale": "zh-Hant"
616
+ },
617
+ "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
618
+ "locale": "zh-Hant"
619
+ },
620
+ "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
621
+ "locale": "zh-Hant"
622
+ }
623
+ }
624
+ },
625
+ "Mono.Cecil/0.11.4": {
626
+ "runtime": {
627
+ "lib/netstandard2.0/Mono.Cecil.Mdb.dll": {
628
+ "assemblyVersion": "0.11.4.0",
629
+ "fileVersion": "0.11.4.0"
630
+ },
631
+ "lib/netstandard2.0/Mono.Cecil.Pdb.dll": {
632
+ "assemblyVersion": "0.11.4.0",
633
+ "fileVersion": "0.11.4.0"
634
+ },
635
+ "lib/netstandard2.0/Mono.Cecil.Rocks.dll": {
636
+ "assemblyVersion": "0.11.4.0",
637
+ "fileVersion": "0.11.4.0"
638
+ },
639
+ "lib/netstandard2.0/Mono.Cecil.dll": {
640
+ "assemblyVersion": "0.11.4.0",
641
+ "fileVersion": "0.11.4.0"
642
+ }
643
+ }
644
+ },
645
+ "Newtonsoft.Json/13.0.3": {
646
+ "runtime": {
647
+ "lib/net6.0/Newtonsoft.Json.dll": {
648
+ "assemblyVersion": "13.0.0.0",
649
+ "fileVersion": "13.0.3.27908"
650
+ }
651
+ }
652
+ },
653
+ "YoloDev.Expecto.TestSdk/0.15.5": {
654
+ "dependencies": {
655
+ "Expecto": "10.2.3",
656
+ "FSharp.Core": "10.0.103",
657
+ "Microsoft.Testing.Extensions.VSTestBridge": "1.9.0",
658
+ "Microsoft.Testing.Platform.MSBuild": "1.9.0"
659
+ }
660
+ },
661
+ "Fossa.Bridge/1.0.0": {
662
+ "dependencies": {
663
+ "FSharp.Core": "10.0.103",
664
+ "Fable.Core": "4.5.0"
665
+ },
666
+ "runtime": {
667
+ "Fossa.Bridge.dll": {
668
+ "assemblyVersion": "1.0.0.0",
669
+ "fileVersion": "1.0.0.0"
670
+ }
671
+ }
672
+ }
673
+ }
674
+ },
675
+ "libraries": {
676
+ "Fossa.Bridge.Tests/1.0.0": {
677
+ "type": "project",
678
+ "serviceable": false,
679
+ "sha512": ""
680
+ },
681
+ "Expecto/10.2.3": {
682
+ "type": "package",
683
+ "serviceable": true,
684
+ "sha512": "sha512-mwGOvtkKfMwakKeONwWYy5RgnO7Ijx/THt50GHh8mkSPySVOW/BsOppHzNwby45uaO6X0IKpqS76BrlYgOqcIg==",
685
+ "path": "expecto/10.2.3",
686
+ "hashPath": "expecto.10.2.3.nupkg.sha512"
687
+ },
688
+ "Fable.Core/4.5.0": {
689
+ "type": "package",
690
+ "serviceable": true,
691
+ "sha512": "sha512-ZcX8XN5sQZGCbrS8VYnsa/ynhrCBfpDyqDkTl33GTXOpgfKibxoq0+W0hCSbRzuukVNoLtqGL/B6+8yTNDXbNA==",
692
+ "path": "fable.core/4.5.0",
693
+ "hashPath": "fable.core.4.5.0.nupkg.sha512"
694
+ },
695
+ "FSharp.Core/10.0.103": {
696
+ "type": "package",
697
+ "serviceable": true,
698
+ "sha512": "sha512-GfQInb74eDh9JZ8wx4+t/lOrH1uRqZvneuViVJ8CwbQwmtyyZoeGuzRayL01MNAsm8B6eRenWwJThu01EFPeKg==",
699
+ "path": "fsharp.core/10.0.103",
700
+ "hashPath": "fsharp.core.10.0.103.nupkg.sha512"
701
+ },
702
+ "Microsoft.ApplicationInsights/2.23.0": {
703
+ "type": "package",
704
+ "serviceable": true,
705
+ "sha512": "sha512-nWArUZTdU7iqZLycLKWe0TDms48KKGE6pONH2terYNa8REXiqixrMOkf1sk5DHGMaUTqONU2YkS4SAXBhLStgw==",
706
+ "path": "microsoft.applicationinsights/2.23.0",
707
+ "hashPath": "microsoft.applicationinsights.2.23.0.nupkg.sha512"
708
+ },
709
+ "Microsoft.CodeCoverage/18.3.0": {
710
+ "type": "package",
711
+ "serviceable": true,
712
+ "sha512": "sha512-23BNy/vziREC20Wwhb50K7+kZe0m07KlLWDQv4qjJ9tt3QjpDpDIqJFrhYHmMEo9xDkuSp55U/8h4bMF7MiB+g==",
713
+ "path": "microsoft.codecoverage/18.3.0",
714
+ "hashPath": "microsoft.codecoverage.18.3.0.nupkg.sha512"
715
+ },
716
+ "Microsoft.NET.Test.Sdk/18.3.0": {
717
+ "type": "package",
718
+ "serviceable": true,
719
+ "sha512": "sha512-xW3kXuWRQtgoxJp4J+gdhHSQyK+6Wb/AZDSd7lMvuMRYlZ1tnpkojyfZlWilB5G4dmZ0Y0ZxU/M23TlubndNkw==",
720
+ "path": "microsoft.net.test.sdk/18.3.0",
721
+ "hashPath": "microsoft.net.test.sdk.18.3.0.nupkg.sha512"
722
+ },
723
+ "Microsoft.Testing.Extensions.Telemetry/1.9.0": {
724
+ "type": "package",
725
+ "serviceable": true,
726
+ "sha512": "sha512-4ica7o+ZreUCsXoQLShWeLz6K5q9D/B+VgXvmpPSLsnSpK4DLZfMyltBaBr83Tnm21c1riOKcXXEk920Ael17Q==",
727
+ "path": "microsoft.testing.extensions.telemetry/1.9.0",
728
+ "hashPath": "microsoft.testing.extensions.telemetry.1.9.0.nupkg.sha512"
729
+ },
730
+ "Microsoft.Testing.Extensions.TrxReport.Abstractions/1.9.0": {
731
+ "type": "package",
732
+ "serviceable": true,
733
+ "sha512": "sha512-ZC7Xwva/+dREnZ5BU0gozA1uT2cFwt90uY9maPLy1lLpiedR/Fu3K2FiwLg70hJjT+tGblYmxzuNa8z1jQVSGw==",
734
+ "path": "microsoft.testing.extensions.trxreport.abstractions/1.9.0",
735
+ "hashPath": "microsoft.testing.extensions.trxreport.abstractions.1.9.0.nupkg.sha512"
736
+ },
737
+ "Microsoft.Testing.Extensions.VSTestBridge/1.9.0": {
738
+ "type": "package",
739
+ "serviceable": true,
740
+ "sha512": "sha512-g5WN9QEMaEkdnWqouF6EsK46pX1vHmekQyOlehDtNl5e8PXu1ZffCqVKM74pQsh7HfCb3FKjzoZUrUJB9E75zQ==",
741
+ "path": "microsoft.testing.extensions.vstestbridge/1.9.0",
742
+ "hashPath": "microsoft.testing.extensions.vstestbridge.1.9.0.nupkg.sha512"
743
+ },
744
+ "Microsoft.Testing.Platform/1.9.0": {
745
+ "type": "package",
746
+ "serviceable": true,
747
+ "sha512": "sha512-OE79Vc5rXwFYciAPY/mqv92XvdhK+pvCHdVHcS0bBpWwWQbnzI18FiSEEYY+lYpB0HHl0fDQgcCK3ZTYKGs8bA==",
748
+ "path": "microsoft.testing.platform/1.9.0",
749
+ "hashPath": "microsoft.testing.platform.1.9.0.nupkg.sha512"
750
+ },
751
+ "Microsoft.Testing.Platform.MSBuild/1.9.0": {
752
+ "type": "package",
753
+ "serviceable": true,
754
+ "sha512": "sha512-P7c0HfBJ/AqKyRfmaA+cyl8I9jxDEyvQRJvMUH5IZCjACTPQ9wXb0xdA0CmcxhBUtm20GxWvx2fq3fMxG11hDg==",
755
+ "path": "microsoft.testing.platform.msbuild/1.9.0",
756
+ "hashPath": "microsoft.testing.platform.msbuild.1.9.0.nupkg.sha512"
757
+ },
758
+ "Microsoft.TestPlatform.AdapterUtilities/17.13.0": {
759
+ "type": "package",
760
+ "serviceable": true,
761
+ "sha512": "sha512-bFZ3uAhosdXjyXKURDQy37fPosCJQwedB5DG/SzsXL1QXsrfsIYty2kQMqCRRUqm8sBZBRHWRp4BT9SmpWXcKQ==",
762
+ "path": "microsoft.testplatform.adapterutilities/17.13.0",
763
+ "hashPath": "microsoft.testplatform.adapterutilities.17.13.0.nupkg.sha512"
764
+ },
765
+ "Microsoft.TestPlatform.ObjectModel/18.3.0": {
766
+ "type": "package",
767
+ "serviceable": true,
768
+ "sha512": "sha512-AEIEX2aWdPO9XbtR96eBaJxmXRD9vaI9uQ1T/JbPEKlTAZwYx0ZrMzKyULMdh/HH9Sg03kXCoN7LszQ90o6nPQ==",
769
+ "path": "microsoft.testplatform.objectmodel/18.3.0",
770
+ "hashPath": "microsoft.testplatform.objectmodel.18.3.0.nupkg.sha512"
771
+ },
772
+ "Microsoft.TestPlatform.TestHost/18.3.0": {
773
+ "type": "package",
774
+ "serviceable": true,
775
+ "sha512": "sha512-twmsoelXnp1uWMU3VGip9f0Jr1mZ0PZqgJdF35CIrdYgYrkHIJMV1m8uKyhcdjLdsQDESHAgkR7KhS9i1qpJag==",
776
+ "path": "microsoft.testplatform.testhost/18.3.0",
777
+ "hashPath": "microsoft.testplatform.testhost.18.3.0.nupkg.sha512"
778
+ },
779
+ "Mono.Cecil/0.11.4": {
780
+ "type": "package",
781
+ "serviceable": true,
782
+ "sha512": "sha512-IC1h5g0NeJGHIUgzM1P82ld57knhP0IcQfrYITDPXlNpMYGUrsG5TxuaWTjaeqDNQMBDNZkB8L0rBnwsY6JHuQ==",
783
+ "path": "mono.cecil/0.11.4",
784
+ "hashPath": "mono.cecil.0.11.4.nupkg.sha512"
785
+ },
786
+ "Newtonsoft.Json/13.0.3": {
787
+ "type": "package",
788
+ "serviceable": true,
789
+ "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
790
+ "path": "newtonsoft.json/13.0.3",
791
+ "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
792
+ },
793
+ "YoloDev.Expecto.TestSdk/0.15.5": {
794
+ "type": "package",
795
+ "serviceable": true,
796
+ "sha512": "sha512-6aPtXtn+DXPLEhY8B/fRRvaArRKiXl02F25SQaplcZtb2DlCvI5tSz+2yXgeYE8qVMTQtbmihE3WubktjbogmQ==",
797
+ "path": "yolodev.expecto.testsdk/0.15.5",
798
+ "hashPath": "yolodev.expecto.testsdk.0.15.5.nupkg.sha512"
799
+ },
800
+ "Fossa.Bridge/1.0.0": {
801
+ "type": "project",
802
+ "serviceable": false,
803
+ "sha512": ""
804
+ }
805
+ }
806
+ }