Viktor Andersson

Results 25 comments of Viktor Andersson

I am in the same situation as aggieben, I can get the typeprovider to work using the fix mentioned but it is not ideal. So it sadly does not just...

I just saw that there is a `MediaServicesEvent` in Builders.EventGrid.fs but it seems unused as of now. Maybe there is some support already that I am not realising?

Why not just: ```fsharp let myWebApp = webApp { name "test" add_slot deploymentSlot settings ["my_setting", "test value" ] slot_settings ["my_slot_setting", “sticky_value” ] } ``` or is that not a convenient...

Sure, but there’s no reason Farmer has to have the same API as the ARM templates, we are free make a more sensible API where we can. And that was...

Sure, that would work great. Just for information I ran into the issue when I was using the dotnet cli template for fable-elmish-react. That template is using a project structure...

If you can think of something for the C# samples @PeterOrneholm then I'll update the samples for F# in similar way.

Ok, this presents some problems. First off we can implement ISerializable, which works fine for NewtonSoft.Json but is not used by System.Text.Json, and I cannot find any info if they...

We will add ISerializable which will support Newtonsoft.Json. And we will also compile for netstandard2.1 and conditionally add a JsonConverter for System.Text.Json support since System.Text.Json is included in the framework...

I am struggling a bit with adding these tests. In most cases I just what to verify that IndividualIdentityNumbers calls the corresponding functions for PersonalIdentityNumber or CoordinationNumber. One approach is...

Month can't be 60 right? It's Month = 0 and Day = 60, I think. We also need to update the CoordinationNumber test-data to include numbers with month=0 and day=60,...