@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,14 @@
1
+ {
2
+ "runtimeOptions": {
3
+ "tfm": "net8.0",
4
+ "framework": {
5
+ "name": "Microsoft.NETCore.App",
6
+ "version": "8.0.0"
7
+ },
8
+ "configProperties": {
9
+ "MSTest.EnableParentProcessQuery": true,
10
+ "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
11
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
12
+ }
13
+ }
14
+ }
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <doc>
3
+ <assembly><name>Fossa.Bridge</name></assembly>
4
+ <members>
5
+ </members>
6
+ </doc>
@@ -0,0 +1,174 @@
1
+ {
2
+ "format": 1,
3
+ "restore": {
4
+ "D:\\GitHub\\fossa-app\\Bridge\\tests\\Fossa.Bridge.Tests\\Fossa.Bridge.Tests.fsproj": {}
5
+ },
6
+ "projects": {
7
+ "D:\\GitHub\\fossa-app\\Bridge\\src\\Fossa.Bridge\\Fossa.Bridge.fsproj": {
8
+ "version": "1.0.0",
9
+ "restore": {
10
+ "projectUniqueName": "D:\\GitHub\\fossa-app\\Bridge\\src\\Fossa.Bridge\\Fossa.Bridge.fsproj",
11
+ "projectName": "Fossa.Bridge",
12
+ "projectPath": "D:\\GitHub\\fossa-app\\Bridge\\src\\Fossa.Bridge\\Fossa.Bridge.fsproj",
13
+ "packagesPath": "C:\\Users\\tiksn\\.nuget\\packages\\",
14
+ "outputPath": "D:\\GitHub\\fossa-app\\Bridge\\src\\Fossa.Bridge\\obj\\",
15
+ "projectStyle": "PackageReference",
16
+ "fallbackFolders": [
17
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
18
+ ],
19
+ "configFilePaths": [
20
+ "C:\\Users\\tiksn\\AppData\\Roaming\\NuGet\\NuGet.Config",
21
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
22
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
23
+ ],
24
+ "originalTargetFrameworks": [
25
+ "net8.0"
26
+ ],
27
+ "sources": {
28
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
29
+ "C:\\Program Files\\dotnet\\library-packs": {},
30
+ "C:\\Program Files\\dotnet\\sdk\\10.0.103\\FSharp\\library-packs": {},
31
+ "C:\\Users\\tiksn\\.nuget\\localpackages": {},
32
+ "https://api.nuget.org/v3/index.json": {}
33
+ },
34
+ "frameworks": {
35
+ "net8.0": {
36
+ "targetAlias": "net8.0",
37
+ "projectReferences": {}
38
+ }
39
+ },
40
+ "restoreAuditProperties": {
41
+ "enableAudit": "true",
42
+ "auditLevel": "low",
43
+ "auditMode": "direct"
44
+ },
45
+ "SdkAnalysisLevel": "10.0.100"
46
+ },
47
+ "frameworks": {
48
+ "net8.0": {
49
+ "targetAlias": "net8.0",
50
+ "dependencies": {
51
+ "FSharp.Core": {
52
+ "include": "Runtime, Compile, Build, Native, Analyzers, BuildTransitive",
53
+ "target": "Package",
54
+ "version": "[10.0.103, )",
55
+ "generatePathProperty": true
56
+ },
57
+ "Fable.Core": {
58
+ "target": "Package",
59
+ "version": "[4.5.0, )",
60
+ "generatePathProperty": true
61
+ }
62
+ },
63
+ "imports": [
64
+ "net461",
65
+ "net462",
66
+ "net47",
67
+ "net471",
68
+ "net472",
69
+ "net48",
70
+ "net481"
71
+ ],
72
+ "assetTargetFallback": true,
73
+ "warn": true,
74
+ "frameworkReferences": {
75
+ "Microsoft.NETCore.App": {
76
+ "privateAssets": "all"
77
+ }
78
+ },
79
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.103/PortableRuntimeIdentifierGraph.json"
80
+ }
81
+ }
82
+ },
83
+ "D:\\GitHub\\fossa-app\\Bridge\\tests\\Fossa.Bridge.Tests\\Fossa.Bridge.Tests.fsproj": {
84
+ "version": "1.0.0",
85
+ "restore": {
86
+ "projectUniqueName": "D:\\GitHub\\fossa-app\\Bridge\\tests\\Fossa.Bridge.Tests\\Fossa.Bridge.Tests.fsproj",
87
+ "projectName": "Fossa.Bridge.Tests",
88
+ "projectPath": "D:\\GitHub\\fossa-app\\Bridge\\tests\\Fossa.Bridge.Tests\\Fossa.Bridge.Tests.fsproj",
89
+ "packagesPath": "C:\\Users\\tiksn\\.nuget\\packages\\",
90
+ "outputPath": "D:\\GitHub\\fossa-app\\Bridge\\tests\\Fossa.Bridge.Tests\\obj\\",
91
+ "projectStyle": "PackageReference",
92
+ "fallbackFolders": [
93
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
94
+ ],
95
+ "configFilePaths": [
96
+ "C:\\Users\\tiksn\\AppData\\Roaming\\NuGet\\NuGet.Config",
97
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
98
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
99
+ ],
100
+ "originalTargetFrameworks": [
101
+ "net8.0"
102
+ ],
103
+ "sources": {
104
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
105
+ "C:\\Program Files\\dotnet\\library-packs": {},
106
+ "C:\\Program Files\\dotnet\\sdk\\10.0.103\\FSharp\\library-packs": {},
107
+ "C:\\Users\\tiksn\\.nuget\\localpackages": {},
108
+ "https://api.nuget.org/v3/index.json": {}
109
+ },
110
+ "frameworks": {
111
+ "net8.0": {
112
+ "targetAlias": "net8.0",
113
+ "projectReferences": {
114
+ "D:\\GitHub\\fossa-app\\Bridge\\src\\Fossa.Bridge\\Fossa.Bridge.fsproj": {
115
+ "projectPath": "D:\\GitHub\\fossa-app\\Bridge\\src\\Fossa.Bridge\\Fossa.Bridge.fsproj"
116
+ }
117
+ }
118
+ }
119
+ },
120
+ "restoreAuditProperties": {
121
+ "enableAudit": "true",
122
+ "auditLevel": "low",
123
+ "auditMode": "direct"
124
+ },
125
+ "SdkAnalysisLevel": "10.0.100"
126
+ },
127
+ "frameworks": {
128
+ "net8.0": {
129
+ "targetAlias": "net8.0",
130
+ "dependencies": {
131
+ "Expecto": {
132
+ "target": "Package",
133
+ "version": "[10.2.3, )",
134
+ "generatePathProperty": true
135
+ },
136
+ "FSharp.Core": {
137
+ "include": "Runtime, Compile, Build, Native, Analyzers, BuildTransitive",
138
+ "target": "Package",
139
+ "version": "[10.0.103, )",
140
+ "generatePathProperty": true
141
+ },
142
+ "Microsoft.NET.Test.Sdk": {
143
+ "target": "Package",
144
+ "version": "[18.3.0, )",
145
+ "generatePathProperty": true
146
+ },
147
+ "YoloDev.Expecto.TestSdk": {
148
+ "target": "Package",
149
+ "version": "[0.15.5, )",
150
+ "generatePathProperty": true
151
+ }
152
+ },
153
+ "imports": [
154
+ "net461",
155
+ "net462",
156
+ "net47",
157
+ "net471",
158
+ "net472",
159
+ "net48",
160
+ "net481"
161
+ ],
162
+ "assetTargetFallback": true,
163
+ "warn": true,
164
+ "frameworkReferences": {
165
+ "Microsoft.NETCore.App": {
166
+ "privateAssets": "all"
167
+ }
168
+ },
169
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.103/PortableRuntimeIdentifierGraph.json"
170
+ }
171
+ }
172
+ }
173
+ }
174
+ }
@@ -0,0 +1,31 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+ <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
+ <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4
+ <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
5
+ <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
6
+ <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
7
+ <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
8
+ <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\tiksn\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
9
+ <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10
+ <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
11
+ </PropertyGroup>
12
+ <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
13
+ <SourceRoot Include="C:\Users\tiksn\.nuget\packages\" />
14
+ <SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
15
+ </ItemGroup>
16
+ <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
17
+ <Import Project="$(NuGetPackageRoot)microsoft.testing.platform\1.9.0\buildTransitive\net8.0\Microsoft.Testing.Platform.props" Condition="Exists('$(NuGetPackageRoot)microsoft.testing.platform\1.9.0\buildTransitive\net8.0\Microsoft.Testing.Platform.props')" />
18
+ <Import Project="$(NuGetPackageRoot)microsoft.testing.platform.msbuild\1.9.0\buildTransitive\Microsoft.Testing.Platform.MSBuild.props" Condition="Exists('$(NuGetPackageRoot)microsoft.testing.platform.msbuild\1.9.0\buildTransitive\Microsoft.Testing.Platform.MSBuild.props')" />
19
+ <Import Project="$(NuGetPackageRoot)microsoft.testing.extensions.telemetry\1.9.0\buildTransitive\net8.0\Microsoft.Testing.Extensions.Telemetry.props" Condition="Exists('$(NuGetPackageRoot)microsoft.testing.extensions.telemetry\1.9.0\buildTransitive\net8.0\Microsoft.Testing.Extensions.Telemetry.props')" />
20
+ <Import Project="$(NuGetPackageRoot)yolodev.expecto.testsdk\0.15.5\build\net8.0\YoloDev.Expecto.TestSdk.props" Condition="Exists('$(NuGetPackageRoot)yolodev.expecto.testsdk\0.15.5\build\net8.0\YoloDev.Expecto.TestSdk.props')" />
21
+ <Import Project="$(NuGetPackageRoot)microsoft.testplatform.testhost\18.3.0\build\net8.0\Microsoft.TestPlatform.TestHost.props" Condition="Exists('$(NuGetPackageRoot)microsoft.testplatform.testhost\18.3.0\build\net8.0\Microsoft.TestPlatform.TestHost.props')" />
22
+ <Import Project="$(NuGetPackageRoot)microsoft.codecoverage\18.3.0\build\netstandard2.0\Microsoft.CodeCoverage.props" Condition="Exists('$(NuGetPackageRoot)microsoft.codecoverage\18.3.0\build\netstandard2.0\Microsoft.CodeCoverage.props')" />
23
+ <Import Project="$(NuGetPackageRoot)microsoft.net.test.sdk\18.3.0\build\net8.0\Microsoft.NET.Test.Sdk.props" Condition="Exists('$(NuGetPackageRoot)microsoft.net.test.sdk\18.3.0\build\net8.0\Microsoft.NET.Test.Sdk.props')" />
24
+ </ImportGroup>
25
+ <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
26
+ <PkgFSharp_Core Condition=" '$(PkgFSharp_Core)' == '' ">C:\Users\tiksn\.nuget\packages\fsharp.core\10.0.103</PkgFSharp_Core>
27
+ <PkgExpecto Condition=" '$(PkgExpecto)' == '' ">C:\Users\tiksn\.nuget\packages\expecto\10.2.3</PkgExpecto>
28
+ <PkgYoloDev_Expecto_TestSdk Condition=" '$(PkgYoloDev_Expecto_TestSdk)' == '' ">C:\Users\tiksn\.nuget\packages\yolodev.expecto.testsdk\0.15.5</PkgYoloDev_Expecto_TestSdk>
29
+ <PkgMicrosoft_NET_Test_Sdk Condition=" '$(PkgMicrosoft_NET_Test_Sdk)' == '' ">C:\Users\tiksn\.nuget\packages\microsoft.net.test.sdk\18.3.0</PkgMicrosoft_NET_Test_Sdk>
30
+ </PropertyGroup>
31
+ </Project>
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="no"?>
2
+ <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
+ <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4
+ <Import Project="$(NuGetPackageRoot)microsoft.testing.platform\1.9.0\buildTransitive\net8.0\Microsoft.Testing.Platform.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.testing.platform\1.9.0\buildTransitive\net8.0\Microsoft.Testing.Platform.targets')" />
5
+ <Import Project="$(NuGetPackageRoot)microsoft.testing.platform.msbuild\1.9.0\buildTransitive\Microsoft.Testing.Platform.MSBuild.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.testing.platform.msbuild\1.9.0\buildTransitive\Microsoft.Testing.Platform.MSBuild.targets')" />
6
+ <Import Project="$(NuGetPackageRoot)yolodev.expecto.testsdk\0.15.5\build\net8.0\YoloDev.Expecto.TestSdk.targets" Condition="Exists('$(NuGetPackageRoot)yolodev.expecto.testsdk\0.15.5\build\net8.0\YoloDev.Expecto.TestSdk.targets')" />
7
+ <Import Project="$(NuGetPackageRoot)microsoft.testplatform.testhost\18.3.0\build\net8.0\Microsoft.TestPlatform.TestHost.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.testplatform.testhost\18.3.0\build\net8.0\Microsoft.TestPlatform.TestHost.targets')" />
8
+ <Import Project="$(NuGetPackageRoot)microsoft.codecoverage\18.3.0\build\netstandard2.0\Microsoft.CodeCoverage.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.codecoverage\18.3.0\build\netstandard2.0\Microsoft.CodeCoverage.targets')" />
9
+ <Import Project="$(NuGetPackageRoot)microsoft.net.test.sdk\18.3.0\build\net8.0\Microsoft.NET.Test.Sdk.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.net.test.sdk\18.3.0\build\net8.0\Microsoft.NET.Test.Sdk.targets')" />
10
+ </ImportGroup>
11
+ </Project>
@@ -0,0 +1,3 @@
1
+ namespace Microsoft.BuildSettings
2
+ [<System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName=".NET 8.0")>]
3
+ do ()
@@ -0,0 +1,17 @@
1
+ // <auto-generated>
2
+ // Generated by the FSharp WriteCodeFragment class.
3
+ // </auto-generated>
4
+ namespace FSharp
5
+
6
+ open System
7
+ open System.Reflection
8
+
9
+
10
+ [<assembly: System.Reflection.AssemblyCompanyAttribute("Fossa.Bridge.Tests")>]
11
+ [<assembly: System.Reflection.AssemblyConfigurationAttribute("Release")>]
12
+ [<assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")>]
13
+ [<assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d8934b3e09ebd1d9bdfe9ffc6232814f28c8630f")>]
14
+ [<assembly: System.Reflection.AssemblyProductAttribute("Fossa.Bridge.Tests")>]
15
+ [<assembly: System.Reflection.AssemblyTitleAttribute("Fossa.Bridge.Tests")>]
16
+ [<assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")>]
17
+ do()
@@ -0,0 +1,191 @@
1
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\.msCoverageSourceRootsMapping_Fossa.Bridge.Tests
2
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\testhost.dll
3
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\testhost.exe
4
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\expecto.visualstudio.dotnetcore.testadapter.dll
5
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Fossa.Bridge.Tests.exe
6
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Fossa.Bridge.Tests.deps.json
7
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Fossa.Bridge.Tests.runtimeconfig.json
8
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Fossa.Bridge.Tests.dll
9
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Fossa.Bridge.Tests.pdb
10
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Expecto.dll
11
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Fable.Core.dll
12
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\FSharp.Core.dll
13
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.ApplicationInsights.dll
14
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll
15
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.Testing.Extensions.Telemetry.dll
16
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.Testing.Extensions.TrxReport.Abstractions.dll
17
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.Testing.Extensions.VSTestBridge.dll
18
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.Testing.Platform.dll
19
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.Testing.Extensions.MSBuild.dll
20
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.TestPlatform.AdapterUtilities.dll
21
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.TestPlatform.CoreUtilities.dll
22
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.TestPlatform.PlatformAbstractions.dll
23
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
24
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.TestPlatform.CommunicationUtilities.dll
25
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.TestPlatform.CrossPlatEngine.dll
26
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.TestPlatform.Utilities.dll
27
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Microsoft.VisualStudio.TestPlatform.Common.dll
28
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Mono.Cecil.Mdb.dll
29
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Mono.Cecil.Pdb.dll
30
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Mono.Cecil.Rocks.dll
31
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Mono.Cecil.dll
32
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Newtonsoft.Json.dll
33
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\cs\FSharp.Core.resources.dll
34
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\de\FSharp.Core.resources.dll
35
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\es\FSharp.Core.resources.dll
36
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\fr\FSharp.Core.resources.dll
37
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\it\FSharp.Core.resources.dll
38
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ja\FSharp.Core.resources.dll
39
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ko\FSharp.Core.resources.dll
40
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pl\FSharp.Core.resources.dll
41
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pt-BR\FSharp.Core.resources.dll
42
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ru\FSharp.Core.resources.dll
43
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\tr\FSharp.Core.resources.dll
44
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hans\FSharp.Core.resources.dll
45
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hant\FSharp.Core.resources.dll
46
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\cs\Microsoft.Testing.Extensions.Telemetry.resources.dll
47
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\de\Microsoft.Testing.Extensions.Telemetry.resources.dll
48
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\es\Microsoft.Testing.Extensions.Telemetry.resources.dll
49
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\fr\Microsoft.Testing.Extensions.Telemetry.resources.dll
50
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\it\Microsoft.Testing.Extensions.Telemetry.resources.dll
51
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ja\Microsoft.Testing.Extensions.Telemetry.resources.dll
52
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ko\Microsoft.Testing.Extensions.Telemetry.resources.dll
53
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pl\Microsoft.Testing.Extensions.Telemetry.resources.dll
54
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pt-BR\Microsoft.Testing.Extensions.Telemetry.resources.dll
55
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ru\Microsoft.Testing.Extensions.Telemetry.resources.dll
56
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\tr\Microsoft.Testing.Extensions.Telemetry.resources.dll
57
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hans\Microsoft.Testing.Extensions.Telemetry.resources.dll
58
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hant\Microsoft.Testing.Extensions.Telemetry.resources.dll
59
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\cs\Microsoft.Testing.Extensions.VSTestBridge.resources.dll
60
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\de\Microsoft.Testing.Extensions.VSTestBridge.resources.dll
61
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\es\Microsoft.Testing.Extensions.VSTestBridge.resources.dll
62
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\fr\Microsoft.Testing.Extensions.VSTestBridge.resources.dll
63
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\it\Microsoft.Testing.Extensions.VSTestBridge.resources.dll
64
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ja\Microsoft.Testing.Extensions.VSTestBridge.resources.dll
65
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ko\Microsoft.Testing.Extensions.VSTestBridge.resources.dll
66
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pl\Microsoft.Testing.Extensions.VSTestBridge.resources.dll
67
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pt-BR\Microsoft.Testing.Extensions.VSTestBridge.resources.dll
68
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ru\Microsoft.Testing.Extensions.VSTestBridge.resources.dll
69
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\tr\Microsoft.Testing.Extensions.VSTestBridge.resources.dll
70
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hans\Microsoft.Testing.Extensions.VSTestBridge.resources.dll
71
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hant\Microsoft.Testing.Extensions.VSTestBridge.resources.dll
72
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\cs\Microsoft.Testing.Platform.resources.dll
73
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\de\Microsoft.Testing.Platform.resources.dll
74
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\es\Microsoft.Testing.Platform.resources.dll
75
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\fr\Microsoft.Testing.Platform.resources.dll
76
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\it\Microsoft.Testing.Platform.resources.dll
77
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ja\Microsoft.Testing.Platform.resources.dll
78
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ko\Microsoft.Testing.Platform.resources.dll
79
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pl\Microsoft.Testing.Platform.resources.dll
80
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pt-BR\Microsoft.Testing.Platform.resources.dll
81
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ru\Microsoft.Testing.Platform.resources.dll
82
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\tr\Microsoft.Testing.Platform.resources.dll
83
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hans\Microsoft.Testing.Platform.resources.dll
84
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hant\Microsoft.Testing.Platform.resources.dll
85
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\cs\Microsoft.Testing.Extensions.MSBuild.resources.dll
86
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\de\Microsoft.Testing.Extensions.MSBuild.resources.dll
87
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\es\Microsoft.Testing.Extensions.MSBuild.resources.dll
88
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\fr\Microsoft.Testing.Extensions.MSBuild.resources.dll
89
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\it\Microsoft.Testing.Extensions.MSBuild.resources.dll
90
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ja\Microsoft.Testing.Extensions.MSBuild.resources.dll
91
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ko\Microsoft.Testing.Extensions.MSBuild.resources.dll
92
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pl\Microsoft.Testing.Extensions.MSBuild.resources.dll
93
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pt-BR\Microsoft.Testing.Extensions.MSBuild.resources.dll
94
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ru\Microsoft.Testing.Extensions.MSBuild.resources.dll
95
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\tr\Microsoft.Testing.Extensions.MSBuild.resources.dll
96
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hans\Microsoft.Testing.Extensions.MSBuild.resources.dll
97
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hant\Microsoft.Testing.Extensions.MSBuild.resources.dll
98
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\cs\Microsoft.TestPlatform.AdapterUtilities.resources.dll
99
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\de\Microsoft.TestPlatform.AdapterUtilities.resources.dll
100
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\es\Microsoft.TestPlatform.AdapterUtilities.resources.dll
101
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\fr\Microsoft.TestPlatform.AdapterUtilities.resources.dll
102
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\it\Microsoft.TestPlatform.AdapterUtilities.resources.dll
103
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ja\Microsoft.TestPlatform.AdapterUtilities.resources.dll
104
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ko\Microsoft.TestPlatform.AdapterUtilities.resources.dll
105
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pl\Microsoft.TestPlatform.AdapterUtilities.resources.dll
106
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pt-BR\Microsoft.TestPlatform.AdapterUtilities.resources.dll
107
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ru\Microsoft.TestPlatform.AdapterUtilities.resources.dll
108
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\tr\Microsoft.TestPlatform.AdapterUtilities.resources.dll
109
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hans\Microsoft.TestPlatform.AdapterUtilities.resources.dll
110
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hant\Microsoft.TestPlatform.AdapterUtilities.resources.dll
111
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll
112
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
113
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll
114
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
115
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll
116
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
117
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll
118
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
119
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll
120
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
121
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll
122
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
123
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll
124
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
125
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll
126
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
127
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll
128
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
129
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll
130
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
131
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll
132
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
133
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll
134
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
135
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll
136
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
137
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
138
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
139
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
140
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
141
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
142
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
143
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
144
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
145
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
146
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
147
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
148
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
149
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
150
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
151
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
152
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
153
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
154
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
155
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
156
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
157
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
158
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
159
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
160
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
161
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
162
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
163
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
164
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
165
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
166
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
167
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
168
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
169
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
170
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
171
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
172
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
173
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
174
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
175
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
176
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Fossa.Bridge.dll
177
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Fossa.Bridge.pdb
178
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\bin\Release\net8.0\Fossa.Bridge.xml
179
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\obj\Release\net8.0\Fossa.Bridge.Tests.fsproj.AssemblyReference.cache
180
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\obj\Release\net8.0\Fossa.Bridge.Tests.gentestingplatformentrypointinputcache.cache
181
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\obj\Release\net8.0\Fossa.Bridge.Tests.genautoregisteredextensionsinputcache.cache
182
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\obj\Release\net8.0\Fossa.Bridge.Tests.AssemblyInfoInputs.cache
183
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\obj\Release\net8.0\Fossa.Bridge.Tests.AssemblyInfo.fs
184
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\obj\Release\net8.0\Fossa.Bridge.Tests.fsproj.CoreCompileInputs.cache
185
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\obj\Release\net8.0\Fossa.Bridge.Tests.sourcelink.json
186
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\obj\Release\net8.0\Fossa.Br.E9949494.Up2Date
187
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\obj\Release\net8.0\Fossa.Bridge.Tests.dll
188
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\obj\Release\net8.0\refint\Fossa.Bridge.Tests.dll
189
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\obj\Release\net8.0\Fossa.Bridge.Tests.pdb
190
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\obj\Release\net8.0\Fossa.Bridge.Tests.genruntimeconfig.cache
191
+ D:\GitHub\fossa-app\Bridge\tests\Fossa.Bridge.Tests\obj\Release\net8.0\ref\Fossa.Bridge.Tests.dll
@@ -0,0 +1 @@
1
+ {"documents":{"D:\\GitHub\\fossa-app\\Bridge\\*":"https://raw.githubusercontent.com/fossa-app/Bridge/d8934b3e09ebd1d9bdfe9ffc6232814f28c8630f/*"}}
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <linker>
3
+ <assembly fullname="Fossa.Bridge.Tests">
4
+ <resource name="FSharpSignatureData.Fossa.Bridge.Tests" action="remove"></resource>
5
+ <resource name="FSharpSignatureCompressedData.Fossa.Bridge.Tests" action="remove"></resource>
6
+ <resource name="FSharpSignatureDataB.Fossa.Bridge.Tests" action="remove"></resource>
7
+ <resource name="FSharpSignatureCompressedDataB.Fossa.Bridge.Tests" action="remove"></resource>
8
+ <resource name="FSharpOptimizationData.Fossa.Bridge.Tests" action="remove"></resource>
9
+ <resource name="FSharpOptimizationCompressedData.Fossa.Bridge.Tests" action="remove"></resource>
10
+ <resource name="FSharpOptimizationDataB.Fossa.Bridge.Tests" action="remove"></resource>
11
+ <resource name="FSharpOptimizationCompressedDataB.Fossa.Bridge.Tests" action="remove"></resource>
12
+ <resource name="FSharpOptimizationInfo.Fossa.Bridge.Tests" action="remove"></resource>
13
+ <resource name="FSharpSignatureInfo.Fossa.Bridge.Tests" action="remove"></resource>
14
+ </assembly>
15
+ </linker>