Tyson Williams
Tyson Williams
I have having problems getting your example to compile. First, Visual Studio says I need to install something, but when I click "install", it says I already have it installed....
> Now I do it this way: All three of your links work, but I can't check them out. GitHub says > This commit does not belong to any branch...
> ```fsharp > static member GetLifecycleEventsSubscription ( > addHandlers : Action Action, > Action, > Action, > Action>) > : Model -> Cmd = > fun (_ : Model) ->...
> Do you mean the links in the first message? Yes
What about support for structured logging?
Sure. I have two other potential improvements related to logging. I just wrote all three down in #196.
What was the reason for upgrading to FSharp.Core? https://github.com/elmish/elmish/commit/62a89382a57a8fe9e0d88fdb17ac38b78e72c39e#diff-016de9c10c0a952036856884878c35cfR15-R17
Suppose `update` throws an exception. - In `v3.x`, this exception is caught and communited for the Elmish error logger https://github.com/elmish/elmish/blob/b4304107342d8689ec9b97b2a9d2929857281a96/src/program.fs#L152-L153 - In `master`, the branch tracking `v4`, this exception goes...
I was trying to test Elmish.WPF on the `elmish/master` but couldn't build because of that change and the fact that [Elmish.WPF updates the version of `FSharp.Core` to be `4.6.2`](https://github.com/elmish/Elmish.WPF/blob/9222c08ff30682719969a241ee063acab5afd923/src/Elmish.WPF/Elmish.WPF.fsproj#L50). I...
I am having a hard time understanding what the use case is for `withSubscription`, which accepts as its first argument `subscription` of type `'model -> Cmd`. This could have been...