njlr
njlr
I am using `IdentityModel.OidcClient` to authenticate a local app against a Keycloak cluster. The cluster communicates grant codes, but there is some latency. This means that authentication can fail if...
This is a fix for https://github.com/fsprojects/FSharp.Data.GraphQL/issues/353. Currently the implementation does not generate a valid introspection query result when default values are specified. According to [the spec](https://spec.graphql.org/June2018/#sec-The-__InputValue-Type): > `defaultValue` may return...
Is it possible to fetch a `dev` dependency or from any other group?
Added the necessary BUCK files to allow building with [Buck](https://buckbuild.com/) out-of-the-box. These sit alongside the `make` file, which is unchanged.
It would be useful to be able to generate a Visual Studio solution / projects using the `buck project` command. Are there any plans to support this?
```fsharp #r "nuget: SharpCompress, 0.34.1" open SharpCompress let filePath = "./example.zip" let isZipFile = Archives.Zip.ZipArchive.IsZipFile(filePath) printfn $"isZipFile? %b{isZipFile}" let archive = Archives.ArchiveFactory.Open(filePath) printfn $"Archive type: %s{archive.GetType().FullName}" printfn "Entries:" for x...
Create a `7z` file: ```bash $ 7zz a test.7z ``` Check the entries are encrypted: `Scratch.fsx` ```fsharp #r "nuget: SharpCompress, 0.33.0" open SharpCompress open SharpCompress.Archives let archive = ArchiveFactory.Open("test.7z") for...
# 🐞 bug report ### Affected Rule The issue is caused by the rule: - `container_run_and_commit_layer` - `container_image` (maybe) ### Is this a regression? Unsure ### Description When building a...
From the examples: ```csharp var s = (RecordSchema)RecordSchema.Parse( @"{ ""type"": ""record"", ""name"": ""User"", ""fields"": [ {""name"": ""name"", ""type"": ""string""}, {""name"": ""favorite_number"", ""type"": ""long""}, {""name"": ""favorite_color"", ""type"": ""string""} ] }" );...
Compile this code: ```fsharp open System [] type MethodOnlyAttribute() = inherit System.Attribute() [] let abc () = "abc" [] let def = "def" ``` **Expected behavior** Compilation should fail because...