starlight-fsharp-oracle 0.1.0 → 0.1.2
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/dist/Extensions/StringBuilder.js +2 -5
- package/dist/Extensions/TextNode.js +29 -54
- package/dist/FSharp.Oracle.Schema/Schema.js +113 -218
- package/dist/Generate.js +33 -63
- package/dist/Helpers.js +1 -2
- package/dist/Plugin.js +17 -31
- package/dist/Render/Documentation.js +1 -2
- package/dist/Render/Entries.js +29 -34
- package/dist/Render/Pages.js +10 -19
- package/dist/Render/Primitives.js +19 -32
- package/dist/Themes.js +3 -5
- package/dist/fable_modules/Fable.Promise.3.2.0/AsyncIterable.fs +57 -0
- package/dist/fable_modules/Fable.Promise.3.2.0/AsyncIterable.fs.js +105 -0
- package/dist/fable_modules/Fable.Promise.3.2.0/Fable.Promise.fableproj +20 -0
- package/dist/fable_modules/Fable.Promise.3.2.0/Promise.fs +766 -0
- package/dist/fable_modules/Fable.Promise.3.2.0/Promise.fs.js +232 -0
- package/dist/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs +31 -0
- package/dist/fable_modules/Fable.Promise.3.2.0/PromiseImpl.fs.js +20 -0
- package/dist/fable_modules/Thoth.Json.Core.0.9.0/Decode.fs +1592 -0
- package/dist/fable_modules/Thoth.Json.Core.0.9.0/Decode.fs.js +1417 -0
- package/dist/fable_modules/Thoth.Json.Core.0.9.0/DecoderCE.fs +106 -0
- package/dist/fable_modules/Thoth.Json.Core.0.9.0/DecoderCE.fs.js +63 -0
- package/dist/fable_modules/Thoth.Json.Core.0.9.0/Encode.fs +380 -0
- package/dist/fable_modules/Thoth.Json.Core.0.9.0/Encode.fs.js +289 -0
- package/dist/fable_modules/Thoth.Json.Core.0.9.0/Thoth.Json.Core.fableproj +37 -0
- package/dist/fable_modules/Thoth.Json.Core.0.9.0/Types.fs +76 -0
- package/dist/fable_modules/Thoth.Json.Core.0.9.0/Types.fs.js +37 -0
- package/dist/fable_modules/Thoth.Json.Core.Auto.0.1.0/Casing.fs +113 -0
- package/dist/fable_modules/Thoth.Json.Core.Auto.0.1.0/Casing.fs.js +173 -0
- package/dist/fable_modules/Thoth.Json.Core.Auto.0.1.0/Decode.fs +1153 -0
- package/dist/fable_modules/Thoth.Json.Core.Auto.0.1.0/Decode.fs.js +622 -0
- package/dist/fable_modules/Thoth.Json.Core.Auto.0.1.0/Domain.fs +91 -0
- package/dist/fable_modules/Thoth.Json.Core.Auto.0.1.0/Domain.fs.js +103 -0
- package/dist/fable_modules/Thoth.Json.Core.Auto.0.1.0/Encode.fs +893 -0
- package/dist/fable_modules/Thoth.Json.Core.Auto.0.1.0/Encode.fs.js +836 -0
- package/dist/fable_modules/Thoth.Json.Core.Auto.0.1.0/Prelude.fs +435 -0
- package/dist/fable_modules/Thoth.Json.Core.Auto.0.1.0/Prelude.fs.js +389 -0
- package/dist/fable_modules/Thoth.Json.Core.Auto.0.1.0/Thoth.Json.Core.Auto.fableproj +43 -0
- package/dist/fable_modules/Thoth.Json.JavaScript.0.5.0/Decode.fs +88 -0
- package/dist/fable_modules/Thoth.Json.JavaScript.0.5.0/Decode.fs.js +102 -0
- package/dist/fable_modules/Thoth.Json.JavaScript.0.5.0/Encode.fs +40 -0
- package/dist/fable_modules/Thoth.Json.JavaScript.0.5.0/Encode.fs.js +59 -0
- package/dist/fable_modules/Thoth.Json.JavaScript.0.5.0/Thoth.Json.JavaScript.fableproj +31 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Array.js +1347 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Async.js +134 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/AsyncBuilder.js +183 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/BigInt.js +306 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/BitConverter.js +138 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Boolean.js +22 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/CHANGELOG.md +191 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Char.js +202 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Choice.js +184 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/CollectionUtil.js +182 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/ConditionalWeakTable.js +21 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Date.js +755 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/DateOffset.js +261 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/DateOnly.js +124 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Decimal.js +236 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Double.js +47 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Encoding.js +185 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Event.js +93 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/FSharp.Collections.js +45 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/FSharp.Core.CompilerServices.js +27 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/FSharp.Core.js +156 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Global.js +29 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Guid.js +161 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Int32.js +135 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/List.js +1323 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Long.js +47 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/MailboxProcessor.js +94 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Map.js +1396 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/MapUtil.js +130 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/MutableMap.js +339 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/MutableSet.js +233 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Native.js +14 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Numeric.js +75 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Observable.js +113 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Option.js +104 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/README.md +3 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Random.js +172 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Range.js +45 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Reflection.js +460 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/RegExp.js +141 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Result.js +165 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Seq.js +1409 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Seq2.js +111 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Set.js +1788 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/String.js +649 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/System.Collections.Generic.js +333 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/System.Text.js +168 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/System.js +283 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/TimeOnly.js +122 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/TimeSpan.js +180 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Timer.js +67 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Types.js +198 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Unicode.13.0.0.js +4 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Uri.js +165 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/Util.js +792 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/big.d.ts +338 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/lib/big.js +825 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/package.json +24 -0
- package/dist/fable_modules/fable-library-js.5.0.0-rc.7/quotation.js +618 -0
- package/package.json +4 -5
- package/packages/FSharp.Oracle/XmlDoc.fs +12 -1
- package/packages/FSharp.Oracle/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.fs +3 -0
- package/packages/FSharp.Oracle/obj/Debug/net10.0/FSharp.Oracle.AssemblyInfo.fs +17 -0
- package/packages/FSharp.Oracle/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.fs +3 -0
- package/packages/FSharp.Oracle/obj/Release/net10.0/FSharp.Oracle.AssemblyInfo.fs +17 -0
- package/packages/FSharp.Oracle.Schema/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.fs +3 -0
- package/packages/FSharp.Oracle.Schema/obj/Debug/net10.0/FSharp.Oracle.Schema.AssemblyInfo.fs +17 -0
- package/packages/FSharp.Oracle.Schema/obj/Release/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.fs +3 -0
- package/packages/FSharp.Oracle.Schema/obj/Release/net10.0/FSharp.Oracle.Schema.AssemblyInfo.fs +17 -0
- package/oracle-bin/FSharp.Compiler.Service.dll +0 -0
- package/oracle-bin/FSharp.Core.dll +0 -0
- package/oracle-bin/FSharp.DependencyManager.Nuget.dll +0 -0
- package/oracle-bin/FSharp.Oracle.Schema.dll +0 -0
- package/oracle-bin/FSharp.Oracle.Schema.pdb +0 -0
- package/oracle-bin/FSharp.Oracle.Schema.xml +0 -219
- package/oracle-bin/Fable.Core.dll +0 -0
- package/oracle-bin/Oracle +0 -0
- package/oracle-bin/Oracle.deps.json +0 -280
- package/oracle-bin/Oracle.dll +0 -0
- package/oracle-bin/Oracle.pdb +0 -0
- package/oracle-bin/Oracle.runtimeconfig.json +0 -13
- package/oracle-bin/Oracle.xml +0 -111
- package/oracle-bin/Thoth.Json.Core.Auto.dll +0 -0
- package/oracle-bin/Thoth.Json.Core.dll +0 -0
- package/oracle-bin/Thoth.Json.System.Text.Json.dll +0 -0
- package/oracle-bin/cs/FSharp.Compiler.Service.resources.dll +0 -0
- package/oracle-bin/cs/FSharp.Core.resources.dll +0 -0
- package/oracle-bin/cs/FSharp.DependencyManager.Nuget.resources.dll +0 -0
- package/oracle-bin/de/FSharp.Compiler.Service.resources.dll +0 -0
- package/oracle-bin/de/FSharp.Core.resources.dll +0 -0
- package/oracle-bin/de/FSharp.DependencyManager.Nuget.resources.dll +0 -0
- package/oracle-bin/es/FSharp.Compiler.Service.resources.dll +0 -0
- package/oracle-bin/es/FSharp.Core.resources.dll +0 -0
- package/oracle-bin/es/FSharp.DependencyManager.Nuget.resources.dll +0 -0
- package/oracle-bin/fr/FSharp.Compiler.Service.resources.dll +0 -0
- package/oracle-bin/fr/FSharp.Core.resources.dll +0 -0
- package/oracle-bin/fr/FSharp.DependencyManager.Nuget.resources.dll +0 -0
- package/oracle-bin/it/FSharp.Compiler.Service.resources.dll +0 -0
- package/oracle-bin/it/FSharp.Core.resources.dll +0 -0
- package/oracle-bin/it/FSharp.DependencyManager.Nuget.resources.dll +0 -0
- package/oracle-bin/ja/FSharp.Compiler.Service.resources.dll +0 -0
- package/oracle-bin/ja/FSharp.Core.resources.dll +0 -0
- package/oracle-bin/ja/FSharp.DependencyManager.Nuget.resources.dll +0 -0
- package/oracle-bin/ko/FSharp.Compiler.Service.resources.dll +0 -0
- package/oracle-bin/ko/FSharp.Core.resources.dll +0 -0
- package/oracle-bin/ko/FSharp.DependencyManager.Nuget.resources.dll +0 -0
- package/oracle-bin/pl/FSharp.Compiler.Service.resources.dll +0 -0
- package/oracle-bin/pl/FSharp.Core.resources.dll +0 -0
- package/oracle-bin/pl/FSharp.DependencyManager.Nuget.resources.dll +0 -0
- package/oracle-bin/pt-BR/FSharp.Compiler.Service.resources.dll +0 -0
- package/oracle-bin/pt-BR/FSharp.Core.resources.dll +0 -0
- package/oracle-bin/pt-BR/FSharp.DependencyManager.Nuget.resources.dll +0 -0
- package/oracle-bin/ru/FSharp.Compiler.Service.resources.dll +0 -0
- package/oracle-bin/ru/FSharp.Core.resources.dll +0 -0
- package/oracle-bin/ru/FSharp.DependencyManager.Nuget.resources.dll +0 -0
- package/oracle-bin/tr/FSharp.Compiler.Service.resources.dll +0 -0
- package/oracle-bin/tr/FSharp.Core.resources.dll +0 -0
- package/oracle-bin/tr/FSharp.DependencyManager.Nuget.resources.dll +0 -0
- package/oracle-bin/zh-Hans/FSharp.Compiler.Service.resources.dll +0 -0
- package/oracle-bin/zh-Hans/FSharp.Core.resources.dll +0 -0
- package/oracle-bin/zh-Hans/FSharp.DependencyManager.Nuget.resources.dll +0 -0
- package/oracle-bin/zh-Hant/FSharp.Compiler.Service.resources.dll +0 -0
- package/oracle-bin/zh-Hant/FSharp.Core.resources.dll +0 -0
- package/oracle-bin/zh-Hant/FSharp.DependencyManager.Nuget.resources.dll +0 -0
|
@@ -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("Maxime Mangel")>]
|
|
11
|
+
[<assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")>]
|
|
12
|
+
[<assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")>]
|
|
13
|
+
[<assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f31138d32fcf52eeae38e3ddc3a7f7d85a4b2282")>]
|
|
14
|
+
[<assembly: System.Reflection.AssemblyProductAttribute("Oracle")>]
|
|
15
|
+
[<assembly: System.Reflection.AssemblyTitleAttribute("Oracle")>]
|
|
16
|
+
[<assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")>]
|
|
17
|
+
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("Maxime Mangel")>]
|
|
11
|
+
[<assembly: System.Reflection.AssemblyConfigurationAttribute("Release")>]
|
|
12
|
+
[<assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")>]
|
|
13
|
+
[<assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1b716c695b7f73a88a6ebd13af6637880f9c0325")>]
|
|
14
|
+
[<assembly: System.Reflection.AssemblyProductAttribute("Oracle")>]
|
|
15
|
+
[<assembly: System.Reflection.AssemblyTitleAttribute("Oracle")>]
|
|
16
|
+
[<assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")>]
|
|
17
|
+
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("Maxime Mangel")>]
|
|
11
|
+
[<assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")>]
|
|
12
|
+
[<assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")>]
|
|
13
|
+
[<assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f31138d32fcf52eeae38e3ddc3a7f7d85a4b2282")>]
|
|
14
|
+
[<assembly: System.Reflection.AssemblyProductAttribute("FSharp.Oracle.Schema")>]
|
|
15
|
+
[<assembly: System.Reflection.AssemblyTitleAttribute("FSharp.Oracle.Schema")>]
|
|
16
|
+
[<assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")>]
|
|
17
|
+
do()
|
package/packages/FSharp.Oracle.Schema/obj/Release/net10.0/FSharp.Oracle.Schema.AssemblyInfo.fs
ADDED
|
@@ -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("Maxime Mangel")>]
|
|
11
|
+
[<assembly: System.Reflection.AssemblyConfigurationAttribute("Release")>]
|
|
12
|
+
[<assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")>]
|
|
13
|
+
[<assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+004b2222784b8ccac32bf46e91832b4f92d55505")>]
|
|
14
|
+
[<assembly: System.Reflection.AssemblyProductAttribute("FSharp.Oracle.Schema")>]
|
|
15
|
+
[<assembly: System.Reflection.AssemblyTitleAttribute("FSharp.Oracle.Schema")>]
|
|
16
|
+
[<assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")>]
|
|
17
|
+
do()
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,219 +0,0 @@
|
|
|
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. "", "Reference", "Reference.Geometry".
|
|
8
|
-
</summary>
|
|
9
|
-
</member>
|
|
10
|
-
<member name="P:FSharp.Oracle.Schema.Namespace.Name">
|
|
11
|
-
<summary>
|
|
12
|
-
Short display name, e.g. "global", "Reference", "Geometry".
|
|
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. "Encode.Geometry" for "Encode.Geometry.Points".
|
|
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 ... -> ...`
|
|
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: `[<Measure>] 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. `<\'T when \'T : comparison>`.
|
|
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 -> 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. `<\'T when \'T : comparison>`.
|
|
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 -> 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. `<\'T when \'T : comparison>`.
|
|
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. "val", "type".
|
|
195
|
-
</summary>
|
|
196
|
-
</member>
|
|
197
|
-
<member name="T:FSharp.Oracle.Schema.TextNode.TypeVar">
|
|
198
|
-
<summary>
|
|
199
|
-
Generic type variable, e.g. "T" (the tick is implied — rendered as '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. ("Option", "Microsoft.FSharp.Core.FSharpOption`1").
|
|
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. "string", "int", "unit".
|
|
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
|
package/oracle-bin/Oracle
DELETED
|
Binary file
|
|
@@ -1,280 +0,0 @@
|
|
|
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
|
-
}
|
package/oracle-bin/Oracle.dll
DELETED
|
Binary file
|
package/oracle-bin/Oracle.pdb
DELETED
|
Binary file
|
|
@@ -1,13 +0,0 @@
|
|
|
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
|
-
}
|