Goswin Rothenthal

Results 20 issues of Goswin Rothenthal

I noticed that sorting a ResizeArray in Fable does not match .NET behaviour. Is this a known limitation (or a bug) ? ```fsharp let a = [| "a"; "Z" |]...

using "F# Empty Windows App (WPF)" template (version 2.0) : I create an new project and update all nuget packages. I then get the error "A strongly-named assembly is required"...

This is a question not an issue. I am new to Shaders (but not F#) . Can I use this to write WebGL? What would be the best strategy to...

### Problem The constructor of `FsiEvaluationSession` cant find `Fsharp.Core `when FCS is hosted in another process. I used v40.0 but this problem probably existed since FCS 34.0. see https://github.com/dotnet/fsharp/issues/9064 When...

Bug
Impact-Medium
Area-FCS

I like the idea of drawing 3D things with svg. I did that too for construction site tracking. [http://goswin.at/emd/](http://goswin.at/emd/) Did you test how well it scales? How many polygons can...

I did not know that 'emitJsStatement' will extract imports: ![image](https://github.com/fable-compiler/Fable/assets/884885/f93e8fc1-a476-4af6-9abc-7f0bddc81d47) but if it has a comment, it won't: ![image](https://github.com/fable-compiler/Fable/assets/884885/183d3d64-65c8-4950-a28e-7f054de94c88) see [REPL](https://fable.io/repl/#?code=PYBwpgdgBAYghgIwDZgHQGFgCc0CkDOAkhAC5hagBQlKJUAJsAJYkAUAHgJRQC8lUAqGAC2LAgGUScMsMh12UAETL+gtU2EhsdXOIBaTEFABmFYVADkAK3wAvQxYDcUAPQuoAEQCiAGS8AVLygAWS9VNQEAY2AIfDp7Ix4oCDAAdyhdAxBWTkdwiLcoVGKoYWwwKBsoaPowfLVlRSA&html=DwCwLgtgNgfAsAKAAQqaApgQwCb2ag4CdMTJcMABwFp0BHAVwEsA3AXgCIBhAewDsw6AdQAqAT0roOSAMb9BAzoIAeYAPThoAbhkhMAJwDOJNgzAAzagA4OeQhqy5EhAEY9sYu6mBq3HvD6asEA&css=Q) where is this implemented? I only found this https://github.com/fable-compiler/Fable/blob/c287b1502875bc749687df3e382d28123a676ea6/src/Fable.Core/Fable.Core.JsInterop.fs#L48

After an error prints in red, the color in the CLI does not get reset: ![image](https://github.com/fable-compiler/Fable/assets/884885/800580f8-d6bb-47ab-bde3-3d80da8867fc) (This is PowerShell in VS code on Win 11) Is the [ResetColor method](https://github.com/fable-compiler/Fable/blob/1e5a64839bdf8ff3e91023aaa691009337a301ce/src/Fable.Cli/CustomLogging.fs#L70) picking...

The equality operator `=` returns `true` in Fable but `false` in .NET for structurally equal ResizeArrays. ```fsharp let xs = ResizeArray([0;1;2]) let ys = ResizeArray([0;1;2]) printfn "ResizeArray: %b" (xs=ys) //...

I could not even clone this repo on Windows because the character `>` is not permitted in Windows file names. So I renamed the files.

Is there a reason why `dotnet tool install fable` is not mentioned in the docs? Or did I not find it? e.g. on https://fable.io/docs/2-steps/setup.html ? I only read about it...