@fossa-app/bridge 0.1.4 → 0.1.6
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.
- package/.build.ps1 +8 -7
- package/.gitattributes +43 -0
- package/Bridge.slnx +8 -0
- package/Directory.Build.props +25 -0
- package/Images/Icon.png +0 -0
- package/dotnet-tools.json +1 -1
- package/gig.ps1 +2 -1
- package/package.json +1 -1
- package/src/Bridge/Bridge.fsproj +26 -0
- package/src/{Fossa.Bridge → Bridge}/Models/ApiModels.fs +6 -0
- package/src/Bridge/Services/Clients/BranchClient.fs +46 -0
- package/src/Bridge/Services/Clients/CompanyClient.fs +24 -0
- package/src/Bridge/Services/Clients/CompanyLicenseClient.fs +17 -0
- package/src/Bridge/Services/Clients/CompanySettingsClient.fs +24 -0
- package/src/Bridge/Services/Clients/DepartmentClient.fs +48 -0
- package/src/Bridge/Services/Clients/EmployeeClient.fs +71 -0
- package/src/Bridge/Services/Clients/IdentityClient.fs +11 -0
- package/src/Bridge/Services/Clients/SystemLicenseClient.fs +11 -0
- package/src/Bridge/Services/Endpoints.fs +13 -0
- package/src/Bridge/Services/IHttpTransport.fs +10 -0
- package/src/{Fossa.Bridge/bin/Release/net8.0 → Bridge/bin/Release/net10.0}/Fossa.Bridge.deps.json +4 -4
- package/src/Bridge/obj/Bridge.fsproj.nuget.dgspec.json +357 -0
- package/src/Bridge/obj/Release/Fossa.Bridge.0.1.6.nuspec +31 -0
- package/src/{Fossa.Bridge/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs → Bridge/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.fs} +1 -1
- package/src/{Fossa.Bridge/obj/Release/net8.0/Fossa.Bridge.AssemblyInfo.fs → Bridge/obj/Release/net10.0/Bridge.AssemblyInfo.fs} +6 -4
- package/src/Bridge/obj/Release/net10.0/Bridge.fsproj.FileListAbsolute.txt +14 -0
- package/src/Bridge/obj/Release/net10.0/Bridge.sourcelink.json +1 -0
- package/src/Bridge/obj/project.assets.json +501 -0
- package/src/Directory.Build.props +23 -0
- package/tests/{Fossa.Bridge.Tests/Fossa.Bridge.Tests.fsproj → Bridge.Tests/Bridge.Tests.fsproj} +2 -2
- package/tests/Bridge.Tests/bin/Release/net10.0/.msCoverageSourceRootsMapping_Fossa.Bridge.Tests +0 -0
- package/tests/Bridge.Tests/bin/Release/net10.0/Fossa.Bridge.Tests +0 -0
- package/tests/{Fossa.Bridge.Tests/bin/Release/net8.0 → Bridge.Tests/bin/Release/net10.0}/Fossa.Bridge.Tests.deps.json +87 -74
- package/tests/{Fossa.Bridge.Tests/bin/Release/net8.0 → Bridge.Tests/bin/Release/net10.0}/Fossa.Bridge.Tests.runtimeconfig.json +2 -2
- package/tests/Bridge.Tests/obj/Bridge.Tests.fsproj.nuget.dgspec.json +712 -0
- package/tests/{Fossa.Bridge.Tests/obj/Fossa.Bridge.Tests.fsproj.nuget.g.props → Bridge.Tests/obj/Bridge.Tests.fsproj.nuget.g.props} +2 -2
- package/tests/{Fossa.Bridge.Tests/obj/Fossa.Bridge.Tests.fsproj.nuget.g.targets → Bridge.Tests/obj/Bridge.Tests.fsproj.nuget.g.targets} +1 -1
- package/tests/{Fossa.Bridge.Tests/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.fs → Bridge.Tests/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.fs} +1 -1
- package/tests/{Fossa.Bridge.Tests/obj/Release/net8.0/Fossa.Bridge.Tests.AssemblyInfo.fs → Bridge.Tests/obj/Release/net10.0/Bridge.Tests.AssemblyInfo.fs} +4 -2
- package/tests/Bridge.Tests/obj/Release/net10.0/Bridge.Tests.fsproj.FileListAbsolute.txt +190 -0
- package/tests/Bridge.Tests/obj/Release/net10.0/Bridge.Tests.sourcelink.json +1 -0
- package/tests/Bridge.Tests/obj/Release/net10.0/apphost +0 -0
- package/tests/{Fossa.Bridge.Tests → Bridge.Tests}/obj/project.assets.json +374 -253
- package/tsconfig.json +3 -1
- package/Fossa.Bridge.slnx +0 -8
- package/src/Fossa.Bridge/Fossa.Bridge.fsproj +0 -17
- package/src/Fossa.Bridge/bin/Release/net8.0/Fossa.Bridge.fable-temp.deps.json +0 -41
- package/src/Fossa.Bridge/obj/Fossa.Bridge.fable-temp.csproj.nuget.dgspec.json +0 -83
- package/src/Fossa.Bridge/obj/Fossa.Bridge.fable-temp.csproj.nuget.g.props +0 -25
- package/src/Fossa.Bridge/obj/Fossa.Bridge.fsproj.nuget.dgspec.json +0 -86
- package/src/Fossa.Bridge/obj/Fossa.Bridge.fsproj.nuget.g.targets +0 -2
- package/src/Fossa.Bridge/obj/Release/Fossa.Bridge.0.1.4.nuspec +0 -20
- package/src/Fossa.Bridge/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +0 -4
- package/src/Fossa.Bridge/obj/Release/net8.0/Fossa.Bridge.fable-temp.AssemblyInfo.cs +0 -23
- package/src/Fossa.Bridge/obj/Release/net8.0/Fossa.Bridge.fable-temp.GeneratedMSBuildEditorConfig.editorconfig +0 -17
- package/src/Fossa.Bridge/obj/Release/net8.0/Fossa.Bridge.fable-temp.csproj.FileListAbsolute.txt +0 -4
- package/src/Fossa.Bridge/obj/Release/net8.0/Fossa.Bridge.fsproj.FileListAbsolute.txt +0 -14
- package/src/Fossa.Bridge/obj/Release/net8.0/Fossa.Bridge.sourcelink.json +0 -1
- package/src/Fossa.Bridge/obj/project.assets.json +0 -230
- package/tests/Fossa.Bridge.Tests/bin/Release/net8.0/.msCoverageSourceRootsMapping_Fossa.Bridge.Tests +0 -0
- package/tests/Fossa.Bridge.Tests/bin/Release/net8.0/Fossa.Bridge.Tests +0 -0
- package/tests/Fossa.Bridge.Tests/obj/Fossa.Bridge.Tests.fsproj.nuget.dgspec.json +0 -182
- package/tests/Fossa.Bridge.Tests/obj/Release/net8.0/Fossa.Bridge.Tests.fsproj.FileListAbsolute.txt +0 -190
- package/tests/Fossa.Bridge.Tests/obj/Release/net8.0/Fossa.Bridge.Tests.sourcelink.json +0 -1
- package/tests/Fossa.Bridge.Tests/obj/Release/net8.0/apphost +0 -0
- /package/src/{Fossa.Bridge → Bridge}/Services/UrlHelpers.fs +0 -0
- /package/src/{Fossa.Bridge/bin/Release/net8.0 → Bridge/bin/Release/net10.0}/Fossa.Bridge.xml +0 -0
- /package/src/{Fossa.Bridge/obj/Fossa.Bridge.fsproj.nuget.g.props → Bridge/obj/Bridge.fsproj.nuget.g.props} +0 -0
- /package/src/{Fossa.Bridge/obj/Fossa.Bridge.fable-temp.csproj.nuget.g.targets → Bridge/obj/Bridge.fsproj.nuget.g.targets} +0 -0
- /package/src/{Fossa.Bridge/obj/Release/net8.0 → Bridge/obj/Release/net10.0}/Fossa.Bridge.xml +0 -0
- /package/src/{Fossa.Bridge/obj/Release/net8.0 → Bridge/obj/Release/net10.0}/ILLink.Substitutions.xml +0 -0
- /package/tests/{Fossa.Bridge.Tests → Bridge.Tests}/Main.fs +0 -0
- /package/tests/{Fossa.Bridge.Tests → Bridge.Tests}/UrlHelpersTests.fs +0 -0
- /package/tests/{Fossa.Bridge.Tests/bin/Release/net8.0 → Bridge.Tests/bin/Release/net10.0}/Fossa.Bridge.xml +0 -0
- /package/tests/{Fossa.Bridge.Tests/obj/Release/net8.0/Fossa.Br.E9949494.Up2Date → Bridge.Tests/obj/Release/net10.0/Bridge.T.A317E392.Up2Date} +0 -0
- /package/tests/{Fossa.Bridge.Tests/obj/Release/net8.0 → Bridge.Tests/obj/Release/net10.0}/ILLink.Substitutions.xml +0 -0
|
@@ -0,0 +1,357 @@
|
|
|
1
|
+
{
|
|
2
|
+
"format": 1,
|
|
3
|
+
"restore": {
|
|
4
|
+
"/home/runner/work/Bridge/Bridge/src/Bridge/Bridge.fsproj": {}
|
|
5
|
+
},
|
|
6
|
+
"projects": {
|
|
7
|
+
"/home/runner/work/Bridge/Bridge/src/Bridge/Bridge.fsproj": {
|
|
8
|
+
"version": "1.0.0",
|
|
9
|
+
"restore": {
|
|
10
|
+
"projectUniqueName": "/home/runner/work/Bridge/Bridge/src/Bridge/Bridge.fsproj",
|
|
11
|
+
"projectName": "Fossa.Bridge",
|
|
12
|
+
"projectPath": "/home/runner/work/Bridge/Bridge/src/Bridge/Bridge.fsproj",
|
|
13
|
+
"packagesPath": "/home/runner/.nuget/packages/",
|
|
14
|
+
"outputPath": "/home/runner/work/Bridge/Bridge/src/Bridge/obj/",
|
|
15
|
+
"projectStyle": "PackageReference",
|
|
16
|
+
"configFilePaths": [
|
|
17
|
+
"/home/runner/.nuget/NuGet/NuGet.Config"
|
|
18
|
+
],
|
|
19
|
+
"originalTargetFrameworks": [
|
|
20
|
+
"net10.0"
|
|
21
|
+
],
|
|
22
|
+
"sources": {
|
|
23
|
+
"/usr/share/dotnet/sdk/10.0.102/FSharp/library-packs": {},
|
|
24
|
+
"https://api.nuget.org/v3/index.json": {}
|
|
25
|
+
},
|
|
26
|
+
"frameworks": {
|
|
27
|
+
"net10.0": {
|
|
28
|
+
"targetAlias": "net10.0",
|
|
29
|
+
"projectReferences": {}
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"warningProperties": {
|
|
33
|
+
"allWarningsAsErrors": true
|
|
34
|
+
},
|
|
35
|
+
"restoreLockProperties": {
|
|
36
|
+
"restorePackagesWithLockFile": "false",
|
|
37
|
+
"nuGetLockFilePath": "Fable.lock"
|
|
38
|
+
},
|
|
39
|
+
"restoreAuditProperties": {
|
|
40
|
+
"enableAudit": "true",
|
|
41
|
+
"auditLevel": "low",
|
|
42
|
+
"auditMode": "all"
|
|
43
|
+
},
|
|
44
|
+
"SdkAnalysisLevel": "10.0.100"
|
|
45
|
+
},
|
|
46
|
+
"frameworks": {
|
|
47
|
+
"net10.0": {
|
|
48
|
+
"targetAlias": "net10.0",
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"FSharp.Core": {
|
|
51
|
+
"include": "Runtime, Compile, Build, Native, Analyzers, BuildTransitive",
|
|
52
|
+
"target": "Package",
|
|
53
|
+
"version": "[10.0.102, )",
|
|
54
|
+
"generatePathProperty": true
|
|
55
|
+
},
|
|
56
|
+
"Fable.Core": {
|
|
57
|
+
"target": "Package",
|
|
58
|
+
"version": "[4.5.0, )",
|
|
59
|
+
"generatePathProperty": true
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"imports": [
|
|
63
|
+
"net461",
|
|
64
|
+
"net462",
|
|
65
|
+
"net47",
|
|
66
|
+
"net471",
|
|
67
|
+
"net472",
|
|
68
|
+
"net48",
|
|
69
|
+
"net481"
|
|
70
|
+
],
|
|
71
|
+
"assetTargetFallback": true,
|
|
72
|
+
"warn": true,
|
|
73
|
+
"frameworkReferences": {
|
|
74
|
+
"Microsoft.NETCore.App": {
|
|
75
|
+
"privateAssets": "all"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json",
|
|
79
|
+
"packagesToPrune": {
|
|
80
|
+
"Microsoft.CSharp": "(,4.7.32767]",
|
|
81
|
+
"Microsoft.VisualBasic": "(,10.4.32767]",
|
|
82
|
+
"Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
83
|
+
"Microsoft.Win32.Registry": "(,5.0.32767]",
|
|
84
|
+
"runtime.any.System.Collections": "(,4.3.32767]",
|
|
85
|
+
"runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
|
|
86
|
+
"runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
87
|
+
"runtime.any.System.Globalization": "(,4.3.32767]",
|
|
88
|
+
"runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
|
|
89
|
+
"runtime.any.System.IO": "(,4.3.32767]",
|
|
90
|
+
"runtime.any.System.Reflection": "(,4.3.32767]",
|
|
91
|
+
"runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
|
|
92
|
+
"runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
|
|
93
|
+
"runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
|
|
94
|
+
"runtime.any.System.Runtime": "(,4.3.32767]",
|
|
95
|
+
"runtime.any.System.Runtime.Handles": "(,4.3.32767]",
|
|
96
|
+
"runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
|
|
97
|
+
"runtime.any.System.Text.Encoding": "(,4.3.32767]",
|
|
98
|
+
"runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
99
|
+
"runtime.any.System.Threading.Tasks": "(,4.3.32767]",
|
|
100
|
+
"runtime.any.System.Threading.Timer": "(,4.3.32767]",
|
|
101
|
+
"runtime.aot.System.Collections": "(,4.3.32767]",
|
|
102
|
+
"runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
|
|
103
|
+
"runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
104
|
+
"runtime.aot.System.Globalization": "(,4.3.32767]",
|
|
105
|
+
"runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
|
|
106
|
+
"runtime.aot.System.IO": "(,4.3.32767]",
|
|
107
|
+
"runtime.aot.System.Reflection": "(,4.3.32767]",
|
|
108
|
+
"runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
|
|
109
|
+
"runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
|
|
110
|
+
"runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
|
|
111
|
+
"runtime.aot.System.Runtime": "(,4.3.32767]",
|
|
112
|
+
"runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
|
|
113
|
+
"runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
|
|
114
|
+
"runtime.aot.System.Text.Encoding": "(,4.3.32767]",
|
|
115
|
+
"runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
116
|
+
"runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
|
|
117
|
+
"runtime.aot.System.Threading.Timer": "(,4.3.32767]",
|
|
118
|
+
"runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
|
|
119
|
+
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
120
|
+
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
121
|
+
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
122
|
+
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
123
|
+
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
124
|
+
"runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
|
|
125
|
+
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
126
|
+
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
127
|
+
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
128
|
+
"runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
|
|
129
|
+
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
130
|
+
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
131
|
+
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
132
|
+
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
133
|
+
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
134
|
+
"runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
|
|
135
|
+
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
136
|
+
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
137
|
+
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
138
|
+
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
139
|
+
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
140
|
+
"runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
|
|
141
|
+
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
142
|
+
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
143
|
+
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
144
|
+
"runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
|
|
145
|
+
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
146
|
+
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
147
|
+
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
148
|
+
"runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
|
|
149
|
+
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
150
|
+
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
151
|
+
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
152
|
+
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
153
|
+
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
154
|
+
"runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
|
|
155
|
+
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
156
|
+
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
157
|
+
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
158
|
+
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
159
|
+
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
160
|
+
"runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
|
|
161
|
+
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
162
|
+
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
163
|
+
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
164
|
+
"runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
|
|
165
|
+
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
166
|
+
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
167
|
+
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
168
|
+
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
169
|
+
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
|
|
170
|
+
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
171
|
+
"runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
|
|
172
|
+
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
173
|
+
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
174
|
+
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
175
|
+
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
176
|
+
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
177
|
+
"runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
178
|
+
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
179
|
+
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
180
|
+
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
181
|
+
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
182
|
+
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
183
|
+
"runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
184
|
+
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
185
|
+
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
186
|
+
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
187
|
+
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
188
|
+
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
189
|
+
"runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
|
|
190
|
+
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
191
|
+
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
192
|
+
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
193
|
+
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
|
|
194
|
+
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
|
|
195
|
+
"runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
|
|
196
|
+
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
197
|
+
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
|
|
198
|
+
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
|
|
199
|
+
"runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
200
|
+
"runtime.unix.System.Console": "(,4.3.32767]",
|
|
201
|
+
"runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
|
|
202
|
+
"runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
|
|
203
|
+
"runtime.unix.System.Net.Primitives": "(,4.3.32767]",
|
|
204
|
+
"runtime.unix.System.Net.Sockets": "(,4.3.32767]",
|
|
205
|
+
"runtime.unix.System.Private.Uri": "(,4.3.32767]",
|
|
206
|
+
"runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
|
|
207
|
+
"runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
|
|
208
|
+
"runtime.win.System.Console": "(,4.3.32767]",
|
|
209
|
+
"runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
|
|
210
|
+
"runtime.win.System.IO.FileSystem": "(,4.3.32767]",
|
|
211
|
+
"runtime.win.System.Net.Primitives": "(,4.3.32767]",
|
|
212
|
+
"runtime.win.System.Net.Sockets": "(,4.3.32767]",
|
|
213
|
+
"runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
|
|
214
|
+
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
215
|
+
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
216
|
+
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
217
|
+
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
|
|
218
|
+
"runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
219
|
+
"runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
220
|
+
"runtime.win7.System.Private.Uri": "(,4.3.32767]",
|
|
221
|
+
"runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
|
|
222
|
+
"System.AppContext": "(,4.3.32767]",
|
|
223
|
+
"System.Buffers": "(,5.0.32767]",
|
|
224
|
+
"System.Collections": "(,4.3.32767]",
|
|
225
|
+
"System.Collections.Concurrent": "(,4.3.32767]",
|
|
226
|
+
"System.Collections.Immutable": "(,10.0.32767]",
|
|
227
|
+
"System.Collections.NonGeneric": "(,4.3.32767]",
|
|
228
|
+
"System.Collections.Specialized": "(,4.3.32767]",
|
|
229
|
+
"System.ComponentModel": "(,4.3.32767]",
|
|
230
|
+
"System.ComponentModel.Annotations": "(,4.3.32767]",
|
|
231
|
+
"System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
|
|
232
|
+
"System.ComponentModel.Primitives": "(,4.3.32767]",
|
|
233
|
+
"System.ComponentModel.TypeConverter": "(,4.3.32767]",
|
|
234
|
+
"System.Console": "(,4.3.32767]",
|
|
235
|
+
"System.Data.Common": "(,4.3.32767]",
|
|
236
|
+
"System.Data.DataSetExtensions": "(,4.4.32767]",
|
|
237
|
+
"System.Diagnostics.Contracts": "(,4.3.32767]",
|
|
238
|
+
"System.Diagnostics.Debug": "(,4.3.32767]",
|
|
239
|
+
"System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
|
|
240
|
+
"System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
|
|
241
|
+
"System.Diagnostics.Process": "(,4.3.32767]",
|
|
242
|
+
"System.Diagnostics.StackTrace": "(,4.3.32767]",
|
|
243
|
+
"System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
|
|
244
|
+
"System.Diagnostics.Tools": "(,4.3.32767]",
|
|
245
|
+
"System.Diagnostics.TraceSource": "(,4.3.32767]",
|
|
246
|
+
"System.Diagnostics.Tracing": "(,4.3.32767]",
|
|
247
|
+
"System.Drawing.Primitives": "(,4.3.32767]",
|
|
248
|
+
"System.Dynamic.Runtime": "(,4.3.32767]",
|
|
249
|
+
"System.Formats.Asn1": "(,10.0.32767]",
|
|
250
|
+
"System.Formats.Tar": "(,10.0.32767]",
|
|
251
|
+
"System.Globalization": "(,4.3.32767]",
|
|
252
|
+
"System.Globalization.Calendars": "(,4.3.32767]",
|
|
253
|
+
"System.Globalization.Extensions": "(,4.3.32767]",
|
|
254
|
+
"System.IO": "(,4.3.32767]",
|
|
255
|
+
"System.IO.Compression": "(,4.3.32767]",
|
|
256
|
+
"System.IO.Compression.ZipFile": "(,4.3.32767]",
|
|
257
|
+
"System.IO.FileSystem": "(,4.3.32767]",
|
|
258
|
+
"System.IO.FileSystem.AccessControl": "(,4.4.32767]",
|
|
259
|
+
"System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
|
|
260
|
+
"System.IO.FileSystem.Primitives": "(,4.3.32767]",
|
|
261
|
+
"System.IO.FileSystem.Watcher": "(,4.3.32767]",
|
|
262
|
+
"System.IO.IsolatedStorage": "(,4.3.32767]",
|
|
263
|
+
"System.IO.MemoryMappedFiles": "(,4.3.32767]",
|
|
264
|
+
"System.IO.Pipelines": "(,10.0.32767]",
|
|
265
|
+
"System.IO.Pipes": "(,4.3.32767]",
|
|
266
|
+
"System.IO.Pipes.AccessControl": "(,5.0.32767]",
|
|
267
|
+
"System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
|
|
268
|
+
"System.Linq": "(,4.3.32767]",
|
|
269
|
+
"System.Linq.AsyncEnumerable": "(,10.0.32767]",
|
|
270
|
+
"System.Linq.Expressions": "(,4.3.32767]",
|
|
271
|
+
"System.Linq.Parallel": "(,4.3.32767]",
|
|
272
|
+
"System.Linq.Queryable": "(,4.3.32767]",
|
|
273
|
+
"System.Memory": "(,5.0.32767]",
|
|
274
|
+
"System.Net.Http": "(,4.3.32767]",
|
|
275
|
+
"System.Net.Http.Json": "(,10.0.32767]",
|
|
276
|
+
"System.Net.NameResolution": "(,4.3.32767]",
|
|
277
|
+
"System.Net.NetworkInformation": "(,4.3.32767]",
|
|
278
|
+
"System.Net.Ping": "(,4.3.32767]",
|
|
279
|
+
"System.Net.Primitives": "(,4.3.32767]",
|
|
280
|
+
"System.Net.Requests": "(,4.3.32767]",
|
|
281
|
+
"System.Net.Security": "(,4.3.32767]",
|
|
282
|
+
"System.Net.ServerSentEvents": "(,10.0.32767]",
|
|
283
|
+
"System.Net.Sockets": "(,4.3.32767]",
|
|
284
|
+
"System.Net.WebHeaderCollection": "(,4.3.32767]",
|
|
285
|
+
"System.Net.WebSockets": "(,4.3.32767]",
|
|
286
|
+
"System.Net.WebSockets.Client": "(,4.3.32767]",
|
|
287
|
+
"System.Numerics.Vectors": "(,5.0.32767]",
|
|
288
|
+
"System.ObjectModel": "(,4.3.32767]",
|
|
289
|
+
"System.Private.DataContractSerialization": "(,4.3.32767]",
|
|
290
|
+
"System.Private.Uri": "(,4.3.32767]",
|
|
291
|
+
"System.Reflection": "(,4.3.32767]",
|
|
292
|
+
"System.Reflection.DispatchProxy": "(,6.0.32767]",
|
|
293
|
+
"System.Reflection.Emit": "(,4.7.32767]",
|
|
294
|
+
"System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
|
|
295
|
+
"System.Reflection.Emit.Lightweight": "(,4.7.32767]",
|
|
296
|
+
"System.Reflection.Extensions": "(,4.3.32767]",
|
|
297
|
+
"System.Reflection.Metadata": "(,10.0.32767]",
|
|
298
|
+
"System.Reflection.Primitives": "(,4.3.32767]",
|
|
299
|
+
"System.Reflection.TypeExtensions": "(,4.3.32767]",
|
|
300
|
+
"System.Resources.Reader": "(,4.3.32767]",
|
|
301
|
+
"System.Resources.ResourceManager": "(,4.3.32767]",
|
|
302
|
+
"System.Resources.Writer": "(,4.3.32767]",
|
|
303
|
+
"System.Runtime": "(,4.3.32767]",
|
|
304
|
+
"System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
|
|
305
|
+
"System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
|
|
306
|
+
"System.Runtime.Extensions": "(,4.3.32767]",
|
|
307
|
+
"System.Runtime.Handles": "(,4.3.32767]",
|
|
308
|
+
"System.Runtime.InteropServices": "(,4.3.32767]",
|
|
309
|
+
"System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
|
|
310
|
+
"System.Runtime.Loader": "(,4.3.32767]",
|
|
311
|
+
"System.Runtime.Numerics": "(,4.3.32767]",
|
|
312
|
+
"System.Runtime.Serialization.Formatters": "(,4.3.32767]",
|
|
313
|
+
"System.Runtime.Serialization.Json": "(,4.3.32767]",
|
|
314
|
+
"System.Runtime.Serialization.Primitives": "(,4.3.32767]",
|
|
315
|
+
"System.Runtime.Serialization.Xml": "(,4.3.32767]",
|
|
316
|
+
"System.Security.AccessControl": "(,6.0.32767]",
|
|
317
|
+
"System.Security.Claims": "(,4.3.32767]",
|
|
318
|
+
"System.Security.Cryptography.Algorithms": "(,4.3.32767]",
|
|
319
|
+
"System.Security.Cryptography.Cng": "(,5.0.32767]",
|
|
320
|
+
"System.Security.Cryptography.Csp": "(,4.3.32767]",
|
|
321
|
+
"System.Security.Cryptography.Encoding": "(,4.3.32767]",
|
|
322
|
+
"System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
|
|
323
|
+
"System.Security.Cryptography.Primitives": "(,4.3.32767]",
|
|
324
|
+
"System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
|
|
325
|
+
"System.Security.Principal": "(,4.3.32767]",
|
|
326
|
+
"System.Security.Principal.Windows": "(,5.0.32767]",
|
|
327
|
+
"System.Security.SecureString": "(,4.3.32767]",
|
|
328
|
+
"System.Text.Encoding": "(,4.3.32767]",
|
|
329
|
+
"System.Text.Encoding.CodePages": "(,10.0.32767]",
|
|
330
|
+
"System.Text.Encoding.Extensions": "(,4.3.32767]",
|
|
331
|
+
"System.Text.Encodings.Web": "(,10.0.32767]",
|
|
332
|
+
"System.Text.Json": "(,10.0.32767]",
|
|
333
|
+
"System.Text.RegularExpressions": "(,4.3.32767]",
|
|
334
|
+
"System.Threading": "(,4.3.32767]",
|
|
335
|
+
"System.Threading.AccessControl": "(,10.0.32767]",
|
|
336
|
+
"System.Threading.Channels": "(,10.0.32767]",
|
|
337
|
+
"System.Threading.Overlapped": "(,4.3.32767]",
|
|
338
|
+
"System.Threading.Tasks": "(,4.3.32767]",
|
|
339
|
+
"System.Threading.Tasks.Dataflow": "(,10.0.32767]",
|
|
340
|
+
"System.Threading.Tasks.Extensions": "(,5.0.32767]",
|
|
341
|
+
"System.Threading.Tasks.Parallel": "(,4.3.32767]",
|
|
342
|
+
"System.Threading.Thread": "(,4.3.32767]",
|
|
343
|
+
"System.Threading.ThreadPool": "(,4.3.32767]",
|
|
344
|
+
"System.Threading.Timer": "(,4.3.32767]",
|
|
345
|
+
"System.ValueTuple": "(,4.5.32767]",
|
|
346
|
+
"System.Xml.ReaderWriter": "(,4.3.32767]",
|
|
347
|
+
"System.Xml.XDocument": "(,4.3.32767]",
|
|
348
|
+
"System.Xml.XmlDocument": "(,4.3.32767]",
|
|
349
|
+
"System.Xml.XmlSerializer": "(,4.3.32767]",
|
|
350
|
+
"System.Xml.XPath": "(,4.3.32767]",
|
|
351
|
+
"System.Xml.XPath.XDocument": "(,5.0.32767]"
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
|
3
|
+
<metadata>
|
|
4
|
+
<id>Fossa.Bridge</id>
|
|
5
|
+
<version>0.1.6</version>
|
|
6
|
+
<authors>Tigran TIKSN Torosyan</authors>
|
|
7
|
+
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
|
8
|
+
<license type="expression">MIT</license>
|
|
9
|
+
<licenseUrl>https://licenses.nuget.org/MIT</licenseUrl>
|
|
10
|
+
<icon>Icon.png</icon>
|
|
11
|
+
<readme>README.md</readme>
|
|
12
|
+
<projectUrl>https://github.com/fossa-app/Bridge</projectUrl>
|
|
13
|
+
<description>Shared Domain Models and DTOs for Fossa UI and API</description>
|
|
14
|
+
<releaseNotes>https://github.com/fossa-app/Bridge/releases</releaseNotes>
|
|
15
|
+
<copyright>Copyright © Tigran TIKSN Torosyan. All rights Reserved</copyright>
|
|
16
|
+
<repository type="git" url="https://github.com/fossa-app/Bridge.git" branch="refs/heads/main" commit="f8d2aad7021767ebdc735084278edb900b6a8d7d" />
|
|
17
|
+
<dependencies>
|
|
18
|
+
<group targetFramework="net10.0">
|
|
19
|
+
<dependency id="FSharp.Core" version="10.0.102" exclude="Build,Analyzers" />
|
|
20
|
+
<dependency id="Fable.Core" version="4.5.0" exclude="Build,Analyzers" />
|
|
21
|
+
</group>
|
|
22
|
+
</dependencies>
|
|
23
|
+
</metadata>
|
|
24
|
+
<files>
|
|
25
|
+
<file src="/home/runner/work/Bridge/Bridge/src/Bridge/bin/Release/net10.0/Fossa.Bridge.pdb" target="lib/net10.0/Fossa.Bridge.pdb" />
|
|
26
|
+
<file src="/home/runner/work/Bridge/Bridge/src/Bridge/bin/Release/net10.0/Fossa.Bridge.dll" target="lib/net10.0/Fossa.Bridge.dll" />
|
|
27
|
+
<file src="/home/runner/work/Bridge/Bridge/src/Bridge/bin/Release/net10.0/Fossa.Bridge.xml" target="lib/net10.0/Fossa.Bridge.xml" />
|
|
28
|
+
<file src="/home/runner/work/Bridge/Bridge/Images/Icon.png" target="/Icon.png" />
|
|
29
|
+
<file src="/home/runner/work/Bridge/Bridge/README.md" target="/README.md" />
|
|
30
|
+
</files>
|
|
31
|
+
</package>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
namespace Microsoft.BuildSettings
|
|
2
|
-
[<System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=
|
|
2
|
+
[<System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName=".NET 10.0")>]
|
|
3
3
|
do ()
|
|
@@ -7,12 +7,14 @@ open System
|
|
|
7
7
|
open System.Reflection
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
[<assembly: System.Reflection.AssemblyCompanyAttribute("TIKSN")>]
|
|
10
|
+
[<assembly: System.Reflection.AssemblyCompanyAttribute("Tigran TIKSN Torosyan")>]
|
|
11
11
|
[<assembly: System.Reflection.AssemblyConfigurationAttribute("Release")>]
|
|
12
|
+
[<assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Tigran TIKSN Torosyan. All rights Reserved")>]
|
|
12
13
|
[<assembly: System.Reflection.AssemblyDescriptionAttribute("Shared Domain Models and DTOs for Fossa UI and API")>]
|
|
13
|
-
[<assembly: System.Reflection.AssemblyFileVersionAttribute("
|
|
14
|
-
[<assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.
|
|
14
|
+
[<assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")>]
|
|
15
|
+
[<assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f8d2aad7021767ebdc735084278edb900b6a8d7d")>]
|
|
15
16
|
[<assembly: System.Reflection.AssemblyProductAttribute("Fossa.Bridge")>]
|
|
16
17
|
[<assembly: System.Reflection.AssemblyTitleAttribute("Fossa.Bridge")>]
|
|
17
|
-
[<assembly: System.Reflection.AssemblyVersionAttribute("
|
|
18
|
+
[<assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")>]
|
|
19
|
+
[<assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/fossa-app/Bridge.git")>]
|
|
18
20
|
do()
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/home/runner/work/Bridge/Bridge/src/Bridge/bin/Release/net10.0/Fossa.Bridge.deps.json
|
|
2
|
+
/home/runner/work/Bridge/Bridge/src/Bridge/bin/Release/net10.0/Fossa.Bridge.dll
|
|
3
|
+
/home/runner/work/Bridge/Bridge/src/Bridge/bin/Release/net10.0/Fossa.Bridge.pdb
|
|
4
|
+
/home/runner/work/Bridge/Bridge/src/Bridge/bin/Release/net10.0/Fossa.Bridge.xml
|
|
5
|
+
/home/runner/work/Bridge/Bridge/src/Bridge/obj/Release/net10.0/Bridge.fsproj.AssemblyReference.cache
|
|
6
|
+
/home/runner/work/Bridge/Bridge/src/Bridge/obj/Release/net10.0/Bridge.AssemblyInfoInputs.cache
|
|
7
|
+
/home/runner/work/Bridge/Bridge/src/Bridge/obj/Release/net10.0/Bridge.AssemblyInfo.fs
|
|
8
|
+
/home/runner/work/Bridge/Bridge/src/Bridge/obj/Release/net10.0/Bridge.fsproj.CoreCompileInputs.cache
|
|
9
|
+
/home/runner/work/Bridge/Bridge/src/Bridge/obj/Release/net10.0/Bridge.sourcelink.json
|
|
10
|
+
/home/runner/work/Bridge/Bridge/src/Bridge/obj/Release/net10.0/Fossa.Bridge.dll
|
|
11
|
+
/home/runner/work/Bridge/Bridge/src/Bridge/obj/Release/net10.0/refint/Fossa.Bridge.dll
|
|
12
|
+
/home/runner/work/Bridge/Bridge/src/Bridge/obj/Release/net10.0/Fossa.Bridge.xml
|
|
13
|
+
/home/runner/work/Bridge/Bridge/src/Bridge/obj/Release/net10.0/Fossa.Bridge.pdb
|
|
14
|
+
/home/runner/work/Bridge/Bridge/src/Bridge/obj/Release/net10.0/ref/Fossa.Bridge.dll
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"documents":{"/home/runner/work/Bridge/Bridge/*":"https://raw.githubusercontent.com/fossa-app/Bridge/f8d2aad7021767ebdc735084278edb900b6a8d7d/*"}}
|