starlight-fsharp-oracle 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 (89) hide show
  1. package/Directory.Build.props +25 -0
  2. package/Directory.Packages.props +18 -0
  3. package/README.md +80 -0
  4. package/dist/Extensions/StringBuilder.js +28 -0
  5. package/dist/Extensions/TextNode.js +115 -0
  6. package/dist/FSharp.Oracle.Schema/Schema.js +674 -0
  7. package/dist/Generate.js +254 -0
  8. package/dist/Helpers.js +69 -0
  9. package/dist/Plugin.js +139 -0
  10. package/dist/Render/Documentation.js +87 -0
  11. package/dist/Render/Entries.js +148 -0
  12. package/dist/Render/Pages.js +292 -0
  13. package/dist/Render/Primitives.js +114 -0
  14. package/dist/Render/Types.js +30 -0
  15. package/dist/Render.js +12 -0
  16. package/dist/Themes.js +78 -0
  17. package/oracle-bin/FSharp.Compiler.Service.dll +0 -0
  18. package/oracle-bin/FSharp.Core.dll +0 -0
  19. package/oracle-bin/FSharp.DependencyManager.Nuget.dll +0 -0
  20. package/oracle-bin/FSharp.Oracle.Schema.dll +0 -0
  21. package/oracle-bin/FSharp.Oracle.Schema.pdb +0 -0
  22. package/oracle-bin/FSharp.Oracle.Schema.xml +219 -0
  23. package/oracle-bin/Fable.Core.dll +0 -0
  24. package/oracle-bin/Oracle +0 -0
  25. package/oracle-bin/Oracle.deps.json +280 -0
  26. package/oracle-bin/Oracle.dll +0 -0
  27. package/oracle-bin/Oracle.pdb +0 -0
  28. package/oracle-bin/Oracle.runtimeconfig.json +13 -0
  29. package/oracle-bin/Oracle.xml +111 -0
  30. package/oracle-bin/Thoth.Json.Core.Auto.dll +0 -0
  31. package/oracle-bin/Thoth.Json.Core.dll +0 -0
  32. package/oracle-bin/Thoth.Json.System.Text.Json.dll +0 -0
  33. package/oracle-bin/cs/FSharp.Compiler.Service.resources.dll +0 -0
  34. package/oracle-bin/cs/FSharp.Core.resources.dll +0 -0
  35. package/oracle-bin/cs/FSharp.DependencyManager.Nuget.resources.dll +0 -0
  36. package/oracle-bin/de/FSharp.Compiler.Service.resources.dll +0 -0
  37. package/oracle-bin/de/FSharp.Core.resources.dll +0 -0
  38. package/oracle-bin/de/FSharp.DependencyManager.Nuget.resources.dll +0 -0
  39. package/oracle-bin/es/FSharp.Compiler.Service.resources.dll +0 -0
  40. package/oracle-bin/es/FSharp.Core.resources.dll +0 -0
  41. package/oracle-bin/es/FSharp.DependencyManager.Nuget.resources.dll +0 -0
  42. package/oracle-bin/fr/FSharp.Compiler.Service.resources.dll +0 -0
  43. package/oracle-bin/fr/FSharp.Core.resources.dll +0 -0
  44. package/oracle-bin/fr/FSharp.DependencyManager.Nuget.resources.dll +0 -0
  45. package/oracle-bin/it/FSharp.Compiler.Service.resources.dll +0 -0
  46. package/oracle-bin/it/FSharp.Core.resources.dll +0 -0
  47. package/oracle-bin/it/FSharp.DependencyManager.Nuget.resources.dll +0 -0
  48. package/oracle-bin/ja/FSharp.Compiler.Service.resources.dll +0 -0
  49. package/oracle-bin/ja/FSharp.Core.resources.dll +0 -0
  50. package/oracle-bin/ja/FSharp.DependencyManager.Nuget.resources.dll +0 -0
  51. package/oracle-bin/ko/FSharp.Compiler.Service.resources.dll +0 -0
  52. package/oracle-bin/ko/FSharp.Core.resources.dll +0 -0
  53. package/oracle-bin/ko/FSharp.DependencyManager.Nuget.resources.dll +0 -0
  54. package/oracle-bin/pl/FSharp.Compiler.Service.resources.dll +0 -0
  55. package/oracle-bin/pl/FSharp.Core.resources.dll +0 -0
  56. package/oracle-bin/pl/FSharp.DependencyManager.Nuget.resources.dll +0 -0
  57. package/oracle-bin/pt-BR/FSharp.Compiler.Service.resources.dll +0 -0
  58. package/oracle-bin/pt-BR/FSharp.Core.resources.dll +0 -0
  59. package/oracle-bin/pt-BR/FSharp.DependencyManager.Nuget.resources.dll +0 -0
  60. package/oracle-bin/ru/FSharp.Compiler.Service.resources.dll +0 -0
  61. package/oracle-bin/ru/FSharp.Core.resources.dll +0 -0
  62. package/oracle-bin/ru/FSharp.DependencyManager.Nuget.resources.dll +0 -0
  63. package/oracle-bin/tr/FSharp.Compiler.Service.resources.dll +0 -0
  64. package/oracle-bin/tr/FSharp.Core.resources.dll +0 -0
  65. package/oracle-bin/tr/FSharp.DependencyManager.Nuget.resources.dll +0 -0
  66. package/oracle-bin/zh-Hans/FSharp.Compiler.Service.resources.dll +0 -0
  67. package/oracle-bin/zh-Hans/FSharp.Core.resources.dll +0 -0
  68. package/oracle-bin/zh-Hans/FSharp.DependencyManager.Nuget.resources.dll +0 -0
  69. package/oracle-bin/zh-Hant/FSharp.Compiler.Service.resources.dll +0 -0
  70. package/oracle-bin/zh-Hant/FSharp.Core.resources.dll +0 -0
  71. package/oracle-bin/zh-Hant/FSharp.DependencyManager.Nuget.resources.dll +0 -0
  72. package/package.json +38 -0
  73. package/packages/FSharp.Oracle/Extractor/Assembly.fs +160 -0
  74. package/packages/FSharp.Oracle/Extractor/EntityExtractor.fs +608 -0
  75. package/packages/FSharp.Oracle/Extractor/Helpers.fs +150 -0
  76. package/packages/FSharp.Oracle/Extractor/MemberExtractor.fs +172 -0
  77. package/packages/FSharp.Oracle/Extractor/ModuleExtractor.fs +45 -0
  78. package/packages/FSharp.Oracle/Extractor/ParameterExtractor.fs +47 -0
  79. package/packages/FSharp.Oracle/Extractor/SignatureRendering.fs +464 -0
  80. package/packages/FSharp.Oracle/Extractor/ValueExtractor.fs +171 -0
  81. package/packages/FSharp.Oracle/FSharp.Oracle.fsproj +36 -0
  82. package/packages/FSharp.Oracle/Program.fs +66 -0
  83. package/packages/FSharp.Oracle/XmlDoc.fs +463 -0
  84. package/packages/FSharp.Oracle.Schema/FSharp.Oracle.Schema.fsproj +16 -0
  85. package/packages/FSharp.Oracle.Schema/Schema.fs +454 -0
  86. package/packages/Starlight.FSharp.Oracle/components/DocEntry.astro +256 -0
  87. package/packages/Starlight.FSharp.Oracle/components/FSharpDocPage.astro +121 -0
  88. package/packages/Starlight.FSharp.Oracle/components/fsharp-doc.css +58 -0
  89. package/packages/Starlight.FSharp.Oracle/layouts/FSharpDocLayout.astro +27 -0
package/dist/Themes.js ADDED
@@ -0,0 +1,78 @@
1
+
2
+ import { Operators_IsNull } from "./fable_modules/fable-library-js.5.0.0-rc.7/FSharp.Core.js";
3
+ import { defaultArg } from "./fable_modules/fable-library-js.5.0.0-rc.7/Option.js";
4
+ import { item, tryPick } from "./fable_modules/fable-library-js.5.0.0-rc.7/Array.js";
5
+ import { ofArray, exists } from "./fable_modules/fable-library-js.5.0.0-rc.7/List.js";
6
+ import { StringBuilder_$ctor } from "./fable_modules/fable-library-js.5.0.0-rc.7/System.Text.js";
7
+ import { System_Text_StringBuilder__StringBuilder_WriteLine_Z721C83C5 } from "./Extensions/StringBuilder.js";
8
+ import { concat } from "./fable_modules/fable-library-js.5.0.0-rc.7/String.js";
9
+ import { toString } from "./fable_modules/fable-library-js.5.0.0-rc.7/Types.js";
10
+
11
+ function scopesOf(rule) {
12
+ const scope = rule.scope;
13
+ if (Operators_IsNull(scope)) {
14
+ return [];
15
+ }
16
+ else if (Array.isArray(scope)) {
17
+ return scope;
18
+ }
19
+ else {
20
+ return [scope];
21
+ }
22
+ }
23
+
24
+ function colorFor(theme, targetScopes) {
25
+ const settings = theme.settings;
26
+ const fg = theme.fg;
27
+ return defaultArg(tryPick((rule) => {
28
+ const ruleScopes = scopesOf(rule);
29
+ const matches = exists((target) => ruleScopes.some((rs) => {
30
+ if (target === rs) {
31
+ return true;
32
+ }
33
+ else {
34
+ return target.startsWith(rs + ".");
35
+ }
36
+ }), targetScopes);
37
+ if (!matches) {
38
+ return undefined;
39
+ }
40
+ else {
41
+ const color = rule.settings.foreground;
42
+ if (Operators_IsNull(color)) {
43
+ return undefined;
44
+ }
45
+ else {
46
+ return color;
47
+ }
48
+ }
49
+ }, settings), fg);
50
+ }
51
+
52
+ /**
53
+ * Generates CSS custom-property declarations for each syntax-highlighting
54
+ * theme extracted from the Expressive Code renderer. The static class rules
55
+ * (colour assignments, layout, sidebar badges, etc.) now live in
56
+ * components/fsharp-doc.css and are imported by FSharpDocPage.astro.
57
+ */
58
+ export function generateCss(ecRenderer) {
59
+ const themes = ecRenderer.ec.themes;
60
+ const sb = StringBuilder_$ctor();
61
+ for (let idx = 0; idx <= (themes.length - 1); idx++) {
62
+ const theme = item(idx, themes);
63
+ const themeType = theme.type;
64
+ const selector = (themeType === "dark") ? ":root[data-theme=\'dark\']" : ":root";
65
+ const kw = colorFor(theme, ofArray(["keyword", "storage.type", "keyword.operator"]));
66
+ const fn_ = colorFor(theme, ofArray(["variable", "entity.name.function"]));
67
+ const type_ = colorFor(theme, ofArray(["entity", "entity.name"]));
68
+ const tvar = colorFor(theme, ofArray(["entity", "entity.name"]));
69
+ System_Text_StringBuilder__StringBuilder_WriteLine_Z721C83C5(sb, concat(selector, ..." {"));
70
+ System_Text_StringBuilder__StringBuilder_WriteLine_Z721C83C5(sb, concat(" --fsharp-doc-kw: ", kw, ...";"));
71
+ System_Text_StringBuilder__StringBuilder_WriteLine_Z721C83C5(sb, concat(" --fsharp-doc-fn: ", fn_, ...";"));
72
+ System_Text_StringBuilder__StringBuilder_WriteLine_Z721C83C5(sb, concat(" --fsharp-doc-type: ", type_, ...";"));
73
+ System_Text_StringBuilder__StringBuilder_WriteLine_Z721C83C5(sb, concat(" --fsharp-doc-typevar: ", tvar, ...";"));
74
+ System_Text_StringBuilder__StringBuilder_WriteLine_Z721C83C5(sb, "}");
75
+ }
76
+ return toString(sb);
77
+ }
78
+
Binary file
@@ -0,0 +1,219 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <doc>
3
+ <assembly><name>FSharp.Oracle.Schema</name></assembly>
4
+ <members>
5
+ <member name="P:FSharp.Oracle.Schema.Namespace.FullName">
6
+ <summary>
7
+ Fully-qualified name, e.g. &quot;&quot;, &quot;Reference&quot;, &quot;Reference.Geometry&quot;.
8
+ </summary>
9
+ </member>
10
+ <member name="P:FSharp.Oracle.Schema.Namespace.Name">
11
+ <summary>
12
+ Short display name, e.g. &quot;global&quot;, &quot;Reference&quot;, &quot;Geometry&quot;.
13
+ </summary>
14
+ </member>
15
+ <member name="P:FSharp.Oracle.Schema.Module.IsSynthetic">
16
+ <summary>
17
+ True for synthetic modules that carry bare namespace-level types.
18
+ The plugin generates individual entity pages from these rather than a module Encode.
19
+ </summary>
20
+ </member>
21
+ <member name="P:FSharp.Oracle.Schema.Module.Namespace">
22
+ <summary>
23
+ The parent namespace, Encode.g. &quot;Encode.Geometry&quot; for &quot;Encode.Geometry.Points&quot;.
24
+ Empty string for root-level modules with no Encode.
25
+ </summary>
26
+ </member>
27
+ <member name="P:FSharp.Oracle.Schema.DelegateEntity.Declaration">
28
+ <summary>
29
+ Pre-formatted declaration: `type Name = delegate of ... -&gt; ...`
30
+ </summary>
31
+ </member>
32
+ <member name="P:FSharp.Oracle.Schema.DelegateEntity.Signature">
33
+ <summary>
34
+ Pre-formatted signature of the Invoke method.
35
+ </summary>
36
+ </member>
37
+ <member name="P:FSharp.Oracle.Schema.ExceptionEntity.Declaration">
38
+ <summary>
39
+ Pre-formatted declaration: `exception Name of field1: type1 * field2: type2`
40
+ </summary>
41
+ </member>
42
+ <member name="P:FSharp.Oracle.Schema.MeasureEntity.Declaration">
43
+ <summary>
44
+ Pre-formatted declaration: `[&lt;Measure&gt;] type Name`
45
+ </summary>
46
+ </member>
47
+ <member name="P:FSharp.Oracle.Schema.EnumEntity.Declaration">
48
+ <summary>
49
+ Pre-formatted full type declaration: `type Name =\n | Case1\n | ...`
50
+ </summary>
51
+ </member>
52
+ <member name="P:FSharp.Oracle.Schema.InterfaceEntity.Declaration">
53
+ <summary>
54
+ Pre-formatted full type declaration with member signatures.
55
+ </summary>
56
+ </member>
57
+ <member name="P:FSharp.Oracle.Schema.ClassEntity.Declaration">
58
+ <summary>
59
+ Pre-formatted full type declaration with member signatures.
60
+ </summary>
61
+ </member>
62
+ <member name="P:FSharp.Oracle.Schema.AbbrevEntity.Declaration">
63
+ <summary>
64
+ Pre-formatted full declaration: `type Name = abbreviatedType`
65
+ </summary>
66
+ </member>
67
+ <member name="P:FSharp.Oracle.Schema.AbbrevEntity.Signature">
68
+ <summary>
69
+ The abbreviated type (right-hand side only).
70
+ </summary>
71
+ </member>
72
+ <member name="P:FSharp.Oracle.Schema.UnionEntity.Declaration">
73
+ <summary>
74
+ Pre-formatted full type declaration with anchor links on case names.
75
+ </summary>
76
+ </member>
77
+ <member name="P:FSharp.Oracle.Schema.RecordEntity.Declaration">
78
+ <summary>
79
+ Pre-formatted full type declaration: `type Name =\n { field1 : t1\n ... }`
80
+ </summary>
81
+ </member>
82
+ <member name="P:FSharp.Oracle.Schema.UnionCase.Declaration">
83
+ <summary>
84
+ Pre-formatted signature: `| Name of field1: type1 * field2: type2`
85
+ </summary>
86
+ </member>
87
+ <member name="P:FSharp.Oracle.Schema.Field.Declaration">
88
+ <summary>
89
+ Pre-formatted signature: `field1 : type`
90
+ </summary>
91
+ </member>
92
+ <member name="P:FSharp.Oracle.Schema.Field.Signature">
93
+ <summary>
94
+ Pre-formatted signature: `val field1 : type`
95
+ </summary>
96
+ </member>
97
+ <member name="P:FSharp.Oracle.Schema.Member.IsAbstract">
98
+ <summary>
99
+ True for `abstract member` declarations (interface members and abstract class members).
100
+ </summary>
101
+ </member>
102
+ <member name="P:FSharp.Oracle.Schema.Member.GenericParameters">
103
+ <summary>
104
+ Generic parameters with constraints, e.g. `&lt;\&apos;T when \&apos;T : comparison&gt;`.
105
+ </summary>
106
+ </member>
107
+ <member name="P:FSharp.Oracle.Schema.Member.Declaration">
108
+ <summary>
109
+ Pre-formatted signature line for the DocEntry slot,
110
+ e.g. `member Add : other : Vector -&gt; Vector` or `property Length : float with get`.
111
+ </summary>
112
+ </member>
113
+ <member name="P:FSharp.Oracle.Schema.Member.ReturnType">
114
+ <summary>
115
+ The return type of the member (property type, method return type, or constructed type for constructors).
116
+ </summary>
117
+ </member>
118
+ <member name="P:FSharp.Oracle.Schema.Member.Parameters">
119
+ <summary>
120
+ Curried parameter groups. Each outer list is a curried group;
121
+ each inner list holds the parameters within that group (tupled parameters).
122
+ </summary>
123
+ </member>
124
+ <member name="P:FSharp.Oracle.Schema.Value.GenericParameters">
125
+ <summary>
126
+ Generic parameters with constraints, e.g. `&lt;\&apos;T when \&apos;T : comparison&gt;`.
127
+ </summary>
128
+ </member>
129
+ <member name="P:FSharp.Oracle.Schema.Value.Declaration">
130
+ <summary>
131
+ Pre-formatted signature line: `val name : type`
132
+ </summary>
133
+ </member>
134
+ <member name="P:FSharp.Oracle.Schema.Function.ReturnType">
135
+ <summary>
136
+ Pre-formatted return type with contextual prefix.
137
+ With parameters: `\n -&gt; returnType`
138
+ Without parameters: ` returnType`
139
+ </summary>
140
+ </member>
141
+ <member name="P:FSharp.Oracle.Schema.Function.GenericParameters">
142
+ <summary>
143
+ Generic parameters with constraints, e.g. `&lt;\&apos;T when \&apos;T : comparison&gt;`.
144
+ </summary>
145
+ </member>
146
+ <member name="P:FSharp.Oracle.Schema.Function.AlignedDeclaration">
147
+ <summary>
148
+ First line with colon aligned to the common column: `val name :`
149
+ </summary>
150
+ </member>
151
+ <member name="P:FSharp.Oracle.Schema.Function.Declaration">
152
+ <summary>
153
+ First line without column alignment: `val name :`
154
+ </summary>
155
+ </member>
156
+ <member name="P:FSharp.Oracle.Schema.Function.Parameters">
157
+ <summary>
158
+ Curried parameter groups. Each outer list is a curried group;
159
+ each inner list holds the parameters within that group (tupled parameters).
160
+ </summary>
161
+ </member>
162
+ <member name="P:FSharp.Oracle.Schema.Parameter.AlignedDeclaration">
163
+ <summary>
164
+ Signature line with colon aligned to the common column: `\n name : type`
165
+ </summary>
166
+ </member>
167
+ <member name="P:FSharp.Oracle.Schema.Parameter.Declaration">
168
+ <summary>
169
+ Signature line without column alignment: `\n name : type`
170
+ </summary>
171
+ </member>
172
+ <member name="T:FSharp.Oracle.Schema.TextNode.AnchoredKeyword">
173
+ <summary>
174
+ An inline hyperlink styled as a keyword (e.g. `new` in a constructor declaration).
175
+ </summary>
176
+ </member>
177
+ <member name="T:FSharp.Oracle.Schema.TextNode.Anchor">
178
+ <summary>
179
+ An inline hyperlink; href is used as-is (supports page-local `#anchor` refs).
180
+ </summary>
181
+ </member>
182
+ <member name="T:FSharp.Oracle.Schema.TextNode.Node">
183
+ <summary>
184
+ Grouping node — a flat list of child nodes.
185
+ </summary>
186
+ </member>
187
+ <member name="T:FSharp.Oracle.Schema.TextNode.Star">
188
+ <summary>
189
+ Tuple separator (*).
190
+ </summary>
191
+ </member>
192
+ <member name="T:FSharp.Oracle.Schema.TextNode.Keyword">
193
+ <summary>
194
+ F# keyword, e.g. &quot;val&quot;, &quot;type&quot;.
195
+ </summary>
196
+ </member>
197
+ <member name="T:FSharp.Oracle.Schema.TextNode.TypeVar">
198
+ <summary>
199
+ Generic type variable, e.g. &quot;T&quot; (the tick is implied — rendered as &apos;T).
200
+ </summary>
201
+ </member>
202
+ <member name="T:FSharp.Oracle.Schema.TextNode.TypeRef">
203
+ <summary>
204
+ Named type with its full name for link generation, e.g. (&quot;Option&quot;, &quot;Microsoft.FSharp.Core.FSharpOption`1&quot;).
205
+ The url field is the pre-computed page URL (slugified, with output base prefix).
206
+ </summary>
207
+ </member>
208
+ <member name="T:FSharp.Oracle.Schema.TextNode.Text">
209
+ <summary>
210
+ Plain identifier, e.g. &quot;string&quot;, &quot;int&quot;, &quot;unit&quot;.
211
+ </summary>
212
+ </member>
213
+ <member name="T:FSharp.Oracle.Schema.ObsoleteInfo">
214
+ <summary>
215
+ Whether an API is obsolete and, if so, whether a custom message was supplied.
216
+ </summary>
217
+ </member>
218
+ </members>
219
+ </doc>
Binary file
Binary file
@@ -0,0 +1,280 @@
1
+ {
2
+ "runtimeTarget": {
3
+ "name": ".NETCoreApp,Version=v10.0",
4
+ "signature": ""
5
+ },
6
+ "compilationOptions": {},
7
+ "targets": {
8
+ ".NETCoreApp,Version=v10.0": {
9
+ "Oracle/1.0.0": {
10
+ "dependencies": {
11
+ "FSharp.Compiler.Service": "43.12.203",
12
+ "FSharp.Core": "10.1.203",
13
+ "FSharp.Oracle.Schema": "1.0.0",
14
+ "Thoth.Json.Core.Auto": "0.1.0",
15
+ "Thoth.Json.System.Text.Json": "0.3.0"
16
+ },
17
+ "runtime": {
18
+ "Oracle.dll": {}
19
+ }
20
+ },
21
+ "Fable.Core/5.0.0": {
22
+ "dependencies": {
23
+ "FSharp.Core": "10.1.203"
24
+ },
25
+ "runtime": {
26
+ "lib/netstandard2.0/Fable.Core.dll": {
27
+ "assemblyVersion": "5.0.0.0",
28
+ "fileVersion": "5.0.0.0"
29
+ }
30
+ }
31
+ },
32
+ "FSharp.Compiler.Service/43.12.203": {
33
+ "dependencies": {
34
+ "FSharp.Core": "10.1.203"
35
+ },
36
+ "runtime": {
37
+ "lib/netstandard2.0/FSharp.Compiler.Service.dll": {
38
+ "assemblyVersion": "43.12.203.0",
39
+ "fileVersion": "43.1202.326.22005"
40
+ },
41
+ "lib/netstandard2.0/FSharp.DependencyManager.Nuget.dll": {
42
+ "assemblyVersion": "10.1.203.0",
43
+ "fileVersion": "10.102.326.22005"
44
+ }
45
+ },
46
+ "resources": {
47
+ "lib/netstandard2.0/cs/FSharp.Compiler.Service.resources.dll": {
48
+ "locale": "cs"
49
+ },
50
+ "lib/netstandard2.0/cs/FSharp.DependencyManager.Nuget.resources.dll": {
51
+ "locale": "cs"
52
+ },
53
+ "lib/netstandard2.0/de/FSharp.Compiler.Service.resources.dll": {
54
+ "locale": "de"
55
+ },
56
+ "lib/netstandard2.0/de/FSharp.DependencyManager.Nuget.resources.dll": {
57
+ "locale": "de"
58
+ },
59
+ "lib/netstandard2.0/es/FSharp.Compiler.Service.resources.dll": {
60
+ "locale": "es"
61
+ },
62
+ "lib/netstandard2.0/es/FSharp.DependencyManager.Nuget.resources.dll": {
63
+ "locale": "es"
64
+ },
65
+ "lib/netstandard2.0/fr/FSharp.Compiler.Service.resources.dll": {
66
+ "locale": "fr"
67
+ },
68
+ "lib/netstandard2.0/fr/FSharp.DependencyManager.Nuget.resources.dll": {
69
+ "locale": "fr"
70
+ },
71
+ "lib/netstandard2.0/it/FSharp.Compiler.Service.resources.dll": {
72
+ "locale": "it"
73
+ },
74
+ "lib/netstandard2.0/it/FSharp.DependencyManager.Nuget.resources.dll": {
75
+ "locale": "it"
76
+ },
77
+ "lib/netstandard2.0/ja/FSharp.Compiler.Service.resources.dll": {
78
+ "locale": "ja"
79
+ },
80
+ "lib/netstandard2.0/ja/FSharp.DependencyManager.Nuget.resources.dll": {
81
+ "locale": "ja"
82
+ },
83
+ "lib/netstandard2.0/ko/FSharp.Compiler.Service.resources.dll": {
84
+ "locale": "ko"
85
+ },
86
+ "lib/netstandard2.0/ko/FSharp.DependencyManager.Nuget.resources.dll": {
87
+ "locale": "ko"
88
+ },
89
+ "lib/netstandard2.0/pl/FSharp.Compiler.Service.resources.dll": {
90
+ "locale": "pl"
91
+ },
92
+ "lib/netstandard2.0/pl/FSharp.DependencyManager.Nuget.resources.dll": {
93
+ "locale": "pl"
94
+ },
95
+ "lib/netstandard2.0/pt-BR/FSharp.Compiler.Service.resources.dll": {
96
+ "locale": "pt-BR"
97
+ },
98
+ "lib/netstandard2.0/pt-BR/FSharp.DependencyManager.Nuget.resources.dll": {
99
+ "locale": "pt-BR"
100
+ },
101
+ "lib/netstandard2.0/ru/FSharp.Compiler.Service.resources.dll": {
102
+ "locale": "ru"
103
+ },
104
+ "lib/netstandard2.0/ru/FSharp.DependencyManager.Nuget.resources.dll": {
105
+ "locale": "ru"
106
+ },
107
+ "lib/netstandard2.0/tr/FSharp.Compiler.Service.resources.dll": {
108
+ "locale": "tr"
109
+ },
110
+ "lib/netstandard2.0/tr/FSharp.DependencyManager.Nuget.resources.dll": {
111
+ "locale": "tr"
112
+ },
113
+ "lib/netstandard2.0/zh-Hans/FSharp.Compiler.Service.resources.dll": {
114
+ "locale": "zh-Hans"
115
+ },
116
+ "lib/netstandard2.0/zh-Hans/FSharp.DependencyManager.Nuget.resources.dll": {
117
+ "locale": "zh-Hans"
118
+ },
119
+ "lib/netstandard2.0/zh-Hant/FSharp.Compiler.Service.resources.dll": {
120
+ "locale": "zh-Hant"
121
+ },
122
+ "lib/netstandard2.0/zh-Hant/FSharp.DependencyManager.Nuget.resources.dll": {
123
+ "locale": "zh-Hant"
124
+ }
125
+ }
126
+ },
127
+ "FSharp.Core/10.1.203": {
128
+ "runtime": {
129
+ "lib/netstandard2.1/FSharp.Core.dll": {
130
+ "assemblyVersion": "10.1.0.0",
131
+ "fileVersion": "10.102.326.22005"
132
+ }
133
+ },
134
+ "resources": {
135
+ "lib/netstandard2.1/cs/FSharp.Core.resources.dll": {
136
+ "locale": "cs"
137
+ },
138
+ "lib/netstandard2.1/de/FSharp.Core.resources.dll": {
139
+ "locale": "de"
140
+ },
141
+ "lib/netstandard2.1/es/FSharp.Core.resources.dll": {
142
+ "locale": "es"
143
+ },
144
+ "lib/netstandard2.1/fr/FSharp.Core.resources.dll": {
145
+ "locale": "fr"
146
+ },
147
+ "lib/netstandard2.1/it/FSharp.Core.resources.dll": {
148
+ "locale": "it"
149
+ },
150
+ "lib/netstandard2.1/ja/FSharp.Core.resources.dll": {
151
+ "locale": "ja"
152
+ },
153
+ "lib/netstandard2.1/ko/FSharp.Core.resources.dll": {
154
+ "locale": "ko"
155
+ },
156
+ "lib/netstandard2.1/pl/FSharp.Core.resources.dll": {
157
+ "locale": "pl"
158
+ },
159
+ "lib/netstandard2.1/pt-BR/FSharp.Core.resources.dll": {
160
+ "locale": "pt-BR"
161
+ },
162
+ "lib/netstandard2.1/ru/FSharp.Core.resources.dll": {
163
+ "locale": "ru"
164
+ },
165
+ "lib/netstandard2.1/tr/FSharp.Core.resources.dll": {
166
+ "locale": "tr"
167
+ },
168
+ "lib/netstandard2.1/zh-Hans/FSharp.Core.resources.dll": {
169
+ "locale": "zh-Hans"
170
+ },
171
+ "lib/netstandard2.1/zh-Hant/FSharp.Core.resources.dll": {
172
+ "locale": "zh-Hant"
173
+ }
174
+ }
175
+ },
176
+ "Thoth.Json.Core/0.9.0": {
177
+ "dependencies": {
178
+ "FSharp.Core": "10.1.203"
179
+ },
180
+ "runtime": {
181
+ "lib/netstandard2.0/Thoth.Json.Core.dll": {
182
+ "assemblyVersion": "0.9.0.0",
183
+ "fileVersion": "0.9.0.0"
184
+ }
185
+ }
186
+ },
187
+ "Thoth.Json.Core.Auto/0.1.0": {
188
+ "dependencies": {
189
+ "FSharp.Core": "10.1.203",
190
+ "Fable.Core": "5.0.0",
191
+ "Thoth.Json.Core": "0.9.0"
192
+ },
193
+ "runtime": {
194
+ "lib/netstandard2.0/Thoth.Json.Core.Auto.dll": {
195
+ "assemblyVersion": "0.1.0.0",
196
+ "fileVersion": "0.1.0.0"
197
+ }
198
+ }
199
+ },
200
+ "Thoth.Json.System.Text.Json/0.3.0": {
201
+ "dependencies": {
202
+ "FSharp.Core": "10.1.203",
203
+ "Thoth.Json.Core": "0.9.0"
204
+ },
205
+ "runtime": {
206
+ "lib/netstandard2.0/Thoth.Json.System.Text.Json.dll": {
207
+ "assemblyVersion": "0.3.0.0",
208
+ "fileVersion": "0.3.0.0"
209
+ }
210
+ }
211
+ },
212
+ "FSharp.Oracle.Schema/1.0.0": {
213
+ "dependencies": {
214
+ "FSharp.Core": "10.1.203",
215
+ "Thoth.Json.Core": "0.9.0"
216
+ },
217
+ "runtime": {
218
+ "FSharp.Oracle.Schema.dll": {
219
+ "assemblyVersion": "1.0.0.0",
220
+ "fileVersion": "1.0.0.0"
221
+ }
222
+ }
223
+ }
224
+ }
225
+ },
226
+ "libraries": {
227
+ "Oracle/1.0.0": {
228
+ "type": "project",
229
+ "serviceable": false,
230
+ "sha512": ""
231
+ },
232
+ "Fable.Core/5.0.0": {
233
+ "type": "package",
234
+ "serviceable": true,
235
+ "sha512": "sha512-pJOXJjfhjvNa1cgtF+klgR3DxQI7x9D/fFzZbjUBZLBJyYIioPsTFsKUnIOqNdCq1Oby9lINUSwnL4TqspMQOA==",
236
+ "path": "fable.core/5.0.0",
237
+ "hashPath": "fable.core.5.0.0.nupkg.sha512"
238
+ },
239
+ "FSharp.Compiler.Service/43.12.203": {
240
+ "type": "package",
241
+ "serviceable": true,
242
+ "sha512": "sha512-ZrK+g3JdnkCSSkYFXFcsh5i6hdepyG95wkbZqmjFRC77Byhj2fRYGNcBA8PKpiS3fSRB9g/ISZC2uezl3BOuDQ==",
243
+ "path": "fsharp.compiler.service/43.12.203",
244
+ "hashPath": "fsharp.compiler.service.43.12.203.nupkg.sha512"
245
+ },
246
+ "FSharp.Core/10.1.203": {
247
+ "type": "package",
248
+ "serviceable": true,
249
+ "sha512": "sha512-I2MFk72yHqfgI594gKFigq8PVIso0Mh1ZUgG9R4n8gyYQ4IwpBxmvecfjnKA7iMLdVHYULB70PsLwYW/K76gew==",
250
+ "path": "fsharp.core/10.1.203",
251
+ "hashPath": "fsharp.core.10.1.203.nupkg.sha512"
252
+ },
253
+ "Thoth.Json.Core/0.9.0": {
254
+ "type": "package",
255
+ "serviceable": true,
256
+ "sha512": "sha512-Z5YCva8cyeOVYvzUBFIqU/VQ76Comqpqx7eCaUj8srHUw9gwrBcypMk0z/JIVtGhCdzY0ij4IqvZP1RFq+dhUA==",
257
+ "path": "thoth.json.core/0.9.0",
258
+ "hashPath": "thoth.json.core.0.9.0.nupkg.sha512"
259
+ },
260
+ "Thoth.Json.Core.Auto/0.1.0": {
261
+ "type": "package",
262
+ "serviceable": true,
263
+ "sha512": "sha512-2UFVPf1GCufpnzV6cJdIfArMyQYKC9HkbqcMB6e9bCW2ZyT6U/s2xr+svJ+0TS/rfkq26K2rPw5IiHbsGKyJ1A==",
264
+ "path": "thoth.json.core.auto/0.1.0",
265
+ "hashPath": "thoth.json.core.auto.0.1.0.nupkg.sha512"
266
+ },
267
+ "Thoth.Json.System.Text.Json/0.3.0": {
268
+ "type": "package",
269
+ "serviceable": true,
270
+ "sha512": "sha512-PVC+zkMurJRuJVuwPZXmLOXtnFDHPgkGmxFuN3ixYQwhhvg+df7Rvn76CXLS1fmratBH0gTIx74xZBfakEsD3w==",
271
+ "path": "thoth.json.system.text.json/0.3.0",
272
+ "hashPath": "thoth.json.system.text.json.0.3.0.nupkg.sha512"
273
+ },
274
+ "FSharp.Oracle.Schema/1.0.0": {
275
+ "type": "project",
276
+ "serviceable": false,
277
+ "sha512": ""
278
+ }
279
+ }
280
+ }
Binary file
Binary file
@@ -0,0 +1,13 @@
1
+ {
2
+ "runtimeOptions": {
3
+ "tfm": "net10.0",
4
+ "framework": {
5
+ "name": "Microsoft.NETCore.App",
6
+ "version": "10.0.0"
7
+ },
8
+ "configProperties": {
9
+ "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
10
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
11
+ }
12
+ }
13
+ }