gparmigiani

Results 181 comments of gparmigiani

seems there was some progress on NET7 aspnet preview 2, maybe we could start trying it on a branch to see if it does work as expected :) https://devblogs.microsoft.com/dotnet/announcing-dotnet-7-preview-2/

Yeah it's not an issue, it is a suggestion. if it needs to be a concrete type it can be [JsonValue](https://fsprojects.github.io/FSharp.Data/library/JsonValue.html). F# data serialization is quite commonly used if using...

Ah yes true you are right, could be a separate assembly/library. To avoid lock in dependency

got the same issue, running windows 10, trying to run some sql scripts at build time in a docker file, e execute this command as a first one in the...

I tried to build the image with -m 3G, didn't solve. to check you can build an image docker build -t "testimage" --rm -f "DockerFile" -m 3G . \# DockerFile...

i solved by passing the lambda to services_config, instead of the function itself ```fsharp let app = application { //... services_config (fun x -> configureServices x) // solved the issue...

i got the same compilation error using pipe_through within endpoints router CE ``` error FS0708: This control construct may only be used if the computation expression builder defines a 'For'...

i was able to use test application factory in a project, but requires a dummy Program.cs, as it needs to be a reference type, wheras by default Saturn has a...

This is the workaround i had to use, a Static member, with a backing mutable field, which is populated in the pipeline ```fsharp module SaturnExtensions = let mutable env :...

seems there is some work on NET7 milestone.. but might take time https://github.com/dotnet/aspnetcore/issues/37098